App.deps.json 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v7.0/win-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v7.0": {},
  9. ".NETCoreApp,Version=v7.0/win-x64": {
  10. "App/1.0.0": {
  11. "dependencies": {
  12. "Loader": "1.0.0",
  13. "Model": "1.0.0",
  14. "Core.Reference": "1.0.0.0",
  15. "Ice": "3.6.4.0",
  16. "Loader.Reference": "1.0.0.0",
  17. "Model.Reference": "1.0.0.0",
  18. "ThirdParty.Reference": "1.0.0.0"
  19. },
  20. "runtime": {
  21. "App.dll": {}
  22. }
  23. },
  24. "AWSSDK.Core/3.7.100.14": {
  25. "runtime": {
  26. "lib/netcoreapp3.1/AWSSDK.Core.dll": {
  27. "assemblyVersion": "3.3.0.0",
  28. "fileVersion": "3.7.100.14"
  29. }
  30. }
  31. },
  32. "AWSSDK.SecurityToken/3.7.100.14": {
  33. "dependencies": {
  34. "AWSSDK.Core": "3.7.100.14"
  35. },
  36. "runtime": {
  37. "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": {
  38. "assemblyVersion": "3.3.0.0",
  39. "fileVersion": "3.7.100.14"
  40. }
  41. }
  42. },
  43. "CommandLineParser/2.9.1": {
  44. "runtime": {
  45. "lib/netstandard2.0/CommandLine.dll": {
  46. "assemblyVersion": "2.9.1.0",
  47. "fileVersion": "2.9.1.0"
  48. }
  49. }
  50. },
  51. "DnsClient/1.6.1": {
  52. "dependencies": {
  53. "Microsoft.Win32.Registry": "5.0.0"
  54. },
  55. "runtime": {
  56. "lib/net5.0/DnsClient.dll": {
  57. "assemblyVersion": "1.6.1.0",
  58. "fileVersion": "1.6.1.0"
  59. }
  60. }
  61. },
  62. "EPPlus/7.0.3": {
  63. "dependencies": {
  64. "EPPlus.Interfaces": "6.1.1",
  65. "EPPlus.System.Drawing": "6.1.1",
  66. "Microsoft.Extensions.Configuration.Json": "7.0.0",
  67. "Microsoft.IO.RecyclableMemoryStream": "2.3.2",
  68. "System.ComponentModel.Annotations": "5.0.0",
  69. "System.Security.Cryptography.Pkcs": "7.0.3",
  70. "System.Text.Encoding.CodePages": "7.0.0"
  71. },
  72. "runtime": {
  73. "lib/net7.0/EPPlus.dll": {
  74. "assemblyVersion": "7.0.3.0",
  75. "fileVersion": "7.0.3.0"
  76. }
  77. }
  78. },
  79. "EPPlus.Interfaces/6.1.1": {
  80. "runtime": {
  81. "lib/net7.0/EPPlus.Interfaces.dll": {
  82. "assemblyVersion": "6.1.1.0",
  83. "fileVersion": "6.1.1.0"
  84. }
  85. }
  86. },
  87. "EPPlus.System.Drawing/6.1.1": {
  88. "dependencies": {
  89. "EPPlus.Interfaces": "6.1.1",
  90. "System.Drawing.Common": "7.0.0"
  91. },
  92. "runtime": {
  93. "lib/net7.0/EPPlus.System.Drawing.dll": {
  94. "assemblyVersion": "6.1.1.0",
  95. "fileVersion": "6.1.1.0"
  96. }
  97. }
  98. },
  99. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {},
  100. "Microsoft.CodeAnalysis.Common/4.0.1": {
  101. "dependencies": {
  102. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  103. "System.Collections.Immutable": "7.0.0",
  104. "System.Memory": "4.5.5",
  105. "System.Reflection.Metadata": "5.0.0",
  106. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  107. "System.Text.Encoding.CodePages": "7.0.0",
  108. "System.Threading.Tasks.Extensions": "4.5.4"
  109. },
  110. "runtime": {
  111. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  112. "assemblyVersion": "4.0.0.0",
  113. "fileVersion": "4.0.121.55815"
  114. }
  115. }
  116. },
  117. "Microsoft.CodeAnalysis.CSharp/4.0.1": {
  118. "dependencies": {
  119. "Microsoft.CodeAnalysis.Common": "4.0.1"
  120. },
  121. "runtime": {
  122. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  123. "assemblyVersion": "4.0.0.0",
  124. "fileVersion": "4.0.121.55815"
  125. }
  126. }
  127. },
  128. "Microsoft.Extensions.Configuration/7.0.0": {
  129. "dependencies": {
  130. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  131. "Microsoft.Extensions.Primitives": "7.0.0"
  132. },
  133. "runtime": {
  134. "lib/net7.0/Microsoft.Extensions.Configuration.dll": {
  135. "assemblyVersion": "7.0.0.0",
  136. "fileVersion": "7.0.22.51805"
  137. }
  138. }
  139. },
  140. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  141. "dependencies": {
  142. "Microsoft.Extensions.Primitives": "7.0.0"
  143. },
  144. "runtime": {
  145. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  146. "assemblyVersion": "7.0.0.0",
  147. "fileVersion": "7.0.22.51805"
  148. }
  149. }
  150. },
  151. "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
  152. "dependencies": {
  153. "Microsoft.Extensions.Configuration": "7.0.0",
  154. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  155. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  156. "Microsoft.Extensions.FileProviders.Physical": "7.0.0",
  157. "Microsoft.Extensions.Primitives": "7.0.0"
  158. },
  159. "runtime": {
  160. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  161. "assemblyVersion": "7.0.0.0",
  162. "fileVersion": "7.0.22.51805"
  163. }
  164. }
  165. },
  166. "Microsoft.Extensions.Configuration.Json/7.0.0": {
  167. "dependencies": {
  168. "Microsoft.Extensions.Configuration": "7.0.0",
  169. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  170. "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0",
  171. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  172. "System.Text.Json": "7.0.0"
  173. },
  174. "runtime": {
  175. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": {
  176. "assemblyVersion": "7.0.0.0",
  177. "fileVersion": "7.0.22.51805"
  178. }
  179. }
  180. },
  181. "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
  182. "dependencies": {
  183. "Microsoft.Extensions.Primitives": "7.0.0"
  184. },
  185. "runtime": {
  186. "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  187. "assemblyVersion": "7.0.0.0",
  188. "fileVersion": "7.0.22.51805"
  189. }
  190. }
  191. },
  192. "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
  193. "dependencies": {
  194. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  195. "Microsoft.Extensions.FileSystemGlobbing": "7.0.0",
  196. "Microsoft.Extensions.Primitives": "7.0.0"
  197. },
  198. "runtime": {
  199. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  200. "assemblyVersion": "7.0.0.0",
  201. "fileVersion": "7.0.22.51805"
  202. }
  203. }
  204. },
  205. "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
  206. "runtime": {
  207. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  208. "assemblyVersion": "7.0.0.0",
  209. "fileVersion": "7.0.22.51805"
  210. }
  211. }
  212. },
  213. "Microsoft.Extensions.Logging.Abstractions/2.0.0": {
  214. "runtime": {
  215. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  216. "assemblyVersion": "2.0.0.0",
  217. "fileVersion": "2.0.0.17205"
  218. }
  219. }
  220. },
  221. "Microsoft.Extensions.Primitives/7.0.0": {
  222. "runtime": {
  223. "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
  224. "assemblyVersion": "7.0.0.0",
  225. "fileVersion": "7.0.22.51805"
  226. }
  227. }
  228. },
  229. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  230. "runtime": {
  231. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  232. "assemblyVersion": "2.3.2.0",
  233. "fileVersion": "2.3.2.0"
  234. }
  235. }
  236. },
  237. "Microsoft.NETCore.Platforms/5.0.0": {},
  238. "Microsoft.NETCore.Targets/1.1.0": {},
  239. "Microsoft.Win32.Primitives/4.3.0": {
  240. "dependencies": {
  241. "Microsoft.NETCore.Platforms": "5.0.0",
  242. "Microsoft.NETCore.Targets": "1.1.0",
  243. "System.Runtime": "4.3.0",
  244. "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
  245. }
  246. },
  247. "Microsoft.Win32.Registry/5.0.0": {
  248. "dependencies": {
  249. "System.Security.AccessControl": "5.0.0",
  250. "System.Security.Principal.Windows": "5.0.0"
  251. }
  252. },
  253. "Microsoft.Win32.SystemEvents/7.0.0": {
  254. "runtime": {
  255. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  256. "assemblyVersion": "7.0.0.0",
  257. "fileVersion": "7.0.22.51805"
  258. }
  259. }
  260. },
  261. "MongoDB.Bson/2.22.0": {
  262. "dependencies": {
  263. "System.Memory": "4.5.5",
  264. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  265. },
  266. "runtime": {
  267. "lib/netstandard2.1/MongoDB.Bson.dll": {
  268. "assemblyVersion": "2.22.0.0",
  269. "fileVersion": "2.22.0.0"
  270. }
  271. }
  272. },
  273. "MongoDB.Driver/2.22.0": {
  274. "dependencies": {
  275. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  276. "MongoDB.Bson": "2.22.0",
  277. "MongoDB.Driver.Core": "2.22.0",
  278. "MongoDB.Libmongocrypt": "1.8.0"
  279. },
  280. "runtime": {
  281. "lib/netstandard2.1/MongoDB.Driver.dll": {
  282. "assemblyVersion": "2.22.0.0",
  283. "fileVersion": "2.22.0.0"
  284. }
  285. }
  286. },
  287. "MongoDB.Driver.Core/2.22.0": {
  288. "dependencies": {
  289. "AWSSDK.SecurityToken": "3.7.100.14",
  290. "DnsClient": "1.6.1",
  291. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  292. "MongoDB.Bson": "2.22.0",
  293. "MongoDB.Libmongocrypt": "1.8.0",
  294. "SharpCompress": "0.30.1",
  295. "Snappier": "1.0.0",
  296. "System.Buffers": "4.5.1",
  297. "ZstdSharp.Port": "0.6.2"
  298. },
  299. "runtime": {
  300. "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
  301. "assemblyVersion": "2.22.0.0",
  302. "fileVersion": "2.22.0.0"
  303. }
  304. }
  305. },
  306. "MongoDB.Libmongocrypt/1.8.0": {
  307. "runtime": {
  308. "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
  309. "assemblyVersion": "1.8.0.0",
  310. "fileVersion": "1.8.0.0"
  311. }
  312. },
  313. "native": {
  314. "runtimes/win/native/mongocrypt.dll": {
  315. "fileVersion": "0.0.0.0"
  316. }
  317. }
  318. },
  319. "Newtonsoft.Json/13.0.3": {
  320. "runtime": {
  321. "lib/net6.0/Newtonsoft.Json.dll": {
  322. "assemblyVersion": "13.0.0.0",
  323. "fileVersion": "13.0.3.27908"
  324. }
  325. }
  326. },
  327. "NLog/5.2.7": {
  328. "runtime": {
  329. "lib/netstandard2.0/NLog.dll": {
  330. "assemblyVersion": "5.0.0.0",
  331. "fileVersion": "5.2.7.2287"
  332. }
  333. }
  334. },
  335. "protobuf-net/3.2.30": {
  336. "dependencies": {
  337. "protobuf-net.Core": "3.2.30"
  338. },
  339. "runtime": {
  340. "lib/net6.0/protobuf-net.dll": {
  341. "assemblyVersion": "3.0.0.0",
  342. "fileVersion": "3.2.30.709"
  343. }
  344. }
  345. },
  346. "protobuf-net.Core/3.2.30": {
  347. "dependencies": {
  348. "System.Collections.Immutable": "7.0.0"
  349. },
  350. "runtime": {
  351. "lib/net6.0/protobuf-net.Core.dll": {
  352. "assemblyVersion": "3.0.0.0",
  353. "fileVersion": "3.2.30.709"
  354. }
  355. }
  356. },
  357. "runtime.any.System.Collections/4.3.0": {
  358. "dependencies": {
  359. "System.Runtime": "4.3.0"
  360. }
  361. },
  362. "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
  363. "runtime.any.System.Globalization/4.3.0": {},
  364. "runtime.any.System.Globalization.Calendars/4.3.0": {},
  365. "runtime.any.System.IO/4.3.0": {},
  366. "runtime.any.System.Reflection/4.3.0": {},
  367. "runtime.any.System.Reflection.Primitives/4.3.0": {},
  368. "runtime.any.System.Resources.ResourceManager/4.3.0": {},
  369. "runtime.any.System.Runtime/4.3.0": {
  370. "dependencies": {
  371. "System.Private.Uri": "4.3.0"
  372. }
  373. },
  374. "runtime.any.System.Runtime.Handles/4.3.0": {},
  375. "runtime.any.System.Runtime.InteropServices/4.3.0": {},
  376. "runtime.any.System.Text.Encoding/4.3.0": {},
  377. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
  378. "runtime.any.System.Threading.Tasks/4.3.0": {},
  379. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  380. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  381. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  382. "runtime.native.System/4.3.0": {
  383. "dependencies": {
  384. "Microsoft.NETCore.Platforms": "5.0.0",
  385. "Microsoft.NETCore.Targets": "1.1.0"
  386. }
  387. },
  388. "runtime.native.System.Net.Http/4.3.0": {
  389. "dependencies": {
  390. "Microsoft.NETCore.Platforms": "5.0.0",
  391. "Microsoft.NETCore.Targets": "1.1.0"
  392. }
  393. },
  394. "runtime.native.System.Net.Security/4.3.0": {
  395. "dependencies": {
  396. "Microsoft.NETCore.Platforms": "5.0.0",
  397. "Microsoft.NETCore.Targets": "1.1.0"
  398. }
  399. },
  400. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  401. "dependencies": {
  402. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  403. }
  404. },
  405. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  406. "dependencies": {
  407. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  408. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  409. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  410. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  411. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  412. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  413. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  414. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  415. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  416. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  417. }
  418. },
  419. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  420. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  421. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  422. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  423. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  424. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  425. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  426. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  427. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  428. "dependencies": {
  429. "System.Runtime": "4.3.0",
  430. "System.Runtime.InteropServices": "4.3.0"
  431. }
  432. },
  433. "runtime.win.System.Diagnostics.Debug/4.3.0": {},
  434. "runtime.win.System.IO.FileSystem/4.3.0": {
  435. "dependencies": {
  436. "System.Buffers": "4.5.1",
  437. "System.Collections": "4.3.0",
  438. "System.Diagnostics.Debug": "4.3.0",
  439. "System.IO": "4.3.0",
  440. "System.IO.FileSystem.Primitives": "4.3.0",
  441. "System.Resources.ResourceManager": "4.3.0",
  442. "System.Runtime": "4.3.0",
  443. "System.Runtime.Extensions": "4.3.0",
  444. "System.Runtime.Handles": "4.3.0",
  445. "System.Runtime.InteropServices": "4.3.0",
  446. "System.Text.Encoding": "4.3.0",
  447. "System.Text.Encoding.Extensions": "4.3.0",
  448. "System.Threading": "4.3.0",
  449. "System.Threading.Overlapped": "4.3.0",
  450. "System.Threading.Tasks": "4.3.0"
  451. }
  452. },
  453. "runtime.win.System.Net.Primitives/4.3.0": {
  454. "dependencies": {
  455. "Microsoft.Win32.Primitives": "4.3.0",
  456. "System.Collections": "4.3.0",
  457. "System.Diagnostics.Tracing": "4.3.0",
  458. "System.Globalization": "4.3.0",
  459. "System.Resources.ResourceManager": "4.3.0",
  460. "System.Runtime": "4.3.0",
  461. "System.Runtime.Extensions": "4.3.0",
  462. "System.Runtime.Handles": "4.3.0",
  463. "System.Runtime.InteropServices": "4.3.0",
  464. "System.Threading": "4.3.0"
  465. }
  466. },
  467. "runtime.win.System.Net.Sockets/4.3.0": {
  468. "dependencies": {
  469. "System.Collections": "4.3.0",
  470. "System.Diagnostics.Debug": "4.3.0",
  471. "System.Diagnostics.Tracing": "4.3.0",
  472. "System.Globalization": "4.3.0",
  473. "System.IO": "4.3.0",
  474. "System.IO.FileSystem": "4.3.0",
  475. "System.IO.FileSystem.Primitives": "4.3.0",
  476. "System.Net.NameResolution": "4.3.0",
  477. "System.Net.Primitives": "4.3.0",
  478. "System.Resources.ResourceManager": "4.3.0",
  479. "System.Runtime": "4.3.0",
  480. "System.Runtime.Extensions": "4.3.0",
  481. "System.Runtime.Handles": "4.3.0",
  482. "System.Runtime.InteropServices": "4.3.0",
  483. "System.Security.Principal.Windows": "5.0.0",
  484. "System.Threading": "4.3.0",
  485. "System.Threading.Overlapped": "4.3.0",
  486. "System.Threading.Tasks": "4.3.0"
  487. }
  488. },
  489. "runtime.win.System.Runtime.Extensions/4.3.0": {
  490. "dependencies": {
  491. "System.Private.Uri": "4.3.0"
  492. }
  493. },
  494. "SharpCompress/0.30.1": {
  495. "runtime": {
  496. "lib/net5.0/SharpCompress.dll": {
  497. "assemblyVersion": "0.30.1.0",
  498. "fileVersion": "0.30.1.0"
  499. }
  500. }
  501. },
  502. "SharpZipLib/1.4.2": {
  503. "runtime": {
  504. "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
  505. "assemblyVersion": "1.4.2.13",
  506. "fileVersion": "1.4.2.13"
  507. }
  508. }
  509. },
  510. "Snappier/1.0.0": {
  511. "runtime": {
  512. "lib/net5.0/Snappier.dll": {
  513. "assemblyVersion": "1.0.0.0",
  514. "fileVersion": "1.0.0.0"
  515. }
  516. }
  517. },
  518. "SuperSocket.ClientEngine/0.10.0": {
  519. "dependencies": {
  520. "System.Collections.Specialized": "4.3.0",
  521. "System.Linq": "4.3.0",
  522. "System.Net.NameResolution": "4.3.0",
  523. "System.Net.Security": "4.3.0",
  524. "System.Net.Sockets": "4.3.0",
  525. "System.Runtime.Extensions": "4.3.0",
  526. "System.Runtime.InteropServices": "4.3.0",
  527. "System.Security.Cryptography.X509Certificates": "4.3.0"
  528. },
  529. "runtime": {
  530. "lib/netstandard1.3/SuperSocket.ClientEngine.dll": {
  531. "assemblyVersion": "0.10.0.0",
  532. "fileVersion": "0.10.0.0"
  533. }
  534. }
  535. },
  536. "SuperSocket.ProtoBase/1.7.0.17": {
  537. "dependencies": {
  538. "System.IO": "4.3.0",
  539. "System.Linq": "4.3.0",
  540. "System.Runtime.Extensions": "4.3.0",
  541. "System.Text.Encoding": "4.3.0",
  542. "System.Threading": "4.3.0"
  543. },
  544. "runtime": {
  545. "lib/netstandard1.1/SuperSocket.ProtoBase.dll": {
  546. "assemblyVersion": "1.7.0.17",
  547. "fileVersion": "1.7.0.17"
  548. }
  549. }
  550. },
  551. "System.Buffers/4.5.1": {},
  552. "System.Collections/4.3.0": {
  553. "dependencies": {
  554. "Microsoft.NETCore.Platforms": "5.0.0",
  555. "Microsoft.NETCore.Targets": "1.1.0",
  556. "System.Runtime": "4.3.0",
  557. "runtime.any.System.Collections": "4.3.0"
  558. }
  559. },
  560. "System.Collections.Concurrent/4.3.0": {
  561. "dependencies": {
  562. "System.Collections": "4.3.0",
  563. "System.Diagnostics.Debug": "4.3.0",
  564. "System.Diagnostics.Tracing": "4.3.0",
  565. "System.Globalization": "4.3.0",
  566. "System.Reflection": "4.3.0",
  567. "System.Resources.ResourceManager": "4.3.0",
  568. "System.Runtime": "4.3.0",
  569. "System.Runtime.Extensions": "4.3.0",
  570. "System.Threading": "4.3.0",
  571. "System.Threading.Tasks": "4.3.0"
  572. }
  573. },
  574. "System.Collections.Immutable/7.0.0": {},
  575. "System.Collections.NonGeneric/4.3.0": {
  576. "dependencies": {
  577. "System.Diagnostics.Debug": "4.3.0",
  578. "System.Globalization": "4.3.0",
  579. "System.Resources.ResourceManager": "4.3.0",
  580. "System.Runtime": "4.3.0",
  581. "System.Runtime.Extensions": "4.3.0",
  582. "System.Threading": "4.3.0"
  583. }
  584. },
  585. "System.Collections.Specialized/4.3.0": {
  586. "dependencies": {
  587. "System.Collections.NonGeneric": "4.3.0",
  588. "System.Globalization": "4.3.0",
  589. "System.Globalization.Extensions": "4.3.0",
  590. "System.Resources.ResourceManager": "4.3.0",
  591. "System.Runtime": "4.3.0",
  592. "System.Runtime.Extensions": "4.3.0",
  593. "System.Threading": "4.3.0"
  594. }
  595. },
  596. "System.ComponentModel.Annotations/5.0.0": {},
  597. "System.Diagnostics.Debug/4.3.0": {
  598. "dependencies": {
  599. "Microsoft.NETCore.Platforms": "5.0.0",
  600. "Microsoft.NETCore.Targets": "1.1.0",
  601. "System.Runtime": "4.3.0",
  602. "runtime.win.System.Diagnostics.Debug": "4.3.0"
  603. }
  604. },
  605. "System.Diagnostics.Tracing/4.3.0": {
  606. "dependencies": {
  607. "Microsoft.NETCore.Platforms": "5.0.0",
  608. "Microsoft.NETCore.Targets": "1.1.0",
  609. "System.Runtime": "4.3.0",
  610. "runtime.any.System.Diagnostics.Tracing": "4.3.0"
  611. }
  612. },
  613. "System.Drawing.Common/7.0.0": {
  614. "dependencies": {
  615. "Microsoft.Win32.SystemEvents": "7.0.0"
  616. },
  617. "runtime": {
  618. "runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
  619. "assemblyVersion": "7.0.0.0",
  620. "fileVersion": "7.0.22.51805"
  621. }
  622. }
  623. },
  624. "System.Formats.Asn1/7.0.0": {},
  625. "System.Globalization/4.3.0": {
  626. "dependencies": {
  627. "Microsoft.NETCore.Platforms": "5.0.0",
  628. "Microsoft.NETCore.Targets": "1.1.0",
  629. "System.Runtime": "4.3.0",
  630. "runtime.any.System.Globalization": "4.3.0"
  631. }
  632. },
  633. "System.Globalization.Calendars/4.3.0": {
  634. "dependencies": {
  635. "Microsoft.NETCore.Platforms": "5.0.0",
  636. "Microsoft.NETCore.Targets": "1.1.0",
  637. "System.Globalization": "4.3.0",
  638. "System.Runtime": "4.3.0",
  639. "runtime.any.System.Globalization.Calendars": "4.3.0"
  640. }
  641. },
  642. "System.Globalization.Extensions/4.3.0": {
  643. "dependencies": {
  644. "Microsoft.NETCore.Platforms": "5.0.0",
  645. "System.Globalization": "4.3.0",
  646. "System.Resources.ResourceManager": "4.3.0",
  647. "System.Runtime": "4.3.0",
  648. "System.Runtime.Extensions": "4.3.0",
  649. "System.Runtime.InteropServices": "4.3.0"
  650. }
  651. },
  652. "System.IO/4.3.0": {
  653. "dependencies": {
  654. "Microsoft.NETCore.Platforms": "5.0.0",
  655. "Microsoft.NETCore.Targets": "1.1.0",
  656. "System.Runtime": "4.3.0",
  657. "System.Text.Encoding": "4.3.0",
  658. "System.Threading.Tasks": "4.3.0",
  659. "runtime.any.System.IO": "4.3.0"
  660. }
  661. },
  662. "System.IO.FileSystem/4.3.0": {
  663. "dependencies": {
  664. "Microsoft.NETCore.Platforms": "5.0.0",
  665. "Microsoft.NETCore.Targets": "1.1.0",
  666. "System.IO": "4.3.0",
  667. "System.IO.FileSystem.Primitives": "4.3.0",
  668. "System.Runtime": "4.3.0",
  669. "System.Runtime.Handles": "4.3.0",
  670. "System.Text.Encoding": "4.3.0",
  671. "System.Threading.Tasks": "4.3.0",
  672. "runtime.win.System.IO.FileSystem": "4.3.0"
  673. }
  674. },
  675. "System.IO.FileSystem.Primitives/4.3.0": {
  676. "dependencies": {
  677. "System.Runtime": "4.3.0"
  678. }
  679. },
  680. "System.Linq/4.3.0": {
  681. "dependencies": {
  682. "System.Collections": "4.3.0",
  683. "System.Diagnostics.Debug": "4.3.0",
  684. "System.Resources.ResourceManager": "4.3.0",
  685. "System.Runtime": "4.3.0",
  686. "System.Runtime.Extensions": "4.3.0"
  687. }
  688. },
  689. "System.Memory/4.5.5": {},
  690. "System.Net.NameResolution/4.3.0": {
  691. "dependencies": {
  692. "Microsoft.NETCore.Platforms": "5.0.0",
  693. "System.Collections": "4.3.0",
  694. "System.Diagnostics.Tracing": "4.3.0",
  695. "System.Globalization": "4.3.0",
  696. "System.Net.Primitives": "4.3.0",
  697. "System.Resources.ResourceManager": "4.3.0",
  698. "System.Runtime": "4.3.0",
  699. "System.Runtime.Extensions": "4.3.0",
  700. "System.Runtime.Handles": "4.3.0",
  701. "System.Runtime.InteropServices": "4.3.0",
  702. "System.Security.Principal.Windows": "5.0.0",
  703. "System.Threading": "4.3.0",
  704. "System.Threading.Tasks": "4.3.0",
  705. "runtime.native.System": "4.3.0"
  706. }
  707. },
  708. "System.Net.Primitives/4.3.0": {
  709. "dependencies": {
  710. "Microsoft.NETCore.Platforms": "5.0.0",
  711. "Microsoft.NETCore.Targets": "1.1.0",
  712. "System.Runtime": "4.3.0",
  713. "System.Runtime.Handles": "4.3.0",
  714. "runtime.win.System.Net.Primitives": "4.3.0"
  715. }
  716. },
  717. "System.Net.Security/4.3.0": {
  718. "dependencies": {
  719. "Microsoft.NETCore.Platforms": "5.0.0",
  720. "Microsoft.Win32.Primitives": "4.3.0",
  721. "System.Collections": "4.3.0",
  722. "System.Collections.Concurrent": "4.3.0",
  723. "System.Diagnostics.Tracing": "4.3.0",
  724. "System.Globalization": "4.3.0",
  725. "System.Globalization.Extensions": "4.3.0",
  726. "System.IO": "4.3.0",
  727. "System.Net.Primitives": "4.3.0",
  728. "System.Resources.ResourceManager": "4.3.0",
  729. "System.Runtime": "4.3.0",
  730. "System.Runtime.Extensions": "4.3.0",
  731. "System.Runtime.Handles": "4.3.0",
  732. "System.Runtime.InteropServices": "4.3.0",
  733. "System.Security.Claims": "4.3.0",
  734. "System.Security.Cryptography.Algorithms": "4.3.0",
  735. "System.Security.Cryptography.Encoding": "4.3.0",
  736. "System.Security.Cryptography.OpenSsl": "4.3.0",
  737. "System.Security.Cryptography.Primitives": "4.3.0",
  738. "System.Security.Cryptography.X509Certificates": "4.3.0",
  739. "System.Security.Principal": "4.3.0",
  740. "System.Text.Encoding": "4.3.0",
  741. "System.Threading": "4.3.0",
  742. "System.Threading.Tasks": "4.3.0",
  743. "System.Threading.ThreadPool": "4.3.0",
  744. "runtime.native.System": "4.3.0",
  745. "runtime.native.System.Net.Security": "4.3.0",
  746. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  747. }
  748. },
  749. "System.Net.Sockets/4.3.0": {
  750. "dependencies": {
  751. "Microsoft.NETCore.Platforms": "5.0.0",
  752. "Microsoft.NETCore.Targets": "1.1.0",
  753. "System.IO": "4.3.0",
  754. "System.Net.Primitives": "4.3.0",
  755. "System.Runtime": "4.3.0",
  756. "System.Threading.Tasks": "4.3.0",
  757. "runtime.win.System.Net.Sockets": "4.3.0"
  758. }
  759. },
  760. "System.Private.Uri/4.3.0": {
  761. "dependencies": {
  762. "Microsoft.NETCore.Platforms": "5.0.0",
  763. "Microsoft.NETCore.Targets": "1.1.0"
  764. }
  765. },
  766. "System.Reflection/4.3.0": {
  767. "dependencies": {
  768. "Microsoft.NETCore.Platforms": "5.0.0",
  769. "Microsoft.NETCore.Targets": "1.1.0",
  770. "System.IO": "4.3.0",
  771. "System.Reflection.Primitives": "4.3.0",
  772. "System.Runtime": "4.3.0",
  773. "runtime.any.System.Reflection": "4.3.0"
  774. }
  775. },
  776. "System.Reflection.Metadata/5.0.0": {},
  777. "System.Reflection.Primitives/4.3.0": {
  778. "dependencies": {
  779. "Microsoft.NETCore.Platforms": "5.0.0",
  780. "Microsoft.NETCore.Targets": "1.1.0",
  781. "System.Runtime": "4.3.0",
  782. "runtime.any.System.Reflection.Primitives": "4.3.0"
  783. }
  784. },
  785. "System.Resources.ResourceManager/4.3.0": {
  786. "dependencies": {
  787. "Microsoft.NETCore.Platforms": "5.0.0",
  788. "Microsoft.NETCore.Targets": "1.1.0",
  789. "System.Globalization": "4.3.0",
  790. "System.Reflection": "4.3.0",
  791. "System.Runtime": "4.3.0",
  792. "runtime.any.System.Resources.ResourceManager": "4.3.0"
  793. }
  794. },
  795. "System.Runtime/4.3.0": {
  796. "dependencies": {
  797. "Microsoft.NETCore.Platforms": "5.0.0",
  798. "Microsoft.NETCore.Targets": "1.1.0",
  799. "runtime.any.System.Runtime": "4.3.0"
  800. }
  801. },
  802. "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
  803. "System.Runtime.Extensions/4.3.0": {
  804. "dependencies": {
  805. "Microsoft.NETCore.Platforms": "5.0.0",
  806. "Microsoft.NETCore.Targets": "1.1.0",
  807. "System.Runtime": "4.3.0",
  808. "runtime.win.System.Runtime.Extensions": "4.3.0"
  809. }
  810. },
  811. "System.Runtime.Handles/4.3.0": {
  812. "dependencies": {
  813. "Microsoft.NETCore.Platforms": "5.0.0",
  814. "Microsoft.NETCore.Targets": "1.1.0",
  815. "System.Runtime": "4.3.0",
  816. "runtime.any.System.Runtime.Handles": "4.3.0"
  817. }
  818. },
  819. "System.Runtime.InteropServices/4.3.0": {
  820. "dependencies": {
  821. "Microsoft.NETCore.Platforms": "5.0.0",
  822. "Microsoft.NETCore.Targets": "1.1.0",
  823. "System.Reflection": "4.3.0",
  824. "System.Reflection.Primitives": "4.3.0",
  825. "System.Runtime": "4.3.0",
  826. "System.Runtime.Handles": "4.3.0",
  827. "runtime.any.System.Runtime.InteropServices": "4.3.0"
  828. }
  829. },
  830. "System.Runtime.Numerics/4.3.0": {
  831. "dependencies": {
  832. "System.Globalization": "4.3.0",
  833. "System.Resources.ResourceManager": "4.3.0",
  834. "System.Runtime": "4.3.0",
  835. "System.Runtime.Extensions": "4.3.0"
  836. }
  837. },
  838. "System.Security.AccessControl/5.0.0": {
  839. "dependencies": {
  840. "Microsoft.NETCore.Platforms": "5.0.0",
  841. "System.Security.Principal.Windows": "5.0.0"
  842. }
  843. },
  844. "System.Security.Claims/4.3.0": {
  845. "dependencies": {
  846. "System.Collections": "4.3.0",
  847. "System.Globalization": "4.3.0",
  848. "System.IO": "4.3.0",
  849. "System.Resources.ResourceManager": "4.3.0",
  850. "System.Runtime": "4.3.0",
  851. "System.Runtime.Extensions": "4.3.0",
  852. "System.Security.Principal": "4.3.0"
  853. }
  854. },
  855. "System.Security.Cryptography.Algorithms/4.3.0": {
  856. "dependencies": {
  857. "Microsoft.NETCore.Platforms": "5.0.0",
  858. "System.Collections": "4.3.0",
  859. "System.IO": "4.3.0",
  860. "System.Resources.ResourceManager": "4.3.0",
  861. "System.Runtime": "4.3.0",
  862. "System.Runtime.Extensions": "4.3.0",
  863. "System.Runtime.Handles": "4.3.0",
  864. "System.Runtime.InteropServices": "4.3.0",
  865. "System.Runtime.Numerics": "4.3.0",
  866. "System.Security.Cryptography.Encoding": "4.3.0",
  867. "System.Security.Cryptography.Primitives": "4.3.0",
  868. "System.Text.Encoding": "4.3.0",
  869. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  870. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  871. }
  872. },
  873. "System.Security.Cryptography.Cng/4.3.0": {
  874. "dependencies": {
  875. "Microsoft.NETCore.Platforms": "5.0.0",
  876. "System.IO": "4.3.0",
  877. "System.Resources.ResourceManager": "4.3.0",
  878. "System.Runtime": "4.3.0",
  879. "System.Runtime.Extensions": "4.3.0",
  880. "System.Runtime.Handles": "4.3.0",
  881. "System.Runtime.InteropServices": "4.3.0",
  882. "System.Security.Cryptography.Algorithms": "4.3.0",
  883. "System.Security.Cryptography.Encoding": "4.3.0",
  884. "System.Security.Cryptography.Primitives": "4.3.0",
  885. "System.Text.Encoding": "4.3.0"
  886. }
  887. },
  888. "System.Security.Cryptography.Csp/4.3.0": {
  889. "dependencies": {
  890. "Microsoft.NETCore.Platforms": "5.0.0",
  891. "System.IO": "4.3.0",
  892. "System.Reflection": "4.3.0",
  893. "System.Resources.ResourceManager": "4.3.0",
  894. "System.Runtime": "4.3.0",
  895. "System.Runtime.Extensions": "4.3.0",
  896. "System.Runtime.Handles": "4.3.0",
  897. "System.Runtime.InteropServices": "4.3.0",
  898. "System.Security.Cryptography.Algorithms": "4.3.0",
  899. "System.Security.Cryptography.Encoding": "4.3.0",
  900. "System.Security.Cryptography.Primitives": "4.3.0",
  901. "System.Text.Encoding": "4.3.0",
  902. "System.Threading": "4.3.0"
  903. }
  904. },
  905. "System.Security.Cryptography.Encoding/4.3.0": {
  906. "dependencies": {
  907. "Microsoft.NETCore.Platforms": "5.0.0",
  908. "System.Collections": "4.3.0",
  909. "System.Collections.Concurrent": "4.3.0",
  910. "System.Linq": "4.3.0",
  911. "System.Resources.ResourceManager": "4.3.0",
  912. "System.Runtime": "4.3.0",
  913. "System.Runtime.Extensions": "4.3.0",
  914. "System.Runtime.Handles": "4.3.0",
  915. "System.Runtime.InteropServices": "4.3.0",
  916. "System.Security.Cryptography.Primitives": "4.3.0",
  917. "System.Text.Encoding": "4.3.0",
  918. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  919. }
  920. },
  921. "System.Security.Cryptography.OpenSsl/4.3.0": {
  922. "dependencies": {
  923. "System.Collections": "4.3.0",
  924. "System.IO": "4.3.0",
  925. "System.Resources.ResourceManager": "4.3.0",
  926. "System.Runtime": "4.3.0",
  927. "System.Runtime.Extensions": "4.3.0",
  928. "System.Runtime.Handles": "4.3.0",
  929. "System.Runtime.InteropServices": "4.3.0",
  930. "System.Runtime.Numerics": "4.3.0",
  931. "System.Security.Cryptography.Algorithms": "4.3.0",
  932. "System.Security.Cryptography.Encoding": "4.3.0",
  933. "System.Security.Cryptography.Primitives": "4.3.0",
  934. "System.Text.Encoding": "4.3.0",
  935. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  936. }
  937. },
  938. "System.Security.Cryptography.Pkcs/7.0.3": {
  939. "dependencies": {
  940. "System.Formats.Asn1": "7.0.0"
  941. },
  942. "runtime": {
  943. "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll": {
  944. "assemblyVersion": "7.0.0.0",
  945. "fileVersion": "7.0.823.31807"
  946. }
  947. }
  948. },
  949. "System.Security.Cryptography.Primitives/4.3.0": {
  950. "dependencies": {
  951. "System.Diagnostics.Debug": "4.3.0",
  952. "System.Globalization": "4.3.0",
  953. "System.IO": "4.3.0",
  954. "System.Resources.ResourceManager": "4.3.0",
  955. "System.Runtime": "4.3.0",
  956. "System.Threading": "4.3.0",
  957. "System.Threading.Tasks": "4.3.0"
  958. }
  959. },
  960. "System.Security.Cryptography.X509Certificates/4.3.0": {
  961. "dependencies": {
  962. "Microsoft.NETCore.Platforms": "5.0.0",
  963. "System.Collections": "4.3.0",
  964. "System.Diagnostics.Debug": "4.3.0",
  965. "System.Globalization": "4.3.0",
  966. "System.Globalization.Calendars": "4.3.0",
  967. "System.IO": "4.3.0",
  968. "System.IO.FileSystem": "4.3.0",
  969. "System.IO.FileSystem.Primitives": "4.3.0",
  970. "System.Resources.ResourceManager": "4.3.0",
  971. "System.Runtime": "4.3.0",
  972. "System.Runtime.Extensions": "4.3.0",
  973. "System.Runtime.Handles": "4.3.0",
  974. "System.Runtime.InteropServices": "4.3.0",
  975. "System.Runtime.Numerics": "4.3.0",
  976. "System.Security.Cryptography.Algorithms": "4.3.0",
  977. "System.Security.Cryptography.Cng": "4.3.0",
  978. "System.Security.Cryptography.Csp": "4.3.0",
  979. "System.Security.Cryptography.Encoding": "4.3.0",
  980. "System.Security.Cryptography.OpenSsl": "4.3.0",
  981. "System.Security.Cryptography.Primitives": "4.3.0",
  982. "System.Text.Encoding": "4.3.0",
  983. "System.Threading": "4.3.0",
  984. "runtime.native.System": "4.3.0",
  985. "runtime.native.System.Net.Http": "4.3.0",
  986. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  987. }
  988. },
  989. "System.Security.Principal/4.3.0": {
  990. "dependencies": {
  991. "System.Runtime": "4.3.0"
  992. }
  993. },
  994. "System.Security.Principal.Windows/5.0.0": {},
  995. "System.Text.Encoding/4.3.0": {
  996. "dependencies": {
  997. "Microsoft.NETCore.Platforms": "5.0.0",
  998. "Microsoft.NETCore.Targets": "1.1.0",
  999. "System.Runtime": "4.3.0",
  1000. "runtime.any.System.Text.Encoding": "4.3.0"
  1001. }
  1002. },
  1003. "System.Text.Encoding.CodePages/7.0.0": {},
  1004. "System.Text.Encoding.Extensions/4.3.0": {
  1005. "dependencies": {
  1006. "Microsoft.NETCore.Platforms": "5.0.0",
  1007. "Microsoft.NETCore.Targets": "1.1.0",
  1008. "System.Runtime": "4.3.0",
  1009. "System.Text.Encoding": "4.3.0",
  1010. "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
  1011. }
  1012. },
  1013. "System.Text.Encodings.Web/7.0.0": {},
  1014. "System.Text.Json/7.0.0": {
  1015. "dependencies": {
  1016. "System.Text.Encodings.Web": "7.0.0"
  1017. }
  1018. },
  1019. "System.Threading/4.3.0": {
  1020. "dependencies": {
  1021. "System.Runtime": "4.3.0",
  1022. "System.Threading.Tasks": "4.3.0"
  1023. }
  1024. },
  1025. "System.Threading.Overlapped/4.3.0": {
  1026. "dependencies": {
  1027. "Microsoft.NETCore.Platforms": "5.0.0",
  1028. "System.Resources.ResourceManager": "4.3.0",
  1029. "System.Runtime": "4.3.0",
  1030. "System.Runtime.Handles": "4.3.0"
  1031. }
  1032. },
  1033. "System.Threading.Tasks/4.3.0": {
  1034. "dependencies": {
  1035. "Microsoft.NETCore.Platforms": "5.0.0",
  1036. "Microsoft.NETCore.Targets": "1.1.0",
  1037. "System.Runtime": "4.3.0",
  1038. "runtime.any.System.Threading.Tasks": "4.3.0"
  1039. }
  1040. },
  1041. "System.Threading.Tasks.Extensions/4.5.4": {},
  1042. "System.Threading.ThreadPool/4.3.0": {
  1043. "dependencies": {
  1044. "System.Runtime": "4.3.0",
  1045. "System.Runtime.Handles": "4.3.0"
  1046. }
  1047. },
  1048. "ZstdSharp.Port/0.6.2": {
  1049. "runtime": {
  1050. "lib/net6.0/ZstdSharp.dll": {
  1051. "assemblyVersion": "0.6.2.0",
  1052. "fileVersion": "0.6.2.0"
  1053. }
  1054. }
  1055. },
  1056. "Core/1.0.0": {
  1057. "dependencies": {
  1058. "ThirdParty": "1.0.0"
  1059. },
  1060. "runtime": {
  1061. "Core.dll": {}
  1062. }
  1063. },
  1064. "Loader/1.0.0": {
  1065. "dependencies": {
  1066. "Core": "1.0.0",
  1067. "ThirdParty": "1.0.0"
  1068. },
  1069. "runtime": {
  1070. "Loader.dll": {}
  1071. }
  1072. },
  1073. "Model/1.0.0": {
  1074. "dependencies": {
  1075. "Core": "1.0.0",
  1076. "Loader": "1.0.0",
  1077. "SuperSocket.ClientEngine": "0.10.0",
  1078. "SuperSocket.ProtoBase": "1.7.0.17",
  1079. "ThirdParty": "1.0.0"
  1080. },
  1081. "runtime": {
  1082. "Model.dll": {}
  1083. }
  1084. },
  1085. "ThirdParty/1.0.0": {
  1086. "dependencies": {
  1087. "CommandLineParser": "2.9.1",
  1088. "EPPlus": "7.0.3",
  1089. "Microsoft.CodeAnalysis.CSharp": "4.0.1",
  1090. "Microsoft.CodeAnalysis.Common": "4.0.1",
  1091. "MongoDB.Driver": "2.22.0",
  1092. "NLog": "5.2.7",
  1093. "Newtonsoft.Json": "13.0.3",
  1094. "SharpZipLib": "1.4.2",
  1095. "protobuf-net": "3.2.30"
  1096. },
  1097. "runtime": {
  1098. "ThirdParty.dll": {}
  1099. }
  1100. },
  1101. "Core.Reference/1.0.0.0": {
  1102. "runtime": {
  1103. "Core.dll": {
  1104. "assemblyVersion": "1.0.0.0",
  1105. "fileVersion": "1.0.0.0"
  1106. }
  1107. }
  1108. },
  1109. "Ice/3.6.4.0": {
  1110. "runtime": {
  1111. "Ice.dll": {
  1112. "assemblyVersion": "3.6.4.0",
  1113. "fileVersion": "3.6.4.0"
  1114. }
  1115. }
  1116. },
  1117. "Loader.Reference/1.0.0.0": {
  1118. "runtime": {
  1119. "Loader.dll": {
  1120. "assemblyVersion": "1.0.0.0",
  1121. "fileVersion": "1.0.0.0"
  1122. }
  1123. }
  1124. },
  1125. "Model.Reference/1.0.0.0": {
  1126. "runtime": {
  1127. "Model.dll": {
  1128. "assemblyVersion": "1.0.0.0",
  1129. "fileVersion": "1.0.0.0"
  1130. }
  1131. }
  1132. },
  1133. "ThirdParty.Reference/1.0.0.0": {
  1134. "runtime": {
  1135. "ThirdParty.dll": {
  1136. "assemblyVersion": "1.0.0.0",
  1137. "fileVersion": "1.0.0.0"
  1138. }
  1139. }
  1140. }
  1141. }
  1142. },
  1143. "libraries": {
  1144. "App/1.0.0": {
  1145. "type": "project",
  1146. "serviceable": false,
  1147. "sha512": ""
  1148. },
  1149. "AWSSDK.Core/3.7.100.14": {
  1150. "type": "package",
  1151. "serviceable": true,
  1152. "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==",
  1153. "path": "awssdk.core/3.7.100.14",
  1154. "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512"
  1155. },
  1156. "AWSSDK.SecurityToken/3.7.100.14": {
  1157. "type": "package",
  1158. "serviceable": true,
  1159. "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==",
  1160. "path": "awssdk.securitytoken/3.7.100.14",
  1161. "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512"
  1162. },
  1163. "CommandLineParser/2.9.1": {
  1164. "type": "package",
  1165. "serviceable": true,
  1166. "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
  1167. "path": "commandlineparser/2.9.1",
  1168. "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
  1169. },
  1170. "DnsClient/1.6.1": {
  1171. "type": "package",
  1172. "serviceable": true,
  1173. "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
  1174. "path": "dnsclient/1.6.1",
  1175. "hashPath": "dnsclient.1.6.1.nupkg.sha512"
  1176. },
  1177. "EPPlus/7.0.3": {
  1178. "type": "package",
  1179. "serviceable": true,
  1180. "sha512": "sha512-2glvViZ12VzGItZa+SYm7Ka6sv/8mBW6KYBetKtDSsZE3OqaX9x7Gbkdd4y1rjawOS5qheqQ/TCqnN6NuL1IIQ==",
  1181. "path": "epplus/7.0.3",
  1182. "hashPath": "epplus.7.0.3.nupkg.sha512"
  1183. },
  1184. "EPPlus.Interfaces/6.1.1": {
  1185. "type": "package",
  1186. "serviceable": true,
  1187. "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==",
  1188. "path": "epplus.interfaces/6.1.1",
  1189. "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512"
  1190. },
  1191. "EPPlus.System.Drawing/6.1.1": {
  1192. "type": "package",
  1193. "serviceable": true,
  1194. "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==",
  1195. "path": "epplus.system.drawing/6.1.1",
  1196. "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512"
  1197. },
  1198. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  1199. "type": "package",
  1200. "serviceable": true,
  1201. "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  1202. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  1203. "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512"
  1204. },
  1205. "Microsoft.CodeAnalysis.Common/4.0.1": {
  1206. "type": "package",
  1207. "serviceable": true,
  1208. "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
  1209. "path": "microsoft.codeanalysis.common/4.0.1",
  1210. "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512"
  1211. },
  1212. "Microsoft.CodeAnalysis.CSharp/4.0.1": {
  1213. "type": "package",
  1214. "serviceable": true,
  1215. "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
  1216. "path": "microsoft.codeanalysis.csharp/4.0.1",
  1217. "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512"
  1218. },
  1219. "Microsoft.Extensions.Configuration/7.0.0": {
  1220. "type": "package",
  1221. "serviceable": true,
  1222. "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==",
  1223. "path": "microsoft.extensions.configuration/7.0.0",
  1224. "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512"
  1225. },
  1226. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  1227. "type": "package",
  1228. "serviceable": true,
  1229. "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  1230. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  1231. "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
  1232. },
  1233. "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
  1234. "type": "package",
  1235. "serviceable": true,
  1236. "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==",
  1237. "path": "microsoft.extensions.configuration.fileextensions/7.0.0",
  1238. "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512"
  1239. },
  1240. "Microsoft.Extensions.Configuration.Json/7.0.0": {
  1241. "type": "package",
  1242. "serviceable": true,
  1243. "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==",
  1244. "path": "microsoft.extensions.configuration.json/7.0.0",
  1245. "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512"
  1246. },
  1247. "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
  1248. "type": "package",
  1249. "serviceable": true,
  1250. "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==",
  1251. "path": "microsoft.extensions.fileproviders.abstractions/7.0.0",
  1252. "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512"
  1253. },
  1254. "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
  1255. "type": "package",
  1256. "serviceable": true,
  1257. "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==",
  1258. "path": "microsoft.extensions.fileproviders.physical/7.0.0",
  1259. "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512"
  1260. },
  1261. "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
  1262. "type": "package",
  1263. "serviceable": true,
  1264. "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==",
  1265. "path": "microsoft.extensions.filesystemglobbing/7.0.0",
  1266. "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512"
  1267. },
  1268. "Microsoft.Extensions.Logging.Abstractions/2.0.0": {
  1269. "type": "package",
  1270. "serviceable": true,
  1271. "sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
  1272. "path": "microsoft.extensions.logging.abstractions/2.0.0",
  1273. "hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
  1274. },
  1275. "Microsoft.Extensions.Primitives/7.0.0": {
  1276. "type": "package",
  1277. "serviceable": true,
  1278. "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  1279. "path": "microsoft.extensions.primitives/7.0.0",
  1280. "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
  1281. },
  1282. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1283. "type": "package",
  1284. "serviceable": true,
  1285. "sha512": "sha512-Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  1286. "path": "microsoft.io.recyclablememorystream/2.3.2",
  1287. "hashPath": "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512"
  1288. },
  1289. "Microsoft.NETCore.Platforms/5.0.0": {
  1290. "type": "package",
  1291. "serviceable": true,
  1292. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  1293. "path": "microsoft.netcore.platforms/5.0.0",
  1294. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  1295. },
  1296. "Microsoft.NETCore.Targets/1.1.0": {
  1297. "type": "package",
  1298. "serviceable": true,
  1299. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1300. "path": "microsoft.netcore.targets/1.1.0",
  1301. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1302. },
  1303. "Microsoft.Win32.Primitives/4.3.0": {
  1304. "type": "package",
  1305. "serviceable": true,
  1306. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1307. "path": "microsoft.win32.primitives/4.3.0",
  1308. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1309. },
  1310. "Microsoft.Win32.Registry/5.0.0": {
  1311. "type": "package",
  1312. "serviceable": true,
  1313. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  1314. "path": "microsoft.win32.registry/5.0.0",
  1315. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  1316. },
  1317. "Microsoft.Win32.SystemEvents/7.0.0": {
  1318. "type": "package",
  1319. "serviceable": true,
  1320. "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  1321. "path": "microsoft.win32.systemevents/7.0.0",
  1322. "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
  1323. },
  1324. "MongoDB.Bson/2.22.0": {
  1325. "type": "package",
  1326. "serviceable": true,
  1327. "sha512": "sha512-7Z+uP+PeIBrkzzRORTCjrMSYhzQgXxLYkXyML8WsBN7tHddicNY9Xh8Cmp5gRR4U4NuEbXCQtHplju0iVY/KuA==",
  1328. "path": "mongodb.bson/2.22.0",
  1329. "hashPath": "mongodb.bson.2.22.0.nupkg.sha512"
  1330. },
  1331. "MongoDB.Driver/2.22.0": {
  1332. "type": "package",
  1333. "serviceable": true,
  1334. "sha512": "sha512-ngswtmzdtfaq+L0Ti1Kjm0QnVLgEJK233YPCpGN2buSArY2xEPsnQ2yos7SPGxuDzZPnxdn+XG9/OBt9atCpWw==",
  1335. "path": "mongodb.driver/2.22.0",
  1336. "hashPath": "mongodb.driver.2.22.0.nupkg.sha512"
  1337. },
  1338. "MongoDB.Driver.Core/2.22.0": {
  1339. "type": "package",
  1340. "serviceable": true,
  1341. "sha512": "sha512-aMlyeGbQ9wk/bmy9xSr6dnkOszO3MVgv1wNcsm4ACwiup//VCZxvj5k0Wq/E0xGBYmqs/tNXqJmLy1IawRXPHA==",
  1342. "path": "mongodb.driver.core/2.22.0",
  1343. "hashPath": "mongodb.driver.core.2.22.0.nupkg.sha512"
  1344. },
  1345. "MongoDB.Libmongocrypt/1.8.0": {
  1346. "type": "package",
  1347. "serviceable": true,
  1348. "sha512": "sha512-fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==",
  1349. "path": "mongodb.libmongocrypt/1.8.0",
  1350. "hashPath": "mongodb.libmongocrypt.1.8.0.nupkg.sha512"
  1351. },
  1352. "Newtonsoft.Json/13.0.3": {
  1353. "type": "package",
  1354. "serviceable": true,
  1355. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1356. "path": "newtonsoft.json/13.0.3",
  1357. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1358. },
  1359. "NLog/5.2.7": {
  1360. "type": "package",
  1361. "serviceable": true,
  1362. "sha512": "sha512-Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA==",
  1363. "path": "nlog/5.2.7",
  1364. "hashPath": "nlog.5.2.7.nupkg.sha512"
  1365. },
  1366. "protobuf-net/3.2.30": {
  1367. "type": "package",
  1368. "serviceable": true,
  1369. "sha512": "sha512-C/UTlmxEJHAHpqm8xQK1UyJKaIynVCSNG4mVrbLgnZ7ccH28nN49O8iMJvKEodTgVbnimvy+3mIiAdW6mATwnw==",
  1370. "path": "protobuf-net/3.2.30",
  1371. "hashPath": "protobuf-net.3.2.30.nupkg.sha512"
  1372. },
  1373. "protobuf-net.Core/3.2.30": {
  1374. "type": "package",
  1375. "serviceable": true,
  1376. "sha512": "sha512-v2ZxxYrz+X212ukSx+uqkLuPu414bvmSAnTyf+PBUKR9ENJxO4P/csorA/27456MCp1JNoMssDj/f91RDiwBfQ==",
  1377. "path": "protobuf-net.core/3.2.30",
  1378. "hashPath": "protobuf-net.core.3.2.30.nupkg.sha512"
  1379. },
  1380. "runtime.any.System.Collections/4.3.0": {
  1381. "type": "package",
  1382. "serviceable": true,
  1383. "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
  1384. "path": "runtime.any.system.collections/4.3.0",
  1385. "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
  1386. },
  1387. "runtime.any.System.Diagnostics.Tracing/4.3.0": {
  1388. "type": "package",
  1389. "serviceable": true,
  1390. "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
  1391. "path": "runtime.any.system.diagnostics.tracing/4.3.0",
  1392. "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1393. },
  1394. "runtime.any.System.Globalization/4.3.0": {
  1395. "type": "package",
  1396. "serviceable": true,
  1397. "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
  1398. "path": "runtime.any.system.globalization/4.3.0",
  1399. "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
  1400. },
  1401. "runtime.any.System.Globalization.Calendars/4.3.0": {
  1402. "type": "package",
  1403. "serviceable": true,
  1404. "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
  1405. "path": "runtime.any.system.globalization.calendars/4.3.0",
  1406. "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
  1407. },
  1408. "runtime.any.System.IO/4.3.0": {
  1409. "type": "package",
  1410. "serviceable": true,
  1411. "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
  1412. "path": "runtime.any.system.io/4.3.0",
  1413. "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
  1414. },
  1415. "runtime.any.System.Reflection/4.3.0": {
  1416. "type": "package",
  1417. "serviceable": true,
  1418. "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
  1419. "path": "runtime.any.system.reflection/4.3.0",
  1420. "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
  1421. },
  1422. "runtime.any.System.Reflection.Primitives/4.3.0": {
  1423. "type": "package",
  1424. "serviceable": true,
  1425. "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
  1426. "path": "runtime.any.system.reflection.primitives/4.3.0",
  1427. "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
  1428. },
  1429. "runtime.any.System.Resources.ResourceManager/4.3.0": {
  1430. "type": "package",
  1431. "serviceable": true,
  1432. "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
  1433. "path": "runtime.any.system.resources.resourcemanager/4.3.0",
  1434. "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1435. },
  1436. "runtime.any.System.Runtime/4.3.0": {
  1437. "type": "package",
  1438. "serviceable": true,
  1439. "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
  1440. "path": "runtime.any.system.runtime/4.3.0",
  1441. "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
  1442. },
  1443. "runtime.any.System.Runtime.Handles/4.3.0": {
  1444. "type": "package",
  1445. "serviceable": true,
  1446. "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
  1447. "path": "runtime.any.system.runtime.handles/4.3.0",
  1448. "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
  1449. },
  1450. "runtime.any.System.Runtime.InteropServices/4.3.0": {
  1451. "type": "package",
  1452. "serviceable": true,
  1453. "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
  1454. "path": "runtime.any.system.runtime.interopservices/4.3.0",
  1455. "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
  1456. },
  1457. "runtime.any.System.Text.Encoding/4.3.0": {
  1458. "type": "package",
  1459. "serviceable": true,
  1460. "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
  1461. "path": "runtime.any.system.text.encoding/4.3.0",
  1462. "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
  1463. },
  1464. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
  1465. "type": "package",
  1466. "serviceable": true,
  1467. "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
  1468. "path": "runtime.any.system.text.encoding.extensions/4.3.0",
  1469. "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1470. },
  1471. "runtime.any.System.Threading.Tasks/4.3.0": {
  1472. "type": "package",
  1473. "serviceable": true,
  1474. "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
  1475. "path": "runtime.any.system.threading.tasks/4.3.0",
  1476. "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
  1477. },
  1478. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1479. "type": "package",
  1480. "serviceable": true,
  1481. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1482. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1483. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1484. },
  1485. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1486. "type": "package",
  1487. "serviceable": true,
  1488. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1489. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1490. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1491. },
  1492. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1493. "type": "package",
  1494. "serviceable": true,
  1495. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1496. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1497. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1498. },
  1499. "runtime.native.System/4.3.0": {
  1500. "type": "package",
  1501. "serviceable": true,
  1502. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1503. "path": "runtime.native.system/4.3.0",
  1504. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1505. },
  1506. "runtime.native.System.Net.Http/4.3.0": {
  1507. "type": "package",
  1508. "serviceable": true,
  1509. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1510. "path": "runtime.native.system.net.http/4.3.0",
  1511. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1512. },
  1513. "runtime.native.System.Net.Security/4.3.0": {
  1514. "type": "package",
  1515. "serviceable": true,
  1516. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  1517. "path": "runtime.native.system.net.security/4.3.0",
  1518. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  1519. },
  1520. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1521. "type": "package",
  1522. "serviceable": true,
  1523. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1524. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1525. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1526. },
  1527. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1528. "type": "package",
  1529. "serviceable": true,
  1530. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1531. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1532. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1533. },
  1534. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1535. "type": "package",
  1536. "serviceable": true,
  1537. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1538. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1539. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1540. },
  1541. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1542. "type": "package",
  1543. "serviceable": true,
  1544. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1545. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1546. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1547. },
  1548. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1549. "type": "package",
  1550. "serviceable": true,
  1551. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1552. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1553. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1554. },
  1555. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1556. "type": "package",
  1557. "serviceable": true,
  1558. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1559. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1560. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1561. },
  1562. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1563. "type": "package",
  1564. "serviceable": true,
  1565. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1566. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1567. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1568. },
  1569. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1570. "type": "package",
  1571. "serviceable": true,
  1572. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1573. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1574. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1575. },
  1576. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1577. "type": "package",
  1578. "serviceable": true,
  1579. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1580. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1581. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1582. },
  1583. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1584. "type": "package",
  1585. "serviceable": true,
  1586. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1587. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1588. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1589. },
  1590. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  1591. "type": "package",
  1592. "serviceable": true,
  1593. "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
  1594. "path": "runtime.win.microsoft.win32.primitives/4.3.0",
  1595. "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1596. },
  1597. "runtime.win.System.Diagnostics.Debug/4.3.0": {
  1598. "type": "package",
  1599. "serviceable": true,
  1600. "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
  1601. "path": "runtime.win.system.diagnostics.debug/4.3.0",
  1602. "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
  1603. },
  1604. "runtime.win.System.IO.FileSystem/4.3.0": {
  1605. "type": "package",
  1606. "serviceable": true,
  1607. "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
  1608. "path": "runtime.win.system.io.filesystem/4.3.0",
  1609. "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
  1610. },
  1611. "runtime.win.System.Net.Primitives/4.3.0": {
  1612. "type": "package",
  1613. "serviceable": true,
  1614. "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
  1615. "path": "runtime.win.system.net.primitives/4.3.0",
  1616. "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
  1617. },
  1618. "runtime.win.System.Net.Sockets/4.3.0": {
  1619. "type": "package",
  1620. "serviceable": true,
  1621. "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
  1622. "path": "runtime.win.system.net.sockets/4.3.0",
  1623. "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
  1624. },
  1625. "runtime.win.System.Runtime.Extensions/4.3.0": {
  1626. "type": "package",
  1627. "serviceable": true,
  1628. "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
  1629. "path": "runtime.win.system.runtime.extensions/4.3.0",
  1630. "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
  1631. },
  1632. "SharpCompress/0.30.1": {
  1633. "type": "package",
  1634. "serviceable": true,
  1635. "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
  1636. "path": "sharpcompress/0.30.1",
  1637. "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
  1638. },
  1639. "SharpZipLib/1.4.2": {
  1640. "type": "package",
  1641. "serviceable": true,
  1642. "sha512": "sha512-yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
  1643. "path": "sharpziplib/1.4.2",
  1644. "hashPath": "sharpziplib.1.4.2.nupkg.sha512"
  1645. },
  1646. "Snappier/1.0.0": {
  1647. "type": "package",
  1648. "serviceable": true,
  1649. "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
  1650. "path": "snappier/1.0.0",
  1651. "hashPath": "snappier.1.0.0.nupkg.sha512"
  1652. },
  1653. "SuperSocket.ClientEngine/0.10.0": {
  1654. "type": "package",
  1655. "serviceable": true,
  1656. "sha512": "sha512-Z6cyVq/npADn/21OMhuU1F1JOnVKjxicNZItJLCqyQerzSzx8bGZV12o8COs5wnpVMRIRXypf9TbypY453Llcg==",
  1657. "path": "supersocket.clientengine/0.10.0",
  1658. "hashPath": "supersocket.clientengine.0.10.0.nupkg.sha512"
  1659. },
  1660. "SuperSocket.ProtoBase/1.7.0.17": {
  1661. "type": "package",
  1662. "serviceable": true,
  1663. "sha512": "sha512-v0rMnxKiJUrVRTpI/4h3pEY5LdH0NNrX+O7claVC9r6jd1KQbgZV4wDuferKsVn1GZbS0Wp6XI4p5IwMS8QWHg==",
  1664. "path": "supersocket.protobase/1.7.0.17",
  1665. "hashPath": "supersocket.protobase.1.7.0.17.nupkg.sha512"
  1666. },
  1667. "System.Buffers/4.5.1": {
  1668. "type": "package",
  1669. "serviceable": true,
  1670. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1671. "path": "system.buffers/4.5.1",
  1672. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1673. },
  1674. "System.Collections/4.3.0": {
  1675. "type": "package",
  1676. "serviceable": true,
  1677. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1678. "path": "system.collections/4.3.0",
  1679. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1680. },
  1681. "System.Collections.Concurrent/4.3.0": {
  1682. "type": "package",
  1683. "serviceable": true,
  1684. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1685. "path": "system.collections.concurrent/4.3.0",
  1686. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1687. },
  1688. "System.Collections.Immutable/7.0.0": {
  1689. "type": "package",
  1690. "serviceable": true,
  1691. "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
  1692. "path": "system.collections.immutable/7.0.0",
  1693. "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
  1694. },
  1695. "System.Collections.NonGeneric/4.3.0": {
  1696. "type": "package",
  1697. "serviceable": true,
  1698. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  1699. "path": "system.collections.nongeneric/4.3.0",
  1700. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  1701. },
  1702. "System.Collections.Specialized/4.3.0": {
  1703. "type": "package",
  1704. "serviceable": true,
  1705. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  1706. "path": "system.collections.specialized/4.3.0",
  1707. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  1708. },
  1709. "System.ComponentModel.Annotations/5.0.0": {
  1710. "type": "package",
  1711. "serviceable": true,
  1712. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  1713. "path": "system.componentmodel.annotations/5.0.0",
  1714. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  1715. },
  1716. "System.Diagnostics.Debug/4.3.0": {
  1717. "type": "package",
  1718. "serviceable": true,
  1719. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1720. "path": "system.diagnostics.debug/4.3.0",
  1721. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1722. },
  1723. "System.Diagnostics.Tracing/4.3.0": {
  1724. "type": "package",
  1725. "serviceable": true,
  1726. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1727. "path": "system.diagnostics.tracing/4.3.0",
  1728. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1729. },
  1730. "System.Drawing.Common/7.0.0": {
  1731. "type": "package",
  1732. "serviceable": true,
  1733. "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  1734. "path": "system.drawing.common/7.0.0",
  1735. "hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
  1736. },
  1737. "System.Formats.Asn1/7.0.0": {
  1738. "type": "package",
  1739. "serviceable": true,
  1740. "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==",
  1741. "path": "system.formats.asn1/7.0.0",
  1742. "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512"
  1743. },
  1744. "System.Globalization/4.3.0": {
  1745. "type": "package",
  1746. "serviceable": true,
  1747. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1748. "path": "system.globalization/4.3.0",
  1749. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1750. },
  1751. "System.Globalization.Calendars/4.3.0": {
  1752. "type": "package",
  1753. "serviceable": true,
  1754. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1755. "path": "system.globalization.calendars/4.3.0",
  1756. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1757. },
  1758. "System.Globalization.Extensions/4.3.0": {
  1759. "type": "package",
  1760. "serviceable": true,
  1761. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1762. "path": "system.globalization.extensions/4.3.0",
  1763. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1764. },
  1765. "System.IO/4.3.0": {
  1766. "type": "package",
  1767. "serviceable": true,
  1768. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1769. "path": "system.io/4.3.0",
  1770. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1771. },
  1772. "System.IO.FileSystem/4.3.0": {
  1773. "type": "package",
  1774. "serviceable": true,
  1775. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1776. "path": "system.io.filesystem/4.3.0",
  1777. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1778. },
  1779. "System.IO.FileSystem.Primitives/4.3.0": {
  1780. "type": "package",
  1781. "serviceable": true,
  1782. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1783. "path": "system.io.filesystem.primitives/4.3.0",
  1784. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1785. },
  1786. "System.Linq/4.3.0": {
  1787. "type": "package",
  1788. "serviceable": true,
  1789. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1790. "path": "system.linq/4.3.0",
  1791. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1792. },
  1793. "System.Memory/4.5.5": {
  1794. "type": "package",
  1795. "serviceable": true,
  1796. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  1797. "path": "system.memory/4.5.5",
  1798. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  1799. },
  1800. "System.Net.NameResolution/4.3.0": {
  1801. "type": "package",
  1802. "serviceable": true,
  1803. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  1804. "path": "system.net.nameresolution/4.3.0",
  1805. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  1806. },
  1807. "System.Net.Primitives/4.3.0": {
  1808. "type": "package",
  1809. "serviceable": true,
  1810. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1811. "path": "system.net.primitives/4.3.0",
  1812. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1813. },
  1814. "System.Net.Security/4.3.0": {
  1815. "type": "package",
  1816. "serviceable": true,
  1817. "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  1818. "path": "system.net.security/4.3.0",
  1819. "hashPath": "system.net.security.4.3.0.nupkg.sha512"
  1820. },
  1821. "System.Net.Sockets/4.3.0": {
  1822. "type": "package",
  1823. "serviceable": true,
  1824. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  1825. "path": "system.net.sockets/4.3.0",
  1826. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  1827. },
  1828. "System.Private.Uri/4.3.0": {
  1829. "type": "package",
  1830. "serviceable": true,
  1831. "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
  1832. "path": "system.private.uri/4.3.0",
  1833. "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
  1834. },
  1835. "System.Reflection/4.3.0": {
  1836. "type": "package",
  1837. "serviceable": true,
  1838. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1839. "path": "system.reflection/4.3.0",
  1840. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1841. },
  1842. "System.Reflection.Metadata/5.0.0": {
  1843. "type": "package",
  1844. "serviceable": true,
  1845. "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  1846. "path": "system.reflection.metadata/5.0.0",
  1847. "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
  1848. },
  1849. "System.Reflection.Primitives/4.3.0": {
  1850. "type": "package",
  1851. "serviceable": true,
  1852. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1853. "path": "system.reflection.primitives/4.3.0",
  1854. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1855. },
  1856. "System.Resources.ResourceManager/4.3.0": {
  1857. "type": "package",
  1858. "serviceable": true,
  1859. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1860. "path": "system.resources.resourcemanager/4.3.0",
  1861. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1862. },
  1863. "System.Runtime/4.3.0": {
  1864. "type": "package",
  1865. "serviceable": true,
  1866. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1867. "path": "system.runtime/4.3.0",
  1868. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1869. },
  1870. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  1871. "type": "package",
  1872. "serviceable": true,
  1873. "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  1874. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  1875. "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
  1876. },
  1877. "System.Runtime.Extensions/4.3.0": {
  1878. "type": "package",
  1879. "serviceable": true,
  1880. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1881. "path": "system.runtime.extensions/4.3.0",
  1882. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1883. },
  1884. "System.Runtime.Handles/4.3.0": {
  1885. "type": "package",
  1886. "serviceable": true,
  1887. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1888. "path": "system.runtime.handles/4.3.0",
  1889. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1890. },
  1891. "System.Runtime.InteropServices/4.3.0": {
  1892. "type": "package",
  1893. "serviceable": true,
  1894. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1895. "path": "system.runtime.interopservices/4.3.0",
  1896. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1897. },
  1898. "System.Runtime.Numerics/4.3.0": {
  1899. "type": "package",
  1900. "serviceable": true,
  1901. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1902. "path": "system.runtime.numerics/4.3.0",
  1903. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1904. },
  1905. "System.Security.AccessControl/5.0.0": {
  1906. "type": "package",
  1907. "serviceable": true,
  1908. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  1909. "path": "system.security.accesscontrol/5.0.0",
  1910. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  1911. },
  1912. "System.Security.Claims/4.3.0": {
  1913. "type": "package",
  1914. "serviceable": true,
  1915. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  1916. "path": "system.security.claims/4.3.0",
  1917. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  1918. },
  1919. "System.Security.Cryptography.Algorithms/4.3.0": {
  1920. "type": "package",
  1921. "serviceable": true,
  1922. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  1923. "path": "system.security.cryptography.algorithms/4.3.0",
  1924. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  1925. },
  1926. "System.Security.Cryptography.Cng/4.3.0": {
  1927. "type": "package",
  1928. "serviceable": true,
  1929. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  1930. "path": "system.security.cryptography.cng/4.3.0",
  1931. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  1932. },
  1933. "System.Security.Cryptography.Csp/4.3.0": {
  1934. "type": "package",
  1935. "serviceable": true,
  1936. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  1937. "path": "system.security.cryptography.csp/4.3.0",
  1938. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  1939. },
  1940. "System.Security.Cryptography.Encoding/4.3.0": {
  1941. "type": "package",
  1942. "serviceable": true,
  1943. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  1944. "path": "system.security.cryptography.encoding/4.3.0",
  1945. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  1946. },
  1947. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1948. "type": "package",
  1949. "serviceable": true,
  1950. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  1951. "path": "system.security.cryptography.openssl/4.3.0",
  1952. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1953. },
  1954. "System.Security.Cryptography.Pkcs/7.0.3": {
  1955. "type": "package",
  1956. "serviceable": true,
  1957. "sha512": "sha512-yhwEHH5Gzl/VoADrXtt5XC95OFoSjNSWLHNutE7GwdOgefZVRvEXRSooSpL8HHm3qmdd9epqzsWg28UJemt22w==",
  1958. "path": "system.security.cryptography.pkcs/7.0.3",
  1959. "hashPath": "system.security.cryptography.pkcs.7.0.3.nupkg.sha512"
  1960. },
  1961. "System.Security.Cryptography.Primitives/4.3.0": {
  1962. "type": "package",
  1963. "serviceable": true,
  1964. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1965. "path": "system.security.cryptography.primitives/4.3.0",
  1966. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1967. },
  1968. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1969. "type": "package",
  1970. "serviceable": true,
  1971. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  1972. "path": "system.security.cryptography.x509certificates/4.3.0",
  1973. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  1974. },
  1975. "System.Security.Principal/4.3.0": {
  1976. "type": "package",
  1977. "serviceable": true,
  1978. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  1979. "path": "system.security.principal/4.3.0",
  1980. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  1981. },
  1982. "System.Security.Principal.Windows/5.0.0": {
  1983. "type": "package",
  1984. "serviceable": true,
  1985. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1986. "path": "system.security.principal.windows/5.0.0",
  1987. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  1988. },
  1989. "System.Text.Encoding/4.3.0": {
  1990. "type": "package",
  1991. "serviceable": true,
  1992. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1993. "path": "system.text.encoding/4.3.0",
  1994. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1995. },
  1996. "System.Text.Encoding.CodePages/7.0.0": {
  1997. "type": "package",
  1998. "serviceable": true,
  1999. "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
  2000. "path": "system.text.encoding.codepages/7.0.0",
  2001. "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
  2002. },
  2003. "System.Text.Encoding.Extensions/4.3.0": {
  2004. "type": "package",
  2005. "serviceable": true,
  2006. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2007. "path": "system.text.encoding.extensions/4.3.0",
  2008. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2009. },
  2010. "System.Text.Encodings.Web/7.0.0": {
  2011. "type": "package",
  2012. "serviceable": true,
  2013. "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  2014. "path": "system.text.encodings.web/7.0.0",
  2015. "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
  2016. },
  2017. "System.Text.Json/7.0.0": {
  2018. "type": "package",
  2019. "serviceable": true,
  2020. "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
  2021. "path": "system.text.json/7.0.0",
  2022. "hashPath": "system.text.json.7.0.0.nupkg.sha512"
  2023. },
  2024. "System.Threading/4.3.0": {
  2025. "type": "package",
  2026. "serviceable": true,
  2027. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2028. "path": "system.threading/4.3.0",
  2029. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2030. },
  2031. "System.Threading.Overlapped/4.3.0": {
  2032. "type": "package",
  2033. "serviceable": true,
  2034. "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
  2035. "path": "system.threading.overlapped/4.3.0",
  2036. "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
  2037. },
  2038. "System.Threading.Tasks/4.3.0": {
  2039. "type": "package",
  2040. "serviceable": true,
  2041. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2042. "path": "system.threading.tasks/4.3.0",
  2043. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2044. },
  2045. "System.Threading.Tasks.Extensions/4.5.4": {
  2046. "type": "package",
  2047. "serviceable": true,
  2048. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  2049. "path": "system.threading.tasks.extensions/4.5.4",
  2050. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  2051. },
  2052. "System.Threading.ThreadPool/4.3.0": {
  2053. "type": "package",
  2054. "serviceable": true,
  2055. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  2056. "path": "system.threading.threadpool/4.3.0",
  2057. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  2058. },
  2059. "ZstdSharp.Port/0.6.2": {
  2060. "type": "package",
  2061. "serviceable": true,
  2062. "sha512": "sha512-jPao/LdUNLUz8rn3H1D8W7wQbZsRZM0iayvWI4xGejJg3XJHT56gcmYdgmCGPdJF1UEBqUjucCRrFB+4HbJsbw==",
  2063. "path": "zstdsharp.port/0.6.2",
  2064. "hashPath": "zstdsharp.port.0.6.2.nupkg.sha512"
  2065. },
  2066. "Core/1.0.0": {
  2067. "type": "project",
  2068. "serviceable": false,
  2069. "sha512": ""
  2070. },
  2071. "Loader/1.0.0": {
  2072. "type": "project",
  2073. "serviceable": false,
  2074. "sha512": ""
  2075. },
  2076. "Model/1.0.0": {
  2077. "type": "project",
  2078. "serviceable": false,
  2079. "sha512": ""
  2080. },
  2081. "ThirdParty/1.0.0": {
  2082. "type": "project",
  2083. "serviceable": false,
  2084. "sha512": ""
  2085. },
  2086. "Core.Reference/1.0.0.0": {
  2087. "type": "reference",
  2088. "serviceable": false,
  2089. "sha512": ""
  2090. },
  2091. "Ice/3.6.4.0": {
  2092. "type": "reference",
  2093. "serviceable": false,
  2094. "sha512": ""
  2095. },
  2096. "Loader.Reference/1.0.0.0": {
  2097. "type": "reference",
  2098. "serviceable": false,
  2099. "sha512": ""
  2100. },
  2101. "Model.Reference/1.0.0.0": {
  2102. "type": "reference",
  2103. "serviceable": false,
  2104. "sha512": ""
  2105. },
  2106. "ThirdParty.Reference/1.0.0.0": {
  2107. "type": "reference",
  2108. "serviceable": false,
  2109. "sha512": ""
  2110. }
  2111. }
  2112. }