SimulationServer.deps.json 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v7.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v7.0": {
  9. "SimulationServer/1.0.0": {
  10. "dependencies": {
  11. "GeoCoordinate": "2.0.1",
  12. "KYFramework": "1.0.0",
  13. "KYNetwork": "1.0.0",
  14. "MathNet.Numerics": "5.0.0",
  15. "NPOI.Excel": "2.1.1",
  16. "NPOIHelper": "2.0.13",
  17. "SimulationCommon": "1.0.0",
  18. "ThirdParty": "1.0.0",
  19. "BHJD.DEMdll": "1.0.0.0",
  20. "Unity.Mathematics": "1.0.0.0"
  21. },
  22. "runtime": {
  23. "SimulationServer.dll": {}
  24. }
  25. },
  26. "GeoCoordinate/2.0.1": {
  27. "dependencies": {
  28. "NETStandard.Library": "1.6.0"
  29. }
  30. },
  31. "Google.Protobuf/3.21.9": {
  32. "runtime": {
  33. "lib/net5.0/Google.Protobuf.dll": {
  34. "assemblyVersion": "3.21.9.0",
  35. "fileVersion": "3.21.9.0"
  36. }
  37. }
  38. },
  39. "K4os.Compression.LZ4/1.3.5": {
  40. "runtime": {
  41. "lib/net6.0/K4os.Compression.LZ4.dll": {
  42. "assemblyVersion": "1.3.5.0",
  43. "fileVersion": "1.3.5.0"
  44. }
  45. }
  46. },
  47. "K4os.Compression.LZ4.Streams/1.3.5": {
  48. "dependencies": {
  49. "K4os.Compression.LZ4": "1.3.5",
  50. "K4os.Hash.xxHash": "1.0.8",
  51. "System.IO.Pipelines": "6.0.3"
  52. },
  53. "runtime": {
  54. "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
  55. "assemblyVersion": "1.3.5.0",
  56. "fileVersion": "1.3.5.0"
  57. }
  58. }
  59. },
  60. "K4os.Hash.xxHash/1.0.8": {
  61. "runtime": {
  62. "lib/net6.0/K4os.Hash.xxHash.dll": {
  63. "assemblyVersion": "1.0.8.0",
  64. "fileVersion": "1.0.8.0"
  65. }
  66. }
  67. },
  68. "MathNet.Numerics/5.0.0": {
  69. "runtime": {
  70. "lib/net6.0/MathNet.Numerics.dll": {
  71. "assemblyVersion": "5.0.0.0",
  72. "fileVersion": "5.0.0.0"
  73. }
  74. }
  75. },
  76. "Microsoft.CSharp/4.7.0": {},
  77. "Microsoft.NETCore.Platforms/3.1.0": {},
  78. "Microsoft.NETCore.Targets/1.1.0": {},
  79. "Microsoft.Win32.Primitives/4.0.1": {
  80. "dependencies": {
  81. "Microsoft.NETCore.Platforms": "3.1.0",
  82. "Microsoft.NETCore.Targets": "1.1.0",
  83. "System.Runtime": "4.3.0"
  84. }
  85. },
  86. "Microsoft.Win32.SystemEvents/4.7.0": {
  87. "dependencies": {
  88. "Microsoft.NETCore.Platforms": "3.1.0"
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  92. "assemblyVersion": "4.0.2.0",
  93. "fileVersion": "4.700.19.56404"
  94. }
  95. },
  96. "runtimeTargets": {
  97. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  98. "rid": "win",
  99. "assetType": "runtime",
  100. "assemblyVersion": "4.0.2.0",
  101. "fileVersion": "4.700.19.56404"
  102. }
  103. }
  104. },
  105. "MongoDB.Bson/2.0.0": {
  106. "runtime": {
  107. "lib/net45/MongoDB.Bson.dll": {
  108. "assemblyVersion": "2.0.0.828",
  109. "fileVersion": "2.0.0.828"
  110. }
  111. }
  112. },
  113. "MySql.Data/8.1.0": {
  114. "dependencies": {
  115. "Google.Protobuf": "3.21.9",
  116. "K4os.Compression.LZ4.Streams": "1.3.5",
  117. "Portable.BouncyCastle": "1.9.0",
  118. "System.Buffers": "4.5.1",
  119. "System.Configuration.ConfigurationManager": "4.5.0",
  120. "System.Diagnostics.DiagnosticSource": "7.0.2",
  121. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  122. "System.Runtime.Loader": "4.3.0",
  123. "System.Security.Permissions": "4.7.0",
  124. "System.Text.Encoding.CodePages": "4.4.0",
  125. "System.Text.Json": "7.0.1",
  126. "System.Threading.Tasks.Extensions": "4.5.4",
  127. "ZstdSharp.Port": "0.7.1"
  128. },
  129. "runtime": {
  130. "lib/net7.0/MySql.Data.dll": {
  131. "assemblyVersion": "8.1.0.0",
  132. "fileVersion": "8.1.0.0"
  133. }
  134. },
  135. "runtimeTargets": {
  136. "runtimes/win-x64/native/comerr64.dll": {
  137. "rid": "win-x64",
  138. "assetType": "native",
  139. "fileVersion": "4.1.0.0"
  140. },
  141. "runtimes/win-x64/native/gssapi64.dll": {
  142. "rid": "win-x64",
  143. "assetType": "native",
  144. "fileVersion": "4.1.0.0"
  145. },
  146. "runtimes/win-x64/native/k5sprt64.dll": {
  147. "rid": "win-x64",
  148. "assetType": "native",
  149. "fileVersion": "4.1.0.0"
  150. },
  151. "runtimes/win-x64/native/krb5_64.dll": {
  152. "rid": "win-x64",
  153. "assetType": "native",
  154. "fileVersion": "4.1.0.0"
  155. },
  156. "runtimes/win-x64/native/krbcc64.dll": {
  157. "rid": "win-x64",
  158. "assetType": "native",
  159. "fileVersion": "4.1.0.0"
  160. }
  161. }
  162. },
  163. "NETStandard.Library/1.6.0": {
  164. "dependencies": {
  165. "Microsoft.NETCore.Platforms": "3.1.0",
  166. "Microsoft.Win32.Primitives": "4.0.1",
  167. "System.AppContext": "4.1.0",
  168. "System.Collections": "4.0.11",
  169. "System.Collections.Concurrent": "4.0.12",
  170. "System.Console": "4.0.0",
  171. "System.Diagnostics.Debug": "4.0.11",
  172. "System.Diagnostics.Tools": "4.0.1",
  173. "System.Diagnostics.Tracing": "4.1.0",
  174. "System.Globalization": "4.0.11",
  175. "System.Globalization.Calendars": "4.0.1",
  176. "System.IO": "4.3.0",
  177. "System.IO.Compression": "4.1.0",
  178. "System.IO.Compression.ZipFile": "4.0.1",
  179. "System.IO.FileSystem": "4.0.1",
  180. "System.IO.FileSystem.Primitives": "4.0.1",
  181. "System.Linq": "4.1.0",
  182. "System.Linq.Expressions": "4.1.0",
  183. "System.Net.Http": "4.1.0",
  184. "System.Net.Primitives": "4.0.11",
  185. "System.Net.Sockets": "4.1.0",
  186. "System.ObjectModel": "4.0.12",
  187. "System.Reflection": "4.3.0",
  188. "System.Reflection.Extensions": "4.0.1",
  189. "System.Reflection.Primitives": "4.3.0",
  190. "System.Resources.ResourceManager": "4.0.1",
  191. "System.Runtime": "4.3.0",
  192. "System.Runtime.Extensions": "4.1.0",
  193. "System.Runtime.Handles": "4.0.1",
  194. "System.Runtime.InteropServices": "4.1.0",
  195. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  196. "System.Runtime.Numerics": "4.0.1",
  197. "System.Security.Cryptography.Algorithms": "4.2.0",
  198. "System.Security.Cryptography.Encoding": "4.0.0",
  199. "System.Security.Cryptography.Primitives": "4.0.0",
  200. "System.Security.Cryptography.X509Certificates": "4.1.0",
  201. "System.Text.Encoding": "4.3.0",
  202. "System.Text.Encoding.Extensions": "4.0.11",
  203. "System.Text.RegularExpressions": "4.1.0",
  204. "System.Threading": "4.0.11",
  205. "System.Threading.Tasks": "4.3.0",
  206. "System.Threading.Timer": "4.0.1",
  207. "System.Xml.ReaderWriter": "4.0.11",
  208. "System.Xml.XDocument": "4.0.11"
  209. }
  210. },
  211. "Newtonsoft.Json/13.0.3": {
  212. "runtime": {
  213. "lib/net6.0/Newtonsoft.Json.dll": {
  214. "assemblyVersion": "13.0.0.0",
  215. "fileVersion": "13.0.3.27908"
  216. }
  217. }
  218. },
  219. "NLog/5.1.3": {
  220. "runtime": {
  221. "lib/netstandard2.0/NLog.dll": {
  222. "assemblyVersion": "5.0.0.0",
  223. "fileVersion": "5.1.3.1645"
  224. }
  225. }
  226. },
  227. "NPOI/2.5.5": {
  228. "dependencies": {
  229. "Portable.BouncyCastle": "1.9.0",
  230. "SharpZipLib": "1.3.2",
  231. "System.Configuration.ConfigurationManager": "4.5.0",
  232. "System.Drawing.Common": "4.7.0"
  233. },
  234. "runtime": {
  235. "lib/netstandard2.1/NPOI.OOXML.dll": {
  236. "assemblyVersion": "2.5.5.0",
  237. "fileVersion": "2.5.5.0"
  238. },
  239. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  240. "assemblyVersion": "2.5.5.0",
  241. "fileVersion": "2.5.5.0"
  242. },
  243. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  244. "assemblyVersion": "2.5.5.0",
  245. "fileVersion": "2.5.5.0"
  246. },
  247. "lib/netstandard2.1/NPOI.dll": {
  248. "assemblyVersion": "2.5.5.0",
  249. "fileVersion": "2.5.5.0"
  250. }
  251. }
  252. },
  253. "NPOI.Excel/2.1.1": {},
  254. "NPOIHelper/2.0.13": {
  255. "dependencies": {
  256. "Microsoft.CSharp": "4.7.0",
  257. "NPOI": "2.5.5"
  258. },
  259. "runtime": {
  260. "lib/netstandard2.0/NPOIHelper.dll": {
  261. "assemblyVersion": "2.0.0.0",
  262. "fileVersion": "2.0.0.0"
  263. }
  264. }
  265. },
  266. "OpenCvSharp4/4.10.0.20240616": {
  267. "dependencies": {
  268. "System.Memory": "4.5.5",
  269. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  270. },
  271. "runtime": {
  272. "lib/net6.0/OpenCvSharp.dll": {
  273. "assemblyVersion": "1.0.0.0",
  274. "fileVersion": "1.0.0.0"
  275. }
  276. }
  277. },
  278. "OpenCvSharp4.runtime.win/4.10.0.20240616": {
  279. "runtimeTargets": {
  280. "runtimes/win-x64/native/OpenCvSharpExtern.dll": {
  281. "rid": "win-x64",
  282. "assetType": "native",
  283. "fileVersion": "0.0.0.0"
  284. },
  285. "runtimes/win-x64/native/opencv_videoio_ffmpeg4100_64.dll": {
  286. "rid": "win-x64",
  287. "assetType": "native",
  288. "fileVersion": "2024.5.0.0"
  289. },
  290. "runtimes/win-x86/native/OpenCvSharpExtern.dll": {
  291. "rid": "win-x86",
  292. "assetType": "native",
  293. "fileVersion": "0.0.0.0"
  294. },
  295. "runtimes/win-x86/native/opencv_videoio_ffmpeg4100.dll": {
  296. "rid": "win-x86",
  297. "assetType": "native",
  298. "fileVersion": "2024.5.0.0"
  299. }
  300. }
  301. },
  302. "OpenQA.Selenium.Chrome.ChromeDriverExtensions/1.2.0": {
  303. "dependencies": {
  304. "Selenium.WebDriver": "3.141.0"
  305. },
  306. "runtime": {
  307. "lib/netstandard2.0/OpenQA.Selenium.Chrome.ChromeDriverExtensions.dll": {
  308. "assemblyVersion": "1.2.0.0",
  309. "fileVersion": "1.2.0.0"
  310. }
  311. }
  312. },
  313. "Portable.BouncyCastle/1.9.0": {
  314. "runtime": {
  315. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  316. "assemblyVersion": "1.9.0.0",
  317. "fileVersion": "1.9.0.1"
  318. }
  319. }
  320. },
  321. "runtime.native.System/4.0.0": {
  322. "dependencies": {
  323. "Microsoft.NETCore.Platforms": "3.1.0",
  324. "Microsoft.NETCore.Targets": "1.1.0"
  325. }
  326. },
  327. "runtime.native.System.IO.Compression/4.1.0": {
  328. "dependencies": {
  329. "Microsoft.NETCore.Platforms": "3.1.0",
  330. "Microsoft.NETCore.Targets": "1.1.0"
  331. }
  332. },
  333. "runtime.native.System.Net.Http/4.0.1": {
  334. "dependencies": {
  335. "Microsoft.NETCore.Platforms": "3.1.0",
  336. "Microsoft.NETCore.Targets": "1.1.0"
  337. }
  338. },
  339. "runtime.native.System.Security.Cryptography/4.0.0": {
  340. "dependencies": {
  341. "Microsoft.NETCore.Platforms": "3.1.0",
  342. "Microsoft.NETCore.Targets": "1.1.0"
  343. }
  344. },
  345. "Selenium.WebDriver/3.141.0": {
  346. "dependencies": {
  347. "Newtonsoft.Json": "13.0.3"
  348. },
  349. "runtime": {
  350. "lib/netstandard2.0/WebDriver.dll": {
  351. "assemblyVersion": "3.141.0.0",
  352. "fileVersion": "3.141.0.0"
  353. }
  354. }
  355. },
  356. "SharpZipLib/1.3.2": {
  357. "runtime": {
  358. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  359. "assemblyVersion": "1.3.2.10",
  360. "fileVersion": "1.3.2.10"
  361. }
  362. }
  363. },
  364. "System.AppContext/4.1.0": {
  365. "dependencies": {
  366. "System.Runtime": "4.3.0"
  367. }
  368. },
  369. "System.Buffers/4.5.1": {},
  370. "System.Collections/4.0.11": {
  371. "dependencies": {
  372. "Microsoft.NETCore.Platforms": "3.1.0",
  373. "Microsoft.NETCore.Targets": "1.1.0",
  374. "System.Runtime": "4.3.0"
  375. }
  376. },
  377. "System.Collections.Concurrent/4.0.12": {
  378. "dependencies": {
  379. "System.Collections": "4.0.11",
  380. "System.Diagnostics.Debug": "4.0.11",
  381. "System.Diagnostics.Tracing": "4.1.0",
  382. "System.Globalization": "4.0.11",
  383. "System.Reflection": "4.3.0",
  384. "System.Resources.ResourceManager": "4.0.1",
  385. "System.Runtime": "4.3.0",
  386. "System.Runtime.Extensions": "4.1.0",
  387. "System.Threading": "4.0.11",
  388. "System.Threading.Tasks": "4.3.0"
  389. }
  390. },
  391. "System.Configuration.ConfigurationManager/4.5.0": {
  392. "dependencies": {
  393. "System.Security.Cryptography.ProtectedData": "4.5.0",
  394. "System.Security.Permissions": "4.7.0"
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  398. "assemblyVersion": "4.0.1.0",
  399. "fileVersion": "4.6.26515.6"
  400. }
  401. }
  402. },
  403. "System.Console/4.0.0": {
  404. "dependencies": {
  405. "Microsoft.NETCore.Platforms": "3.1.0",
  406. "Microsoft.NETCore.Targets": "1.1.0",
  407. "System.IO": "4.3.0",
  408. "System.Runtime": "4.3.0",
  409. "System.Text.Encoding": "4.3.0"
  410. }
  411. },
  412. "System.Diagnostics.Debug/4.0.11": {
  413. "dependencies": {
  414. "Microsoft.NETCore.Platforms": "3.1.0",
  415. "Microsoft.NETCore.Targets": "1.1.0",
  416. "System.Runtime": "4.3.0"
  417. }
  418. },
  419. "System.Diagnostics.DiagnosticSource/7.0.2": {},
  420. "System.Diagnostics.Tools/4.0.1": {
  421. "dependencies": {
  422. "Microsoft.NETCore.Platforms": "3.1.0",
  423. "Microsoft.NETCore.Targets": "1.1.0",
  424. "System.Runtime": "4.3.0"
  425. }
  426. },
  427. "System.Diagnostics.Tracing/4.1.0": {
  428. "dependencies": {
  429. "Microsoft.NETCore.Platforms": "3.1.0",
  430. "Microsoft.NETCore.Targets": "1.1.0",
  431. "System.Runtime": "4.3.0"
  432. }
  433. },
  434. "System.Drawing.Common/4.7.0": {
  435. "dependencies": {
  436. "Microsoft.NETCore.Platforms": "3.1.0",
  437. "Microsoft.Win32.SystemEvents": "4.7.0"
  438. },
  439. "runtime": {
  440. "lib/netstandard2.0/System.Drawing.Common.dll": {
  441. "assemblyVersion": "4.0.0.1",
  442. "fileVersion": "4.6.26919.2"
  443. }
  444. },
  445. "runtimeTargets": {
  446. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  447. "rid": "unix",
  448. "assetType": "runtime",
  449. "assemblyVersion": "4.0.2.0",
  450. "fileVersion": "4.700.19.56404"
  451. },
  452. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  453. "rid": "win",
  454. "assetType": "runtime",
  455. "assemblyVersion": "4.0.2.0",
  456. "fileVersion": "4.700.19.56404"
  457. }
  458. }
  459. },
  460. "System.Globalization/4.0.11": {
  461. "dependencies": {
  462. "Microsoft.NETCore.Platforms": "3.1.0",
  463. "Microsoft.NETCore.Targets": "1.1.0",
  464. "System.Runtime": "4.3.0"
  465. }
  466. },
  467. "System.Globalization.Calendars/4.0.1": {
  468. "dependencies": {
  469. "Microsoft.NETCore.Platforms": "3.1.0",
  470. "Microsoft.NETCore.Targets": "1.1.0",
  471. "System.Globalization": "4.0.11",
  472. "System.Runtime": "4.3.0"
  473. }
  474. },
  475. "System.Globalization.Extensions/4.0.1": {
  476. "dependencies": {
  477. "Microsoft.NETCore.Platforms": "3.1.0",
  478. "System.Globalization": "4.0.11",
  479. "System.Resources.ResourceManager": "4.0.1",
  480. "System.Runtime": "4.3.0",
  481. "System.Runtime.Extensions": "4.1.0",
  482. "System.Runtime.InteropServices": "4.1.0"
  483. }
  484. },
  485. "System.IO/4.3.0": {
  486. "dependencies": {
  487. "Microsoft.NETCore.Platforms": "3.1.0",
  488. "Microsoft.NETCore.Targets": "1.1.0",
  489. "System.Runtime": "4.3.0",
  490. "System.Text.Encoding": "4.3.0",
  491. "System.Threading.Tasks": "4.3.0"
  492. }
  493. },
  494. "System.IO.Compression/4.1.0": {
  495. "dependencies": {
  496. "Microsoft.NETCore.Platforms": "3.1.0",
  497. "System.Collections": "4.0.11",
  498. "System.Diagnostics.Debug": "4.0.11",
  499. "System.IO": "4.3.0",
  500. "System.Resources.ResourceManager": "4.0.1",
  501. "System.Runtime": "4.3.0",
  502. "System.Runtime.Extensions": "4.1.0",
  503. "System.Runtime.Handles": "4.0.1",
  504. "System.Runtime.InteropServices": "4.1.0",
  505. "System.Text.Encoding": "4.3.0",
  506. "System.Threading": "4.0.11",
  507. "System.Threading.Tasks": "4.3.0",
  508. "runtime.native.System": "4.0.0",
  509. "runtime.native.System.IO.Compression": "4.1.0"
  510. }
  511. },
  512. "System.IO.Compression.ZipFile/4.0.1": {
  513. "dependencies": {
  514. "System.Buffers": "4.5.1",
  515. "System.IO": "4.3.0",
  516. "System.IO.Compression": "4.1.0",
  517. "System.IO.FileSystem": "4.0.1",
  518. "System.IO.FileSystem.Primitives": "4.0.1",
  519. "System.Resources.ResourceManager": "4.0.1",
  520. "System.Runtime": "4.3.0",
  521. "System.Runtime.Extensions": "4.1.0",
  522. "System.Text.Encoding": "4.3.0"
  523. }
  524. },
  525. "System.IO.FileSystem/4.0.1": {
  526. "dependencies": {
  527. "Microsoft.NETCore.Platforms": "3.1.0",
  528. "Microsoft.NETCore.Targets": "1.1.0",
  529. "System.IO": "4.3.0",
  530. "System.IO.FileSystem.Primitives": "4.0.1",
  531. "System.Runtime": "4.3.0",
  532. "System.Runtime.Handles": "4.0.1",
  533. "System.Text.Encoding": "4.3.0",
  534. "System.Threading.Tasks": "4.3.0"
  535. }
  536. },
  537. "System.IO.FileSystem.Primitives/4.0.1": {
  538. "dependencies": {
  539. "System.Runtime": "4.3.0"
  540. }
  541. },
  542. "System.IO.Pipelines/6.0.3": {
  543. "runtime": {
  544. "lib/net6.0/System.IO.Pipelines.dll": {
  545. "assemblyVersion": "6.0.0.0",
  546. "fileVersion": "6.0.522.21309"
  547. }
  548. }
  549. },
  550. "System.Linq/4.1.0": {
  551. "dependencies": {
  552. "System.Collections": "4.0.11",
  553. "System.Diagnostics.Debug": "4.0.11",
  554. "System.Resources.ResourceManager": "4.0.1",
  555. "System.Runtime": "4.3.0",
  556. "System.Runtime.Extensions": "4.1.0"
  557. }
  558. },
  559. "System.Linq.Expressions/4.1.0": {
  560. "dependencies": {
  561. "System.Collections": "4.0.11",
  562. "System.Diagnostics.Debug": "4.0.11",
  563. "System.Globalization": "4.0.11",
  564. "System.IO": "4.3.0",
  565. "System.Linq": "4.1.0",
  566. "System.ObjectModel": "4.0.12",
  567. "System.Reflection": "4.3.0",
  568. "System.Reflection.Emit": "4.0.1",
  569. "System.Reflection.Emit.ILGeneration": "4.0.1",
  570. "System.Reflection.Emit.Lightweight": "4.0.1",
  571. "System.Reflection.Extensions": "4.0.1",
  572. "System.Reflection.Primitives": "4.3.0",
  573. "System.Reflection.TypeExtensions": "4.1.0",
  574. "System.Resources.ResourceManager": "4.0.1",
  575. "System.Runtime": "4.3.0",
  576. "System.Runtime.Extensions": "4.1.0",
  577. "System.Threading": "4.0.11"
  578. }
  579. },
  580. "System.Memory/4.5.5": {},
  581. "System.Net.Http/4.1.0": {
  582. "dependencies": {
  583. "Microsoft.NETCore.Platforms": "3.1.0",
  584. "System.Collections": "4.0.11",
  585. "System.Diagnostics.Debug": "4.0.11",
  586. "System.Diagnostics.DiagnosticSource": "7.0.2",
  587. "System.Diagnostics.Tracing": "4.1.0",
  588. "System.Globalization": "4.0.11",
  589. "System.Globalization.Extensions": "4.0.1",
  590. "System.IO": "4.3.0",
  591. "System.IO.FileSystem": "4.0.1",
  592. "System.Net.Primitives": "4.0.11",
  593. "System.Resources.ResourceManager": "4.0.1",
  594. "System.Runtime": "4.3.0",
  595. "System.Runtime.Extensions": "4.1.0",
  596. "System.Runtime.Handles": "4.0.1",
  597. "System.Runtime.InteropServices": "4.1.0",
  598. "System.Security.Cryptography.Algorithms": "4.2.0",
  599. "System.Security.Cryptography.Encoding": "4.0.0",
  600. "System.Security.Cryptography.OpenSsl": "4.0.0",
  601. "System.Security.Cryptography.Primitives": "4.0.0",
  602. "System.Security.Cryptography.X509Certificates": "4.1.0",
  603. "System.Text.Encoding": "4.3.0",
  604. "System.Threading": "4.0.11",
  605. "System.Threading.Tasks": "4.3.0",
  606. "runtime.native.System": "4.0.0",
  607. "runtime.native.System.Net.Http": "4.0.1",
  608. "runtime.native.System.Security.Cryptography": "4.0.0"
  609. }
  610. },
  611. "System.Net.Primitives/4.0.11": {
  612. "dependencies": {
  613. "Microsoft.NETCore.Platforms": "3.1.0",
  614. "Microsoft.NETCore.Targets": "1.1.0",
  615. "System.Runtime": "4.3.0",
  616. "System.Runtime.Handles": "4.0.1"
  617. }
  618. },
  619. "System.Net.Sockets/4.1.0": {
  620. "dependencies": {
  621. "Microsoft.NETCore.Platforms": "3.1.0",
  622. "Microsoft.NETCore.Targets": "1.1.0",
  623. "System.IO": "4.3.0",
  624. "System.Net.Primitives": "4.0.11",
  625. "System.Runtime": "4.3.0",
  626. "System.Threading.Tasks": "4.3.0"
  627. }
  628. },
  629. "System.ObjectModel/4.0.12": {
  630. "dependencies": {
  631. "System.Collections": "4.0.11",
  632. "System.Diagnostics.Debug": "4.0.11",
  633. "System.Resources.ResourceManager": "4.0.1",
  634. "System.Runtime": "4.3.0",
  635. "System.Threading": "4.0.11"
  636. }
  637. },
  638. "System.Reflection/4.3.0": {
  639. "dependencies": {
  640. "Microsoft.NETCore.Platforms": "3.1.0",
  641. "Microsoft.NETCore.Targets": "1.1.0",
  642. "System.IO": "4.3.0",
  643. "System.Reflection.Primitives": "4.3.0",
  644. "System.Runtime": "4.3.0"
  645. }
  646. },
  647. "System.Reflection.Emit/4.0.1": {
  648. "dependencies": {
  649. "System.IO": "4.3.0",
  650. "System.Reflection": "4.3.0",
  651. "System.Reflection.Emit.ILGeneration": "4.0.1",
  652. "System.Reflection.Primitives": "4.3.0",
  653. "System.Runtime": "4.3.0"
  654. }
  655. },
  656. "System.Reflection.Emit.ILGeneration/4.0.1": {
  657. "dependencies": {
  658. "System.Reflection": "4.3.0",
  659. "System.Reflection.Primitives": "4.3.0",
  660. "System.Runtime": "4.3.0"
  661. }
  662. },
  663. "System.Reflection.Emit.Lightweight/4.0.1": {
  664. "dependencies": {
  665. "System.Reflection": "4.3.0",
  666. "System.Reflection.Emit.ILGeneration": "4.0.1",
  667. "System.Reflection.Primitives": "4.3.0",
  668. "System.Runtime": "4.3.0"
  669. }
  670. },
  671. "System.Reflection.Extensions/4.0.1": {
  672. "dependencies": {
  673. "Microsoft.NETCore.Platforms": "3.1.0",
  674. "Microsoft.NETCore.Targets": "1.1.0",
  675. "System.Reflection": "4.3.0",
  676. "System.Runtime": "4.3.0"
  677. }
  678. },
  679. "System.Reflection.Primitives/4.3.0": {
  680. "dependencies": {
  681. "Microsoft.NETCore.Platforms": "3.1.0",
  682. "Microsoft.NETCore.Targets": "1.1.0",
  683. "System.Runtime": "4.3.0"
  684. }
  685. },
  686. "System.Reflection.TypeExtensions/4.1.0": {
  687. "dependencies": {
  688. "System.Reflection": "4.3.0",
  689. "System.Runtime": "4.3.0"
  690. }
  691. },
  692. "System.Resources.ResourceManager/4.0.1": {
  693. "dependencies": {
  694. "Microsoft.NETCore.Platforms": "3.1.0",
  695. "Microsoft.NETCore.Targets": "1.1.0",
  696. "System.Globalization": "4.0.11",
  697. "System.Reflection": "4.3.0",
  698. "System.Runtime": "4.3.0"
  699. }
  700. },
  701. "System.Runtime/4.3.0": {
  702. "dependencies": {
  703. "Microsoft.NETCore.Platforms": "3.1.0",
  704. "Microsoft.NETCore.Targets": "1.1.0"
  705. }
  706. },
  707. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  708. "System.Runtime.Extensions/4.1.0": {
  709. "dependencies": {
  710. "Microsoft.NETCore.Platforms": "3.1.0",
  711. "Microsoft.NETCore.Targets": "1.1.0",
  712. "System.Runtime": "4.3.0"
  713. }
  714. },
  715. "System.Runtime.Handles/4.0.1": {
  716. "dependencies": {
  717. "Microsoft.NETCore.Platforms": "3.1.0",
  718. "Microsoft.NETCore.Targets": "1.1.0",
  719. "System.Runtime": "4.3.0"
  720. }
  721. },
  722. "System.Runtime.InteropServices/4.1.0": {
  723. "dependencies": {
  724. "Microsoft.NETCore.Platforms": "3.1.0",
  725. "Microsoft.NETCore.Targets": "1.1.0",
  726. "System.Reflection": "4.3.0",
  727. "System.Reflection.Primitives": "4.3.0",
  728. "System.Runtime": "4.3.0",
  729. "System.Runtime.Handles": "4.0.1"
  730. }
  731. },
  732. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  733. "dependencies": {
  734. "Microsoft.NETCore.Platforms": "3.1.0",
  735. "System.Reflection": "4.3.0",
  736. "System.Resources.ResourceManager": "4.0.1",
  737. "System.Runtime": "4.3.0",
  738. "System.Runtime.InteropServices": "4.1.0",
  739. "System.Threading": "4.0.11",
  740. "runtime.native.System": "4.0.0"
  741. }
  742. },
  743. "System.Runtime.Loader/4.3.0": {
  744. "dependencies": {
  745. "System.IO": "4.3.0",
  746. "System.Reflection": "4.3.0",
  747. "System.Runtime": "4.3.0"
  748. }
  749. },
  750. "System.Runtime.Numerics/4.0.1": {
  751. "dependencies": {
  752. "System.Globalization": "4.0.11",
  753. "System.Resources.ResourceManager": "4.0.1",
  754. "System.Runtime": "4.3.0",
  755. "System.Runtime.Extensions": "4.1.0"
  756. }
  757. },
  758. "System.Security.AccessControl/4.7.0": {
  759. "dependencies": {
  760. "Microsoft.NETCore.Platforms": "3.1.0",
  761. "System.Security.Principal.Windows": "4.7.0"
  762. }
  763. },
  764. "System.Security.Cryptography.Algorithms/4.2.0": {
  765. "dependencies": {
  766. "Microsoft.NETCore.Platforms": "3.1.0",
  767. "System.Collections": "4.0.11",
  768. "System.IO": "4.3.0",
  769. "System.Resources.ResourceManager": "4.0.1",
  770. "System.Runtime": "4.3.0",
  771. "System.Runtime.Extensions": "4.1.0",
  772. "System.Runtime.Handles": "4.0.1",
  773. "System.Runtime.InteropServices": "4.1.0",
  774. "System.Runtime.Numerics": "4.0.1",
  775. "System.Security.Cryptography.Encoding": "4.0.0",
  776. "System.Security.Cryptography.Primitives": "4.0.0",
  777. "System.Text.Encoding": "4.3.0",
  778. "runtime.native.System.Security.Cryptography": "4.0.0"
  779. }
  780. },
  781. "System.Security.Cryptography.Cng/4.2.0": {
  782. "dependencies": {
  783. "Microsoft.NETCore.Platforms": "3.1.0",
  784. "System.IO": "4.3.0",
  785. "System.Resources.ResourceManager": "4.0.1",
  786. "System.Runtime": "4.3.0",
  787. "System.Runtime.Extensions": "4.1.0",
  788. "System.Runtime.Handles": "4.0.1",
  789. "System.Runtime.InteropServices": "4.1.0",
  790. "System.Security.Cryptography.Algorithms": "4.2.0",
  791. "System.Security.Cryptography.Encoding": "4.0.0",
  792. "System.Security.Cryptography.Primitives": "4.0.0",
  793. "System.Text.Encoding": "4.3.0"
  794. }
  795. },
  796. "System.Security.Cryptography.Csp/4.0.0": {
  797. "dependencies": {
  798. "Microsoft.NETCore.Platforms": "3.1.0",
  799. "System.IO": "4.3.0",
  800. "System.Reflection": "4.3.0",
  801. "System.Resources.ResourceManager": "4.0.1",
  802. "System.Runtime": "4.3.0",
  803. "System.Runtime.Extensions": "4.1.0",
  804. "System.Runtime.Handles": "4.0.1",
  805. "System.Runtime.InteropServices": "4.1.0",
  806. "System.Security.Cryptography.Algorithms": "4.2.0",
  807. "System.Security.Cryptography.Encoding": "4.0.0",
  808. "System.Security.Cryptography.Primitives": "4.0.0",
  809. "System.Text.Encoding": "4.3.0",
  810. "System.Threading": "4.0.11"
  811. }
  812. },
  813. "System.Security.Cryptography.Encoding/4.0.0": {
  814. "dependencies": {
  815. "Microsoft.NETCore.Platforms": "3.1.0",
  816. "System.Collections": "4.0.11",
  817. "System.Collections.Concurrent": "4.0.12",
  818. "System.Linq": "4.1.0",
  819. "System.Resources.ResourceManager": "4.0.1",
  820. "System.Runtime": "4.3.0",
  821. "System.Runtime.Extensions": "4.1.0",
  822. "System.Runtime.Handles": "4.0.1",
  823. "System.Runtime.InteropServices": "4.1.0",
  824. "System.Security.Cryptography.Primitives": "4.0.0",
  825. "System.Text.Encoding": "4.3.0",
  826. "runtime.native.System.Security.Cryptography": "4.0.0"
  827. }
  828. },
  829. "System.Security.Cryptography.OpenSsl/4.0.0": {
  830. "dependencies": {
  831. "System.Collections": "4.0.11",
  832. "System.IO": "4.3.0",
  833. "System.Resources.ResourceManager": "4.0.1",
  834. "System.Runtime": "4.3.0",
  835. "System.Runtime.Extensions": "4.1.0",
  836. "System.Runtime.Handles": "4.0.1",
  837. "System.Runtime.InteropServices": "4.1.0",
  838. "System.Runtime.Numerics": "4.0.1",
  839. "System.Security.Cryptography.Algorithms": "4.2.0",
  840. "System.Security.Cryptography.Encoding": "4.0.0",
  841. "System.Security.Cryptography.Primitives": "4.0.0",
  842. "System.Text.Encoding": "4.3.0",
  843. "runtime.native.System.Security.Cryptography": "4.0.0"
  844. }
  845. },
  846. "System.Security.Cryptography.Primitives/4.0.0": {
  847. "dependencies": {
  848. "System.Diagnostics.Debug": "4.0.11",
  849. "System.Globalization": "4.0.11",
  850. "System.IO": "4.3.0",
  851. "System.Resources.ResourceManager": "4.0.1",
  852. "System.Runtime": "4.3.0",
  853. "System.Threading": "4.0.11",
  854. "System.Threading.Tasks": "4.3.0"
  855. }
  856. },
  857. "System.Security.Cryptography.ProtectedData/4.5.0": {
  858. "runtime": {
  859. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  860. "assemblyVersion": "4.0.3.0",
  861. "fileVersion": "4.6.26515.6"
  862. }
  863. },
  864. "runtimeTargets": {
  865. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  866. "rid": "win",
  867. "assetType": "runtime",
  868. "assemblyVersion": "4.0.3.0",
  869. "fileVersion": "4.6.26515.6"
  870. }
  871. }
  872. },
  873. "System.Security.Cryptography.X509Certificates/4.1.0": {
  874. "dependencies": {
  875. "Microsoft.NETCore.Platforms": "3.1.0",
  876. "System.Collections": "4.0.11",
  877. "System.Diagnostics.Debug": "4.0.11",
  878. "System.Globalization": "4.0.11",
  879. "System.Globalization.Calendars": "4.0.1",
  880. "System.IO": "4.3.0",
  881. "System.IO.FileSystem": "4.0.1",
  882. "System.IO.FileSystem.Primitives": "4.0.1",
  883. "System.Resources.ResourceManager": "4.0.1",
  884. "System.Runtime": "4.3.0",
  885. "System.Runtime.Extensions": "4.1.0",
  886. "System.Runtime.Handles": "4.0.1",
  887. "System.Runtime.InteropServices": "4.1.0",
  888. "System.Runtime.Numerics": "4.0.1",
  889. "System.Security.Cryptography.Algorithms": "4.2.0",
  890. "System.Security.Cryptography.Cng": "4.2.0",
  891. "System.Security.Cryptography.Csp": "4.0.0",
  892. "System.Security.Cryptography.Encoding": "4.0.0",
  893. "System.Security.Cryptography.OpenSsl": "4.0.0",
  894. "System.Security.Cryptography.Primitives": "4.0.0",
  895. "System.Text.Encoding": "4.3.0",
  896. "System.Threading": "4.0.11",
  897. "runtime.native.System": "4.0.0",
  898. "runtime.native.System.Net.Http": "4.0.1",
  899. "runtime.native.System.Security.Cryptography": "4.0.0"
  900. }
  901. },
  902. "System.Security.Permissions/4.7.0": {
  903. "dependencies": {
  904. "System.Security.AccessControl": "4.7.0",
  905. "System.Windows.Extensions": "4.7.0"
  906. },
  907. "runtime": {
  908. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  909. "assemblyVersion": "4.0.3.0",
  910. "fileVersion": "4.700.19.56404"
  911. }
  912. }
  913. },
  914. "System.Security.Principal.Windows/4.7.0": {},
  915. "System.Text.Encoding/4.3.0": {
  916. "dependencies": {
  917. "Microsoft.NETCore.Platforms": "3.1.0",
  918. "Microsoft.NETCore.Targets": "1.1.0",
  919. "System.Runtime": "4.3.0"
  920. }
  921. },
  922. "System.Text.Encoding.CodePages/4.4.0": {
  923. "dependencies": {
  924. "Microsoft.NETCore.Platforms": "3.1.0"
  925. }
  926. },
  927. "System.Text.Encoding.Extensions/4.0.11": {
  928. "dependencies": {
  929. "Microsoft.NETCore.Platforms": "3.1.0",
  930. "Microsoft.NETCore.Targets": "1.1.0",
  931. "System.Runtime": "4.3.0",
  932. "System.Text.Encoding": "4.3.0"
  933. }
  934. },
  935. "System.Text.Encodings.Web/7.0.0": {},
  936. "System.Text.Json/7.0.1": {
  937. "dependencies": {
  938. "System.Text.Encodings.Web": "7.0.0"
  939. }
  940. },
  941. "System.Text.RegularExpressions/4.1.0": {
  942. "dependencies": {
  943. "System.Collections": "4.0.11",
  944. "System.Globalization": "4.0.11",
  945. "System.Resources.ResourceManager": "4.0.1",
  946. "System.Runtime": "4.3.0",
  947. "System.Runtime.Extensions": "4.1.0",
  948. "System.Threading": "4.0.11"
  949. }
  950. },
  951. "System.Threading/4.0.11": {
  952. "dependencies": {
  953. "System.Runtime": "4.3.0",
  954. "System.Threading.Tasks": "4.3.0"
  955. }
  956. },
  957. "System.Threading.Tasks/4.3.0": {
  958. "dependencies": {
  959. "Microsoft.NETCore.Platforms": "3.1.0",
  960. "Microsoft.NETCore.Targets": "1.1.0",
  961. "System.Runtime": "4.3.0"
  962. }
  963. },
  964. "System.Threading.Tasks.Extensions/4.5.4": {},
  965. "System.Threading.Timer/4.0.1": {
  966. "dependencies": {
  967. "Microsoft.NETCore.Platforms": "3.1.0",
  968. "Microsoft.NETCore.Targets": "1.1.0",
  969. "System.Runtime": "4.3.0"
  970. }
  971. },
  972. "System.Windows.Extensions/4.7.0": {
  973. "dependencies": {
  974. "System.Drawing.Common": "4.7.0"
  975. },
  976. "runtime": {
  977. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  978. "assemblyVersion": "4.0.1.0",
  979. "fileVersion": "4.700.19.56404"
  980. }
  981. },
  982. "runtimeTargets": {
  983. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  984. "rid": "win",
  985. "assetType": "runtime",
  986. "assemblyVersion": "4.0.1.0",
  987. "fileVersion": "4.700.19.56404"
  988. }
  989. }
  990. },
  991. "System.Xml.ReaderWriter/4.0.11": {
  992. "dependencies": {
  993. "System.Collections": "4.0.11",
  994. "System.Diagnostics.Debug": "4.0.11",
  995. "System.Globalization": "4.0.11",
  996. "System.IO": "4.3.0",
  997. "System.IO.FileSystem": "4.0.1",
  998. "System.IO.FileSystem.Primitives": "4.0.1",
  999. "System.Resources.ResourceManager": "4.0.1",
  1000. "System.Runtime": "4.3.0",
  1001. "System.Runtime.Extensions": "4.1.0",
  1002. "System.Runtime.InteropServices": "4.1.0",
  1003. "System.Text.Encoding": "4.3.0",
  1004. "System.Text.Encoding.Extensions": "4.0.11",
  1005. "System.Text.RegularExpressions": "4.1.0",
  1006. "System.Threading.Tasks": "4.3.0",
  1007. "System.Threading.Tasks.Extensions": "4.5.4"
  1008. }
  1009. },
  1010. "System.Xml.XDocument/4.0.11": {
  1011. "dependencies": {
  1012. "System.Collections": "4.0.11",
  1013. "System.Diagnostics.Debug": "4.0.11",
  1014. "System.Diagnostics.Tools": "4.0.1",
  1015. "System.Globalization": "4.0.11",
  1016. "System.IO": "4.3.0",
  1017. "System.Reflection": "4.3.0",
  1018. "System.Resources.ResourceManager": "4.0.1",
  1019. "System.Runtime": "4.3.0",
  1020. "System.Runtime.Extensions": "4.1.0",
  1021. "System.Text.Encoding": "4.3.0",
  1022. "System.Threading": "4.0.11",
  1023. "System.Xml.ReaderWriter": "4.0.11"
  1024. }
  1025. },
  1026. "UniTask/2.5.0": {
  1027. "dependencies": {
  1028. "System.Threading.Tasks.Extensions": "4.5.4"
  1029. },
  1030. "runtime": {
  1031. "lib/net7.0/UniTask.dll": {
  1032. "assemblyVersion": "2.5.0.0",
  1033. "fileVersion": "2.5.0.0"
  1034. }
  1035. }
  1036. },
  1037. "ZstdSharp.Port/0.7.1": {
  1038. "runtime": {
  1039. "lib/net7.0/ZstdSharp.dll": {
  1040. "assemblyVersion": "0.7.1.0",
  1041. "fileVersion": "0.7.1.0"
  1042. }
  1043. }
  1044. },
  1045. "KYFramework/1.0.0": {
  1046. "dependencies": {
  1047. "GeoCoordinate": "2.0.1",
  1048. "MathNet.Numerics": "5.0.0",
  1049. "MongoDB.Bson": "2.0.0",
  1050. "NLog": "5.1.3",
  1051. "Newtonsoft.Json": "13.0.3",
  1052. "ThirdParty": "1.0.0",
  1053. "UniTask": "2.5.0"
  1054. },
  1055. "runtime": {
  1056. "KYFramework.dll": {}
  1057. }
  1058. },
  1059. "KYNetwork/1.0.0": {
  1060. "dependencies": {
  1061. "GeoCoordinate": "2.0.1",
  1062. "KYFramework": "1.0.0",
  1063. "MathNet.Numerics": "5.0.0",
  1064. "UniTask": "2.5.0"
  1065. },
  1066. "runtime": {
  1067. "KYNetwork.dll": {}
  1068. }
  1069. },
  1070. "SimulationCommon/1.0.0": {
  1071. "dependencies": {
  1072. "GeoCoordinate": "2.0.1",
  1073. "MathNet.Numerics": "5.0.0",
  1074. "Newtonsoft.Json": "13.0.3",
  1075. "OpenCvSharp4": "4.10.0.20240616",
  1076. "OpenCvSharp4.runtime.win": "4.10.0.20240616",
  1077. "OpenQA.Selenium.Chrome.ChromeDriverExtensions": "1.2.0"
  1078. },
  1079. "runtime": {
  1080. "SimulationCommon.dll": {}
  1081. }
  1082. },
  1083. "ThirdParty/1.0.0": {
  1084. "dependencies": {
  1085. "GeoCoordinate": "2.0.1",
  1086. "MathNet.Numerics": "5.0.0",
  1087. "MySql.Data": "8.1.0",
  1088. "UniTask": "2.5.0"
  1089. },
  1090. "runtime": {
  1091. "ThirdParty.dll": {}
  1092. }
  1093. },
  1094. "BHJD.DEMdll/1.0.0.0": {
  1095. "runtime": {
  1096. "BHJD.DEMdll.dll": {
  1097. "assemblyVersion": "1.0.0.0",
  1098. "fileVersion": "1.0.0.0"
  1099. }
  1100. }
  1101. },
  1102. "Unity.Mathematics/1.0.0.0": {
  1103. "runtime": {
  1104. "Unity.Mathematics.dll": {
  1105. "assemblyVersion": "1.0.0.0",
  1106. "fileVersion": "1.0.0.0"
  1107. }
  1108. }
  1109. },
  1110. "Npgsql/4.0.10.0": {
  1111. "runtime": {
  1112. "Npgsql.dll": {
  1113. "assemblyVersion": "4.0.10.0",
  1114. "fileVersion": "4.0.10.0"
  1115. }
  1116. }
  1117. }
  1118. }
  1119. },
  1120. "libraries": {
  1121. "SimulationServer/1.0.0": {
  1122. "type": "project",
  1123. "serviceable": false,
  1124. "sha512": ""
  1125. },
  1126. "GeoCoordinate/2.0.1": {
  1127. "type": "package",
  1128. "serviceable": true,
  1129. "sha512": "sha512-Am5GANF7uS3vlYBHExLtouH/Yrsc+6182nTdxXfnYCCVF/mO6TRO5QQhJVWXd5PjVdNnb6rHbkHiDR9verwnig==",
  1130. "path": "geocoordinate/2.0.1",
  1131. "hashPath": "geocoordinate.2.0.1.nupkg.sha512"
  1132. },
  1133. "Google.Protobuf/3.21.9": {
  1134. "type": "package",
  1135. "serviceable": true,
  1136. "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
  1137. "path": "google.protobuf/3.21.9",
  1138. "hashPath": "google.protobuf.3.21.9.nupkg.sha512"
  1139. },
  1140. "K4os.Compression.LZ4/1.3.5": {
  1141. "type": "package",
  1142. "serviceable": true,
  1143. "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==",
  1144. "path": "k4os.compression.lz4/1.3.5",
  1145. "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512"
  1146. },
  1147. "K4os.Compression.LZ4.Streams/1.3.5": {
  1148. "type": "package",
  1149. "serviceable": true,
  1150. "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==",
  1151. "path": "k4os.compression.lz4.streams/1.3.5",
  1152. "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512"
  1153. },
  1154. "K4os.Hash.xxHash/1.0.8": {
  1155. "type": "package",
  1156. "serviceable": true,
  1157. "sha512": "sha512-Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
  1158. "path": "k4os.hash.xxhash/1.0.8",
  1159. "hashPath": "k4os.hash.xxhash.1.0.8.nupkg.sha512"
  1160. },
  1161. "MathNet.Numerics/5.0.0": {
  1162. "type": "package",
  1163. "serviceable": true,
  1164. "sha512": "sha512-pg1W2VwaEQMAiTpGK840hZgzavnqjlCMTVSbtVCXVyT+7AX4mc1o89SPv4TBlAjhgCOo9c1Y+jZ5m3ti2YgGgA==",
  1165. "path": "mathnet.numerics/5.0.0",
  1166. "hashPath": "mathnet.numerics.5.0.0.nupkg.sha512"
  1167. },
  1168. "Microsoft.CSharp/4.7.0": {
  1169. "type": "package",
  1170. "serviceable": true,
  1171. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1172. "path": "microsoft.csharp/4.7.0",
  1173. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  1174. },
  1175. "Microsoft.NETCore.Platforms/3.1.0": {
  1176. "type": "package",
  1177. "serviceable": true,
  1178. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  1179. "path": "microsoft.netcore.platforms/3.1.0",
  1180. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  1181. },
  1182. "Microsoft.NETCore.Targets/1.1.0": {
  1183. "type": "package",
  1184. "serviceable": true,
  1185. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1186. "path": "microsoft.netcore.targets/1.1.0",
  1187. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1188. },
  1189. "Microsoft.Win32.Primitives/4.0.1": {
  1190. "type": "package",
  1191. "serviceable": true,
  1192. "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  1193. "path": "microsoft.win32.primitives/4.0.1",
  1194. "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
  1195. },
  1196. "Microsoft.Win32.SystemEvents/4.7.0": {
  1197. "type": "package",
  1198. "serviceable": true,
  1199. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  1200. "path": "microsoft.win32.systemevents/4.7.0",
  1201. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  1202. },
  1203. "MongoDB.Bson/2.0.0": {
  1204. "type": "package",
  1205. "serviceable": true,
  1206. "sha512": "sha512-oij2O4yegOKc6zZByxhbuILQIqT0xbUv9DHAt7HdQTzvlOJ7WgKwsMsoQR6VO4qd8PntGvcC9o/sNAj3KdndKA==",
  1207. "path": "mongodb.bson/2.0.0",
  1208. "hashPath": "mongodb.bson.2.0.0.nupkg.sha512"
  1209. },
  1210. "MySql.Data/8.1.0": {
  1211. "type": "package",
  1212. "serviceable": true,
  1213. "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==",
  1214. "path": "mysql.data/8.1.0",
  1215. "hashPath": "mysql.data.8.1.0.nupkg.sha512"
  1216. },
  1217. "NETStandard.Library/1.6.0": {
  1218. "type": "package",
  1219. "serviceable": true,
  1220. "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  1221. "path": "netstandard.library/1.6.0",
  1222. "hashPath": "netstandard.library.1.6.0.nupkg.sha512"
  1223. },
  1224. "Newtonsoft.Json/13.0.3": {
  1225. "type": "package",
  1226. "serviceable": true,
  1227. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1228. "path": "newtonsoft.json/13.0.3",
  1229. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1230. },
  1231. "NLog/5.1.3": {
  1232. "type": "package",
  1233. "serviceable": true,
  1234. "sha512": "sha512-rB8hwjBf1EZCfG5iPfsv3gPksLoJLr1cOrt7PBbJu6VpJgwYJchDzTUT1dhNDdPv0QakXJQJOhE59ErupcznQQ==",
  1235. "path": "nlog/5.1.3",
  1236. "hashPath": "nlog.5.1.3.nupkg.sha512"
  1237. },
  1238. "NPOI/2.5.5": {
  1239. "type": "package",
  1240. "serviceable": true,
  1241. "sha512": "sha512-xTCJOXdcBWV9GUAVRJTC73L5bU3Ahgtuk13U/rOix8Gi05XWf9E4K+vGx63JZt35WoroXq+hM0RZ+aad2y8Ceg==",
  1242. "path": "npoi/2.5.5",
  1243. "hashPath": "npoi.2.5.5.nupkg.sha512"
  1244. },
  1245. "NPOI.Excel/2.1.1": {
  1246. "type": "package",
  1247. "serviceable": true,
  1248. "sha512": "sha512-y4ZReDg95dyAcMruT9itlS7iIgUSBuoax3OzUiPUgWzQpVMb0s97PFfHknUDSBusWcD5RBdgMx+9zIidau45+Q==",
  1249. "path": "npoi.excel/2.1.1",
  1250. "hashPath": "npoi.excel.2.1.1.nupkg.sha512"
  1251. },
  1252. "NPOIHelper/2.0.13": {
  1253. "type": "package",
  1254. "serviceable": true,
  1255. "sha512": "sha512-xFL9HcM5aF4vtp1IuWduN1DBVYz4UbuAl1PkH5amPiSSffE01Z+/Xp2VUGS1hYq561nKil13Njj27reCVHgK4Q==",
  1256. "path": "npoihelper/2.0.13",
  1257. "hashPath": "npoihelper.2.0.13.nupkg.sha512"
  1258. },
  1259. "OpenCvSharp4/4.10.0.20240616": {
  1260. "type": "package",
  1261. "serviceable": true,
  1262. "sha512": "sha512-+iaFSUq0Cp+B9s1sUqDwB3PvQ5HdWWvRE50WsAw1PL8smD3VZNbe0P786E4Yfu7LHM7jeqkulOwjk2CoihsZeg==",
  1263. "path": "opencvsharp4/4.10.0.20240616",
  1264. "hashPath": "opencvsharp4.4.10.0.20240616.nupkg.sha512"
  1265. },
  1266. "OpenCvSharp4.runtime.win/4.10.0.20240616": {
  1267. "type": "package",
  1268. "serviceable": true,
  1269. "sha512": "sha512-dpQNIR6PpeB/oZM0e0fZpt9lOS3Htjm6ZjtOgLyxN7QwjRekbNevrmO8VbgezUoetk68CRwxYZGaymCm2vt8Sg==",
  1270. "path": "opencvsharp4.runtime.win/4.10.0.20240616",
  1271. "hashPath": "opencvsharp4.runtime.win.4.10.0.20240616.nupkg.sha512"
  1272. },
  1273. "OpenQA.Selenium.Chrome.ChromeDriverExtensions/1.2.0": {
  1274. "type": "package",
  1275. "serviceable": true,
  1276. "sha512": "sha512-z5/MAdjFlHcECXN4sxS356Hul5iJD1vHznAwINo9YR3j+PXVU2PjgmkLEB6zvRLxzouL8qfNBioSWkxfvlsbMg==",
  1277. "path": "openqa.selenium.chrome.chromedriverextensions/1.2.0",
  1278. "hashPath": "openqa.selenium.chrome.chromedriverextensions.1.2.0.nupkg.sha512"
  1279. },
  1280. "Portable.BouncyCastle/1.9.0": {
  1281. "type": "package",
  1282. "serviceable": true,
  1283. "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  1284. "path": "portable.bouncycastle/1.9.0",
  1285. "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512"
  1286. },
  1287. "runtime.native.System/4.0.0": {
  1288. "type": "package",
  1289. "serviceable": true,
  1290. "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  1291. "path": "runtime.native.system/4.0.0",
  1292. "hashPath": "runtime.native.system.4.0.0.nupkg.sha512"
  1293. },
  1294. "runtime.native.System.IO.Compression/4.1.0": {
  1295. "type": "package",
  1296. "serviceable": true,
  1297. "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  1298. "path": "runtime.native.system.io.compression/4.1.0",
  1299. "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512"
  1300. },
  1301. "runtime.native.System.Net.Http/4.0.1": {
  1302. "type": "package",
  1303. "serviceable": true,
  1304. "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  1305. "path": "runtime.native.system.net.http/4.0.1",
  1306. "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512"
  1307. },
  1308. "runtime.native.System.Security.Cryptography/4.0.0": {
  1309. "type": "package",
  1310. "serviceable": true,
  1311. "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  1312. "path": "runtime.native.system.security.cryptography/4.0.0",
  1313. "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
  1314. },
  1315. "Selenium.WebDriver/3.141.0": {
  1316. "type": "package",
  1317. "serviceable": true,
  1318. "sha512": "sha512-wPqzXO3f79DzqauTZSzLMKiaBCN0Z2Mv7KvWP+hnV6EL88zh/pJJnFtdIR1X5wa3hsTOpF/bBJs45rz7kArsiA==",
  1319. "path": "selenium.webdriver/3.141.0",
  1320. "hashPath": "selenium.webdriver.3.141.0.nupkg.sha512"
  1321. },
  1322. "SharpZipLib/1.3.2": {
  1323. "type": "package",
  1324. "serviceable": true,
  1325. "sha512": "sha512-WSdeDReL8eugMCw5BH/tFAZpgR+YsYMwm6kIvqg3J8LbfRjbbebmEzn63AbEveqyMOljBO68g6tCCv165wMkSg==",
  1326. "path": "sharpziplib/1.3.2",
  1327. "hashPath": "sharpziplib.1.3.2.nupkg.sha512"
  1328. },
  1329. "System.AppContext/4.1.0": {
  1330. "type": "package",
  1331. "serviceable": true,
  1332. "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  1333. "path": "system.appcontext/4.1.0",
  1334. "hashPath": "system.appcontext.4.1.0.nupkg.sha512"
  1335. },
  1336. "System.Buffers/4.5.1": {
  1337. "type": "package",
  1338. "serviceable": true,
  1339. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1340. "path": "system.buffers/4.5.1",
  1341. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1342. },
  1343. "System.Collections/4.0.11": {
  1344. "type": "package",
  1345. "serviceable": true,
  1346. "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  1347. "path": "system.collections/4.0.11",
  1348. "hashPath": "system.collections.4.0.11.nupkg.sha512"
  1349. },
  1350. "System.Collections.Concurrent/4.0.12": {
  1351. "type": "package",
  1352. "serviceable": true,
  1353. "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  1354. "path": "system.collections.concurrent/4.0.12",
  1355. "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
  1356. },
  1357. "System.Configuration.ConfigurationManager/4.5.0": {
  1358. "type": "package",
  1359. "serviceable": true,
  1360. "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  1361. "path": "system.configuration.configurationmanager/4.5.0",
  1362. "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
  1363. },
  1364. "System.Console/4.0.0": {
  1365. "type": "package",
  1366. "serviceable": true,
  1367. "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  1368. "path": "system.console/4.0.0",
  1369. "hashPath": "system.console.4.0.0.nupkg.sha512"
  1370. },
  1371. "System.Diagnostics.Debug/4.0.11": {
  1372. "type": "package",
  1373. "serviceable": true,
  1374. "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  1375. "path": "system.diagnostics.debug/4.0.11",
  1376. "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
  1377. },
  1378. "System.Diagnostics.DiagnosticSource/7.0.2": {
  1379. "type": "package",
  1380. "serviceable": true,
  1381. "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  1382. "path": "system.diagnostics.diagnosticsource/7.0.2",
  1383. "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512"
  1384. },
  1385. "System.Diagnostics.Tools/4.0.1": {
  1386. "type": "package",
  1387. "serviceable": true,
  1388. "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  1389. "path": "system.diagnostics.tools/4.0.1",
  1390. "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512"
  1391. },
  1392. "System.Diagnostics.Tracing/4.1.0": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  1396. "path": "system.diagnostics.tracing/4.1.0",
  1397. "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
  1398. },
  1399. "System.Drawing.Common/4.7.0": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  1403. "path": "system.drawing.common/4.7.0",
  1404. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  1405. },
  1406. "System.Globalization/4.0.11": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  1410. "path": "system.globalization/4.0.11",
  1411. "hashPath": "system.globalization.4.0.11.nupkg.sha512"
  1412. },
  1413. "System.Globalization.Calendars/4.0.1": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  1417. "path": "system.globalization.calendars/4.0.1",
  1418. "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512"
  1419. },
  1420. "System.Globalization.Extensions/4.0.1": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  1424. "path": "system.globalization.extensions/4.0.1",
  1425. "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512"
  1426. },
  1427. "System.IO/4.3.0": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1431. "path": "system.io/4.3.0",
  1432. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1433. },
  1434. "System.IO.Compression/4.1.0": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  1438. "path": "system.io.compression/4.1.0",
  1439. "hashPath": "system.io.compression.4.1.0.nupkg.sha512"
  1440. },
  1441. "System.IO.Compression.ZipFile/4.0.1": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  1445. "path": "system.io.compression.zipfile/4.0.1",
  1446. "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512"
  1447. },
  1448. "System.IO.FileSystem/4.0.1": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  1452. "path": "system.io.filesystem/4.0.1",
  1453. "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
  1454. },
  1455. "System.IO.FileSystem.Primitives/4.0.1": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  1459. "path": "system.io.filesystem.primitives/4.0.1",
  1460. "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
  1461. },
  1462. "System.IO.Pipelines/6.0.3": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  1466. "path": "system.io.pipelines/6.0.3",
  1467. "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
  1468. },
  1469. "System.Linq/4.1.0": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  1473. "path": "system.linq/4.1.0",
  1474. "hashPath": "system.linq.4.1.0.nupkg.sha512"
  1475. },
  1476. "System.Linq.Expressions/4.1.0": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  1480. "path": "system.linq.expressions/4.1.0",
  1481. "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512"
  1482. },
  1483. "System.Memory/4.5.5": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  1487. "path": "system.memory/4.5.5",
  1488. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  1489. },
  1490. "System.Net.Http/4.1.0": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  1494. "path": "system.net.http/4.1.0",
  1495. "hashPath": "system.net.http.4.1.0.nupkg.sha512"
  1496. },
  1497. "System.Net.Primitives/4.0.11": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  1501. "path": "system.net.primitives/4.0.11",
  1502. "hashPath": "system.net.primitives.4.0.11.nupkg.sha512"
  1503. },
  1504. "System.Net.Sockets/4.1.0": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  1508. "path": "system.net.sockets/4.1.0",
  1509. "hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
  1510. },
  1511. "System.ObjectModel/4.0.12": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  1515. "path": "system.objectmodel/4.0.12",
  1516. "hashPath": "system.objectmodel.4.0.12.nupkg.sha512"
  1517. },
  1518. "System.Reflection/4.3.0": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1522. "path": "system.reflection/4.3.0",
  1523. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1524. },
  1525. "System.Reflection.Emit/4.0.1": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  1529. "path": "system.reflection.emit/4.0.1",
  1530. "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
  1531. },
  1532. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  1536. "path": "system.reflection.emit.ilgeneration/4.0.1",
  1537. "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
  1538. },
  1539. "System.Reflection.Emit.Lightweight/4.0.1": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  1543. "path": "system.reflection.emit.lightweight/4.0.1",
  1544. "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
  1545. },
  1546. "System.Reflection.Extensions/4.0.1": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  1550. "path": "system.reflection.extensions/4.0.1",
  1551. "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
  1552. },
  1553. "System.Reflection.Primitives/4.3.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1557. "path": "system.reflection.primitives/4.3.0",
  1558. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1559. },
  1560. "System.Reflection.TypeExtensions/4.1.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  1564. "path": "system.reflection.typeextensions/4.1.0",
  1565. "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
  1566. },
  1567. "System.Resources.ResourceManager/4.0.1": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  1571. "path": "system.resources.resourcemanager/4.0.1",
  1572. "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
  1573. },
  1574. "System.Runtime/4.3.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1578. "path": "system.runtime/4.3.0",
  1579. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1580. },
  1581. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1585. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1586. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  1587. },
  1588. "System.Runtime.Extensions/4.1.0": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  1592. "path": "system.runtime.extensions/4.1.0",
  1593. "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
  1594. },
  1595. "System.Runtime.Handles/4.0.1": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  1599. "path": "system.runtime.handles/4.0.1",
  1600. "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
  1601. },
  1602. "System.Runtime.InteropServices/4.1.0": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  1606. "path": "system.runtime.interopservices/4.1.0",
  1607. "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
  1608. },
  1609. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  1613. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  1614. "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
  1615. },
  1616. "System.Runtime.Loader/4.3.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  1620. "path": "system.runtime.loader/4.3.0",
  1621. "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
  1622. },
  1623. "System.Runtime.Numerics/4.0.1": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  1627. "path": "system.runtime.numerics/4.0.1",
  1628. "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
  1629. },
  1630. "System.Security.AccessControl/4.7.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  1634. "path": "system.security.accesscontrol/4.7.0",
  1635. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  1636. },
  1637. "System.Security.Cryptography.Algorithms/4.2.0": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  1641. "path": "system.security.cryptography.algorithms/4.2.0",
  1642. "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512"
  1643. },
  1644. "System.Security.Cryptography.Cng/4.2.0": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  1648. "path": "system.security.cryptography.cng/4.2.0",
  1649. "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512"
  1650. },
  1651. "System.Security.Cryptography.Csp/4.0.0": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  1655. "path": "system.security.cryptography.csp/4.0.0",
  1656. "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512"
  1657. },
  1658. "System.Security.Cryptography.Encoding/4.0.0": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  1662. "path": "system.security.cryptography.encoding/4.0.0",
  1663. "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512"
  1664. },
  1665. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  1669. "path": "system.security.cryptography.openssl/4.0.0",
  1670. "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512"
  1671. },
  1672. "System.Security.Cryptography.Primitives/4.0.0": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  1676. "path": "system.security.cryptography.primitives/4.0.0",
  1677. "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512"
  1678. },
  1679. "System.Security.Cryptography.ProtectedData/4.5.0": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  1683. "path": "system.security.cryptography.protecteddata/4.5.0",
  1684. "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
  1685. },
  1686. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  1690. "path": "system.security.cryptography.x509certificates/4.1.0",
  1691. "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
  1692. },
  1693. "System.Security.Permissions/4.7.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  1697. "path": "system.security.permissions/4.7.0",
  1698. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  1699. },
  1700. "System.Security.Principal.Windows/4.7.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  1704. "path": "system.security.principal.windows/4.7.0",
  1705. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  1706. },
  1707. "System.Text.Encoding/4.3.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1711. "path": "system.text.encoding/4.3.0",
  1712. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1713. },
  1714. "System.Text.Encoding.CodePages/4.4.0": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  1718. "path": "system.text.encoding.codepages/4.4.0",
  1719. "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
  1720. },
  1721. "System.Text.Encoding.Extensions/4.0.11": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  1725. "path": "system.text.encoding.extensions/4.0.11",
  1726. "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
  1727. },
  1728. "System.Text.Encodings.Web/7.0.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  1732. "path": "system.text.encodings.web/7.0.0",
  1733. "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
  1734. },
  1735. "System.Text.Json/7.0.1": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==",
  1739. "path": "system.text.json/7.0.1",
  1740. "hashPath": "system.text.json.7.0.1.nupkg.sha512"
  1741. },
  1742. "System.Text.RegularExpressions/4.1.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  1746. "path": "system.text.regularexpressions/4.1.0",
  1747. "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512"
  1748. },
  1749. "System.Threading/4.0.11": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  1753. "path": "system.threading/4.0.11",
  1754. "hashPath": "system.threading.4.0.11.nupkg.sha512"
  1755. },
  1756. "System.Threading.Tasks/4.3.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1760. "path": "system.threading.tasks/4.3.0",
  1761. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  1762. },
  1763. "System.Threading.Tasks.Extensions/4.5.4": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  1767. "path": "system.threading.tasks.extensions/4.5.4",
  1768. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  1769. },
  1770. "System.Threading.Timer/4.0.1": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  1774. "path": "system.threading.timer/4.0.1",
  1775. "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
  1776. },
  1777. "System.Windows.Extensions/4.7.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  1781. "path": "system.windows.extensions/4.7.0",
  1782. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  1783. },
  1784. "System.Xml.ReaderWriter/4.0.11": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  1788. "path": "system.xml.readerwriter/4.0.11",
  1789. "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512"
  1790. },
  1791. "System.Xml.XDocument/4.0.11": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  1795. "path": "system.xml.xdocument/4.0.11",
  1796. "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512"
  1797. },
  1798. "UniTask/2.5.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-dHo6NECX3+Aa3ayQFvTVTs0C5NnhPKVpJUZaOjOPlaEUvH1aDLWX2p8gHRzpl8d/nHwLg+yl2/hVB+TDSmuxIA==",
  1802. "path": "unitask/2.5.0",
  1803. "hashPath": "unitask.2.5.0.nupkg.sha512"
  1804. },
  1805. "ZstdSharp.Port/0.7.1": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-Idgg+mJEyAujqDPzA3APy9dNoyw0YQcNA65GgYjktDRtJ+nvx/hv+J+m6Eax3JJMGEYGy04oc5YNP6ZvQ3Y1vQ==",
  1809. "path": "zstdsharp.port/0.7.1",
  1810. "hashPath": "zstdsharp.port.0.7.1.nupkg.sha512"
  1811. },
  1812. "KYFramework/1.0.0": {
  1813. "type": "project",
  1814. "serviceable": false,
  1815. "sha512": ""
  1816. },
  1817. "KYNetwork/1.0.0": {
  1818. "type": "project",
  1819. "serviceable": false,
  1820. "sha512": ""
  1821. },
  1822. "SimulationCommon/1.0.0": {
  1823. "type": "project",
  1824. "serviceable": false,
  1825. "sha512": ""
  1826. },
  1827. "ThirdParty/1.0.0": {
  1828. "type": "project",
  1829. "serviceable": false,
  1830. "sha512": ""
  1831. },
  1832. "BHJD.DEMdll/1.0.0.0": {
  1833. "type": "reference",
  1834. "serviceable": false,
  1835. "sha512": ""
  1836. },
  1837. "Unity.Mathematics/1.0.0.0": {
  1838. "type": "reference",
  1839. "serviceable": false,
  1840. "sha512": ""
  1841. },
  1842. "Npgsql/4.0.10.0": {
  1843. "type": "reference",
  1844. "serviceable": false,
  1845. "sha512": ""
  1846. }
  1847. }
  1848. }