App.deps.json 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  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. "assemblyVersion": "1.0.0",
  1063. "fileVersion": ""
  1064. }
  1065. }
  1066. },
  1067. "Loader/1.0.0": {
  1068. "dependencies": {
  1069. "Core": "1.0.0",
  1070. "ThirdParty": "1.0.0"
  1071. },
  1072. "runtime": {
  1073. "Loader.dll": {
  1074. "assemblyVersion": "1.0.0",
  1075. "fileVersion": ""
  1076. }
  1077. }
  1078. },
  1079. "Model/1.0.0": {
  1080. "dependencies": {
  1081. "Core": "1.0.0",
  1082. "Loader": "1.0.0",
  1083. "SuperSocket.ClientEngine": "0.10.0",
  1084. "SuperSocket.ProtoBase": "1.7.0.17",
  1085. "ThirdParty": "1.0.0"
  1086. },
  1087. "runtime": {
  1088. "Model.dll": {
  1089. "assemblyVersion": "1.0.0",
  1090. "fileVersion": ""
  1091. }
  1092. }
  1093. },
  1094. "ThirdParty/1.0.0": {
  1095. "dependencies": {
  1096. "CommandLineParser": "2.9.1",
  1097. "EPPlus": "7.0.3",
  1098. "Microsoft.CodeAnalysis.CSharp": "4.0.1",
  1099. "Microsoft.CodeAnalysis.Common": "4.0.1",
  1100. "MongoDB.Driver": "2.22.0",
  1101. "NLog": "5.2.7",
  1102. "Newtonsoft.Json": "13.0.3",
  1103. "SharpZipLib": "1.4.2",
  1104. "protobuf-net": "3.2.30"
  1105. },
  1106. "runtime": {
  1107. "ThirdParty.dll": {
  1108. "assemblyVersion": "1.0.0",
  1109. "fileVersion": ""
  1110. }
  1111. }
  1112. },
  1113. "Core.Reference/1.0.0.0": {
  1114. "runtime": {
  1115. "Core.dll": {
  1116. "assemblyVersion": "1.0.0.0",
  1117. "fileVersion": "1.0.0.0"
  1118. }
  1119. }
  1120. },
  1121. "Ice/3.6.4.0": {
  1122. "runtime": {
  1123. "Ice.dll": {
  1124. "assemblyVersion": "3.6.4.0",
  1125. "fileVersion": "3.6.4.0"
  1126. }
  1127. }
  1128. },
  1129. "Loader.Reference/1.0.0.0": {
  1130. "runtime": {
  1131. "Loader.dll": {
  1132. "assemblyVersion": "1.0.0.0",
  1133. "fileVersion": "1.0.0.0"
  1134. }
  1135. }
  1136. },
  1137. "Model.Reference/1.0.0.0": {
  1138. "runtime": {
  1139. "Model.dll": {
  1140. "assemblyVersion": "1.0.0.0",
  1141. "fileVersion": "1.0.0.0"
  1142. }
  1143. }
  1144. },
  1145. "ThirdParty.Reference/1.0.0.0": {
  1146. "runtime": {
  1147. "ThirdParty.dll": {
  1148. "assemblyVersion": "1.0.0.0",
  1149. "fileVersion": "1.0.0.0"
  1150. }
  1151. }
  1152. }
  1153. }
  1154. },
  1155. "libraries": {
  1156. "App/1.0.0": {
  1157. "type": "project",
  1158. "serviceable": false,
  1159. "sha512": ""
  1160. },
  1161. "AWSSDK.Core/3.7.100.14": {
  1162. "type": "package",
  1163. "serviceable": true,
  1164. "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==",
  1165. "path": "awssdk.core/3.7.100.14",
  1166. "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512"
  1167. },
  1168. "AWSSDK.SecurityToken/3.7.100.14": {
  1169. "type": "package",
  1170. "serviceable": true,
  1171. "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==",
  1172. "path": "awssdk.securitytoken/3.7.100.14",
  1173. "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512"
  1174. },
  1175. "CommandLineParser/2.9.1": {
  1176. "type": "package",
  1177. "serviceable": true,
  1178. "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
  1179. "path": "commandlineparser/2.9.1",
  1180. "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
  1181. },
  1182. "DnsClient/1.6.1": {
  1183. "type": "package",
  1184. "serviceable": true,
  1185. "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
  1186. "path": "dnsclient/1.6.1",
  1187. "hashPath": "dnsclient.1.6.1.nupkg.sha512"
  1188. },
  1189. "EPPlus/7.0.3": {
  1190. "type": "package",
  1191. "serviceable": true,
  1192. "sha512": "sha512-2glvViZ12VzGItZa+SYm7Ka6sv/8mBW6KYBetKtDSsZE3OqaX9x7Gbkdd4y1rjawOS5qheqQ/TCqnN6NuL1IIQ==",
  1193. "path": "epplus/7.0.3",
  1194. "hashPath": "epplus.7.0.3.nupkg.sha512"
  1195. },
  1196. "EPPlus.Interfaces/6.1.1": {
  1197. "type": "package",
  1198. "serviceable": true,
  1199. "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==",
  1200. "path": "epplus.interfaces/6.1.1",
  1201. "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512"
  1202. },
  1203. "EPPlus.System.Drawing/6.1.1": {
  1204. "type": "package",
  1205. "serviceable": true,
  1206. "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==",
  1207. "path": "epplus.system.drawing/6.1.1",
  1208. "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512"
  1209. },
  1210. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  1211. "type": "package",
  1212. "serviceable": true,
  1213. "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  1214. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  1215. "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512"
  1216. },
  1217. "Microsoft.CodeAnalysis.Common/4.0.1": {
  1218. "type": "package",
  1219. "serviceable": true,
  1220. "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
  1221. "path": "microsoft.codeanalysis.common/4.0.1",
  1222. "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512"
  1223. },
  1224. "Microsoft.CodeAnalysis.CSharp/4.0.1": {
  1225. "type": "package",
  1226. "serviceable": true,
  1227. "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
  1228. "path": "microsoft.codeanalysis.csharp/4.0.1",
  1229. "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512"
  1230. },
  1231. "Microsoft.Extensions.Configuration/7.0.0": {
  1232. "type": "package",
  1233. "serviceable": true,
  1234. "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==",
  1235. "path": "microsoft.extensions.configuration/7.0.0",
  1236. "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512"
  1237. },
  1238. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  1239. "type": "package",
  1240. "serviceable": true,
  1241. "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  1242. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  1243. "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
  1244. },
  1245. "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
  1246. "type": "package",
  1247. "serviceable": true,
  1248. "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==",
  1249. "path": "microsoft.extensions.configuration.fileextensions/7.0.0",
  1250. "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512"
  1251. },
  1252. "Microsoft.Extensions.Configuration.Json/7.0.0": {
  1253. "type": "package",
  1254. "serviceable": true,
  1255. "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==",
  1256. "path": "microsoft.extensions.configuration.json/7.0.0",
  1257. "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512"
  1258. },
  1259. "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
  1260. "type": "package",
  1261. "serviceable": true,
  1262. "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==",
  1263. "path": "microsoft.extensions.fileproviders.abstractions/7.0.0",
  1264. "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512"
  1265. },
  1266. "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
  1267. "type": "package",
  1268. "serviceable": true,
  1269. "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==",
  1270. "path": "microsoft.extensions.fileproviders.physical/7.0.0",
  1271. "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512"
  1272. },
  1273. "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
  1274. "type": "package",
  1275. "serviceable": true,
  1276. "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==",
  1277. "path": "microsoft.extensions.filesystemglobbing/7.0.0",
  1278. "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512"
  1279. },
  1280. "Microsoft.Extensions.Logging.Abstractions/2.0.0": {
  1281. "type": "package",
  1282. "serviceable": true,
  1283. "sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
  1284. "path": "microsoft.extensions.logging.abstractions/2.0.0",
  1285. "hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
  1286. },
  1287. "Microsoft.Extensions.Primitives/7.0.0": {
  1288. "type": "package",
  1289. "serviceable": true,
  1290. "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  1291. "path": "microsoft.extensions.primitives/7.0.0",
  1292. "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
  1293. },
  1294. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1295. "type": "package",
  1296. "serviceable": true,
  1297. "sha512": "sha512-Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  1298. "path": "microsoft.io.recyclablememorystream/2.3.2",
  1299. "hashPath": "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512"
  1300. },
  1301. "Microsoft.NETCore.Platforms/5.0.0": {
  1302. "type": "package",
  1303. "serviceable": true,
  1304. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  1305. "path": "microsoft.netcore.platforms/5.0.0",
  1306. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  1307. },
  1308. "Microsoft.NETCore.Targets/1.1.0": {
  1309. "type": "package",
  1310. "serviceable": true,
  1311. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1312. "path": "microsoft.netcore.targets/1.1.0",
  1313. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1314. },
  1315. "Microsoft.Win32.Primitives/4.3.0": {
  1316. "type": "package",
  1317. "serviceable": true,
  1318. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1319. "path": "microsoft.win32.primitives/4.3.0",
  1320. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1321. },
  1322. "Microsoft.Win32.Registry/5.0.0": {
  1323. "type": "package",
  1324. "serviceable": true,
  1325. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  1326. "path": "microsoft.win32.registry/5.0.0",
  1327. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  1328. },
  1329. "Microsoft.Win32.SystemEvents/7.0.0": {
  1330. "type": "package",
  1331. "serviceable": true,
  1332. "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  1333. "path": "microsoft.win32.systemevents/7.0.0",
  1334. "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
  1335. },
  1336. "MongoDB.Bson/2.22.0": {
  1337. "type": "package",
  1338. "serviceable": true,
  1339. "sha512": "sha512-7Z+uP+PeIBrkzzRORTCjrMSYhzQgXxLYkXyML8WsBN7tHddicNY9Xh8Cmp5gRR4U4NuEbXCQtHplju0iVY/KuA==",
  1340. "path": "mongodb.bson/2.22.0",
  1341. "hashPath": "mongodb.bson.2.22.0.nupkg.sha512"
  1342. },
  1343. "MongoDB.Driver/2.22.0": {
  1344. "type": "package",
  1345. "serviceable": true,
  1346. "sha512": "sha512-ngswtmzdtfaq+L0Ti1Kjm0QnVLgEJK233YPCpGN2buSArY2xEPsnQ2yos7SPGxuDzZPnxdn+XG9/OBt9atCpWw==",
  1347. "path": "mongodb.driver/2.22.0",
  1348. "hashPath": "mongodb.driver.2.22.0.nupkg.sha512"
  1349. },
  1350. "MongoDB.Driver.Core/2.22.0": {
  1351. "type": "package",
  1352. "serviceable": true,
  1353. "sha512": "sha512-aMlyeGbQ9wk/bmy9xSr6dnkOszO3MVgv1wNcsm4ACwiup//VCZxvj5k0Wq/E0xGBYmqs/tNXqJmLy1IawRXPHA==",
  1354. "path": "mongodb.driver.core/2.22.0",
  1355. "hashPath": "mongodb.driver.core.2.22.0.nupkg.sha512"
  1356. },
  1357. "MongoDB.Libmongocrypt/1.8.0": {
  1358. "type": "package",
  1359. "serviceable": true,
  1360. "sha512": "sha512-fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==",
  1361. "path": "mongodb.libmongocrypt/1.8.0",
  1362. "hashPath": "mongodb.libmongocrypt.1.8.0.nupkg.sha512"
  1363. },
  1364. "Newtonsoft.Json/13.0.3": {
  1365. "type": "package",
  1366. "serviceable": true,
  1367. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1368. "path": "newtonsoft.json/13.0.3",
  1369. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1370. },
  1371. "NLog/5.2.7": {
  1372. "type": "package",
  1373. "serviceable": true,
  1374. "sha512": "sha512-Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA==",
  1375. "path": "nlog/5.2.7",
  1376. "hashPath": "nlog.5.2.7.nupkg.sha512"
  1377. },
  1378. "protobuf-net/3.2.30": {
  1379. "type": "package",
  1380. "serviceable": true,
  1381. "sha512": "sha512-C/UTlmxEJHAHpqm8xQK1UyJKaIynVCSNG4mVrbLgnZ7ccH28nN49O8iMJvKEodTgVbnimvy+3mIiAdW6mATwnw==",
  1382. "path": "protobuf-net/3.2.30",
  1383. "hashPath": "protobuf-net.3.2.30.nupkg.sha512"
  1384. },
  1385. "protobuf-net.Core/3.2.30": {
  1386. "type": "package",
  1387. "serviceable": true,
  1388. "sha512": "sha512-v2ZxxYrz+X212ukSx+uqkLuPu414bvmSAnTyf+PBUKR9ENJxO4P/csorA/27456MCp1JNoMssDj/f91RDiwBfQ==",
  1389. "path": "protobuf-net.core/3.2.30",
  1390. "hashPath": "protobuf-net.core.3.2.30.nupkg.sha512"
  1391. },
  1392. "runtime.any.System.Collections/4.3.0": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
  1396. "path": "runtime.any.system.collections/4.3.0",
  1397. "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
  1398. },
  1399. "runtime.any.System.Diagnostics.Tracing/4.3.0": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
  1403. "path": "runtime.any.system.diagnostics.tracing/4.3.0",
  1404. "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1405. },
  1406. "runtime.any.System.Globalization/4.3.0": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
  1410. "path": "runtime.any.system.globalization/4.3.0",
  1411. "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
  1412. },
  1413. "runtime.any.System.Globalization.Calendars/4.3.0": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
  1417. "path": "runtime.any.system.globalization.calendars/4.3.0",
  1418. "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
  1419. },
  1420. "runtime.any.System.IO/4.3.0": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
  1424. "path": "runtime.any.system.io/4.3.0",
  1425. "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
  1426. },
  1427. "runtime.any.System.Reflection/4.3.0": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
  1431. "path": "runtime.any.system.reflection/4.3.0",
  1432. "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
  1433. },
  1434. "runtime.any.System.Reflection.Primitives/4.3.0": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
  1438. "path": "runtime.any.system.reflection.primitives/4.3.0",
  1439. "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
  1440. },
  1441. "runtime.any.System.Resources.ResourceManager/4.3.0": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
  1445. "path": "runtime.any.system.resources.resourcemanager/4.3.0",
  1446. "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1447. },
  1448. "runtime.any.System.Runtime/4.3.0": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
  1452. "path": "runtime.any.system.runtime/4.3.0",
  1453. "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
  1454. },
  1455. "runtime.any.System.Runtime.Handles/4.3.0": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
  1459. "path": "runtime.any.system.runtime.handles/4.3.0",
  1460. "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
  1461. },
  1462. "runtime.any.System.Runtime.InteropServices/4.3.0": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
  1466. "path": "runtime.any.system.runtime.interopservices/4.3.0",
  1467. "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
  1468. },
  1469. "runtime.any.System.Text.Encoding/4.3.0": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
  1473. "path": "runtime.any.system.text.encoding/4.3.0",
  1474. "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
  1475. },
  1476. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
  1480. "path": "runtime.any.system.text.encoding.extensions/4.3.0",
  1481. "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1482. },
  1483. "runtime.any.System.Threading.Tasks/4.3.0": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
  1487. "path": "runtime.any.system.threading.tasks/4.3.0",
  1488. "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
  1489. },
  1490. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1494. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1495. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1496. },
  1497. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1501. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1502. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1503. },
  1504. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1508. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1509. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1510. },
  1511. "runtime.native.System/4.3.0": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1515. "path": "runtime.native.system/4.3.0",
  1516. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1517. },
  1518. "runtime.native.System.Net.Http/4.3.0": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1522. "path": "runtime.native.system.net.http/4.3.0",
  1523. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1524. },
  1525. "runtime.native.System.Net.Security/4.3.0": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  1529. "path": "runtime.native.system.net.security/4.3.0",
  1530. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  1531. },
  1532. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1536. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1537. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1538. },
  1539. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1543. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1544. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1545. },
  1546. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1550. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1551. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1552. },
  1553. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1557. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1558. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1559. },
  1560. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1564. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1565. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1566. },
  1567. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1571. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1572. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1573. },
  1574. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1578. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1579. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1580. },
  1581. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1585. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1586. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1587. },
  1588. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1592. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1593. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1594. },
  1595. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1599. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1600. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1601. },
  1602. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
  1606. "path": "runtime.win.microsoft.win32.primitives/4.3.0",
  1607. "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1608. },
  1609. "runtime.win.System.Diagnostics.Debug/4.3.0": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
  1613. "path": "runtime.win.system.diagnostics.debug/4.3.0",
  1614. "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
  1615. },
  1616. "runtime.win.System.IO.FileSystem/4.3.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
  1620. "path": "runtime.win.system.io.filesystem/4.3.0",
  1621. "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
  1622. },
  1623. "runtime.win.System.Net.Primitives/4.3.0": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
  1627. "path": "runtime.win.system.net.primitives/4.3.0",
  1628. "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
  1629. },
  1630. "runtime.win.System.Net.Sockets/4.3.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
  1634. "path": "runtime.win.system.net.sockets/4.3.0",
  1635. "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
  1636. },
  1637. "runtime.win.System.Runtime.Extensions/4.3.0": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
  1641. "path": "runtime.win.system.runtime.extensions/4.3.0",
  1642. "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
  1643. },
  1644. "SharpCompress/0.30.1": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
  1648. "path": "sharpcompress/0.30.1",
  1649. "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
  1650. },
  1651. "SharpZipLib/1.4.2": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
  1655. "path": "sharpziplib/1.4.2",
  1656. "hashPath": "sharpziplib.1.4.2.nupkg.sha512"
  1657. },
  1658. "Snappier/1.0.0": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
  1662. "path": "snappier/1.0.0",
  1663. "hashPath": "snappier.1.0.0.nupkg.sha512"
  1664. },
  1665. "SuperSocket.ClientEngine/0.10.0": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-Z6cyVq/npADn/21OMhuU1F1JOnVKjxicNZItJLCqyQerzSzx8bGZV12o8COs5wnpVMRIRXypf9TbypY453Llcg==",
  1669. "path": "supersocket.clientengine/0.10.0",
  1670. "hashPath": "supersocket.clientengine.0.10.0.nupkg.sha512"
  1671. },
  1672. "SuperSocket.ProtoBase/1.7.0.17": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-v0rMnxKiJUrVRTpI/4h3pEY5LdH0NNrX+O7claVC9r6jd1KQbgZV4wDuferKsVn1GZbS0Wp6XI4p5IwMS8QWHg==",
  1676. "path": "supersocket.protobase/1.7.0.17",
  1677. "hashPath": "supersocket.protobase.1.7.0.17.nupkg.sha512"
  1678. },
  1679. "System.Buffers/4.5.1": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1683. "path": "system.buffers/4.5.1",
  1684. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1685. },
  1686. "System.Collections/4.3.0": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1690. "path": "system.collections/4.3.0",
  1691. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1692. },
  1693. "System.Collections.Concurrent/4.3.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1697. "path": "system.collections.concurrent/4.3.0",
  1698. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1699. },
  1700. "System.Collections.Immutable/7.0.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
  1704. "path": "system.collections.immutable/7.0.0",
  1705. "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
  1706. },
  1707. "System.Collections.NonGeneric/4.3.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  1711. "path": "system.collections.nongeneric/4.3.0",
  1712. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  1713. },
  1714. "System.Collections.Specialized/4.3.0": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  1718. "path": "system.collections.specialized/4.3.0",
  1719. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  1720. },
  1721. "System.ComponentModel.Annotations/5.0.0": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  1725. "path": "system.componentmodel.annotations/5.0.0",
  1726. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  1727. },
  1728. "System.Diagnostics.Debug/4.3.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1732. "path": "system.diagnostics.debug/4.3.0",
  1733. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1734. },
  1735. "System.Diagnostics.Tracing/4.3.0": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1739. "path": "system.diagnostics.tracing/4.3.0",
  1740. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1741. },
  1742. "System.Drawing.Common/7.0.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  1746. "path": "system.drawing.common/7.0.0",
  1747. "hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
  1748. },
  1749. "System.Formats.Asn1/7.0.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==",
  1753. "path": "system.formats.asn1/7.0.0",
  1754. "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512"
  1755. },
  1756. "System.Globalization/4.3.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1760. "path": "system.globalization/4.3.0",
  1761. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1762. },
  1763. "System.Globalization.Calendars/4.3.0": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1767. "path": "system.globalization.calendars/4.3.0",
  1768. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1769. },
  1770. "System.Globalization.Extensions/4.3.0": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1774. "path": "system.globalization.extensions/4.3.0",
  1775. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1776. },
  1777. "System.IO/4.3.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1781. "path": "system.io/4.3.0",
  1782. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1783. },
  1784. "System.IO.FileSystem/4.3.0": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1788. "path": "system.io.filesystem/4.3.0",
  1789. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1790. },
  1791. "System.IO.FileSystem.Primitives/4.3.0": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1795. "path": "system.io.filesystem.primitives/4.3.0",
  1796. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1797. },
  1798. "System.Linq/4.3.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1802. "path": "system.linq/4.3.0",
  1803. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1804. },
  1805. "System.Memory/4.5.5": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  1809. "path": "system.memory/4.5.5",
  1810. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  1811. },
  1812. "System.Net.NameResolution/4.3.0": {
  1813. "type": "package",
  1814. "serviceable": true,
  1815. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  1816. "path": "system.net.nameresolution/4.3.0",
  1817. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  1818. },
  1819. "System.Net.Primitives/4.3.0": {
  1820. "type": "package",
  1821. "serviceable": true,
  1822. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1823. "path": "system.net.primitives/4.3.0",
  1824. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1825. },
  1826. "System.Net.Security/4.3.0": {
  1827. "type": "package",
  1828. "serviceable": true,
  1829. "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  1830. "path": "system.net.security/4.3.0",
  1831. "hashPath": "system.net.security.4.3.0.nupkg.sha512"
  1832. },
  1833. "System.Net.Sockets/4.3.0": {
  1834. "type": "package",
  1835. "serviceable": true,
  1836. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  1837. "path": "system.net.sockets/4.3.0",
  1838. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  1839. },
  1840. "System.Private.Uri/4.3.0": {
  1841. "type": "package",
  1842. "serviceable": true,
  1843. "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
  1844. "path": "system.private.uri/4.3.0",
  1845. "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
  1846. },
  1847. "System.Reflection/4.3.0": {
  1848. "type": "package",
  1849. "serviceable": true,
  1850. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1851. "path": "system.reflection/4.3.0",
  1852. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1853. },
  1854. "System.Reflection.Metadata/5.0.0": {
  1855. "type": "package",
  1856. "serviceable": true,
  1857. "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  1858. "path": "system.reflection.metadata/5.0.0",
  1859. "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
  1860. },
  1861. "System.Reflection.Primitives/4.3.0": {
  1862. "type": "package",
  1863. "serviceable": true,
  1864. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1865. "path": "system.reflection.primitives/4.3.0",
  1866. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1867. },
  1868. "System.Resources.ResourceManager/4.3.0": {
  1869. "type": "package",
  1870. "serviceable": true,
  1871. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1872. "path": "system.resources.resourcemanager/4.3.0",
  1873. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1874. },
  1875. "System.Runtime/4.3.0": {
  1876. "type": "package",
  1877. "serviceable": true,
  1878. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1879. "path": "system.runtime/4.3.0",
  1880. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1881. },
  1882. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  1883. "type": "package",
  1884. "serviceable": true,
  1885. "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  1886. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  1887. "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
  1888. },
  1889. "System.Runtime.Extensions/4.3.0": {
  1890. "type": "package",
  1891. "serviceable": true,
  1892. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1893. "path": "system.runtime.extensions/4.3.0",
  1894. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1895. },
  1896. "System.Runtime.Handles/4.3.0": {
  1897. "type": "package",
  1898. "serviceable": true,
  1899. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1900. "path": "system.runtime.handles/4.3.0",
  1901. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1902. },
  1903. "System.Runtime.InteropServices/4.3.0": {
  1904. "type": "package",
  1905. "serviceable": true,
  1906. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1907. "path": "system.runtime.interopservices/4.3.0",
  1908. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1909. },
  1910. "System.Runtime.Numerics/4.3.0": {
  1911. "type": "package",
  1912. "serviceable": true,
  1913. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1914. "path": "system.runtime.numerics/4.3.0",
  1915. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1916. },
  1917. "System.Security.AccessControl/5.0.0": {
  1918. "type": "package",
  1919. "serviceable": true,
  1920. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  1921. "path": "system.security.accesscontrol/5.0.0",
  1922. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  1923. },
  1924. "System.Security.Claims/4.3.0": {
  1925. "type": "package",
  1926. "serviceable": true,
  1927. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  1928. "path": "system.security.claims/4.3.0",
  1929. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  1930. },
  1931. "System.Security.Cryptography.Algorithms/4.3.0": {
  1932. "type": "package",
  1933. "serviceable": true,
  1934. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  1935. "path": "system.security.cryptography.algorithms/4.3.0",
  1936. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  1937. },
  1938. "System.Security.Cryptography.Cng/4.3.0": {
  1939. "type": "package",
  1940. "serviceable": true,
  1941. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  1942. "path": "system.security.cryptography.cng/4.3.0",
  1943. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  1944. },
  1945. "System.Security.Cryptography.Csp/4.3.0": {
  1946. "type": "package",
  1947. "serviceable": true,
  1948. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  1949. "path": "system.security.cryptography.csp/4.3.0",
  1950. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  1951. },
  1952. "System.Security.Cryptography.Encoding/4.3.0": {
  1953. "type": "package",
  1954. "serviceable": true,
  1955. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  1956. "path": "system.security.cryptography.encoding/4.3.0",
  1957. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  1958. },
  1959. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1960. "type": "package",
  1961. "serviceable": true,
  1962. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  1963. "path": "system.security.cryptography.openssl/4.3.0",
  1964. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1965. },
  1966. "System.Security.Cryptography.Pkcs/7.0.3": {
  1967. "type": "package",
  1968. "serviceable": true,
  1969. "sha512": "sha512-yhwEHH5Gzl/VoADrXtt5XC95OFoSjNSWLHNutE7GwdOgefZVRvEXRSooSpL8HHm3qmdd9epqzsWg28UJemt22w==",
  1970. "path": "system.security.cryptography.pkcs/7.0.3",
  1971. "hashPath": "system.security.cryptography.pkcs.7.0.3.nupkg.sha512"
  1972. },
  1973. "System.Security.Cryptography.Primitives/4.3.0": {
  1974. "type": "package",
  1975. "serviceable": true,
  1976. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1977. "path": "system.security.cryptography.primitives/4.3.0",
  1978. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1979. },
  1980. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1981. "type": "package",
  1982. "serviceable": true,
  1983. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  1984. "path": "system.security.cryptography.x509certificates/4.3.0",
  1985. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  1986. },
  1987. "System.Security.Principal/4.3.0": {
  1988. "type": "package",
  1989. "serviceable": true,
  1990. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  1991. "path": "system.security.principal/4.3.0",
  1992. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  1993. },
  1994. "System.Security.Principal.Windows/5.0.0": {
  1995. "type": "package",
  1996. "serviceable": true,
  1997. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1998. "path": "system.security.principal.windows/5.0.0",
  1999. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  2000. },
  2001. "System.Text.Encoding/4.3.0": {
  2002. "type": "package",
  2003. "serviceable": true,
  2004. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2005. "path": "system.text.encoding/4.3.0",
  2006. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2007. },
  2008. "System.Text.Encoding.CodePages/7.0.0": {
  2009. "type": "package",
  2010. "serviceable": true,
  2011. "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
  2012. "path": "system.text.encoding.codepages/7.0.0",
  2013. "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
  2014. },
  2015. "System.Text.Encoding.Extensions/4.3.0": {
  2016. "type": "package",
  2017. "serviceable": true,
  2018. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2019. "path": "system.text.encoding.extensions/4.3.0",
  2020. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2021. },
  2022. "System.Text.Encodings.Web/7.0.0": {
  2023. "type": "package",
  2024. "serviceable": true,
  2025. "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  2026. "path": "system.text.encodings.web/7.0.0",
  2027. "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
  2028. },
  2029. "System.Text.Json/7.0.0": {
  2030. "type": "package",
  2031. "serviceable": true,
  2032. "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
  2033. "path": "system.text.json/7.0.0",
  2034. "hashPath": "system.text.json.7.0.0.nupkg.sha512"
  2035. },
  2036. "System.Threading/4.3.0": {
  2037. "type": "package",
  2038. "serviceable": true,
  2039. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2040. "path": "system.threading/4.3.0",
  2041. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2042. },
  2043. "System.Threading.Overlapped/4.3.0": {
  2044. "type": "package",
  2045. "serviceable": true,
  2046. "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
  2047. "path": "system.threading.overlapped/4.3.0",
  2048. "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
  2049. },
  2050. "System.Threading.Tasks/4.3.0": {
  2051. "type": "package",
  2052. "serviceable": true,
  2053. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2054. "path": "system.threading.tasks/4.3.0",
  2055. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2056. },
  2057. "System.Threading.Tasks.Extensions/4.5.4": {
  2058. "type": "package",
  2059. "serviceable": true,
  2060. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  2061. "path": "system.threading.tasks.extensions/4.5.4",
  2062. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  2063. },
  2064. "System.Threading.ThreadPool/4.3.0": {
  2065. "type": "package",
  2066. "serviceable": true,
  2067. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  2068. "path": "system.threading.threadpool/4.3.0",
  2069. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  2070. },
  2071. "ZstdSharp.Port/0.6.2": {
  2072. "type": "package",
  2073. "serviceable": true,
  2074. "sha512": "sha512-jPao/LdUNLUz8rn3H1D8W7wQbZsRZM0iayvWI4xGejJg3XJHT56gcmYdgmCGPdJF1UEBqUjucCRrFB+4HbJsbw==",
  2075. "path": "zstdsharp.port/0.6.2",
  2076. "hashPath": "zstdsharp.port.0.6.2.nupkg.sha512"
  2077. },
  2078. "Core/1.0.0": {
  2079. "type": "project",
  2080. "serviceable": false,
  2081. "sha512": ""
  2082. },
  2083. "Loader/1.0.0": {
  2084. "type": "project",
  2085. "serviceable": false,
  2086. "sha512": ""
  2087. },
  2088. "Model/1.0.0": {
  2089. "type": "project",
  2090. "serviceable": false,
  2091. "sha512": ""
  2092. },
  2093. "ThirdParty/1.0.0": {
  2094. "type": "project",
  2095. "serviceable": false,
  2096. "sha512": ""
  2097. },
  2098. "Core.Reference/1.0.0.0": {
  2099. "type": "reference",
  2100. "serviceable": false,
  2101. "sha512": ""
  2102. },
  2103. "Ice/3.6.4.0": {
  2104. "type": "reference",
  2105. "serviceable": false,
  2106. "sha512": ""
  2107. },
  2108. "Loader.Reference/1.0.0.0": {
  2109. "type": "reference",
  2110. "serviceable": false,
  2111. "sha512": ""
  2112. },
  2113. "Model.Reference/1.0.0.0": {
  2114. "type": "reference",
  2115. "serviceable": false,
  2116. "sha512": ""
  2117. },
  2118. "ThirdParty.Reference/1.0.0.0": {
  2119. "type": "reference",
  2120. "serviceable": false,
  2121. "sha512": ""
  2122. }
  2123. }
  2124. }