react-native-windows 0.72.14 → 0.73.0-preview.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (587) hide show
  1. package/.flowconfig +16 -5
  2. package/Chakra/ChakraHelpers.cpp +1 -1
  3. package/Chakra/ChakraUtils.cpp +1 -1
  4. package/Chakra/ChakraValue.h +1 -1
  5. package/Common/packages.lock.json +13 -0
  6. package/Directory.Build.props +6 -2
  7. package/Folly/TEMP_UntilFollyUpdate/dynamic-inl.h +1 -10
  8. package/Folly/TEMP_UntilFollyUpdate/hash/Hash.h +1016 -0
  9. package/Folly/TEMP_UntilFollyUpdate/lang/ToAscii.h +1 -1
  10. package/Folly/cgmanifest.json +1 -1
  11. package/Folly/packages.lock.json +23 -0
  12. package/Libraries/Animated/Animated.js +1 -1
  13. package/Libraries/Animated/AnimatedImplementation.js +1 -1
  14. package/Libraries/Animated/NativeAnimatedHelper.js +14 -10
  15. package/Libraries/Animated/NativeAnimatedModule.js +6 -2
  16. package/Libraries/Animated/NativeAnimatedTurboModule.js +7 -4
  17. package/Libraries/Animated/animations/Animation.js +57 -3
  18. package/Libraries/Animated/animations/DecayAnimation.js +9 -0
  19. package/Libraries/Animated/animations/SpringAnimation.js +8 -0
  20. package/Libraries/Animated/animations/TimingAnimation.js +8 -0
  21. package/Libraries/Animated/components/AnimatedFlatList.js +2 -1
  22. package/Libraries/Animated/components/AnimatedScrollView.js +2 -0
  23. package/Libraries/Animated/components/AnimatedSectionList.js +2 -1
  24. package/Libraries/Animated/createAnimatedComponent.js +1 -0
  25. package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
  26. package/Libraries/Animated/nodes/AnimatedObject.js +146 -0
  27. package/Libraries/Animated/nodes/AnimatedProps.js +19 -7
  28. package/Libraries/Animated/nodes/AnimatedStyle.js +29 -55
  29. package/Libraries/Animated/nodes/AnimatedValueXY.js +3 -17
  30. package/Libraries/Animated/shouldUseTurboAnimatedModule.js +17 -0
  31. package/Libraries/Animated/useAnimatedProps.js +9 -10
  32. package/Libraries/AppState/AppState.d.ts +1 -1
  33. package/Libraries/AppState/NativeAppState.js +8 -4
  34. package/Libraries/AppTheme/AppTheme.js +5 -5
  35. package/Libraries/BatchedBridge/MessageQueue.js +45 -36
  36. package/Libraries/Blob/Blob.js +6 -2
  37. package/Libraries/Blob/BlobManager.js +9 -10
  38. package/Libraries/Blob/BlobRegistry.js +14 -9
  39. package/Libraries/Blob/File.js +1 -1
  40. package/Libraries/Blob/FileReader.js +1 -2
  41. package/Libraries/Components/Clipboard/Clipboard.d.ts +4 -4
  42. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +3 -1
  43. package/Libraries/Components/Glyph/Glyph.js +1 -1
  44. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +26 -6
  45. package/Libraries/Components/Keyboard/KeyboardExt.d.ts +4 -1
  46. package/Libraries/Components/Keyboard/KeyboardExt.js +3 -0
  47. package/Libraries/Components/Keyboard/KeyboardExt.js.map +1 -1
  48. package/Libraries/Components/Keyboard/KeyboardExtProps.d.ts +4 -29
  49. package/Libraries/Components/Keyboard/KeyboardExtProps.js +0 -17
  50. package/Libraries/Components/Keyboard/KeyboardExtProps.js.map +1 -1
  51. package/Libraries/Components/Pressable/Pressable.js +3 -2
  52. package/Libraries/Components/Pressable/Pressable.windows.js +4 -3
  53. package/Libraries/Components/Pressable/useAndroidRippleForView.js +1 -1
  54. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +20 -0
  55. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.windows.js +7 -1
  56. package/Libraries/Components/SafeAreaView/SafeAreaView.js +7 -7
  57. package/Libraries/Components/SafeAreaView/SafeAreaView.windows.js +7 -10
  58. package/Libraries/Components/ScrollView/ScrollView.js +3 -1
  59. package/Libraries/Components/ScrollView/ScrollView.windows.js +3 -1
  60. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +39 -46
  61. package/Libraries/Components/Switch/Switch.js +1 -0
  62. package/Libraries/Components/Switch/Switch.windows.js +259 -0
  63. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +1 -0
  64. package/Libraries/Components/TextInput/TextInput.d.ts +49 -7
  65. package/Libraries/Components/TextInput/TextInput.flow.js +43 -10
  66. package/Libraries/Components/TextInput/TextInput.js +62 -10
  67. package/Libraries/Components/TextInput/TextInput.windows.js +100 -14
  68. package/Libraries/Components/ToastAndroid/{ToastAndroid.ios.js → ToastAndroid.js} +9 -1
  69. package/Libraries/Components/ToastAndroid/ToastAndroid.windows.js +9 -1
  70. package/Libraries/Components/Touchable/TouchableBounce.js +1 -1
  71. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -1
  72. package/Libraries/Components/Touchable/TouchableHighlight.windows.js +1 -1
  73. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -1
  74. package/Libraries/Components/Touchable/TouchableOpacity.js +4 -1
  75. package/Libraries/Components/Touchable/TouchableOpacity.windows.js +4 -1
  76. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +1 -0
  77. package/Libraries/Components/Touchable/TouchableWithoutFeedback.windows.js +1 -0
  78. package/Libraries/Components/TraceUpdateOverlay/TraceUpdateOverlay.js +16 -6
  79. package/Libraries/Components/View/ReactNativeStyleAttributes.js +9 -0
  80. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  81. package/Libraries/Components/View/ReactNativeViewAttributes.windows.js +1 -0
  82. package/Libraries/Components/View/View.js +46 -32
  83. package/Libraries/Components/View/View.windows.js +23 -7
  84. package/Libraries/Components/View/ViewAccessibility.d.ts +27 -1
  85. package/Libraries/Components/View/ViewAccessibility.windows.js +3 -0
  86. package/Libraries/Components/View/ViewNativeComponent.js +1 -0
  87. package/Libraries/Components/View/ViewPropTypes.d.ts +104 -1
  88. package/Libraries/Components/View/ViewPropTypes.js +18 -3
  89. package/Libraries/Components/View/ViewPropTypes.windows.js +33 -3
  90. package/Libraries/Core/Devtools/loadBundleFromServer.js +152 -0
  91. package/Libraries/Core/Devtools/symbolicateStackTrace.js +2 -1
  92. package/Libraries/Core/ExceptionsManager.js +16 -7
  93. package/Libraries/Core/ExtendedError.js +12 -0
  94. package/Libraries/Core/ReactNativeVersion.js +3 -3
  95. package/Libraries/Core/ReactNativeVersionCheck.js +0 -2
  96. package/Libraries/Core/__mocks__/NativeExceptionsManager.js +20 -0
  97. package/Libraries/Core/setUpDeveloperTools.js +5 -1
  98. package/Libraries/Core/setUpIntersectionObserver.js +16 -0
  99. package/Libraries/Core/setUpMutationObserver.js +16 -0
  100. package/Libraries/Core/setUpPerformance.js +6 -13
  101. package/Libraries/Core/setUpPerformanceObserver.js +16 -0
  102. package/Libraries/Core/setUpRegeneratorRuntime.js +4 -2
  103. package/Libraries/DOM/Nodes/ReactNativeElement.js +135 -18
  104. package/Libraries/DOM/Nodes/ReadOnlyCharacterData.js +72 -0
  105. package/Libraries/DOM/Nodes/ReadOnlyElement.js +209 -21
  106. package/Libraries/DOM/Nodes/ReadOnlyNode.js +206 -17
  107. package/Libraries/DOM/Nodes/ReadOnlyText.js +30 -0
  108. package/Libraries/DOM/Nodes/Utilities/Traversal.js +54 -0
  109. package/Libraries/EventEmitter/NativeEventEmitter.d.ts +0 -6
  110. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +15 -4
  111. package/Libraries/Image/Image.android.js +8 -2
  112. package/Libraries/Image/Image.d.ts +1 -1
  113. package/Libraries/Image/Image.ios.js +4 -1
  114. package/Libraries/Image/Image.windows.js +6 -3
  115. package/Libraries/Image/ImageBackground.js +3 -0
  116. package/Libraries/Inspector/DevtoolsOverlay.js +6 -3
  117. package/Libraries/Inspector/NetworkOverlay.js +2 -2
  118. package/Libraries/Interaction/JSEventLoopWatchdog.js +1 -5
  119. package/Libraries/Interaction/PanResponder.js +1 -4
  120. package/Libraries/IntersectionObserver/IntersectionObserver.js +252 -0
  121. package/Libraries/IntersectionObserver/IntersectionObserverEntry.js +140 -0
  122. package/Libraries/IntersectionObserver/IntersectionObserverManager.js +221 -0
  123. package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +41 -0
  124. package/Libraries/IntersectionObserver/__mocks__/NativeIntersectionObserver.js +162 -0
  125. package/Libraries/LayoutAnimation/LayoutAnimation.js +1 -1
  126. package/Libraries/Lists/FlatList.d.ts +2 -1
  127. package/Libraries/Lists/FlatList.js +15 -5
  128. package/Libraries/Lists/SectionList.js +4 -0
  129. package/Libraries/LogBox/Data/LogBoxLog.js +4 -1
  130. package/Libraries/LogBox/Data/LogBoxSymbolication.js +5 -2
  131. package/Libraries/LogBox/Data/parseLogBoxLog.js +57 -20
  132. package/Libraries/LogBox/UI/AnsiHighlight.js +1 -1
  133. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +24 -31
  134. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +1 -1
  135. package/Libraries/LogBox/UI/LogBoxMessage.js +4 -7
  136. package/Libraries/MutationObserver/MutationObserver.js +184 -0
  137. package/Libraries/MutationObserver/MutationObserverManager.js +218 -0
  138. package/Libraries/MutationObserver/MutationRecord.js +82 -0
  139. package/Libraries/MutationObserver/NativeMutationObserver.js +58 -0
  140. package/Libraries/MutationObserver/__mocks__/NativeMutationObserver.js +327 -0
  141. package/Libraries/NativeComponent/BaseViewConfig.android.js +18 -3
  142. package/Libraries/NativeComponent/BaseViewConfig.ios.js +33 -0
  143. package/Libraries/NativeComponent/BaseViewConfig.windows.js +34 -4
  144. package/Libraries/NativeComponent/NativeComponentRegistry.js +3 -5
  145. package/Libraries/NativeModules/specs/NativeSourceCode.js +6 -6
  146. package/Libraries/Network/RCTNetworking.android.js +2 -1
  147. package/Libraries/Network/XMLHttpRequest.js +1 -1
  148. package/Libraries/NewAppScreen/components/DebugInstructions.js +4 -4
  149. package/Libraries/NewAppScreen/components/DebugInstructions.windows.js +2 -2
  150. package/Libraries/NewAppScreen/components/LearnMoreLinks.js +9 -2
  151. package/Libraries/Performance/QuickPerformanceLogger.js +1 -1
  152. package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +1 -0
  153. package/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +1 -0
  154. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +3 -1
  155. package/Libraries/Pressability/Pressability.js +28 -3
  156. package/Libraries/Pressability/Pressability.windows.js +30 -5
  157. package/Libraries/ReactNative/AppContainer.js +2 -3
  158. package/Libraries/ReactNative/AppRegistry.d.ts +0 -5
  159. package/Libraries/ReactNative/AppRegistry.js +66 -53
  160. package/Libraries/ReactNative/BridgelessUIManager.js +38 -9
  161. package/Libraries/ReactNative/FabricUIManager.js +143 -34
  162. package/Libraries/ReactNative/I18nManager.js +5 -11
  163. package/Libraries/ReactNative/NativeI18nManager.js +7 -5
  164. package/Libraries/ReactNative/PaperUIManager.windows.js +2 -2
  165. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +151 -0
  166. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +81 -0
  167. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.js +492 -0
  168. package/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.js +32 -0
  169. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +19 -3
  170. package/Libraries/ReactNative/UIManager.js +8 -0
  171. package/Libraries/ReactNative/__mocks__/FabricUIManager.js +648 -0
  172. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +38 -2
  173. package/Libraries/Renderer/implementations/ReactFabric-dev.js +27 -27
  174. package/Libraries/Renderer/implementations/ReactFabric-prod.js +3 -3
  175. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +3 -3
  176. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +27 -27
  177. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +3 -3
  178. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +3 -3
  179. package/Libraries/Renderer/shims/ReactFabric.js +5 -6
  180. package/Libraries/Renderer/shims/ReactFeatureFlags.js +2 -3
  181. package/Libraries/Renderer/shims/ReactNative.js +2 -3
  182. package/Libraries/Renderer/shims/ReactNativeTypes.js +35 -17
  183. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +3 -3
  184. package/Libraries/Renderer/shims/createReactNativeComponentClass.js +2 -3
  185. package/Libraries/Settings/{Settings.android.js → Settings.js} +4 -4
  186. package/Libraries/Share/Share.d.ts +3 -9
  187. package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +9 -4
  188. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +28 -13
  189. package/Libraries/StyleSheet/PlatformColorValueTypes.windows.js +10 -6
  190. package/Libraries/StyleSheet/PlatformColorValueTypesIOS.ios.js +1 -1
  191. package/Libraries/StyleSheet/StyleSheet.d.ts +10 -1
  192. package/Libraries/StyleSheet/StyleSheet.js +3 -0
  193. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +31 -17
  194. package/Libraries/StyleSheet/StyleSheetTypes.js +90 -6
  195. package/Libraries/StyleSheet/flattenStyle.js +4 -0
  196. package/Libraries/StyleSheet/private/_TransformStyle.js +16 -2
  197. package/Libraries/StyleSheet/processColor.js +1 -2
  198. package/Libraries/StyleSheet/processTransformOrigin.js +136 -0
  199. package/Libraries/StyleSheet/splitLayoutProps.js +1 -0
  200. package/Libraries/Text/Text.d.ts +5 -5
  201. package/Libraries/Text/Text.js +17 -10
  202. package/Libraries/Text/Text.windows.js +53 -20
  203. package/Libraries/Text/TextProps.windows.js +275 -0
  204. package/Libraries/TurboModule/TurboModuleRegistry.js +47 -7
  205. package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +6 -0
  206. package/Libraries/Types/CoreEventTypes.d.ts +5 -2
  207. package/Libraries/Utilities/GlobalPerformanceLogger.js +2 -12
  208. package/Libraries/Utilities/NativeDeviceInfo.js +8 -9
  209. package/Libraries/Utilities/NativePlatformConstantsAndroid.js +23 -18
  210. package/Libraries/Utilities/NativePlatformConstantsIOS.js +16 -13
  211. package/Libraries/Utilities/NativePlatformConstantsWin.js +13 -10
  212. package/Libraries/Utilities/PerformanceLoggerContext.js +1 -1
  213. package/Libraries/Utilities/Platform.android.js +12 -8
  214. package/Libraries/Utilities/Platform.d.ts +1 -0
  215. package/Libraries/Utilities/Platform.flow.js +84 -0
  216. package/Libraries/Utilities/Platform.flow.windows.js +111 -0
  217. package/Libraries/Utilities/Platform.ios.js +12 -8
  218. package/Libraries/Utilities/Platform.windows.js +12 -8
  219. package/Libraries/Utilities/PolyfillFunctions.js +1 -1
  220. package/Libraries/Utilities/ReactNativeTestTools.js +1 -2
  221. package/Libraries/Utilities/SceneTracker.js +1 -1
  222. package/Libraries/Utilities/createPerformanceLogger.js +63 -32
  223. package/Libraries/Utilities/useColorScheme.js +7 -8
  224. package/Libraries/WebPerformance/MemoryInfo.js +1 -1
  225. package/Libraries/WebPerformance/NativePerformance.js +3 -8
  226. package/Libraries/WebPerformance/NativePerformanceObserver.js +4 -0
  227. package/Libraries/WebPerformance/Performance.js +42 -15
  228. package/Libraries/WebPerformance/PerformanceEntry.js +14 -6
  229. package/Libraries/WebPerformance/PerformanceEventTiming.js +18 -1
  230. package/Libraries/WebPerformance/ReactNativeStartupTiming.js +40 -14
  231. package/Libraries/WebPerformance/__mocks__/NativePerformance.js +4 -2
  232. package/Libraries/WebPerformance/__mocks__/NativePerformanceObserver.js +21 -3
  233. package/Libraries/__tests__/ViewWindows-test.js +3 -3
  234. package/Libraries/platform-types.d.ts +6 -2
  235. package/Libraries/promiseRejectionTrackingOptions.js +1 -3
  236. package/Libraries/vendor/emitter/EventEmitter.js +17 -17
  237. package/Microsoft.ReactNative/Composition.Input.idl +103 -0
  238. package/Microsoft.ReactNative/CompositionContext.idl +31 -8
  239. package/Microsoft.ReactNative/CompositionRootView.idl +8 -4
  240. package/Microsoft.ReactNative/CompositionSwitcher.idl +28 -17
  241. package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.cpp +15 -28
  242. package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.h +7 -10
  243. package/Microsoft.ReactNative/Fabric/ComponentView.h +42 -4
  244. package/Microsoft.ReactNative/Fabric/Composition/AbiCompositionViewComponentView.cpp +57 -4
  245. package/Microsoft.ReactNative/Fabric/Composition/AbiCompositionViewComponentView.h +22 -1
  246. package/Microsoft.ReactNative/Fabric/Composition/ActivityIndicatorComponentView.cpp +137 -0
  247. package/Microsoft.ReactNative/Fabric/Composition/ActivityIndicatorComponentView.h +59 -0
  248. package/Microsoft.ReactNative/Fabric/Composition/ComponentViewRegistry.cpp +8 -2
  249. package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.cpp +575 -0
  250. package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.h +170 -0
  251. package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp +890 -226
  252. package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.h +38 -6
  253. package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper_emptyimpl.cpp +79 -0
  254. package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +130 -27
  255. package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.h +6 -1
  256. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.cpp +382 -228
  257. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.h +35 -8
  258. package/Microsoft.ReactNative/Fabric/Composition/CompositionHelpers.h +46 -8
  259. package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.cpp +5 -21
  260. package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.h +1 -1
  261. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.cpp +232 -4
  262. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.h +36 -1
  263. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView.cpp +51 -14
  264. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView.h +15 -6
  265. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootView_emptyimpl.cpp +123 -0
  266. package/Microsoft.ReactNative/Fabric/Composition/CompositionUIService_emptyimpl.cpp +18 -0
  267. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +333 -137
  268. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +52 -8
  269. package/Microsoft.ReactNative/Fabric/Composition/ImageComponentView.cpp +32 -26
  270. package/Microsoft.ReactNative/Fabric/Composition/ImageComponentView.h +5 -3
  271. package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.cpp +183 -175
  272. package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.h +7 -4
  273. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.cpp +101 -2
  274. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +46 -2
  275. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +36 -9
  276. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +8 -2
  277. package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp +247 -42
  278. package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.h +25 -8
  279. package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.cpp +78 -50
  280. package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.h +12 -4
  281. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentDescriptor.h +26 -28
  282. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +429 -89
  283. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.h +24 -3
  284. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputProps.cpp +1 -0
  285. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputProps.h +3 -2
  286. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.cpp +5 -7
  287. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.h +4 -6
  288. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.cpp +1 -7
  289. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.h +1 -17
  290. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +74 -3
  291. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +12 -0
  292. package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.cpp +53 -59
  293. package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.h +3 -2
  294. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +5 -4
  295. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.h +2 -1
  296. package/Microsoft.ReactNative/Fabric/ImageRequest.cpp +1 -1
  297. package/Microsoft.ReactNative/Fabric/ReactTaggedView.h +1 -1
  298. package/Microsoft.ReactNative/Fabric/WindowsComponentDescriptorRegistry.cpp +3 -4
  299. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformTouch.h +10 -0
  300. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewEventEmitter.cpp +59 -0
  301. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewEventEmitter.h +31 -0
  302. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewProps.cpp +69 -0
  303. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewProps.h +25 -2
  304. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewTraitsInitializer.h +23 -0
  305. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/KeyEvent.h +113 -0
  306. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/WindowsViewEvents.h +75 -0
  307. package/Microsoft.ReactNative/Fabric/platform/react/renderer/core/graphicsConversions.h +18 -21
  308. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/Color.cpp +158 -7
  309. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/Color.h +15 -17
  310. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.cpp +1 -1
  311. package/Microsoft.ReactNative/GlyphViewManager.cpp +1 -1
  312. package/Microsoft.ReactNative/IJSValueReader.idl +2 -2
  313. package/Microsoft.ReactNative/IJSValueWriter.idl +2 -2
  314. package/Microsoft.ReactNative/IReactCompositionViewComponentBuilder.idl +23 -1
  315. package/Microsoft.ReactNative/IReactContext.cpp +1 -1
  316. package/Microsoft.ReactNative/IReactNotificationService.cpp +4 -3
  317. package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +1 -4
  318. package/Microsoft.ReactNative/Modules/AlertModule.cpp +2 -2
  319. package/Microsoft.ReactNative/Modules/Animated/NativeAnimatedNodeManager.cpp +1 -2
  320. package/Microsoft.ReactNative/Modules/Animated/NativeAnimatedNodeManager.h +1 -1
  321. package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.cpp +3 -4
  322. package/Microsoft.ReactNative/Modules/AppStateModule.cpp +1 -1
  323. package/Microsoft.ReactNative/Modules/AppStateModule.h +2 -2
  324. package/Microsoft.ReactNative/Modules/AppearanceModule.h +1 -1
  325. package/Microsoft.ReactNative/Modules/DeviceInfoModule.cpp +4 -2
  326. package/Microsoft.ReactNative/Modules/DeviceInfoModule.h +1 -1
  327. package/Microsoft.ReactNative/Modules/I18nManagerModule.cpp +2 -2
  328. package/Microsoft.ReactNative/Modules/I18nManagerModule.h +1 -1
  329. package/Microsoft.ReactNative/Modules/NativeUIManager.cpp +21 -15
  330. package/Microsoft.ReactNative/Modules/PaperUIManagerModule.cpp +10 -6
  331. package/Microsoft.ReactNative/Modules/PaperUIManagerModule.h +4 -1
  332. package/Microsoft.ReactNative/QuirkSettings.idl +1 -1
  333. package/Microsoft.ReactNative/ReactApplication.cpp +13 -11
  334. package/Microsoft.ReactNative/ReactApplication.h +4 -4
  335. package/Microsoft.ReactNative/ReactCoreInjection.h +6 -5
  336. package/Microsoft.ReactNative/ReactHost/JSCallInvokerScheduler.cpp +2 -2
  337. package/Microsoft.ReactNative/ReactHost/MsoUtils.cpp +1 -1
  338. package/Microsoft.ReactNative/ReactHost/React.h +3 -6
  339. package/Microsoft.ReactNative/ReactHost/ReactHost.cpp +0 -16
  340. package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +8 -16
  341. package/Microsoft.ReactNative/ReactInstanceSettings.cpp +6 -5
  342. package/Microsoft.ReactNative/ReactInstanceSettings.h +7 -7
  343. package/Microsoft.ReactNative/ReactNativeHost.h +4 -4
  344. package/Microsoft.ReactNative/ReactRootView.cpp +5 -4
  345. package/Microsoft.ReactNative/ReactRootView.h +2 -2
  346. package/Microsoft.ReactNative/ReactSupport.h +1 -1
  347. package/Microsoft.ReactNative/RedBox.cpp +1 -1
  348. package/Microsoft.ReactNative/RedBoxHandler.idl +1 -1
  349. package/Microsoft.ReactNative/Utils/UwpPreparedScriptStore.h +1 -1
  350. package/Microsoft.ReactNative/Utils/ValueUtils.cpp +49 -21
  351. package/Microsoft.ReactNative/Utils/ValueUtils.h +2 -1
  352. package/Microsoft.ReactNative/Views/DynamicAutomationPeer.cpp +31 -59
  353. package/Microsoft.ReactNative/Views/DynamicAutomationPeer.h +3 -4
  354. package/Microsoft.ReactNative/Views/DynamicAutomationProperties.cpp +15 -46
  355. package/Microsoft.ReactNative/Views/DynamicAutomationProperties.h +5 -13
  356. package/Microsoft.ReactNative/Views/FlyoutViewManager.cpp +4 -4
  357. package/Microsoft.ReactNative/Views/FrameworkElementTransferProperties.cpp +2 -8
  358. package/Microsoft.ReactNative/Views/FrameworkElementViewManager.cpp +127 -86
  359. package/Microsoft.ReactNative/Views/ICompositionRootView.h +1 -1
  360. package/Microsoft.ReactNative/Views/Image/ImageViewManager.cpp +1 -1
  361. package/Microsoft.ReactNative/Views/Image/Microsoft.UI.Composition.Effects_Impl.h +2 -2
  362. package/Microsoft.ReactNative/Views/Image/ReactImage.cpp +1 -1
  363. package/Microsoft.ReactNative/Views/SIPEventHandler.cpp +5 -5
  364. package/Microsoft.ReactNative/Views/SIPEventHandler.h +1 -1
  365. package/Microsoft.ReactNative/Views/ShadowNodeBase.h +8 -5
  366. package/Microsoft.ReactNative/Views/SwitchViewManager.cpp +2 -2
  367. package/Microsoft.ReactNative/Views/Text/TextTransformVisitor.cpp +1 -1
  368. package/Microsoft.ReactNative/Views/TextInputViewManager.cpp +32 -14
  369. package/Microsoft.ReactNative/Views/TouchEventHandler.cpp +1 -1
  370. package/Microsoft.ReactNative/Views/ViewManagerBase.cpp +14 -2
  371. package/Microsoft.ReactNative/Views/ViewManagerBase.h +1 -1
  372. package/Microsoft.ReactNative/Views/ViewPanel.cpp +20 -219
  373. package/Microsoft.ReactNative/Views/ViewPanel.h +0 -30
  374. package/Microsoft.ReactNative/Views/ViewViewManager.cpp +17 -158
  375. package/Microsoft.ReactNative/Views/cppwinrt/DynamicAutomationPeer.idl +9 -12
  376. package/Microsoft.ReactNative/Views/cppwinrt/ViewPanel.idl +1 -9
  377. package/Microsoft.ReactNative/XamlHelper.cpp +1 -1
  378. package/Microsoft.ReactNative/XamlHelper.h +1 -1
  379. package/Microsoft.ReactNative/packages.lock.json +128 -0
  380. package/Microsoft.ReactNative.Cxx/JSI/JsiAbiApi.cpp +1 -1
  381. package/Microsoft.ReactNative.Cxx/JSI/JsiAbiApi.h +1 -1
  382. package/Microsoft.ReactNative.Cxx/JSI/JsiApiContext.cpp +2 -2
  383. package/Microsoft.ReactNative.Cxx/JSValue.h +2 -2
  384. package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems +0 -1
  385. package/Microsoft.ReactNative.Cxx/NativeModules.h +4 -4
  386. package/Microsoft.ReactNative.Cxx/ReactHandleHelper.h +1 -1
  387. package/Microsoft.ReactNative.Cxx/ReactNonAbiValue.h +2 -2
  388. package/Microsoft.ReactNative.Cxx/ReactNotificationService.h +10 -9
  389. package/Microsoft.ReactNative.Cxx/ReactPropertyBag.h +13 -12
  390. package/Microsoft.ReactNative.Managed/JSValueReaderGenerator.cs +5 -5
  391. package/Microsoft.ReactNative.Managed/JSValueWriterGenerator.cs +5 -5
  392. package/Microsoft.ReactNative.Managed/Microsoft.ReactNative.Managed.csproj +8 -2
  393. package/Microsoft.ReactNative.Managed/ReactPackageBuilderExtensions.cs +1 -1
  394. package/Microsoft.ReactNative.Managed/ReflectionReactPackageProvider.cs +1 -1
  395. package/Microsoft.ReactNative.Managed/packages.lock.json +9 -9
  396. package/Microsoft.ReactNative.Managed.CodeGen/CodeAnalyzer.cs +2 -0
  397. package/Microsoft.ReactNative.Managed.CodeGen/CodeGenerator.Module.cs +4 -2
  398. package/Microsoft.ReactNative.Managed.CodeGen/CodeGenerator.ViewManager.cs +1 -1
  399. package/Microsoft.ReactNative.Managed.CodeGen/DiagnosticDescriptors.cs +1 -1
  400. package/Microsoft.ReactNative.Managed.CodeGen/packages.lock.json +3197 -0
  401. package/Mso/compilerAdapters/compilerFeatures.h +1 -1
  402. package/Mso/compilerAdapters/functionDecorations.h +6 -6
  403. package/Mso/debugAssertApi/debugAssertDetails.h +1 -1
  404. package/Mso/dispatchQueue/dispatchQueue.h +3 -3
  405. package/Mso/motifCpp/motifCppTest.h +1 -1
  406. package/Mso/motifCpp/testCheck.h +1 -1
  407. package/Mso/oacr/oacr.h +1 -1
  408. package/Mso/smartPtr/smartPointerBase.h +1 -1
  409. package/Mso/src/dispatchQueue/looperScheduler.cpp +2 -2
  410. package/Mso/src/dispatchQueue/queueService.cpp +1 -1
  411. package/Mso/src/dispatchQueue/taskQueue.h +1 -1
  412. package/Mso/src/dispatchQueue/threadPoolScheduler_win.cpp +2 -2
  413. package/Mso/src/dispatchQueue/uiScheduler_winrt.cpp +122 -45
  414. package/Mso/src/eventWaitHandle/eventWaitHandleImpl_win.cpp +2 -2
  415. package/Mso/src/future/futureImpl.cpp +5 -5
  416. package/Mso/src/future/futureImpl.h +1 -1
  417. package/PropertySheets/External/Microsoft.ReactNative.Common.props +3 -0
  418. package/PropertySheets/External/{Microsoft.ReactNative.WinAppSDK.Common.props → Microsoft.ReactNative.Composition.Common.props} +2 -2
  419. package/PropertySheets/External/{Microsoft.ReactNative.WinAppSDK.CSharpApp.props → Microsoft.ReactNative.Composition.CppApp.props} +7 -10
  420. package/PropertySheets/External/Microsoft.ReactNative.Composition.CppApp.targets +19 -0
  421. package/PropertySheets/External/Microsoft.ReactNative.Composition.Package.props +14 -0
  422. package/PropertySheets/External/Microsoft.ReactNative.Composition.Package.targets +18 -0
  423. package/PropertySheets/External/Microsoft.ReactNative.WindowsSdk.Default.props +1 -1
  424. package/PropertySheets/Generated/PackageVersion.g.props +4 -4
  425. package/PropertySheets/HybridCRT.props +34 -0
  426. package/PropertySheets/JSEngine.props +1 -2
  427. package/PropertySheets/React.Cpp.props +0 -1
  428. package/PropertySheets/Warnings.props +1 -1
  429. package/PropertySheets/WinUI.props +1 -1
  430. package/ReactCommon/ReactCommon.vcxproj +15 -9
  431. package/ReactCommon/ReactCommon.vcxproj.filters +0 -3
  432. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsi/jsi/test/testlib.cpp +32 -5
  433. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Bridging.h +20 -0
  434. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/YogaLayoutableShadowNode.cpp +1038 -0
  435. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/YogaStylableProps.cpp +228 -38
  436. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/conversions.h +895 -0
  437. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/mounting/ShadowTree.cpp +543 -0
  438. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/uimanager/UIManagerBinding.cpp +1509 -0
  439. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/bits/NumericBitfield.h +67 -0
  440. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/config/Config.h +93 -0
  441. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/LayoutResults.h +88 -0
  442. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/Node.cpp +606 -0
  443. package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/Node.h +344 -0
  444. package/ReactCommon/Yoga.cpp +497 -3895
  445. package/ReactCommon/packages.lock.json +30 -0
  446. package/Scripts/NuGetRestoreForceEvaluateAllSolutions.ps1 +22 -0
  447. package/Scripts/OfficeReact.Win32.nuspec +1 -0
  448. package/Scripts/rnw-dependencies.ps1 +79 -26
  449. package/Shared/BaseScriptStoreImpl.cpp +42 -13
  450. package/Shared/BaseScriptStoreImpl.h +1 -1
  451. package/Shared/Composition/AutoDraw.h +36 -0
  452. package/Shared/CxxMessageQueue.cpp +1 -1
  453. package/Shared/DevSettings.h +3 -0
  454. package/Shared/DevSupportManager.h +1 -1
  455. package/Shared/Hasher.cpp +64 -0
  456. package/Shared/Hasher.h +24 -0
  457. package/Shared/HermesRuntimeHolder.cpp +6 -6
  458. package/Shared/IDevSupportManager.h +1 -1
  459. package/Shared/JSI/ChakraApi.cpp +1 -1
  460. package/Shared/JSI/ChakraRuntime.cpp +10 -10
  461. package/Shared/JSI/ChakraRuntime.h +6 -6
  462. package/Shared/JSI/V8RuntimeHolder.cpp +1 -1
  463. package/Shared/Modules/IRequestBodyHandler.h +1 -1
  464. package/Shared/Modules/IUriHandler.h +1 -1
  465. package/Shared/Modules/PlatformConstantsModule.cpp +1 -1
  466. package/Shared/Modules/WebSocketModule.cpp +1 -1
  467. package/Shared/Networking/DefaultBlobResource.cpp +2 -2
  468. package/Shared/Networking/OriginPolicyHttpFilter.cpp +22 -16
  469. package/Shared/Networking/OriginPolicyHttpFilter.h +12 -11
  470. package/Shared/OInstance.cpp +9 -23
  471. package/Shared/OInstance.h +1 -1
  472. package/Shared/PackagerConnection.h +1 -1
  473. package/Shared/SafeLoadLibrary.cpp +8 -44
  474. package/Shared/SafeLoadLibrary.h +1 -5
  475. package/Shared/Shared.vcxitems +50 -20
  476. package/Shared/Shared.vcxitems.filters +26 -17
  477. package/Shared/Threading/BatchingQueueThread.cpp +5 -5
  478. package/Shared/Threading/BatchingQueueThread.h +4 -4
  479. package/Shared/TurboModuleManager.cpp +1 -1
  480. package/Shared/Utils.cpp +1 -1
  481. package/Shared/tracing/fbsystrace.h +1 -1
  482. package/codegen/NativeAnimatedModuleSpec.g.h +2 -0
  483. package/codegen/NativeAnimatedTurboModuleSpec.g.h +2 -0
  484. package/codegen/NativeAppStateSpec.g.h +11 -21
  485. package/codegen/NativeDeviceInfoSpec.g.h +4 -14
  486. package/codegen/NativeI18nManagerSpec.g.h +6 -16
  487. package/codegen/NativeIntersectionObserverSpec.g.h +96 -0
  488. package/codegen/NativeMutationObserverSpec.g.h +90 -0
  489. package/codegen/NativePerformanceObserverSpec.g.h +19 -13
  490. package/codegen/NativePerformanceSpec.g.h +6 -23
  491. package/codegen/NativePlatformConstantsAndroidSpec.g.h +22 -30
  492. package/codegen/NativePlatformConstantsIOSSpec.g.h +17 -25
  493. package/codegen/NativePlatformConstantsWinSpec.g.h +14 -22
  494. package/codegen/NativeSampleTurboModuleSpec.g.h +36 -0
  495. package/codegen/NativeSourceCodeSpec.g.h +3 -13
  496. package/codegen/react/components/rnwcore/EventEmitters.cpp +85 -58
  497. package/codegen/react/components/rnwcore/EventEmitters.h +17 -35
  498. package/codegen/react/components/rnwcore/Props.h +16 -17
  499. package/codegen/rnwcoreJSI-generated.cpp +1462 -319
  500. package/codegen/rnwcoreJSI.h +1609 -462
  501. package/fmt/packages.lock.json +13 -0
  502. package/index.windows.js +3 -3
  503. package/{Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.ios.js → jest/ReactNativeInternalFeatureFlagsMock.js} +2 -1
  504. package/jest/__tests__/setup-test.js +18 -0
  505. package/jest/mockModal.js +6 -4
  506. package/jest/setup.js +61 -30
  507. package/just-task.js +1 -0
  508. package/package.json +37 -42
  509. package/template/cs-app/proj/MyApp.csproj +0 -1
  510. package/template/cs-lib/proj/MyLib.csproj +0 -1
  511. package/templates/.clang-format +4 -0
  512. package/templates/cpp-app/metro.config.js +51 -0
  513. package/templates/cpp-app/template.config.js +119 -0
  514. package/templates/cpp-app/windows/ExperimentalFeatures.props +12 -0
  515. package/templates/cpp-app/windows/MyApp/MyApp.cpp +284 -0
  516. package/templates/cpp-app/windows/MyApp/MyApp.h +3 -0
  517. package/templates/cpp-app/windows/MyApp/MyApp.ico +0 -0
  518. package/templates/cpp-app/windows/MyApp/MyApp.rc +0 -0
  519. package/templates/cpp-app/windows/MyApp/MyApp.vcxproj +142 -0
  520. package/templates/cpp-app/windows/MyApp/MyApp.vcxproj.filters +55 -0
  521. package/templates/cpp-app/windows/MyApp/_gitignore +1 -0
  522. package/templates/cpp-app/windows/MyApp/pch.cpp +1 -0
  523. package/templates/cpp-app/windows/MyApp/pch.h +35 -0
  524. package/templates/cpp-app/windows/MyApp/resource.h +18 -0
  525. package/templates/cpp-app/windows/MyApp/small.ico +0 -0
  526. package/templates/cpp-app/windows/MyApp/targetver.h +8 -0
  527. package/templates/cpp-app/windows/MyApp.Package/Images/LockScreenLogo.scale-200.png +0 -0
  528. package/templates/cpp-app/windows/MyApp.Package/Images/SplashScreen.scale-200.png +0 -0
  529. package/templates/cpp-app/windows/MyApp.Package/Images/Square150x150Logo.scale-200.png +0 -0
  530. package/templates/cpp-app/windows/MyApp.Package/Images/Square44x44Logo.scale-200.png +0 -0
  531. package/templates/cpp-app/windows/MyApp.Package/Images/Square44x44Logo.targetsize-24_altform-unplated.png +0 -0
  532. package/templates/cpp-app/windows/MyApp.Package/Images/StoreLogo.png +0 -0
  533. package/templates/cpp-app/windows/MyApp.Package/Images/Wide310x150Logo.scale-200.png +0 -0
  534. package/templates/cpp-app/windows/MyApp.Package/MyApp.Package.wapproj +78 -0
  535. package/{template/cs-app-WinAppSDK/MyApp → templates/cpp-app/windows/MyApp.Package}/Package.appxmanifest +9 -8
  536. package/templates/cpp-app/windows/MyApp.sln +176 -0
  537. package/templates/cpp-app/windows/_gitignore +41 -0
  538. package/templates/old/generateWrapper.js +67 -0
  539. package/templates/old/uwp-cpp-app/template.config.js +15 -0
  540. package/templates/old/uwp-cpp-lib/template.config.js +15 -0
  541. package/templates/old/uwp-cs-app/template.config.js +15 -0
  542. package/templates/old/uwp-cs-lib/template.config.js +15 -0
  543. package/types/experimental.d.ts +44 -0
  544. package/types/index.d.ts +2 -1
  545. package/types/modules/Devtools.d.ts +1 -0
  546. package/types/modules/globals.d.ts +16 -1
  547. package/Libraries/Components/View/ViewWindows.d.ts +0 -19
  548. package/Libraries/Components/View/ViewWindows.js +0 -22
  549. package/Libraries/Components/View/ViewWindows.js.map +0 -1
  550. package/Libraries/Components/View/ViewWindowsProps.d.ts +0 -69
  551. package/Libraries/Components/View/ViewWindowsProps.js +0 -8
  552. package/Libraries/Components/View/ViewWindowsProps.js.map +0 -1
  553. package/Libraries/Utilities/AcessibilityMapping.js +0 -154
  554. package/Libraries/Utilities/NativeDevSplitBundleLoader.js +0 -19
  555. package/Libraries/Utilities/useColorScheme.windows.js +0 -26
  556. package/Microsoft.ReactNative/Fabric/platform/react/components/view/windows/WindowsViewProps.cpp +0 -61
  557. package/Microsoft.ReactNative/Fabric/platform/react/components/view/windows/WindowsViewProps.h +0 -34
  558. package/Microsoft.ReactNative/Fabric/platform/react/components/view/windows/primitives.h +0 -42
  559. package/PropertySheets/External/Microsoft.ReactNative.WinAppSDK.CSharp.PackageReferences.props +0 -11
  560. package/PropertySheets/External/Microsoft.ReactNative.WinAppSDK.CSharpApp.targets +0 -51
  561. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/TouchEventEmitter.cpp +0 -237
  562. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/TouchEventEmitter.h +0 -59
  563. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/ViewEventEmitter.cpp +0 -159
  564. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/ViewEventEmitter.h +0 -94
  565. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/ViewProps.cpp +0 -465
  566. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/ViewProps.h +0 -116
  567. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/ViewShadowNode.cpp +0 -98
  568. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/primitives.h +0 -326
  569. package/Scripts/Microsoft.ReactNative.WindowsAppSDK.nuspec +0 -30
  570. package/Shared/V8JSIRuntimeHolder.cpp +0 -71
  571. package/Shared/V8JSIRuntimeHolder.h +0 -56
  572. package/codegen/NativeDevSplitBundleLoaderSpec.g.h +0 -34
  573. package/template/cs-app-WinAppSDK/MyApp/App.xaml +0 -16
  574. package/template/cs-app-WinAppSDK/MyApp/App.xaml.cs +0 -70
  575. package/template/cs-app-WinAppSDK/MyApp/MainWindow.xaml +0 -14
  576. package/template/cs-app-WinAppSDK/MyApp/MainWindow.xaml.cs +0 -38
  577. package/template/cs-app-WinAppSDK/MyApp/Properties/PublishProfiles/win10-arm64.pubxml +0 -19
  578. package/template/cs-app-WinAppSDK/MyApp/Properties/PublishProfiles/win10-x64.pubxml +0 -19
  579. package/template/cs-app-WinAppSDK/MyApp/Properties/PublishProfiles/win10-x86.pubxml +0 -19
  580. package/template/cs-app-WinAppSDK/MyApp/Properties/launchSettings.json +0 -10
  581. package/template/cs-app-WinAppSDK/MyApp/app.manifest +0 -15
  582. package/template/cs-app-WinAppSDK/proj/ExperimentalFeatures.props +0 -24
  583. package/template/cs-app-WinAppSDK/proj/MyApp.csproj +0 -53
  584. package/template/cs-app-WinAppSDK/proj/MyApp.sln +0 -43
  585. package/template/cs-app-WinAppSDK/proj/NuGet_Config +0 -19
  586. /package/Libraries/Components/DrawerAndroid/{DrawerLayoutAndroid.ios.js → DrawerLayoutAndroid.js} +0 -0
  587. /package/Libraries/{Renderer/public → ReactNative/ReactFabricPublicInstance}/ReactFabricPublicInstanceUtils.js +0 -0
@@ -0,0 +1,3197 @@
1
+ {
2
+ "version": 1,
3
+ "dependencies": {
4
+ "net6.0": {
5
+ "Humanizer": {
6
+ "type": "Direct",
7
+ "requested": "[2.14.1, )",
8
+ "resolved": "2.14.1",
9
+ "contentHash": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
10
+ "dependencies": {
11
+ "Humanizer.Core.af": "2.14.1",
12
+ "Humanizer.Core.ar": "2.14.1",
13
+ "Humanizer.Core.az": "2.14.1",
14
+ "Humanizer.Core.bg": "2.14.1",
15
+ "Humanizer.Core.bn-BD": "2.14.1",
16
+ "Humanizer.Core.cs": "2.14.1",
17
+ "Humanizer.Core.da": "2.14.1",
18
+ "Humanizer.Core.de": "2.14.1",
19
+ "Humanizer.Core.el": "2.14.1",
20
+ "Humanizer.Core.es": "2.14.1",
21
+ "Humanizer.Core.fa": "2.14.1",
22
+ "Humanizer.Core.fi-FI": "2.14.1",
23
+ "Humanizer.Core.fr": "2.14.1",
24
+ "Humanizer.Core.fr-BE": "2.14.1",
25
+ "Humanizer.Core.he": "2.14.1",
26
+ "Humanizer.Core.hr": "2.14.1",
27
+ "Humanizer.Core.hu": "2.14.1",
28
+ "Humanizer.Core.hy": "2.14.1",
29
+ "Humanizer.Core.id": "2.14.1",
30
+ "Humanizer.Core.is": "2.14.1",
31
+ "Humanizer.Core.it": "2.14.1",
32
+ "Humanizer.Core.ja": "2.14.1",
33
+ "Humanizer.Core.ko-KR": "2.14.1",
34
+ "Humanizer.Core.ku": "2.14.1",
35
+ "Humanizer.Core.lv": "2.14.1",
36
+ "Humanizer.Core.ms-MY": "2.14.1",
37
+ "Humanizer.Core.mt": "2.14.1",
38
+ "Humanizer.Core.nb": "2.14.1",
39
+ "Humanizer.Core.nb-NO": "2.14.1",
40
+ "Humanizer.Core.nl": "2.14.1",
41
+ "Humanizer.Core.pl": "2.14.1",
42
+ "Humanizer.Core.pt": "2.14.1",
43
+ "Humanizer.Core.ro": "2.14.1",
44
+ "Humanizer.Core.ru": "2.14.1",
45
+ "Humanizer.Core.sk": "2.14.1",
46
+ "Humanizer.Core.sl": "2.14.1",
47
+ "Humanizer.Core.sr": "2.14.1",
48
+ "Humanizer.Core.sr-Latn": "2.14.1",
49
+ "Humanizer.Core.sv": "2.14.1",
50
+ "Humanizer.Core.th-TH": "2.14.1",
51
+ "Humanizer.Core.tr": "2.14.1",
52
+ "Humanizer.Core.uk": "2.14.1",
53
+ "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
54
+ "Humanizer.Core.uz-Latn-UZ": "2.14.1",
55
+ "Humanizer.Core.vi": "2.14.1",
56
+ "Humanizer.Core.zh-CN": "2.14.1",
57
+ "Humanizer.Core.zh-Hans": "2.14.1",
58
+ "Humanizer.Core.zh-Hant": "2.14.1"
59
+ }
60
+ },
61
+ "Microsoft.CodeAnalysis.CSharp": {
62
+ "type": "Direct",
63
+ "requested": "[4.3.1, )",
64
+ "resolved": "4.3.1",
65
+ "contentHash": "5C9VHvahL98tumlyaT/loB5rW+K/6q0UU7uLyT1Dv15YjZraRkqML9u2t2e8GaO7XqEOtBVqK/SlxXOPqwzxog==",
66
+ "dependencies": {
67
+ "Microsoft.CodeAnalysis.Common": "[4.3.1]"
68
+ }
69
+ },
70
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": {
71
+ "type": "Direct",
72
+ "requested": "[4.3.1, )",
73
+ "resolved": "4.3.1",
74
+ "contentHash": "mRTePOunrPzWkUT7I/FUQF6EFopAuYt0EiYbznkULOyHFT9eHDtN+gaHxqx9or/edAXgpm0KVeybQ83ri/M9Ww==",
75
+ "dependencies": {
76
+ "Humanizer.Core": "2.14.1",
77
+ "Microsoft.CodeAnalysis.CSharp": "[4.3.1]",
78
+ "Microsoft.CodeAnalysis.Common": "[4.3.1]",
79
+ "Microsoft.CodeAnalysis.Workspaces.Common": "[4.3.1]"
80
+ }
81
+ },
82
+ "RuntimeContracts": {
83
+ "type": "Direct",
84
+ "requested": "[0.3.0, )",
85
+ "resolved": "0.3.0",
86
+ "contentHash": "pOQaQ0MJe9ylcIy24BPXyu1NC3XgujLlDxuVqfvws62CUoSqz7lELyU5WdYal5p63D3G/Mop9nnVdNNgPkA/ew==",
87
+ "dependencies": {
88
+ "NETStandard.Library": "1.6.1",
89
+ "RuntimeContracts.Analyzer": "0.3.0"
90
+ }
91
+ },
92
+ "System.Private.Uri": {
93
+ "type": "Direct",
94
+ "requested": "[4.3.2, )",
95
+ "resolved": "4.3.2",
96
+ "contentHash": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
97
+ "dependencies": {
98
+ "Microsoft.NETCore.Platforms": "1.1.1",
99
+ "Microsoft.NETCore.Targets": "1.1.3"
100
+ }
101
+ },
102
+ "Humanizer.Core": {
103
+ "type": "Transitive",
104
+ "resolved": "2.14.1",
105
+ "contentHash": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw=="
106
+ },
107
+ "Humanizer.Core.af": {
108
+ "type": "Transitive",
109
+ "resolved": "2.14.1",
110
+ "contentHash": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
111
+ "dependencies": {
112
+ "Humanizer.Core": "[2.14.1]"
113
+ }
114
+ },
115
+ "Humanizer.Core.ar": {
116
+ "type": "Transitive",
117
+ "resolved": "2.14.1",
118
+ "contentHash": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
119
+ "dependencies": {
120
+ "Humanizer.Core": "[2.14.1]"
121
+ }
122
+ },
123
+ "Humanizer.Core.az": {
124
+ "type": "Transitive",
125
+ "resolved": "2.14.1",
126
+ "contentHash": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
127
+ "dependencies": {
128
+ "Humanizer.Core": "[2.14.1]"
129
+ }
130
+ },
131
+ "Humanizer.Core.bg": {
132
+ "type": "Transitive",
133
+ "resolved": "2.14.1",
134
+ "contentHash": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
135
+ "dependencies": {
136
+ "Humanizer.Core": "[2.14.1]"
137
+ }
138
+ },
139
+ "Humanizer.Core.bn-BD": {
140
+ "type": "Transitive",
141
+ "resolved": "2.14.1",
142
+ "contentHash": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
143
+ "dependencies": {
144
+ "Humanizer.Core": "[2.14.1]"
145
+ }
146
+ },
147
+ "Humanizer.Core.cs": {
148
+ "type": "Transitive",
149
+ "resolved": "2.14.1",
150
+ "contentHash": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
151
+ "dependencies": {
152
+ "Humanizer.Core": "[2.14.1]"
153
+ }
154
+ },
155
+ "Humanizer.Core.da": {
156
+ "type": "Transitive",
157
+ "resolved": "2.14.1",
158
+ "contentHash": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
159
+ "dependencies": {
160
+ "Humanizer.Core": "[2.14.1]"
161
+ }
162
+ },
163
+ "Humanizer.Core.de": {
164
+ "type": "Transitive",
165
+ "resolved": "2.14.1",
166
+ "contentHash": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
167
+ "dependencies": {
168
+ "Humanizer.Core": "[2.14.1]"
169
+ }
170
+ },
171
+ "Humanizer.Core.el": {
172
+ "type": "Transitive",
173
+ "resolved": "2.14.1",
174
+ "contentHash": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
175
+ "dependencies": {
176
+ "Humanizer.Core": "[2.14.1]"
177
+ }
178
+ },
179
+ "Humanizer.Core.es": {
180
+ "type": "Transitive",
181
+ "resolved": "2.14.1",
182
+ "contentHash": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
183
+ "dependencies": {
184
+ "Humanizer.Core": "[2.14.1]"
185
+ }
186
+ },
187
+ "Humanizer.Core.fa": {
188
+ "type": "Transitive",
189
+ "resolved": "2.14.1",
190
+ "contentHash": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
191
+ "dependencies": {
192
+ "Humanizer.Core": "[2.14.1]"
193
+ }
194
+ },
195
+ "Humanizer.Core.fi-FI": {
196
+ "type": "Transitive",
197
+ "resolved": "2.14.1",
198
+ "contentHash": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
199
+ "dependencies": {
200
+ "Humanizer.Core": "[2.14.1]"
201
+ }
202
+ },
203
+ "Humanizer.Core.fr": {
204
+ "type": "Transitive",
205
+ "resolved": "2.14.1",
206
+ "contentHash": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
207
+ "dependencies": {
208
+ "Humanizer.Core": "[2.14.1]"
209
+ }
210
+ },
211
+ "Humanizer.Core.fr-BE": {
212
+ "type": "Transitive",
213
+ "resolved": "2.14.1",
214
+ "contentHash": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
215
+ "dependencies": {
216
+ "Humanizer.Core": "[2.14.1]"
217
+ }
218
+ },
219
+ "Humanizer.Core.he": {
220
+ "type": "Transitive",
221
+ "resolved": "2.14.1",
222
+ "contentHash": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
223
+ "dependencies": {
224
+ "Humanizer.Core": "[2.14.1]"
225
+ }
226
+ },
227
+ "Humanizer.Core.hr": {
228
+ "type": "Transitive",
229
+ "resolved": "2.14.1",
230
+ "contentHash": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
231
+ "dependencies": {
232
+ "Humanizer.Core": "[2.14.1]"
233
+ }
234
+ },
235
+ "Humanizer.Core.hu": {
236
+ "type": "Transitive",
237
+ "resolved": "2.14.1",
238
+ "contentHash": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
239
+ "dependencies": {
240
+ "Humanizer.Core": "[2.14.1]"
241
+ }
242
+ },
243
+ "Humanizer.Core.hy": {
244
+ "type": "Transitive",
245
+ "resolved": "2.14.1",
246
+ "contentHash": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
247
+ "dependencies": {
248
+ "Humanizer.Core": "[2.14.1]"
249
+ }
250
+ },
251
+ "Humanizer.Core.id": {
252
+ "type": "Transitive",
253
+ "resolved": "2.14.1",
254
+ "contentHash": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
255
+ "dependencies": {
256
+ "Humanizer.Core": "[2.14.1]"
257
+ }
258
+ },
259
+ "Humanizer.Core.is": {
260
+ "type": "Transitive",
261
+ "resolved": "2.14.1",
262
+ "contentHash": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
263
+ "dependencies": {
264
+ "Humanizer.Core": "[2.14.1]"
265
+ }
266
+ },
267
+ "Humanizer.Core.it": {
268
+ "type": "Transitive",
269
+ "resolved": "2.14.1",
270
+ "contentHash": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
271
+ "dependencies": {
272
+ "Humanizer.Core": "[2.14.1]"
273
+ }
274
+ },
275
+ "Humanizer.Core.ja": {
276
+ "type": "Transitive",
277
+ "resolved": "2.14.1",
278
+ "contentHash": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
279
+ "dependencies": {
280
+ "Humanizer.Core": "[2.14.1]"
281
+ }
282
+ },
283
+ "Humanizer.Core.ko-KR": {
284
+ "type": "Transitive",
285
+ "resolved": "2.14.1",
286
+ "contentHash": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
287
+ "dependencies": {
288
+ "Humanizer.Core": "[2.14.1]"
289
+ }
290
+ },
291
+ "Humanizer.Core.ku": {
292
+ "type": "Transitive",
293
+ "resolved": "2.14.1",
294
+ "contentHash": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
295
+ "dependencies": {
296
+ "Humanizer.Core": "[2.14.1]"
297
+ }
298
+ },
299
+ "Humanizer.Core.lv": {
300
+ "type": "Transitive",
301
+ "resolved": "2.14.1",
302
+ "contentHash": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
303
+ "dependencies": {
304
+ "Humanizer.Core": "[2.14.1]"
305
+ }
306
+ },
307
+ "Humanizer.Core.ms-MY": {
308
+ "type": "Transitive",
309
+ "resolved": "2.14.1",
310
+ "contentHash": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
311
+ "dependencies": {
312
+ "Humanizer.Core": "[2.14.1]"
313
+ }
314
+ },
315
+ "Humanizer.Core.mt": {
316
+ "type": "Transitive",
317
+ "resolved": "2.14.1",
318
+ "contentHash": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
319
+ "dependencies": {
320
+ "Humanizer.Core": "[2.14.1]"
321
+ }
322
+ },
323
+ "Humanizer.Core.nb": {
324
+ "type": "Transitive",
325
+ "resolved": "2.14.1",
326
+ "contentHash": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
327
+ "dependencies": {
328
+ "Humanizer.Core": "[2.14.1]"
329
+ }
330
+ },
331
+ "Humanizer.Core.nb-NO": {
332
+ "type": "Transitive",
333
+ "resolved": "2.14.1",
334
+ "contentHash": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
335
+ "dependencies": {
336
+ "Humanizer.Core": "[2.14.1]"
337
+ }
338
+ },
339
+ "Humanizer.Core.nl": {
340
+ "type": "Transitive",
341
+ "resolved": "2.14.1",
342
+ "contentHash": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
343
+ "dependencies": {
344
+ "Humanizer.Core": "[2.14.1]"
345
+ }
346
+ },
347
+ "Humanizer.Core.pl": {
348
+ "type": "Transitive",
349
+ "resolved": "2.14.1",
350
+ "contentHash": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
351
+ "dependencies": {
352
+ "Humanizer.Core": "[2.14.1]"
353
+ }
354
+ },
355
+ "Humanizer.Core.pt": {
356
+ "type": "Transitive",
357
+ "resolved": "2.14.1",
358
+ "contentHash": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
359
+ "dependencies": {
360
+ "Humanizer.Core": "[2.14.1]"
361
+ }
362
+ },
363
+ "Humanizer.Core.ro": {
364
+ "type": "Transitive",
365
+ "resolved": "2.14.1",
366
+ "contentHash": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
367
+ "dependencies": {
368
+ "Humanizer.Core": "[2.14.1]"
369
+ }
370
+ },
371
+ "Humanizer.Core.ru": {
372
+ "type": "Transitive",
373
+ "resolved": "2.14.1",
374
+ "contentHash": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
375
+ "dependencies": {
376
+ "Humanizer.Core": "[2.14.1]"
377
+ }
378
+ },
379
+ "Humanizer.Core.sk": {
380
+ "type": "Transitive",
381
+ "resolved": "2.14.1",
382
+ "contentHash": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
383
+ "dependencies": {
384
+ "Humanizer.Core": "[2.14.1]"
385
+ }
386
+ },
387
+ "Humanizer.Core.sl": {
388
+ "type": "Transitive",
389
+ "resolved": "2.14.1",
390
+ "contentHash": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
391
+ "dependencies": {
392
+ "Humanizer.Core": "[2.14.1]"
393
+ }
394
+ },
395
+ "Humanizer.Core.sr": {
396
+ "type": "Transitive",
397
+ "resolved": "2.14.1",
398
+ "contentHash": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
399
+ "dependencies": {
400
+ "Humanizer.Core": "[2.14.1]"
401
+ }
402
+ },
403
+ "Humanizer.Core.sr-Latn": {
404
+ "type": "Transitive",
405
+ "resolved": "2.14.1",
406
+ "contentHash": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
407
+ "dependencies": {
408
+ "Humanizer.Core": "[2.14.1]"
409
+ }
410
+ },
411
+ "Humanizer.Core.sv": {
412
+ "type": "Transitive",
413
+ "resolved": "2.14.1",
414
+ "contentHash": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
415
+ "dependencies": {
416
+ "Humanizer.Core": "[2.14.1]"
417
+ }
418
+ },
419
+ "Humanizer.Core.th-TH": {
420
+ "type": "Transitive",
421
+ "resolved": "2.14.1",
422
+ "contentHash": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
423
+ "dependencies": {
424
+ "Humanizer.Core": "[2.14.1]"
425
+ }
426
+ },
427
+ "Humanizer.Core.tr": {
428
+ "type": "Transitive",
429
+ "resolved": "2.14.1",
430
+ "contentHash": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
431
+ "dependencies": {
432
+ "Humanizer.Core": "[2.14.1]"
433
+ }
434
+ },
435
+ "Humanizer.Core.uk": {
436
+ "type": "Transitive",
437
+ "resolved": "2.14.1",
438
+ "contentHash": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
439
+ "dependencies": {
440
+ "Humanizer.Core": "[2.14.1]"
441
+ }
442
+ },
443
+ "Humanizer.Core.uz-Cyrl-UZ": {
444
+ "type": "Transitive",
445
+ "resolved": "2.14.1",
446
+ "contentHash": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
447
+ "dependencies": {
448
+ "Humanizer.Core": "[2.14.1]"
449
+ }
450
+ },
451
+ "Humanizer.Core.uz-Latn-UZ": {
452
+ "type": "Transitive",
453
+ "resolved": "2.14.1",
454
+ "contentHash": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
455
+ "dependencies": {
456
+ "Humanizer.Core": "[2.14.1]"
457
+ }
458
+ },
459
+ "Humanizer.Core.vi": {
460
+ "type": "Transitive",
461
+ "resolved": "2.14.1",
462
+ "contentHash": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
463
+ "dependencies": {
464
+ "Humanizer.Core": "[2.14.1]"
465
+ }
466
+ },
467
+ "Humanizer.Core.zh-CN": {
468
+ "type": "Transitive",
469
+ "resolved": "2.14.1",
470
+ "contentHash": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
471
+ "dependencies": {
472
+ "Humanizer.Core": "[2.14.1]"
473
+ }
474
+ },
475
+ "Humanizer.Core.zh-Hans": {
476
+ "type": "Transitive",
477
+ "resolved": "2.14.1",
478
+ "contentHash": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
479
+ "dependencies": {
480
+ "Humanizer.Core": "[2.14.1]"
481
+ }
482
+ },
483
+ "Humanizer.Core.zh-Hant": {
484
+ "type": "Transitive",
485
+ "resolved": "2.14.1",
486
+ "contentHash": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
487
+ "dependencies": {
488
+ "Humanizer.Core": "[2.14.1]"
489
+ }
490
+ },
491
+ "Microsoft.Bcl.AsyncInterfaces": {
492
+ "type": "Transitive",
493
+ "resolved": "6.0.0",
494
+ "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg=="
495
+ },
496
+ "Microsoft.CodeAnalysis.Analyzers": {
497
+ "type": "Transitive",
498
+ "resolved": "3.3.3",
499
+ "contentHash": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ=="
500
+ },
501
+ "Microsoft.CodeAnalysis.Common": {
502
+ "type": "Transitive",
503
+ "resolved": "4.3.1",
504
+ "contentHash": "wexpJffSEEwptwe6UTMxRDZCCtz+XubI4Qewl4JECnNhcQrtb0anhSUEV9Nz7WkoNfWkx1fptR8xh1egoxYrqw==",
505
+ "dependencies": {
506
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
507
+ "System.Collections.Immutable": "6.0.0",
508
+ "System.Memory": "4.5.4",
509
+ "System.Reflection.Metadata": "5.0.0",
510
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
511
+ "System.Text.Encoding.CodePages": "6.0.0",
512
+ "System.Threading.Tasks.Extensions": "4.5.4"
513
+ }
514
+ },
515
+ "Microsoft.CodeAnalysis.Workspaces.Common": {
516
+ "type": "Transitive",
517
+ "resolved": "4.3.1",
518
+ "contentHash": "PtkBobNNtAJ6teR/tzuDGf4829DcIUJJqN4wRtshRG28Xs+DRvnE4znFvZWJ8hsnBWGsywqjpRYjvoAdIYi3NA==",
519
+ "dependencies": {
520
+ "Humanizer.Core": "2.14.1",
521
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
522
+ "Microsoft.CodeAnalysis.Common": "[4.3.1]",
523
+ "System.Composition": "6.0.0",
524
+ "System.IO.Pipelines": "6.0.3"
525
+ }
526
+ },
527
+ "Microsoft.NETCore.Platforms": {
528
+ "type": "Transitive",
529
+ "resolved": "1.1.1",
530
+ "contentHash": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ=="
531
+ },
532
+ "Microsoft.NETCore.Targets": {
533
+ "type": "Transitive",
534
+ "resolved": "1.1.3",
535
+ "contentHash": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ=="
536
+ },
537
+ "Microsoft.Win32.Primitives": {
538
+ "type": "Transitive",
539
+ "resolved": "4.3.0",
540
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
541
+ "dependencies": {
542
+ "Microsoft.NETCore.Platforms": "1.1.0",
543
+ "Microsoft.NETCore.Targets": "1.1.0",
544
+ "System.Runtime": "4.3.0"
545
+ }
546
+ },
547
+ "NETStandard.Library": {
548
+ "type": "Transitive",
549
+ "resolved": "1.6.1",
550
+ "contentHash": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
551
+ "dependencies": {
552
+ "Microsoft.NETCore.Platforms": "1.1.0",
553
+ "Microsoft.Win32.Primitives": "4.3.0",
554
+ "System.AppContext": "4.3.0",
555
+ "System.Collections": "4.3.0",
556
+ "System.Collections.Concurrent": "4.3.0",
557
+ "System.Console": "4.3.0",
558
+ "System.Diagnostics.Debug": "4.3.0",
559
+ "System.Diagnostics.Tools": "4.3.0",
560
+ "System.Diagnostics.Tracing": "4.3.0",
561
+ "System.Globalization": "4.3.0",
562
+ "System.Globalization.Calendars": "4.3.0",
563
+ "System.IO": "4.3.0",
564
+ "System.IO.Compression": "4.3.0",
565
+ "System.IO.Compression.ZipFile": "4.3.0",
566
+ "System.IO.FileSystem": "4.3.0",
567
+ "System.IO.FileSystem.Primitives": "4.3.0",
568
+ "System.Linq": "4.3.0",
569
+ "System.Linq.Expressions": "4.3.0",
570
+ "System.Net.Http": "4.3.0",
571
+ "System.Net.Primitives": "4.3.0",
572
+ "System.Net.Sockets": "4.3.0",
573
+ "System.ObjectModel": "4.3.0",
574
+ "System.Reflection": "4.3.0",
575
+ "System.Reflection.Extensions": "4.3.0",
576
+ "System.Reflection.Primitives": "4.3.0",
577
+ "System.Resources.ResourceManager": "4.3.0",
578
+ "System.Runtime": "4.3.0",
579
+ "System.Runtime.Extensions": "4.3.0",
580
+ "System.Runtime.Handles": "4.3.0",
581
+ "System.Runtime.InteropServices": "4.3.0",
582
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
583
+ "System.Runtime.Numerics": "4.3.0",
584
+ "System.Security.Cryptography.Algorithms": "4.3.0",
585
+ "System.Security.Cryptography.Encoding": "4.3.0",
586
+ "System.Security.Cryptography.Primitives": "4.3.0",
587
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
588
+ "System.Text.Encoding": "4.3.0",
589
+ "System.Text.Encoding.Extensions": "4.3.0",
590
+ "System.Text.RegularExpressions": "4.3.0",
591
+ "System.Threading": "4.3.0",
592
+ "System.Threading.Tasks": "4.3.0",
593
+ "System.Threading.Timer": "4.3.0",
594
+ "System.Xml.ReaderWriter": "4.3.0",
595
+ "System.Xml.XDocument": "4.3.0"
596
+ }
597
+ },
598
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
599
+ "type": "Transitive",
600
+ "resolved": "4.3.0",
601
+ "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
602
+ },
603
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
604
+ "type": "Transitive",
605
+ "resolved": "4.3.0",
606
+ "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
607
+ },
608
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
609
+ "type": "Transitive",
610
+ "resolved": "4.3.0",
611
+ "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
612
+ },
613
+ "runtime.native.System": {
614
+ "type": "Transitive",
615
+ "resolved": "4.3.0",
616
+ "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
617
+ "dependencies": {
618
+ "Microsoft.NETCore.Platforms": "1.1.0",
619
+ "Microsoft.NETCore.Targets": "1.1.0"
620
+ }
621
+ },
622
+ "runtime.native.System.IO.Compression": {
623
+ "type": "Transitive",
624
+ "resolved": "4.3.0",
625
+ "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
626
+ "dependencies": {
627
+ "Microsoft.NETCore.Platforms": "1.1.0",
628
+ "Microsoft.NETCore.Targets": "1.1.0"
629
+ }
630
+ },
631
+ "runtime.native.System.Net.Http": {
632
+ "type": "Transitive",
633
+ "resolved": "4.3.0",
634
+ "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
635
+ "dependencies": {
636
+ "Microsoft.NETCore.Platforms": "1.1.0",
637
+ "Microsoft.NETCore.Targets": "1.1.0"
638
+ }
639
+ },
640
+ "runtime.native.System.Security.Cryptography.Apple": {
641
+ "type": "Transitive",
642
+ "resolved": "4.3.0",
643
+ "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
644
+ "dependencies": {
645
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
646
+ }
647
+ },
648
+ "runtime.native.System.Security.Cryptography.OpenSsl": {
649
+ "type": "Transitive",
650
+ "resolved": "4.3.0",
651
+ "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
652
+ "dependencies": {
653
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
654
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
655
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
656
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
657
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
658
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
659
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
660
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
661
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
662
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
663
+ }
664
+ },
665
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
666
+ "type": "Transitive",
667
+ "resolved": "4.3.0",
668
+ "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
669
+ },
670
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
671
+ "type": "Transitive",
672
+ "resolved": "4.3.0",
673
+ "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
674
+ },
675
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
676
+ "type": "Transitive",
677
+ "resolved": "4.3.0",
678
+ "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
679
+ },
680
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
681
+ "type": "Transitive",
682
+ "resolved": "4.3.0",
683
+ "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
684
+ },
685
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
686
+ "type": "Transitive",
687
+ "resolved": "4.3.0",
688
+ "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
689
+ },
690
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
691
+ "type": "Transitive",
692
+ "resolved": "4.3.0",
693
+ "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
694
+ },
695
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
696
+ "type": "Transitive",
697
+ "resolved": "4.3.0",
698
+ "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
699
+ },
700
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
701
+ "type": "Transitive",
702
+ "resolved": "4.3.0",
703
+ "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
704
+ },
705
+ "RuntimeContracts.Analyzer": {
706
+ "type": "Transitive",
707
+ "resolved": "0.3.0",
708
+ "contentHash": "dcNFLPRXqdzKK/upZqMZFoKgXrA3q/b2uq84aIMI1tRCyyaT6+/4n/eY/0FIhKHhfTBLjMfOzBVVhTDC6o4TmQ=="
709
+ },
710
+ "System.AppContext": {
711
+ "type": "Transitive",
712
+ "resolved": "4.3.0",
713
+ "contentHash": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
714
+ "dependencies": {
715
+ "System.Runtime": "4.3.0"
716
+ }
717
+ },
718
+ "System.Buffers": {
719
+ "type": "Transitive",
720
+ "resolved": "4.3.0",
721
+ "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
722
+ "dependencies": {
723
+ "System.Diagnostics.Debug": "4.3.0",
724
+ "System.Diagnostics.Tracing": "4.3.0",
725
+ "System.Resources.ResourceManager": "4.3.0",
726
+ "System.Runtime": "4.3.0",
727
+ "System.Threading": "4.3.0"
728
+ }
729
+ },
730
+ "System.Collections": {
731
+ "type": "Transitive",
732
+ "resolved": "4.3.0",
733
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
734
+ "dependencies": {
735
+ "Microsoft.NETCore.Platforms": "1.1.0",
736
+ "Microsoft.NETCore.Targets": "1.1.0",
737
+ "System.Runtime": "4.3.0"
738
+ }
739
+ },
740
+ "System.Collections.Concurrent": {
741
+ "type": "Transitive",
742
+ "resolved": "4.3.0",
743
+ "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
744
+ "dependencies": {
745
+ "System.Collections": "4.3.0",
746
+ "System.Diagnostics.Debug": "4.3.0",
747
+ "System.Diagnostics.Tracing": "4.3.0",
748
+ "System.Globalization": "4.3.0",
749
+ "System.Reflection": "4.3.0",
750
+ "System.Resources.ResourceManager": "4.3.0",
751
+ "System.Runtime": "4.3.0",
752
+ "System.Runtime.Extensions": "4.3.0",
753
+ "System.Threading": "4.3.0",
754
+ "System.Threading.Tasks": "4.3.0"
755
+ }
756
+ },
757
+ "System.Collections.Immutable": {
758
+ "type": "Transitive",
759
+ "resolved": "6.0.0",
760
+ "contentHash": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
761
+ "dependencies": {
762
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
763
+ }
764
+ },
765
+ "System.Composition": {
766
+ "type": "Transitive",
767
+ "resolved": "6.0.0",
768
+ "contentHash": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
769
+ "dependencies": {
770
+ "System.Composition.AttributedModel": "6.0.0",
771
+ "System.Composition.Convention": "6.0.0",
772
+ "System.Composition.Hosting": "6.0.0",
773
+ "System.Composition.Runtime": "6.0.0",
774
+ "System.Composition.TypedParts": "6.0.0"
775
+ }
776
+ },
777
+ "System.Composition.AttributedModel": {
778
+ "type": "Transitive",
779
+ "resolved": "6.0.0",
780
+ "contentHash": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w=="
781
+ },
782
+ "System.Composition.Convention": {
783
+ "type": "Transitive",
784
+ "resolved": "6.0.0",
785
+ "contentHash": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
786
+ "dependencies": {
787
+ "System.Composition.AttributedModel": "6.0.0"
788
+ }
789
+ },
790
+ "System.Composition.Hosting": {
791
+ "type": "Transitive",
792
+ "resolved": "6.0.0",
793
+ "contentHash": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
794
+ "dependencies": {
795
+ "System.Composition.Runtime": "6.0.0"
796
+ }
797
+ },
798
+ "System.Composition.Runtime": {
799
+ "type": "Transitive",
800
+ "resolved": "6.0.0",
801
+ "contentHash": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg=="
802
+ },
803
+ "System.Composition.TypedParts": {
804
+ "type": "Transitive",
805
+ "resolved": "6.0.0",
806
+ "contentHash": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
807
+ "dependencies": {
808
+ "System.Composition.AttributedModel": "6.0.0",
809
+ "System.Composition.Hosting": "6.0.0",
810
+ "System.Composition.Runtime": "6.0.0"
811
+ }
812
+ },
813
+ "System.Console": {
814
+ "type": "Transitive",
815
+ "resolved": "4.3.0",
816
+ "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
817
+ "dependencies": {
818
+ "Microsoft.NETCore.Platforms": "1.1.0",
819
+ "Microsoft.NETCore.Targets": "1.1.0",
820
+ "System.IO": "4.3.0",
821
+ "System.Runtime": "4.3.0",
822
+ "System.Text.Encoding": "4.3.0"
823
+ }
824
+ },
825
+ "System.Diagnostics.Debug": {
826
+ "type": "Transitive",
827
+ "resolved": "4.3.0",
828
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
829
+ "dependencies": {
830
+ "Microsoft.NETCore.Platforms": "1.1.0",
831
+ "Microsoft.NETCore.Targets": "1.1.0",
832
+ "System.Runtime": "4.3.0"
833
+ }
834
+ },
835
+ "System.Diagnostics.DiagnosticSource": {
836
+ "type": "Transitive",
837
+ "resolved": "4.3.0",
838
+ "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
839
+ "dependencies": {
840
+ "System.Collections": "4.3.0",
841
+ "System.Diagnostics.Tracing": "4.3.0",
842
+ "System.Reflection": "4.3.0",
843
+ "System.Runtime": "4.3.0",
844
+ "System.Threading": "4.3.0"
845
+ }
846
+ },
847
+ "System.Diagnostics.Tools": {
848
+ "type": "Transitive",
849
+ "resolved": "4.3.0",
850
+ "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
851
+ "dependencies": {
852
+ "Microsoft.NETCore.Platforms": "1.1.0",
853
+ "Microsoft.NETCore.Targets": "1.1.0",
854
+ "System.Runtime": "4.3.0"
855
+ }
856
+ },
857
+ "System.Diagnostics.Tracing": {
858
+ "type": "Transitive",
859
+ "resolved": "4.3.0",
860
+ "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
861
+ "dependencies": {
862
+ "Microsoft.NETCore.Platforms": "1.1.0",
863
+ "Microsoft.NETCore.Targets": "1.1.0",
864
+ "System.Runtime": "4.3.0"
865
+ }
866
+ },
867
+ "System.Globalization": {
868
+ "type": "Transitive",
869
+ "resolved": "4.3.0",
870
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
871
+ "dependencies": {
872
+ "Microsoft.NETCore.Platforms": "1.1.0",
873
+ "Microsoft.NETCore.Targets": "1.1.0",
874
+ "System.Runtime": "4.3.0"
875
+ }
876
+ },
877
+ "System.Globalization.Calendars": {
878
+ "type": "Transitive",
879
+ "resolved": "4.3.0",
880
+ "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
881
+ "dependencies": {
882
+ "Microsoft.NETCore.Platforms": "1.1.0",
883
+ "Microsoft.NETCore.Targets": "1.1.0",
884
+ "System.Globalization": "4.3.0",
885
+ "System.Runtime": "4.3.0"
886
+ }
887
+ },
888
+ "System.Globalization.Extensions": {
889
+ "type": "Transitive",
890
+ "resolved": "4.3.0",
891
+ "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
892
+ "dependencies": {
893
+ "Microsoft.NETCore.Platforms": "1.1.0",
894
+ "System.Globalization": "4.3.0",
895
+ "System.Resources.ResourceManager": "4.3.0",
896
+ "System.Runtime": "4.3.0",
897
+ "System.Runtime.Extensions": "4.3.0",
898
+ "System.Runtime.InteropServices": "4.3.0"
899
+ }
900
+ },
901
+ "System.IO": {
902
+ "type": "Transitive",
903
+ "resolved": "4.3.0",
904
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
905
+ "dependencies": {
906
+ "Microsoft.NETCore.Platforms": "1.1.0",
907
+ "Microsoft.NETCore.Targets": "1.1.0",
908
+ "System.Runtime": "4.3.0",
909
+ "System.Text.Encoding": "4.3.0",
910
+ "System.Threading.Tasks": "4.3.0"
911
+ }
912
+ },
913
+ "System.IO.Compression": {
914
+ "type": "Transitive",
915
+ "resolved": "4.3.0",
916
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
917
+ "dependencies": {
918
+ "Microsoft.NETCore.Platforms": "1.1.0",
919
+ "System.Buffers": "4.3.0",
920
+ "System.Collections": "4.3.0",
921
+ "System.Diagnostics.Debug": "4.3.0",
922
+ "System.IO": "4.3.0",
923
+ "System.Resources.ResourceManager": "4.3.0",
924
+ "System.Runtime": "4.3.0",
925
+ "System.Runtime.Extensions": "4.3.0",
926
+ "System.Runtime.Handles": "4.3.0",
927
+ "System.Runtime.InteropServices": "4.3.0",
928
+ "System.Text.Encoding": "4.3.0",
929
+ "System.Threading": "4.3.0",
930
+ "System.Threading.Tasks": "4.3.0",
931
+ "runtime.native.System": "4.3.0",
932
+ "runtime.native.System.IO.Compression": "4.3.0"
933
+ }
934
+ },
935
+ "System.IO.Compression.ZipFile": {
936
+ "type": "Transitive",
937
+ "resolved": "4.3.0",
938
+ "contentHash": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
939
+ "dependencies": {
940
+ "System.Buffers": "4.3.0",
941
+ "System.IO": "4.3.0",
942
+ "System.IO.Compression": "4.3.0",
943
+ "System.IO.FileSystem": "4.3.0",
944
+ "System.IO.FileSystem.Primitives": "4.3.0",
945
+ "System.Resources.ResourceManager": "4.3.0",
946
+ "System.Runtime": "4.3.0",
947
+ "System.Runtime.Extensions": "4.3.0",
948
+ "System.Text.Encoding": "4.3.0"
949
+ }
950
+ },
951
+ "System.IO.FileSystem": {
952
+ "type": "Transitive",
953
+ "resolved": "4.3.0",
954
+ "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
955
+ "dependencies": {
956
+ "Microsoft.NETCore.Platforms": "1.1.0",
957
+ "Microsoft.NETCore.Targets": "1.1.0",
958
+ "System.IO": "4.3.0",
959
+ "System.IO.FileSystem.Primitives": "4.3.0",
960
+ "System.Runtime": "4.3.0",
961
+ "System.Runtime.Handles": "4.3.0",
962
+ "System.Text.Encoding": "4.3.0",
963
+ "System.Threading.Tasks": "4.3.0"
964
+ }
965
+ },
966
+ "System.IO.FileSystem.Primitives": {
967
+ "type": "Transitive",
968
+ "resolved": "4.3.0",
969
+ "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
970
+ "dependencies": {
971
+ "System.Runtime": "4.3.0"
972
+ }
973
+ },
974
+ "System.IO.Pipelines": {
975
+ "type": "Transitive",
976
+ "resolved": "6.0.3",
977
+ "contentHash": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw=="
978
+ },
979
+ "System.Linq": {
980
+ "type": "Transitive",
981
+ "resolved": "4.3.0",
982
+ "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
983
+ "dependencies": {
984
+ "System.Collections": "4.3.0",
985
+ "System.Diagnostics.Debug": "4.3.0",
986
+ "System.Resources.ResourceManager": "4.3.0",
987
+ "System.Runtime": "4.3.0",
988
+ "System.Runtime.Extensions": "4.3.0"
989
+ }
990
+ },
991
+ "System.Linq.Expressions": {
992
+ "type": "Transitive",
993
+ "resolved": "4.3.0",
994
+ "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
995
+ "dependencies": {
996
+ "System.Collections": "4.3.0",
997
+ "System.Diagnostics.Debug": "4.3.0",
998
+ "System.Globalization": "4.3.0",
999
+ "System.IO": "4.3.0",
1000
+ "System.Linq": "4.3.0",
1001
+ "System.ObjectModel": "4.3.0",
1002
+ "System.Reflection": "4.3.0",
1003
+ "System.Reflection.Emit": "4.3.0",
1004
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
1005
+ "System.Reflection.Emit.Lightweight": "4.3.0",
1006
+ "System.Reflection.Extensions": "4.3.0",
1007
+ "System.Reflection.Primitives": "4.3.0",
1008
+ "System.Reflection.TypeExtensions": "4.3.0",
1009
+ "System.Resources.ResourceManager": "4.3.0",
1010
+ "System.Runtime": "4.3.0",
1011
+ "System.Runtime.Extensions": "4.3.0",
1012
+ "System.Threading": "4.3.0"
1013
+ }
1014
+ },
1015
+ "System.Memory": {
1016
+ "type": "Transitive",
1017
+ "resolved": "4.5.4",
1018
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
1019
+ },
1020
+ "System.Net.Http": {
1021
+ "type": "Transitive",
1022
+ "resolved": "4.3.0",
1023
+ "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
1024
+ "dependencies": {
1025
+ "Microsoft.NETCore.Platforms": "1.1.0",
1026
+ "System.Collections": "4.3.0",
1027
+ "System.Diagnostics.Debug": "4.3.0",
1028
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
1029
+ "System.Diagnostics.Tracing": "4.3.0",
1030
+ "System.Globalization": "4.3.0",
1031
+ "System.Globalization.Extensions": "4.3.0",
1032
+ "System.IO": "4.3.0",
1033
+ "System.IO.FileSystem": "4.3.0",
1034
+ "System.Net.Primitives": "4.3.0",
1035
+ "System.Resources.ResourceManager": "4.3.0",
1036
+ "System.Runtime": "4.3.0",
1037
+ "System.Runtime.Extensions": "4.3.0",
1038
+ "System.Runtime.Handles": "4.3.0",
1039
+ "System.Runtime.InteropServices": "4.3.0",
1040
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1041
+ "System.Security.Cryptography.Encoding": "4.3.0",
1042
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
1043
+ "System.Security.Cryptography.Primitives": "4.3.0",
1044
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
1045
+ "System.Text.Encoding": "4.3.0",
1046
+ "System.Threading": "4.3.0",
1047
+ "System.Threading.Tasks": "4.3.0",
1048
+ "runtime.native.System": "4.3.0",
1049
+ "runtime.native.System.Net.Http": "4.3.0",
1050
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1051
+ }
1052
+ },
1053
+ "System.Net.Primitives": {
1054
+ "type": "Transitive",
1055
+ "resolved": "4.3.0",
1056
+ "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
1057
+ "dependencies": {
1058
+ "Microsoft.NETCore.Platforms": "1.1.0",
1059
+ "Microsoft.NETCore.Targets": "1.1.0",
1060
+ "System.Runtime": "4.3.0",
1061
+ "System.Runtime.Handles": "4.3.0"
1062
+ }
1063
+ },
1064
+ "System.Net.Sockets": {
1065
+ "type": "Transitive",
1066
+ "resolved": "4.3.0",
1067
+ "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
1068
+ "dependencies": {
1069
+ "Microsoft.NETCore.Platforms": "1.1.0",
1070
+ "Microsoft.NETCore.Targets": "1.1.0",
1071
+ "System.IO": "4.3.0",
1072
+ "System.Net.Primitives": "4.3.0",
1073
+ "System.Runtime": "4.3.0",
1074
+ "System.Threading.Tasks": "4.3.0"
1075
+ }
1076
+ },
1077
+ "System.ObjectModel": {
1078
+ "type": "Transitive",
1079
+ "resolved": "4.3.0",
1080
+ "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
1081
+ "dependencies": {
1082
+ "System.Collections": "4.3.0",
1083
+ "System.Diagnostics.Debug": "4.3.0",
1084
+ "System.Resources.ResourceManager": "4.3.0",
1085
+ "System.Runtime": "4.3.0",
1086
+ "System.Threading": "4.3.0"
1087
+ }
1088
+ },
1089
+ "System.Reflection": {
1090
+ "type": "Transitive",
1091
+ "resolved": "4.3.0",
1092
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
1093
+ "dependencies": {
1094
+ "Microsoft.NETCore.Platforms": "1.1.0",
1095
+ "Microsoft.NETCore.Targets": "1.1.0",
1096
+ "System.IO": "4.3.0",
1097
+ "System.Reflection.Primitives": "4.3.0",
1098
+ "System.Runtime": "4.3.0"
1099
+ }
1100
+ },
1101
+ "System.Reflection.Emit": {
1102
+ "type": "Transitive",
1103
+ "resolved": "4.3.0",
1104
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
1105
+ "dependencies": {
1106
+ "System.IO": "4.3.0",
1107
+ "System.Reflection": "4.3.0",
1108
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
1109
+ "System.Reflection.Primitives": "4.3.0",
1110
+ "System.Runtime": "4.3.0"
1111
+ }
1112
+ },
1113
+ "System.Reflection.Emit.ILGeneration": {
1114
+ "type": "Transitive",
1115
+ "resolved": "4.3.0",
1116
+ "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
1117
+ "dependencies": {
1118
+ "System.Reflection": "4.3.0",
1119
+ "System.Reflection.Primitives": "4.3.0",
1120
+ "System.Runtime": "4.3.0"
1121
+ }
1122
+ },
1123
+ "System.Reflection.Emit.Lightweight": {
1124
+ "type": "Transitive",
1125
+ "resolved": "4.3.0",
1126
+ "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
1127
+ "dependencies": {
1128
+ "System.Reflection": "4.3.0",
1129
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
1130
+ "System.Reflection.Primitives": "4.3.0",
1131
+ "System.Runtime": "4.3.0"
1132
+ }
1133
+ },
1134
+ "System.Reflection.Extensions": {
1135
+ "type": "Transitive",
1136
+ "resolved": "4.3.0",
1137
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
1138
+ "dependencies": {
1139
+ "Microsoft.NETCore.Platforms": "1.1.0",
1140
+ "Microsoft.NETCore.Targets": "1.1.0",
1141
+ "System.Reflection": "4.3.0",
1142
+ "System.Runtime": "4.3.0"
1143
+ }
1144
+ },
1145
+ "System.Reflection.Metadata": {
1146
+ "type": "Transitive",
1147
+ "resolved": "5.0.0",
1148
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
1149
+ },
1150
+ "System.Reflection.Primitives": {
1151
+ "type": "Transitive",
1152
+ "resolved": "4.3.0",
1153
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
1154
+ "dependencies": {
1155
+ "Microsoft.NETCore.Platforms": "1.1.0",
1156
+ "Microsoft.NETCore.Targets": "1.1.0",
1157
+ "System.Runtime": "4.3.0"
1158
+ }
1159
+ },
1160
+ "System.Reflection.TypeExtensions": {
1161
+ "type": "Transitive",
1162
+ "resolved": "4.3.0",
1163
+ "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
1164
+ "dependencies": {
1165
+ "System.Reflection": "4.3.0",
1166
+ "System.Runtime": "4.3.0"
1167
+ }
1168
+ },
1169
+ "System.Resources.ResourceManager": {
1170
+ "type": "Transitive",
1171
+ "resolved": "4.3.0",
1172
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
1173
+ "dependencies": {
1174
+ "Microsoft.NETCore.Platforms": "1.1.0",
1175
+ "Microsoft.NETCore.Targets": "1.1.0",
1176
+ "System.Globalization": "4.3.0",
1177
+ "System.Reflection": "4.3.0",
1178
+ "System.Runtime": "4.3.0"
1179
+ }
1180
+ },
1181
+ "System.Runtime": {
1182
+ "type": "Transitive",
1183
+ "resolved": "4.3.0",
1184
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
1185
+ "dependencies": {
1186
+ "Microsoft.NETCore.Platforms": "1.1.0",
1187
+ "Microsoft.NETCore.Targets": "1.1.0"
1188
+ }
1189
+ },
1190
+ "System.Runtime.CompilerServices.Unsafe": {
1191
+ "type": "Transitive",
1192
+ "resolved": "6.0.0",
1193
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
1194
+ },
1195
+ "System.Runtime.Extensions": {
1196
+ "type": "Transitive",
1197
+ "resolved": "4.3.0",
1198
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
1199
+ "dependencies": {
1200
+ "Microsoft.NETCore.Platforms": "1.1.0",
1201
+ "Microsoft.NETCore.Targets": "1.1.0",
1202
+ "System.Runtime": "4.3.0"
1203
+ }
1204
+ },
1205
+ "System.Runtime.Handles": {
1206
+ "type": "Transitive",
1207
+ "resolved": "4.3.0",
1208
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
1209
+ "dependencies": {
1210
+ "Microsoft.NETCore.Platforms": "1.1.0",
1211
+ "Microsoft.NETCore.Targets": "1.1.0",
1212
+ "System.Runtime": "4.3.0"
1213
+ }
1214
+ },
1215
+ "System.Runtime.InteropServices": {
1216
+ "type": "Transitive",
1217
+ "resolved": "4.3.0",
1218
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
1219
+ "dependencies": {
1220
+ "Microsoft.NETCore.Platforms": "1.1.0",
1221
+ "Microsoft.NETCore.Targets": "1.1.0",
1222
+ "System.Reflection": "4.3.0",
1223
+ "System.Reflection.Primitives": "4.3.0",
1224
+ "System.Runtime": "4.3.0",
1225
+ "System.Runtime.Handles": "4.3.0"
1226
+ }
1227
+ },
1228
+ "System.Runtime.InteropServices.RuntimeInformation": {
1229
+ "type": "Transitive",
1230
+ "resolved": "4.3.0",
1231
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
1232
+ "dependencies": {
1233
+ "System.Reflection": "4.3.0",
1234
+ "System.Reflection.Extensions": "4.3.0",
1235
+ "System.Resources.ResourceManager": "4.3.0",
1236
+ "System.Runtime": "4.3.0",
1237
+ "System.Runtime.InteropServices": "4.3.0",
1238
+ "System.Threading": "4.3.0",
1239
+ "runtime.native.System": "4.3.0"
1240
+ }
1241
+ },
1242
+ "System.Runtime.Numerics": {
1243
+ "type": "Transitive",
1244
+ "resolved": "4.3.0",
1245
+ "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
1246
+ "dependencies": {
1247
+ "System.Globalization": "4.3.0",
1248
+ "System.Resources.ResourceManager": "4.3.0",
1249
+ "System.Runtime": "4.3.0",
1250
+ "System.Runtime.Extensions": "4.3.0"
1251
+ }
1252
+ },
1253
+ "System.Security.Cryptography.Algorithms": {
1254
+ "type": "Transitive",
1255
+ "resolved": "4.3.0",
1256
+ "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
1257
+ "dependencies": {
1258
+ "Microsoft.NETCore.Platforms": "1.1.0",
1259
+ "System.Collections": "4.3.0",
1260
+ "System.IO": "4.3.0",
1261
+ "System.Resources.ResourceManager": "4.3.0",
1262
+ "System.Runtime": "4.3.0",
1263
+ "System.Runtime.Extensions": "4.3.0",
1264
+ "System.Runtime.Handles": "4.3.0",
1265
+ "System.Runtime.InteropServices": "4.3.0",
1266
+ "System.Runtime.Numerics": "4.3.0",
1267
+ "System.Security.Cryptography.Encoding": "4.3.0",
1268
+ "System.Security.Cryptography.Primitives": "4.3.0",
1269
+ "System.Text.Encoding": "4.3.0",
1270
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
1271
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1272
+ }
1273
+ },
1274
+ "System.Security.Cryptography.Cng": {
1275
+ "type": "Transitive",
1276
+ "resolved": "4.3.0",
1277
+ "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
1278
+ "dependencies": {
1279
+ "Microsoft.NETCore.Platforms": "1.1.0",
1280
+ "System.IO": "4.3.0",
1281
+ "System.Resources.ResourceManager": "4.3.0",
1282
+ "System.Runtime": "4.3.0",
1283
+ "System.Runtime.Extensions": "4.3.0",
1284
+ "System.Runtime.Handles": "4.3.0",
1285
+ "System.Runtime.InteropServices": "4.3.0",
1286
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1287
+ "System.Security.Cryptography.Encoding": "4.3.0",
1288
+ "System.Security.Cryptography.Primitives": "4.3.0",
1289
+ "System.Text.Encoding": "4.3.0"
1290
+ }
1291
+ },
1292
+ "System.Security.Cryptography.Csp": {
1293
+ "type": "Transitive",
1294
+ "resolved": "4.3.0",
1295
+ "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
1296
+ "dependencies": {
1297
+ "Microsoft.NETCore.Platforms": "1.1.0",
1298
+ "System.IO": "4.3.0",
1299
+ "System.Reflection": "4.3.0",
1300
+ "System.Resources.ResourceManager": "4.3.0",
1301
+ "System.Runtime": "4.3.0",
1302
+ "System.Runtime.Extensions": "4.3.0",
1303
+ "System.Runtime.Handles": "4.3.0",
1304
+ "System.Runtime.InteropServices": "4.3.0",
1305
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1306
+ "System.Security.Cryptography.Encoding": "4.3.0",
1307
+ "System.Security.Cryptography.Primitives": "4.3.0",
1308
+ "System.Text.Encoding": "4.3.0",
1309
+ "System.Threading": "4.3.0"
1310
+ }
1311
+ },
1312
+ "System.Security.Cryptography.Encoding": {
1313
+ "type": "Transitive",
1314
+ "resolved": "4.3.0",
1315
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
1316
+ "dependencies": {
1317
+ "Microsoft.NETCore.Platforms": "1.1.0",
1318
+ "System.Collections": "4.3.0",
1319
+ "System.Collections.Concurrent": "4.3.0",
1320
+ "System.Linq": "4.3.0",
1321
+ "System.Resources.ResourceManager": "4.3.0",
1322
+ "System.Runtime": "4.3.0",
1323
+ "System.Runtime.Extensions": "4.3.0",
1324
+ "System.Runtime.Handles": "4.3.0",
1325
+ "System.Runtime.InteropServices": "4.3.0",
1326
+ "System.Security.Cryptography.Primitives": "4.3.0",
1327
+ "System.Text.Encoding": "4.3.0",
1328
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1329
+ }
1330
+ },
1331
+ "System.Security.Cryptography.OpenSsl": {
1332
+ "type": "Transitive",
1333
+ "resolved": "4.3.0",
1334
+ "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
1335
+ "dependencies": {
1336
+ "System.Collections": "4.3.0",
1337
+ "System.IO": "4.3.0",
1338
+ "System.Resources.ResourceManager": "4.3.0",
1339
+ "System.Runtime": "4.3.0",
1340
+ "System.Runtime.Extensions": "4.3.0",
1341
+ "System.Runtime.Handles": "4.3.0",
1342
+ "System.Runtime.InteropServices": "4.3.0",
1343
+ "System.Runtime.Numerics": "4.3.0",
1344
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1345
+ "System.Security.Cryptography.Encoding": "4.3.0",
1346
+ "System.Security.Cryptography.Primitives": "4.3.0",
1347
+ "System.Text.Encoding": "4.3.0",
1348
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1349
+ }
1350
+ },
1351
+ "System.Security.Cryptography.Primitives": {
1352
+ "type": "Transitive",
1353
+ "resolved": "4.3.0",
1354
+ "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
1355
+ "dependencies": {
1356
+ "System.Diagnostics.Debug": "4.3.0",
1357
+ "System.Globalization": "4.3.0",
1358
+ "System.IO": "4.3.0",
1359
+ "System.Resources.ResourceManager": "4.3.0",
1360
+ "System.Runtime": "4.3.0",
1361
+ "System.Threading": "4.3.0",
1362
+ "System.Threading.Tasks": "4.3.0"
1363
+ }
1364
+ },
1365
+ "System.Security.Cryptography.X509Certificates": {
1366
+ "type": "Transitive",
1367
+ "resolved": "4.3.0",
1368
+ "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
1369
+ "dependencies": {
1370
+ "Microsoft.NETCore.Platforms": "1.1.0",
1371
+ "System.Collections": "4.3.0",
1372
+ "System.Diagnostics.Debug": "4.3.0",
1373
+ "System.Globalization": "4.3.0",
1374
+ "System.Globalization.Calendars": "4.3.0",
1375
+ "System.IO": "4.3.0",
1376
+ "System.IO.FileSystem": "4.3.0",
1377
+ "System.IO.FileSystem.Primitives": "4.3.0",
1378
+ "System.Resources.ResourceManager": "4.3.0",
1379
+ "System.Runtime": "4.3.0",
1380
+ "System.Runtime.Extensions": "4.3.0",
1381
+ "System.Runtime.Handles": "4.3.0",
1382
+ "System.Runtime.InteropServices": "4.3.0",
1383
+ "System.Runtime.Numerics": "4.3.0",
1384
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1385
+ "System.Security.Cryptography.Cng": "4.3.0",
1386
+ "System.Security.Cryptography.Csp": "4.3.0",
1387
+ "System.Security.Cryptography.Encoding": "4.3.0",
1388
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
1389
+ "System.Security.Cryptography.Primitives": "4.3.0",
1390
+ "System.Text.Encoding": "4.3.0",
1391
+ "System.Threading": "4.3.0",
1392
+ "runtime.native.System": "4.3.0",
1393
+ "runtime.native.System.Net.Http": "4.3.0",
1394
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1395
+ }
1396
+ },
1397
+ "System.Text.Encoding": {
1398
+ "type": "Transitive",
1399
+ "resolved": "4.3.0",
1400
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
1401
+ "dependencies": {
1402
+ "Microsoft.NETCore.Platforms": "1.1.0",
1403
+ "Microsoft.NETCore.Targets": "1.1.0",
1404
+ "System.Runtime": "4.3.0"
1405
+ }
1406
+ },
1407
+ "System.Text.Encoding.CodePages": {
1408
+ "type": "Transitive",
1409
+ "resolved": "6.0.0",
1410
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
1411
+ "dependencies": {
1412
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
1413
+ }
1414
+ },
1415
+ "System.Text.Encoding.Extensions": {
1416
+ "type": "Transitive",
1417
+ "resolved": "4.3.0",
1418
+ "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
1419
+ "dependencies": {
1420
+ "Microsoft.NETCore.Platforms": "1.1.0",
1421
+ "Microsoft.NETCore.Targets": "1.1.0",
1422
+ "System.Runtime": "4.3.0",
1423
+ "System.Text.Encoding": "4.3.0"
1424
+ }
1425
+ },
1426
+ "System.Text.RegularExpressions": {
1427
+ "type": "Transitive",
1428
+ "resolved": "4.3.0",
1429
+ "contentHash": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
1430
+ "dependencies": {
1431
+ "System.Runtime": "4.3.0"
1432
+ }
1433
+ },
1434
+ "System.Threading": {
1435
+ "type": "Transitive",
1436
+ "resolved": "4.3.0",
1437
+ "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
1438
+ "dependencies": {
1439
+ "System.Runtime": "4.3.0",
1440
+ "System.Threading.Tasks": "4.3.0"
1441
+ }
1442
+ },
1443
+ "System.Threading.Tasks": {
1444
+ "type": "Transitive",
1445
+ "resolved": "4.3.0",
1446
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
1447
+ "dependencies": {
1448
+ "Microsoft.NETCore.Platforms": "1.1.0",
1449
+ "Microsoft.NETCore.Targets": "1.1.0",
1450
+ "System.Runtime": "4.3.0"
1451
+ }
1452
+ },
1453
+ "System.Threading.Tasks.Extensions": {
1454
+ "type": "Transitive",
1455
+ "resolved": "4.5.4",
1456
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
1457
+ },
1458
+ "System.Threading.Timer": {
1459
+ "type": "Transitive",
1460
+ "resolved": "4.3.0",
1461
+ "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
1462
+ "dependencies": {
1463
+ "Microsoft.NETCore.Platforms": "1.1.0",
1464
+ "Microsoft.NETCore.Targets": "1.1.0",
1465
+ "System.Runtime": "4.3.0"
1466
+ }
1467
+ },
1468
+ "System.Xml.ReaderWriter": {
1469
+ "type": "Transitive",
1470
+ "resolved": "4.3.0",
1471
+ "contentHash": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
1472
+ "dependencies": {
1473
+ "System.Collections": "4.3.0",
1474
+ "System.Diagnostics.Debug": "4.3.0",
1475
+ "System.Globalization": "4.3.0",
1476
+ "System.IO": "4.3.0",
1477
+ "System.IO.FileSystem": "4.3.0",
1478
+ "System.IO.FileSystem.Primitives": "4.3.0",
1479
+ "System.Resources.ResourceManager": "4.3.0",
1480
+ "System.Runtime": "4.3.0",
1481
+ "System.Runtime.Extensions": "4.3.0",
1482
+ "System.Runtime.InteropServices": "4.3.0",
1483
+ "System.Text.Encoding": "4.3.0",
1484
+ "System.Text.Encoding.Extensions": "4.3.0",
1485
+ "System.Text.RegularExpressions": "4.3.0",
1486
+ "System.Threading.Tasks": "4.3.0",
1487
+ "System.Threading.Tasks.Extensions": "4.3.0"
1488
+ }
1489
+ },
1490
+ "System.Xml.XDocument": {
1491
+ "type": "Transitive",
1492
+ "resolved": "4.3.0",
1493
+ "contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
1494
+ "dependencies": {
1495
+ "System.Collections": "4.3.0",
1496
+ "System.Diagnostics.Debug": "4.3.0",
1497
+ "System.Diagnostics.Tools": "4.3.0",
1498
+ "System.Globalization": "4.3.0",
1499
+ "System.IO": "4.3.0",
1500
+ "System.Reflection": "4.3.0",
1501
+ "System.Resources.ResourceManager": "4.3.0",
1502
+ "System.Runtime": "4.3.0",
1503
+ "System.Runtime.Extensions": "4.3.0",
1504
+ "System.Text.Encoding": "4.3.0",
1505
+ "System.Threading": "4.3.0",
1506
+ "System.Xml.ReaderWriter": "4.3.0"
1507
+ }
1508
+ }
1509
+ },
1510
+ "net6.0/win-x64": {
1511
+ "Microsoft.Win32.Primitives": {
1512
+ "type": "Transitive",
1513
+ "resolved": "4.3.0",
1514
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
1515
+ "dependencies": {
1516
+ "Microsoft.NETCore.Platforms": "1.1.0",
1517
+ "Microsoft.NETCore.Targets": "1.1.0",
1518
+ "System.Runtime": "4.3.0",
1519
+ "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
1520
+ }
1521
+ },
1522
+ "runtime.any.System.Collections": {
1523
+ "type": "Transitive",
1524
+ "resolved": "4.3.0",
1525
+ "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
1526
+ "dependencies": {
1527
+ "System.Runtime": "4.3.0"
1528
+ }
1529
+ },
1530
+ "runtime.any.System.Diagnostics.Tools": {
1531
+ "type": "Transitive",
1532
+ "resolved": "4.3.0",
1533
+ "contentHash": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg=="
1534
+ },
1535
+ "runtime.any.System.Diagnostics.Tracing": {
1536
+ "type": "Transitive",
1537
+ "resolved": "4.3.0",
1538
+ "contentHash": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ=="
1539
+ },
1540
+ "runtime.any.System.Globalization": {
1541
+ "type": "Transitive",
1542
+ "resolved": "4.3.0",
1543
+ "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
1544
+ },
1545
+ "runtime.any.System.Globalization.Calendars": {
1546
+ "type": "Transitive",
1547
+ "resolved": "4.3.0",
1548
+ "contentHash": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w=="
1549
+ },
1550
+ "runtime.any.System.IO": {
1551
+ "type": "Transitive",
1552
+ "resolved": "4.3.0",
1553
+ "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
1554
+ },
1555
+ "runtime.any.System.Reflection": {
1556
+ "type": "Transitive",
1557
+ "resolved": "4.3.0",
1558
+ "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
1559
+ },
1560
+ "runtime.any.System.Reflection.Extensions": {
1561
+ "type": "Transitive",
1562
+ "resolved": "4.3.0",
1563
+ "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
1564
+ },
1565
+ "runtime.any.System.Reflection.Primitives": {
1566
+ "type": "Transitive",
1567
+ "resolved": "4.3.0",
1568
+ "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
1569
+ },
1570
+ "runtime.any.System.Resources.ResourceManager": {
1571
+ "type": "Transitive",
1572
+ "resolved": "4.3.0",
1573
+ "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
1574
+ },
1575
+ "runtime.any.System.Runtime": {
1576
+ "type": "Transitive",
1577
+ "resolved": "4.3.0",
1578
+ "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
1579
+ "dependencies": {
1580
+ "System.Private.Uri": "4.3.0"
1581
+ }
1582
+ },
1583
+ "runtime.any.System.Runtime.Handles": {
1584
+ "type": "Transitive",
1585
+ "resolved": "4.3.0",
1586
+ "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
1587
+ },
1588
+ "runtime.any.System.Runtime.InteropServices": {
1589
+ "type": "Transitive",
1590
+ "resolved": "4.3.0",
1591
+ "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
1592
+ },
1593
+ "runtime.any.System.Text.Encoding": {
1594
+ "type": "Transitive",
1595
+ "resolved": "4.3.0",
1596
+ "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
1597
+ },
1598
+ "runtime.any.System.Text.Encoding.Extensions": {
1599
+ "type": "Transitive",
1600
+ "resolved": "4.3.0",
1601
+ "contentHash": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg=="
1602
+ },
1603
+ "runtime.any.System.Threading.Tasks": {
1604
+ "type": "Transitive",
1605
+ "resolved": "4.3.0",
1606
+ "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
1607
+ },
1608
+ "runtime.any.System.Threading.Timer": {
1609
+ "type": "Transitive",
1610
+ "resolved": "4.3.0",
1611
+ "contentHash": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w=="
1612
+ },
1613
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1614
+ "type": "Transitive",
1615
+ "resolved": "4.3.0",
1616
+ "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
1617
+ },
1618
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1619
+ "type": "Transitive",
1620
+ "resolved": "4.3.0",
1621
+ "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
1622
+ },
1623
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1624
+ "type": "Transitive",
1625
+ "resolved": "4.3.0",
1626
+ "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
1627
+ },
1628
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1629
+ "type": "Transitive",
1630
+ "resolved": "4.3.0",
1631
+ "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
1632
+ },
1633
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1634
+ "type": "Transitive",
1635
+ "resolved": "4.3.0",
1636
+ "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
1637
+ },
1638
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
1639
+ "type": "Transitive",
1640
+ "resolved": "4.3.0",
1641
+ "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
1642
+ },
1643
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1644
+ "type": "Transitive",
1645
+ "resolved": "4.3.0",
1646
+ "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
1647
+ },
1648
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1649
+ "type": "Transitive",
1650
+ "resolved": "4.3.0",
1651
+ "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
1652
+ },
1653
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1654
+ "type": "Transitive",
1655
+ "resolved": "4.3.0",
1656
+ "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
1657
+ },
1658
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1659
+ "type": "Transitive",
1660
+ "resolved": "4.3.0",
1661
+ "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
1662
+ },
1663
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
1664
+ "type": "Transitive",
1665
+ "resolved": "4.3.0",
1666
+ "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
1667
+ },
1668
+ "runtime.win.Microsoft.Win32.Primitives": {
1669
+ "type": "Transitive",
1670
+ "resolved": "4.3.0",
1671
+ "contentHash": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
1672
+ "dependencies": {
1673
+ "System.Runtime": "4.3.0",
1674
+ "System.Runtime.InteropServices": "4.3.0"
1675
+ }
1676
+ },
1677
+ "runtime.win.System.Console": {
1678
+ "type": "Transitive",
1679
+ "resolved": "4.3.1",
1680
+ "contentHash": "vHPXC3B18dxhyipVce8xQT1MQv1o5srYZqBlCNu9p9MNjhgGOntdQh/Xh2X4o7M2F839YUcQiGwu8Q498FyDjg==",
1681
+ "dependencies": {
1682
+ "System.IO": "4.3.0",
1683
+ "System.IO.FileSystem.Primitives": "4.3.0",
1684
+ "System.Resources.ResourceManager": "4.3.0",
1685
+ "System.Runtime": "4.3.0",
1686
+ "System.Runtime.InteropServices": "4.3.0",
1687
+ "System.Text.Encoding": "4.3.0",
1688
+ "System.Text.Encoding.Extensions": "4.3.0",
1689
+ "System.Threading": "4.3.0",
1690
+ "System.Threading.Tasks": "4.3.0"
1691
+ }
1692
+ },
1693
+ "runtime.win.System.Diagnostics.Debug": {
1694
+ "type": "Transitive",
1695
+ "resolved": "4.3.0",
1696
+ "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
1697
+ },
1698
+ "runtime.win.System.IO.FileSystem": {
1699
+ "type": "Transitive",
1700
+ "resolved": "4.3.0",
1701
+ "contentHash": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
1702
+ "dependencies": {
1703
+ "System.Buffers": "4.3.0",
1704
+ "System.Collections": "4.3.0",
1705
+ "System.Diagnostics.Debug": "4.3.0",
1706
+ "System.IO": "4.3.0",
1707
+ "System.IO.FileSystem.Primitives": "4.3.0",
1708
+ "System.Resources.ResourceManager": "4.3.0",
1709
+ "System.Runtime": "4.3.0",
1710
+ "System.Runtime.Extensions": "4.3.0",
1711
+ "System.Runtime.Handles": "4.3.0",
1712
+ "System.Runtime.InteropServices": "4.3.0",
1713
+ "System.Text.Encoding": "4.3.0",
1714
+ "System.Text.Encoding.Extensions": "4.3.0",
1715
+ "System.Threading": "4.3.0",
1716
+ "System.Threading.Overlapped": "4.3.0",
1717
+ "System.Threading.Tasks": "4.3.0"
1718
+ }
1719
+ },
1720
+ "runtime.win.System.Net.Primitives": {
1721
+ "type": "Transitive",
1722
+ "resolved": "4.3.0",
1723
+ "contentHash": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
1724
+ "dependencies": {
1725
+ "Microsoft.Win32.Primitives": "4.3.0",
1726
+ "System.Collections": "4.3.0",
1727
+ "System.Diagnostics.Tracing": "4.3.0",
1728
+ "System.Globalization": "4.3.0",
1729
+ "System.Resources.ResourceManager": "4.3.0",
1730
+ "System.Runtime": "4.3.0",
1731
+ "System.Runtime.Extensions": "4.3.0",
1732
+ "System.Runtime.Handles": "4.3.0",
1733
+ "System.Runtime.InteropServices": "4.3.0",
1734
+ "System.Threading": "4.3.0"
1735
+ }
1736
+ },
1737
+ "runtime.win.System.Net.Sockets": {
1738
+ "type": "Transitive",
1739
+ "resolved": "4.3.0",
1740
+ "contentHash": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
1741
+ "dependencies": {
1742
+ "System.Collections": "4.3.0",
1743
+ "System.Diagnostics.Debug": "4.3.0",
1744
+ "System.Diagnostics.Tracing": "4.3.0",
1745
+ "System.Globalization": "4.3.0",
1746
+ "System.IO": "4.3.0",
1747
+ "System.IO.FileSystem": "4.3.0",
1748
+ "System.IO.FileSystem.Primitives": "4.3.0",
1749
+ "System.Net.NameResolution": "4.3.0",
1750
+ "System.Net.Primitives": "4.3.0",
1751
+ "System.Resources.ResourceManager": "4.3.0",
1752
+ "System.Runtime": "4.3.0",
1753
+ "System.Runtime.Extensions": "4.3.0",
1754
+ "System.Runtime.Handles": "4.3.0",
1755
+ "System.Runtime.InteropServices": "4.3.0",
1756
+ "System.Security.Principal.Windows": "4.3.0",
1757
+ "System.Threading": "4.3.0",
1758
+ "System.Threading.Overlapped": "4.3.0",
1759
+ "System.Threading.Tasks": "4.3.0"
1760
+ }
1761
+ },
1762
+ "runtime.win.System.Runtime.Extensions": {
1763
+ "type": "Transitive",
1764
+ "resolved": "4.3.0",
1765
+ "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
1766
+ "dependencies": {
1767
+ "System.Private.Uri": "4.3.0"
1768
+ }
1769
+ },
1770
+ "System.Buffers": {
1771
+ "type": "Transitive",
1772
+ "resolved": "4.3.0",
1773
+ "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
1774
+ "dependencies": {
1775
+ "System.Diagnostics.Debug": "4.3.0",
1776
+ "System.Diagnostics.Tracing": "4.3.0",
1777
+ "System.Resources.ResourceManager": "4.3.0",
1778
+ "System.Runtime": "4.3.0",
1779
+ "System.Threading": "4.3.0"
1780
+ }
1781
+ },
1782
+ "System.Collections": {
1783
+ "type": "Transitive",
1784
+ "resolved": "4.3.0",
1785
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
1786
+ "dependencies": {
1787
+ "Microsoft.NETCore.Platforms": "1.1.0",
1788
+ "Microsoft.NETCore.Targets": "1.1.0",
1789
+ "System.Runtime": "4.3.0",
1790
+ "runtime.any.System.Collections": "4.3.0"
1791
+ }
1792
+ },
1793
+ "System.Console": {
1794
+ "type": "Transitive",
1795
+ "resolved": "4.3.0",
1796
+ "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
1797
+ "dependencies": {
1798
+ "Microsoft.NETCore.Platforms": "1.1.0",
1799
+ "Microsoft.NETCore.Targets": "1.1.0",
1800
+ "System.IO": "4.3.0",
1801
+ "System.Runtime": "4.3.0",
1802
+ "System.Text.Encoding": "4.3.0",
1803
+ "runtime.win.System.Console": "4.3.1"
1804
+ }
1805
+ },
1806
+ "System.Diagnostics.Debug": {
1807
+ "type": "Transitive",
1808
+ "resolved": "4.3.0",
1809
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
1810
+ "dependencies": {
1811
+ "Microsoft.NETCore.Platforms": "1.1.0",
1812
+ "Microsoft.NETCore.Targets": "1.1.0",
1813
+ "System.Runtime": "4.3.0",
1814
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
1815
+ }
1816
+ },
1817
+ "System.Diagnostics.Tools": {
1818
+ "type": "Transitive",
1819
+ "resolved": "4.3.0",
1820
+ "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
1821
+ "dependencies": {
1822
+ "Microsoft.NETCore.Platforms": "1.1.0",
1823
+ "Microsoft.NETCore.Targets": "1.1.0",
1824
+ "System.Runtime": "4.3.0",
1825
+ "runtime.any.System.Diagnostics.Tools": "4.3.0"
1826
+ }
1827
+ },
1828
+ "System.Diagnostics.Tracing": {
1829
+ "type": "Transitive",
1830
+ "resolved": "4.3.0",
1831
+ "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
1832
+ "dependencies": {
1833
+ "Microsoft.NETCore.Platforms": "1.1.0",
1834
+ "Microsoft.NETCore.Targets": "1.1.0",
1835
+ "System.Runtime": "4.3.0",
1836
+ "runtime.any.System.Diagnostics.Tracing": "4.3.0"
1837
+ }
1838
+ },
1839
+ "System.Globalization": {
1840
+ "type": "Transitive",
1841
+ "resolved": "4.3.0",
1842
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
1843
+ "dependencies": {
1844
+ "Microsoft.NETCore.Platforms": "1.1.0",
1845
+ "Microsoft.NETCore.Targets": "1.1.0",
1846
+ "System.Runtime": "4.3.0",
1847
+ "runtime.any.System.Globalization": "4.3.0"
1848
+ }
1849
+ },
1850
+ "System.Globalization.Calendars": {
1851
+ "type": "Transitive",
1852
+ "resolved": "4.3.0",
1853
+ "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
1854
+ "dependencies": {
1855
+ "Microsoft.NETCore.Platforms": "1.1.0",
1856
+ "Microsoft.NETCore.Targets": "1.1.0",
1857
+ "System.Globalization": "4.3.0",
1858
+ "System.Runtime": "4.3.0",
1859
+ "runtime.any.System.Globalization.Calendars": "4.3.0"
1860
+ }
1861
+ },
1862
+ "System.Globalization.Extensions": {
1863
+ "type": "Transitive",
1864
+ "resolved": "4.3.0",
1865
+ "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
1866
+ "dependencies": {
1867
+ "Microsoft.NETCore.Platforms": "1.1.0",
1868
+ "System.Globalization": "4.3.0",
1869
+ "System.Resources.ResourceManager": "4.3.0",
1870
+ "System.Runtime": "4.3.0",
1871
+ "System.Runtime.Extensions": "4.3.0",
1872
+ "System.Runtime.InteropServices": "4.3.0"
1873
+ }
1874
+ },
1875
+ "System.IO": {
1876
+ "type": "Transitive",
1877
+ "resolved": "4.3.0",
1878
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
1879
+ "dependencies": {
1880
+ "Microsoft.NETCore.Platforms": "1.1.0",
1881
+ "Microsoft.NETCore.Targets": "1.1.0",
1882
+ "System.Runtime": "4.3.0",
1883
+ "System.Text.Encoding": "4.3.0",
1884
+ "System.Threading.Tasks": "4.3.0",
1885
+ "runtime.any.System.IO": "4.3.0"
1886
+ }
1887
+ },
1888
+ "System.IO.Compression": {
1889
+ "type": "Transitive",
1890
+ "resolved": "4.3.0",
1891
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
1892
+ "dependencies": {
1893
+ "Microsoft.NETCore.Platforms": "1.1.0",
1894
+ "System.Buffers": "4.3.0",
1895
+ "System.Collections": "4.3.0",
1896
+ "System.Diagnostics.Debug": "4.3.0",
1897
+ "System.IO": "4.3.0",
1898
+ "System.Resources.ResourceManager": "4.3.0",
1899
+ "System.Runtime": "4.3.0",
1900
+ "System.Runtime.Extensions": "4.3.0",
1901
+ "System.Runtime.Handles": "4.3.0",
1902
+ "System.Runtime.InteropServices": "4.3.0",
1903
+ "System.Text.Encoding": "4.3.0",
1904
+ "System.Threading": "4.3.0",
1905
+ "System.Threading.Tasks": "4.3.0",
1906
+ "runtime.native.System": "4.3.0",
1907
+ "runtime.native.System.IO.Compression": "4.3.0"
1908
+ }
1909
+ },
1910
+ "System.IO.FileSystem": {
1911
+ "type": "Transitive",
1912
+ "resolved": "4.3.0",
1913
+ "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
1914
+ "dependencies": {
1915
+ "Microsoft.NETCore.Platforms": "1.1.0",
1916
+ "Microsoft.NETCore.Targets": "1.1.0",
1917
+ "System.IO": "4.3.0",
1918
+ "System.IO.FileSystem.Primitives": "4.3.0",
1919
+ "System.Runtime": "4.3.0",
1920
+ "System.Runtime.Handles": "4.3.0",
1921
+ "System.Text.Encoding": "4.3.0",
1922
+ "System.Threading.Tasks": "4.3.0",
1923
+ "runtime.win.System.IO.FileSystem": "4.3.0"
1924
+ }
1925
+ },
1926
+ "System.Net.Http": {
1927
+ "type": "Transitive",
1928
+ "resolved": "4.3.0",
1929
+ "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
1930
+ "dependencies": {
1931
+ "Microsoft.NETCore.Platforms": "1.1.0",
1932
+ "System.Collections": "4.3.0",
1933
+ "System.Diagnostics.Debug": "4.3.0",
1934
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
1935
+ "System.Diagnostics.Tracing": "4.3.0",
1936
+ "System.Globalization": "4.3.0",
1937
+ "System.Globalization.Extensions": "4.3.0",
1938
+ "System.IO": "4.3.0",
1939
+ "System.IO.FileSystem": "4.3.0",
1940
+ "System.Net.Primitives": "4.3.0",
1941
+ "System.Resources.ResourceManager": "4.3.0",
1942
+ "System.Runtime": "4.3.0",
1943
+ "System.Runtime.Extensions": "4.3.0",
1944
+ "System.Runtime.Handles": "4.3.0",
1945
+ "System.Runtime.InteropServices": "4.3.0",
1946
+ "System.Security.Cryptography.Algorithms": "4.3.0",
1947
+ "System.Security.Cryptography.Encoding": "4.3.0",
1948
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
1949
+ "System.Security.Cryptography.Primitives": "4.3.0",
1950
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
1951
+ "System.Text.Encoding": "4.3.0",
1952
+ "System.Threading": "4.3.0",
1953
+ "System.Threading.Tasks": "4.3.0",
1954
+ "runtime.native.System": "4.3.0",
1955
+ "runtime.native.System.Net.Http": "4.3.0",
1956
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
1957
+ }
1958
+ },
1959
+ "System.Net.NameResolution": {
1960
+ "type": "Transitive",
1961
+ "resolved": "4.3.0",
1962
+ "contentHash": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
1963
+ "dependencies": {
1964
+ "Microsoft.NETCore.Platforms": "1.1.0",
1965
+ "System.Collections": "4.3.0",
1966
+ "System.Diagnostics.Tracing": "4.3.0",
1967
+ "System.Globalization": "4.3.0",
1968
+ "System.Net.Primitives": "4.3.0",
1969
+ "System.Resources.ResourceManager": "4.3.0",
1970
+ "System.Runtime": "4.3.0",
1971
+ "System.Runtime.Extensions": "4.3.0",
1972
+ "System.Runtime.Handles": "4.3.0",
1973
+ "System.Runtime.InteropServices": "4.3.0",
1974
+ "System.Security.Principal.Windows": "4.3.0",
1975
+ "System.Threading": "4.3.0",
1976
+ "System.Threading.Tasks": "4.3.0",
1977
+ "runtime.native.System": "4.3.0"
1978
+ }
1979
+ },
1980
+ "System.Net.Primitives": {
1981
+ "type": "Transitive",
1982
+ "resolved": "4.3.0",
1983
+ "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
1984
+ "dependencies": {
1985
+ "Microsoft.NETCore.Platforms": "1.1.0",
1986
+ "Microsoft.NETCore.Targets": "1.1.0",
1987
+ "System.Runtime": "4.3.0",
1988
+ "System.Runtime.Handles": "4.3.0",
1989
+ "runtime.win.System.Net.Primitives": "4.3.0"
1990
+ }
1991
+ },
1992
+ "System.Net.Sockets": {
1993
+ "type": "Transitive",
1994
+ "resolved": "4.3.0",
1995
+ "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
1996
+ "dependencies": {
1997
+ "Microsoft.NETCore.Platforms": "1.1.0",
1998
+ "Microsoft.NETCore.Targets": "1.1.0",
1999
+ "System.IO": "4.3.0",
2000
+ "System.Net.Primitives": "4.3.0",
2001
+ "System.Runtime": "4.3.0",
2002
+ "System.Threading.Tasks": "4.3.0",
2003
+ "runtime.win.System.Net.Sockets": "4.3.0"
2004
+ }
2005
+ },
2006
+ "System.Reflection": {
2007
+ "type": "Transitive",
2008
+ "resolved": "4.3.0",
2009
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
2010
+ "dependencies": {
2011
+ "Microsoft.NETCore.Platforms": "1.1.0",
2012
+ "Microsoft.NETCore.Targets": "1.1.0",
2013
+ "System.IO": "4.3.0",
2014
+ "System.Reflection.Primitives": "4.3.0",
2015
+ "System.Runtime": "4.3.0",
2016
+ "runtime.any.System.Reflection": "4.3.0"
2017
+ }
2018
+ },
2019
+ "System.Reflection.Extensions": {
2020
+ "type": "Transitive",
2021
+ "resolved": "4.3.0",
2022
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
2023
+ "dependencies": {
2024
+ "Microsoft.NETCore.Platforms": "1.1.0",
2025
+ "Microsoft.NETCore.Targets": "1.1.0",
2026
+ "System.Reflection": "4.3.0",
2027
+ "System.Runtime": "4.3.0",
2028
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
2029
+ }
2030
+ },
2031
+ "System.Reflection.Primitives": {
2032
+ "type": "Transitive",
2033
+ "resolved": "4.3.0",
2034
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
2035
+ "dependencies": {
2036
+ "Microsoft.NETCore.Platforms": "1.1.0",
2037
+ "Microsoft.NETCore.Targets": "1.1.0",
2038
+ "System.Runtime": "4.3.0",
2039
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
2040
+ }
2041
+ },
2042
+ "System.Resources.ResourceManager": {
2043
+ "type": "Transitive",
2044
+ "resolved": "4.3.0",
2045
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
2046
+ "dependencies": {
2047
+ "Microsoft.NETCore.Platforms": "1.1.0",
2048
+ "Microsoft.NETCore.Targets": "1.1.0",
2049
+ "System.Globalization": "4.3.0",
2050
+ "System.Reflection": "4.3.0",
2051
+ "System.Runtime": "4.3.0",
2052
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
2053
+ }
2054
+ },
2055
+ "System.Runtime": {
2056
+ "type": "Transitive",
2057
+ "resolved": "4.3.0",
2058
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
2059
+ "dependencies": {
2060
+ "Microsoft.NETCore.Platforms": "1.1.0",
2061
+ "Microsoft.NETCore.Targets": "1.1.0",
2062
+ "runtime.any.System.Runtime": "4.3.0"
2063
+ }
2064
+ },
2065
+ "System.Runtime.Extensions": {
2066
+ "type": "Transitive",
2067
+ "resolved": "4.3.0",
2068
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
2069
+ "dependencies": {
2070
+ "Microsoft.NETCore.Platforms": "1.1.0",
2071
+ "Microsoft.NETCore.Targets": "1.1.0",
2072
+ "System.Runtime": "4.3.0",
2073
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
2074
+ }
2075
+ },
2076
+ "System.Runtime.Handles": {
2077
+ "type": "Transitive",
2078
+ "resolved": "4.3.0",
2079
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
2080
+ "dependencies": {
2081
+ "Microsoft.NETCore.Platforms": "1.1.0",
2082
+ "Microsoft.NETCore.Targets": "1.1.0",
2083
+ "System.Runtime": "4.3.0",
2084
+ "runtime.any.System.Runtime.Handles": "4.3.0"
2085
+ }
2086
+ },
2087
+ "System.Runtime.InteropServices": {
2088
+ "type": "Transitive",
2089
+ "resolved": "4.3.0",
2090
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
2091
+ "dependencies": {
2092
+ "Microsoft.NETCore.Platforms": "1.1.0",
2093
+ "Microsoft.NETCore.Targets": "1.1.0",
2094
+ "System.Reflection": "4.3.0",
2095
+ "System.Reflection.Primitives": "4.3.0",
2096
+ "System.Runtime": "4.3.0",
2097
+ "System.Runtime.Handles": "4.3.0",
2098
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
2099
+ }
2100
+ },
2101
+ "System.Runtime.InteropServices.RuntimeInformation": {
2102
+ "type": "Transitive",
2103
+ "resolved": "4.3.0",
2104
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
2105
+ "dependencies": {
2106
+ "System.Reflection": "4.3.0",
2107
+ "System.Reflection.Extensions": "4.3.0",
2108
+ "System.Resources.ResourceManager": "4.3.0",
2109
+ "System.Runtime": "4.3.0",
2110
+ "System.Runtime.InteropServices": "4.3.0",
2111
+ "System.Threading": "4.3.0",
2112
+ "runtime.native.System": "4.3.0"
2113
+ }
2114
+ },
2115
+ "System.Security.Claims": {
2116
+ "type": "Transitive",
2117
+ "resolved": "4.3.0",
2118
+ "contentHash": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
2119
+ "dependencies": {
2120
+ "System.Collections": "4.3.0",
2121
+ "System.Globalization": "4.3.0",
2122
+ "System.IO": "4.3.0",
2123
+ "System.Resources.ResourceManager": "4.3.0",
2124
+ "System.Runtime": "4.3.0",
2125
+ "System.Runtime.Extensions": "4.3.0",
2126
+ "System.Security.Principal": "4.3.0"
2127
+ }
2128
+ },
2129
+ "System.Security.Cryptography.Algorithms": {
2130
+ "type": "Transitive",
2131
+ "resolved": "4.3.0",
2132
+ "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
2133
+ "dependencies": {
2134
+ "Microsoft.NETCore.Platforms": "1.1.0",
2135
+ "System.Collections": "4.3.0",
2136
+ "System.IO": "4.3.0",
2137
+ "System.Resources.ResourceManager": "4.3.0",
2138
+ "System.Runtime": "4.3.0",
2139
+ "System.Runtime.Extensions": "4.3.0",
2140
+ "System.Runtime.Handles": "4.3.0",
2141
+ "System.Runtime.InteropServices": "4.3.0",
2142
+ "System.Runtime.Numerics": "4.3.0",
2143
+ "System.Security.Cryptography.Encoding": "4.3.0",
2144
+ "System.Security.Cryptography.Primitives": "4.3.0",
2145
+ "System.Text.Encoding": "4.3.0",
2146
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
2147
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2148
+ }
2149
+ },
2150
+ "System.Security.Cryptography.Cng": {
2151
+ "type": "Transitive",
2152
+ "resolved": "4.3.0",
2153
+ "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
2154
+ "dependencies": {
2155
+ "Microsoft.NETCore.Platforms": "1.1.0",
2156
+ "System.IO": "4.3.0",
2157
+ "System.Resources.ResourceManager": "4.3.0",
2158
+ "System.Runtime": "4.3.0",
2159
+ "System.Runtime.Extensions": "4.3.0",
2160
+ "System.Runtime.Handles": "4.3.0",
2161
+ "System.Runtime.InteropServices": "4.3.0",
2162
+ "System.Security.Cryptography.Algorithms": "4.3.0",
2163
+ "System.Security.Cryptography.Encoding": "4.3.0",
2164
+ "System.Security.Cryptography.Primitives": "4.3.0",
2165
+ "System.Text.Encoding": "4.3.0"
2166
+ }
2167
+ },
2168
+ "System.Security.Cryptography.Csp": {
2169
+ "type": "Transitive",
2170
+ "resolved": "4.3.0",
2171
+ "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
2172
+ "dependencies": {
2173
+ "Microsoft.NETCore.Platforms": "1.1.0",
2174
+ "System.IO": "4.3.0",
2175
+ "System.Reflection": "4.3.0",
2176
+ "System.Resources.ResourceManager": "4.3.0",
2177
+ "System.Runtime": "4.3.0",
2178
+ "System.Runtime.Extensions": "4.3.0",
2179
+ "System.Runtime.Handles": "4.3.0",
2180
+ "System.Runtime.InteropServices": "4.3.0",
2181
+ "System.Security.Cryptography.Algorithms": "4.3.0",
2182
+ "System.Security.Cryptography.Encoding": "4.3.0",
2183
+ "System.Security.Cryptography.Primitives": "4.3.0",
2184
+ "System.Text.Encoding": "4.3.0",
2185
+ "System.Threading": "4.3.0"
2186
+ }
2187
+ },
2188
+ "System.Security.Cryptography.Encoding": {
2189
+ "type": "Transitive",
2190
+ "resolved": "4.3.0",
2191
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
2192
+ "dependencies": {
2193
+ "Microsoft.NETCore.Platforms": "1.1.0",
2194
+ "System.Collections": "4.3.0",
2195
+ "System.Collections.Concurrent": "4.3.0",
2196
+ "System.Linq": "4.3.0",
2197
+ "System.Resources.ResourceManager": "4.3.0",
2198
+ "System.Runtime": "4.3.0",
2199
+ "System.Runtime.Extensions": "4.3.0",
2200
+ "System.Runtime.Handles": "4.3.0",
2201
+ "System.Runtime.InteropServices": "4.3.0",
2202
+ "System.Security.Cryptography.Primitives": "4.3.0",
2203
+ "System.Text.Encoding": "4.3.0",
2204
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2205
+ }
2206
+ },
2207
+ "System.Security.Cryptography.OpenSsl": {
2208
+ "type": "Transitive",
2209
+ "resolved": "4.3.0",
2210
+ "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
2211
+ "dependencies": {
2212
+ "System.Collections": "4.3.0",
2213
+ "System.IO": "4.3.0",
2214
+ "System.Resources.ResourceManager": "4.3.0",
2215
+ "System.Runtime": "4.3.0",
2216
+ "System.Runtime.Extensions": "4.3.0",
2217
+ "System.Runtime.Handles": "4.3.0",
2218
+ "System.Runtime.InteropServices": "4.3.0",
2219
+ "System.Runtime.Numerics": "4.3.0",
2220
+ "System.Security.Cryptography.Algorithms": "4.3.0",
2221
+ "System.Security.Cryptography.Encoding": "4.3.0",
2222
+ "System.Security.Cryptography.Primitives": "4.3.0",
2223
+ "System.Text.Encoding": "4.3.0",
2224
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2225
+ }
2226
+ },
2227
+ "System.Security.Cryptography.X509Certificates": {
2228
+ "type": "Transitive",
2229
+ "resolved": "4.3.0",
2230
+ "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
2231
+ "dependencies": {
2232
+ "Microsoft.NETCore.Platforms": "1.1.0",
2233
+ "System.Collections": "4.3.0",
2234
+ "System.Diagnostics.Debug": "4.3.0",
2235
+ "System.Globalization": "4.3.0",
2236
+ "System.Globalization.Calendars": "4.3.0",
2237
+ "System.IO": "4.3.0",
2238
+ "System.IO.FileSystem": "4.3.0",
2239
+ "System.IO.FileSystem.Primitives": "4.3.0",
2240
+ "System.Resources.ResourceManager": "4.3.0",
2241
+ "System.Runtime": "4.3.0",
2242
+ "System.Runtime.Extensions": "4.3.0",
2243
+ "System.Runtime.Handles": "4.3.0",
2244
+ "System.Runtime.InteropServices": "4.3.0",
2245
+ "System.Runtime.Numerics": "4.3.0",
2246
+ "System.Security.Cryptography.Algorithms": "4.3.0",
2247
+ "System.Security.Cryptography.Cng": "4.3.0",
2248
+ "System.Security.Cryptography.Csp": "4.3.0",
2249
+ "System.Security.Cryptography.Encoding": "4.3.0",
2250
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
2251
+ "System.Security.Cryptography.Primitives": "4.3.0",
2252
+ "System.Text.Encoding": "4.3.0",
2253
+ "System.Threading": "4.3.0",
2254
+ "runtime.native.System": "4.3.0",
2255
+ "runtime.native.System.Net.Http": "4.3.0",
2256
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2257
+ }
2258
+ },
2259
+ "System.Security.Principal": {
2260
+ "type": "Transitive",
2261
+ "resolved": "4.3.0",
2262
+ "contentHash": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
2263
+ "dependencies": {
2264
+ "System.Runtime": "4.3.0"
2265
+ }
2266
+ },
2267
+ "System.Security.Principal.Windows": {
2268
+ "type": "Transitive",
2269
+ "resolved": "4.3.0",
2270
+ "contentHash": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
2271
+ "dependencies": {
2272
+ "Microsoft.NETCore.Platforms": "1.1.0",
2273
+ "Microsoft.Win32.Primitives": "4.3.0",
2274
+ "System.Collections": "4.3.0",
2275
+ "System.Diagnostics.Debug": "4.3.0",
2276
+ "System.Reflection": "4.3.0",
2277
+ "System.Resources.ResourceManager": "4.3.0",
2278
+ "System.Runtime": "4.3.0",
2279
+ "System.Runtime.Extensions": "4.3.0",
2280
+ "System.Runtime.Handles": "4.3.0",
2281
+ "System.Runtime.InteropServices": "4.3.0",
2282
+ "System.Security.Claims": "4.3.0",
2283
+ "System.Security.Principal": "4.3.0",
2284
+ "System.Text.Encoding": "4.3.0",
2285
+ "System.Threading": "4.3.0"
2286
+ }
2287
+ },
2288
+ "System.Text.Encoding": {
2289
+ "type": "Transitive",
2290
+ "resolved": "4.3.0",
2291
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
2292
+ "dependencies": {
2293
+ "Microsoft.NETCore.Platforms": "1.1.0",
2294
+ "Microsoft.NETCore.Targets": "1.1.0",
2295
+ "System.Runtime": "4.3.0",
2296
+ "runtime.any.System.Text.Encoding": "4.3.0"
2297
+ }
2298
+ },
2299
+ "System.Text.Encoding.CodePages": {
2300
+ "type": "Transitive",
2301
+ "resolved": "6.0.0",
2302
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
2303
+ "dependencies": {
2304
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
2305
+ }
2306
+ },
2307
+ "System.Text.Encoding.Extensions": {
2308
+ "type": "Transitive",
2309
+ "resolved": "4.3.0",
2310
+ "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
2311
+ "dependencies": {
2312
+ "Microsoft.NETCore.Platforms": "1.1.0",
2313
+ "Microsoft.NETCore.Targets": "1.1.0",
2314
+ "System.Runtime": "4.3.0",
2315
+ "System.Text.Encoding": "4.3.0",
2316
+ "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
2317
+ }
2318
+ },
2319
+ "System.Threading.Overlapped": {
2320
+ "type": "Transitive",
2321
+ "resolved": "4.3.0",
2322
+ "contentHash": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
2323
+ "dependencies": {
2324
+ "Microsoft.NETCore.Platforms": "1.1.0",
2325
+ "System.Resources.ResourceManager": "4.3.0",
2326
+ "System.Runtime": "4.3.0",
2327
+ "System.Runtime.Handles": "4.3.0"
2328
+ }
2329
+ },
2330
+ "System.Threading.Tasks": {
2331
+ "type": "Transitive",
2332
+ "resolved": "4.3.0",
2333
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
2334
+ "dependencies": {
2335
+ "Microsoft.NETCore.Platforms": "1.1.0",
2336
+ "Microsoft.NETCore.Targets": "1.1.0",
2337
+ "System.Runtime": "4.3.0",
2338
+ "runtime.any.System.Threading.Tasks": "4.3.0"
2339
+ }
2340
+ },
2341
+ "System.Threading.Timer": {
2342
+ "type": "Transitive",
2343
+ "resolved": "4.3.0",
2344
+ "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
2345
+ "dependencies": {
2346
+ "Microsoft.NETCore.Platforms": "1.1.0",
2347
+ "Microsoft.NETCore.Targets": "1.1.0",
2348
+ "System.Runtime": "4.3.0",
2349
+ "runtime.any.System.Threading.Timer": "4.3.0"
2350
+ }
2351
+ }
2352
+ },
2353
+ "net6.0/win-x86": {
2354
+ "Microsoft.Win32.Primitives": {
2355
+ "type": "Transitive",
2356
+ "resolved": "4.3.0",
2357
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
2358
+ "dependencies": {
2359
+ "Microsoft.NETCore.Platforms": "1.1.0",
2360
+ "Microsoft.NETCore.Targets": "1.1.0",
2361
+ "System.Runtime": "4.3.0",
2362
+ "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
2363
+ }
2364
+ },
2365
+ "runtime.any.System.Collections": {
2366
+ "type": "Transitive",
2367
+ "resolved": "4.3.0",
2368
+ "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
2369
+ "dependencies": {
2370
+ "System.Runtime": "4.3.0"
2371
+ }
2372
+ },
2373
+ "runtime.any.System.Diagnostics.Tools": {
2374
+ "type": "Transitive",
2375
+ "resolved": "4.3.0",
2376
+ "contentHash": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg=="
2377
+ },
2378
+ "runtime.any.System.Diagnostics.Tracing": {
2379
+ "type": "Transitive",
2380
+ "resolved": "4.3.0",
2381
+ "contentHash": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ=="
2382
+ },
2383
+ "runtime.any.System.Globalization": {
2384
+ "type": "Transitive",
2385
+ "resolved": "4.3.0",
2386
+ "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
2387
+ },
2388
+ "runtime.any.System.Globalization.Calendars": {
2389
+ "type": "Transitive",
2390
+ "resolved": "4.3.0",
2391
+ "contentHash": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w=="
2392
+ },
2393
+ "runtime.any.System.IO": {
2394
+ "type": "Transitive",
2395
+ "resolved": "4.3.0",
2396
+ "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
2397
+ },
2398
+ "runtime.any.System.Reflection": {
2399
+ "type": "Transitive",
2400
+ "resolved": "4.3.0",
2401
+ "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
2402
+ },
2403
+ "runtime.any.System.Reflection.Extensions": {
2404
+ "type": "Transitive",
2405
+ "resolved": "4.3.0",
2406
+ "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
2407
+ },
2408
+ "runtime.any.System.Reflection.Primitives": {
2409
+ "type": "Transitive",
2410
+ "resolved": "4.3.0",
2411
+ "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
2412
+ },
2413
+ "runtime.any.System.Resources.ResourceManager": {
2414
+ "type": "Transitive",
2415
+ "resolved": "4.3.0",
2416
+ "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
2417
+ },
2418
+ "runtime.any.System.Runtime": {
2419
+ "type": "Transitive",
2420
+ "resolved": "4.3.0",
2421
+ "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
2422
+ "dependencies": {
2423
+ "System.Private.Uri": "4.3.0"
2424
+ }
2425
+ },
2426
+ "runtime.any.System.Runtime.Handles": {
2427
+ "type": "Transitive",
2428
+ "resolved": "4.3.0",
2429
+ "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
2430
+ },
2431
+ "runtime.any.System.Runtime.InteropServices": {
2432
+ "type": "Transitive",
2433
+ "resolved": "4.3.0",
2434
+ "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
2435
+ },
2436
+ "runtime.any.System.Text.Encoding": {
2437
+ "type": "Transitive",
2438
+ "resolved": "4.3.0",
2439
+ "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
2440
+ },
2441
+ "runtime.any.System.Text.Encoding.Extensions": {
2442
+ "type": "Transitive",
2443
+ "resolved": "4.3.0",
2444
+ "contentHash": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg=="
2445
+ },
2446
+ "runtime.any.System.Threading.Tasks": {
2447
+ "type": "Transitive",
2448
+ "resolved": "4.3.0",
2449
+ "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
2450
+ },
2451
+ "runtime.any.System.Threading.Timer": {
2452
+ "type": "Transitive",
2453
+ "resolved": "4.3.0",
2454
+ "contentHash": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w=="
2455
+ },
2456
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2457
+ "type": "Transitive",
2458
+ "resolved": "4.3.0",
2459
+ "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
2460
+ },
2461
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2462
+ "type": "Transitive",
2463
+ "resolved": "4.3.0",
2464
+ "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
2465
+ },
2466
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2467
+ "type": "Transitive",
2468
+ "resolved": "4.3.0",
2469
+ "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
2470
+ },
2471
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2472
+ "type": "Transitive",
2473
+ "resolved": "4.3.0",
2474
+ "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
2475
+ },
2476
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2477
+ "type": "Transitive",
2478
+ "resolved": "4.3.0",
2479
+ "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
2480
+ },
2481
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
2482
+ "type": "Transitive",
2483
+ "resolved": "4.3.0",
2484
+ "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
2485
+ },
2486
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2487
+ "type": "Transitive",
2488
+ "resolved": "4.3.0",
2489
+ "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
2490
+ },
2491
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2492
+ "type": "Transitive",
2493
+ "resolved": "4.3.0",
2494
+ "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
2495
+ },
2496
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2497
+ "type": "Transitive",
2498
+ "resolved": "4.3.0",
2499
+ "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
2500
+ },
2501
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2502
+ "type": "Transitive",
2503
+ "resolved": "4.3.0",
2504
+ "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
2505
+ },
2506
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
2507
+ "type": "Transitive",
2508
+ "resolved": "4.3.0",
2509
+ "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
2510
+ },
2511
+ "runtime.win.Microsoft.Win32.Primitives": {
2512
+ "type": "Transitive",
2513
+ "resolved": "4.3.0",
2514
+ "contentHash": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
2515
+ "dependencies": {
2516
+ "System.Runtime": "4.3.0",
2517
+ "System.Runtime.InteropServices": "4.3.0"
2518
+ }
2519
+ },
2520
+ "runtime.win.System.Console": {
2521
+ "type": "Transitive",
2522
+ "resolved": "4.3.1",
2523
+ "contentHash": "vHPXC3B18dxhyipVce8xQT1MQv1o5srYZqBlCNu9p9MNjhgGOntdQh/Xh2X4o7M2F839YUcQiGwu8Q498FyDjg==",
2524
+ "dependencies": {
2525
+ "System.IO": "4.3.0",
2526
+ "System.IO.FileSystem.Primitives": "4.3.0",
2527
+ "System.Resources.ResourceManager": "4.3.0",
2528
+ "System.Runtime": "4.3.0",
2529
+ "System.Runtime.InteropServices": "4.3.0",
2530
+ "System.Text.Encoding": "4.3.0",
2531
+ "System.Text.Encoding.Extensions": "4.3.0",
2532
+ "System.Threading": "4.3.0",
2533
+ "System.Threading.Tasks": "4.3.0"
2534
+ }
2535
+ },
2536
+ "runtime.win.System.Diagnostics.Debug": {
2537
+ "type": "Transitive",
2538
+ "resolved": "4.3.0",
2539
+ "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
2540
+ },
2541
+ "runtime.win.System.IO.FileSystem": {
2542
+ "type": "Transitive",
2543
+ "resolved": "4.3.0",
2544
+ "contentHash": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
2545
+ "dependencies": {
2546
+ "System.Buffers": "4.3.0",
2547
+ "System.Collections": "4.3.0",
2548
+ "System.Diagnostics.Debug": "4.3.0",
2549
+ "System.IO": "4.3.0",
2550
+ "System.IO.FileSystem.Primitives": "4.3.0",
2551
+ "System.Resources.ResourceManager": "4.3.0",
2552
+ "System.Runtime": "4.3.0",
2553
+ "System.Runtime.Extensions": "4.3.0",
2554
+ "System.Runtime.Handles": "4.3.0",
2555
+ "System.Runtime.InteropServices": "4.3.0",
2556
+ "System.Text.Encoding": "4.3.0",
2557
+ "System.Text.Encoding.Extensions": "4.3.0",
2558
+ "System.Threading": "4.3.0",
2559
+ "System.Threading.Overlapped": "4.3.0",
2560
+ "System.Threading.Tasks": "4.3.0"
2561
+ }
2562
+ },
2563
+ "runtime.win.System.Net.Primitives": {
2564
+ "type": "Transitive",
2565
+ "resolved": "4.3.0",
2566
+ "contentHash": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
2567
+ "dependencies": {
2568
+ "Microsoft.Win32.Primitives": "4.3.0",
2569
+ "System.Collections": "4.3.0",
2570
+ "System.Diagnostics.Tracing": "4.3.0",
2571
+ "System.Globalization": "4.3.0",
2572
+ "System.Resources.ResourceManager": "4.3.0",
2573
+ "System.Runtime": "4.3.0",
2574
+ "System.Runtime.Extensions": "4.3.0",
2575
+ "System.Runtime.Handles": "4.3.0",
2576
+ "System.Runtime.InteropServices": "4.3.0",
2577
+ "System.Threading": "4.3.0"
2578
+ }
2579
+ },
2580
+ "runtime.win.System.Net.Sockets": {
2581
+ "type": "Transitive",
2582
+ "resolved": "4.3.0",
2583
+ "contentHash": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
2584
+ "dependencies": {
2585
+ "System.Collections": "4.3.0",
2586
+ "System.Diagnostics.Debug": "4.3.0",
2587
+ "System.Diagnostics.Tracing": "4.3.0",
2588
+ "System.Globalization": "4.3.0",
2589
+ "System.IO": "4.3.0",
2590
+ "System.IO.FileSystem": "4.3.0",
2591
+ "System.IO.FileSystem.Primitives": "4.3.0",
2592
+ "System.Net.NameResolution": "4.3.0",
2593
+ "System.Net.Primitives": "4.3.0",
2594
+ "System.Resources.ResourceManager": "4.3.0",
2595
+ "System.Runtime": "4.3.0",
2596
+ "System.Runtime.Extensions": "4.3.0",
2597
+ "System.Runtime.Handles": "4.3.0",
2598
+ "System.Runtime.InteropServices": "4.3.0",
2599
+ "System.Security.Principal.Windows": "4.3.0",
2600
+ "System.Threading": "4.3.0",
2601
+ "System.Threading.Overlapped": "4.3.0",
2602
+ "System.Threading.Tasks": "4.3.0"
2603
+ }
2604
+ },
2605
+ "runtime.win.System.Runtime.Extensions": {
2606
+ "type": "Transitive",
2607
+ "resolved": "4.3.0",
2608
+ "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
2609
+ "dependencies": {
2610
+ "System.Private.Uri": "4.3.0"
2611
+ }
2612
+ },
2613
+ "System.Buffers": {
2614
+ "type": "Transitive",
2615
+ "resolved": "4.3.0",
2616
+ "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
2617
+ "dependencies": {
2618
+ "System.Diagnostics.Debug": "4.3.0",
2619
+ "System.Diagnostics.Tracing": "4.3.0",
2620
+ "System.Resources.ResourceManager": "4.3.0",
2621
+ "System.Runtime": "4.3.0",
2622
+ "System.Threading": "4.3.0"
2623
+ }
2624
+ },
2625
+ "System.Collections": {
2626
+ "type": "Transitive",
2627
+ "resolved": "4.3.0",
2628
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
2629
+ "dependencies": {
2630
+ "Microsoft.NETCore.Platforms": "1.1.0",
2631
+ "Microsoft.NETCore.Targets": "1.1.0",
2632
+ "System.Runtime": "4.3.0",
2633
+ "runtime.any.System.Collections": "4.3.0"
2634
+ }
2635
+ },
2636
+ "System.Console": {
2637
+ "type": "Transitive",
2638
+ "resolved": "4.3.0",
2639
+ "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
2640
+ "dependencies": {
2641
+ "Microsoft.NETCore.Platforms": "1.1.0",
2642
+ "Microsoft.NETCore.Targets": "1.1.0",
2643
+ "System.IO": "4.3.0",
2644
+ "System.Runtime": "4.3.0",
2645
+ "System.Text.Encoding": "4.3.0",
2646
+ "runtime.win.System.Console": "4.3.1"
2647
+ }
2648
+ },
2649
+ "System.Diagnostics.Debug": {
2650
+ "type": "Transitive",
2651
+ "resolved": "4.3.0",
2652
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
2653
+ "dependencies": {
2654
+ "Microsoft.NETCore.Platforms": "1.1.0",
2655
+ "Microsoft.NETCore.Targets": "1.1.0",
2656
+ "System.Runtime": "4.3.0",
2657
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
2658
+ }
2659
+ },
2660
+ "System.Diagnostics.Tools": {
2661
+ "type": "Transitive",
2662
+ "resolved": "4.3.0",
2663
+ "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
2664
+ "dependencies": {
2665
+ "Microsoft.NETCore.Platforms": "1.1.0",
2666
+ "Microsoft.NETCore.Targets": "1.1.0",
2667
+ "System.Runtime": "4.3.0",
2668
+ "runtime.any.System.Diagnostics.Tools": "4.3.0"
2669
+ }
2670
+ },
2671
+ "System.Diagnostics.Tracing": {
2672
+ "type": "Transitive",
2673
+ "resolved": "4.3.0",
2674
+ "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
2675
+ "dependencies": {
2676
+ "Microsoft.NETCore.Platforms": "1.1.0",
2677
+ "Microsoft.NETCore.Targets": "1.1.0",
2678
+ "System.Runtime": "4.3.0",
2679
+ "runtime.any.System.Diagnostics.Tracing": "4.3.0"
2680
+ }
2681
+ },
2682
+ "System.Globalization": {
2683
+ "type": "Transitive",
2684
+ "resolved": "4.3.0",
2685
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
2686
+ "dependencies": {
2687
+ "Microsoft.NETCore.Platforms": "1.1.0",
2688
+ "Microsoft.NETCore.Targets": "1.1.0",
2689
+ "System.Runtime": "4.3.0",
2690
+ "runtime.any.System.Globalization": "4.3.0"
2691
+ }
2692
+ },
2693
+ "System.Globalization.Calendars": {
2694
+ "type": "Transitive",
2695
+ "resolved": "4.3.0",
2696
+ "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
2697
+ "dependencies": {
2698
+ "Microsoft.NETCore.Platforms": "1.1.0",
2699
+ "Microsoft.NETCore.Targets": "1.1.0",
2700
+ "System.Globalization": "4.3.0",
2701
+ "System.Runtime": "4.3.0",
2702
+ "runtime.any.System.Globalization.Calendars": "4.3.0"
2703
+ }
2704
+ },
2705
+ "System.Globalization.Extensions": {
2706
+ "type": "Transitive",
2707
+ "resolved": "4.3.0",
2708
+ "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
2709
+ "dependencies": {
2710
+ "Microsoft.NETCore.Platforms": "1.1.0",
2711
+ "System.Globalization": "4.3.0",
2712
+ "System.Resources.ResourceManager": "4.3.0",
2713
+ "System.Runtime": "4.3.0",
2714
+ "System.Runtime.Extensions": "4.3.0",
2715
+ "System.Runtime.InteropServices": "4.3.0"
2716
+ }
2717
+ },
2718
+ "System.IO": {
2719
+ "type": "Transitive",
2720
+ "resolved": "4.3.0",
2721
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
2722
+ "dependencies": {
2723
+ "Microsoft.NETCore.Platforms": "1.1.0",
2724
+ "Microsoft.NETCore.Targets": "1.1.0",
2725
+ "System.Runtime": "4.3.0",
2726
+ "System.Text.Encoding": "4.3.0",
2727
+ "System.Threading.Tasks": "4.3.0",
2728
+ "runtime.any.System.IO": "4.3.0"
2729
+ }
2730
+ },
2731
+ "System.IO.Compression": {
2732
+ "type": "Transitive",
2733
+ "resolved": "4.3.0",
2734
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
2735
+ "dependencies": {
2736
+ "Microsoft.NETCore.Platforms": "1.1.0",
2737
+ "System.Buffers": "4.3.0",
2738
+ "System.Collections": "4.3.0",
2739
+ "System.Diagnostics.Debug": "4.3.0",
2740
+ "System.IO": "4.3.0",
2741
+ "System.Resources.ResourceManager": "4.3.0",
2742
+ "System.Runtime": "4.3.0",
2743
+ "System.Runtime.Extensions": "4.3.0",
2744
+ "System.Runtime.Handles": "4.3.0",
2745
+ "System.Runtime.InteropServices": "4.3.0",
2746
+ "System.Text.Encoding": "4.3.0",
2747
+ "System.Threading": "4.3.0",
2748
+ "System.Threading.Tasks": "4.3.0",
2749
+ "runtime.native.System": "4.3.0",
2750
+ "runtime.native.System.IO.Compression": "4.3.0"
2751
+ }
2752
+ },
2753
+ "System.IO.FileSystem": {
2754
+ "type": "Transitive",
2755
+ "resolved": "4.3.0",
2756
+ "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
2757
+ "dependencies": {
2758
+ "Microsoft.NETCore.Platforms": "1.1.0",
2759
+ "Microsoft.NETCore.Targets": "1.1.0",
2760
+ "System.IO": "4.3.0",
2761
+ "System.IO.FileSystem.Primitives": "4.3.0",
2762
+ "System.Runtime": "4.3.0",
2763
+ "System.Runtime.Handles": "4.3.0",
2764
+ "System.Text.Encoding": "4.3.0",
2765
+ "System.Threading.Tasks": "4.3.0",
2766
+ "runtime.win.System.IO.FileSystem": "4.3.0"
2767
+ }
2768
+ },
2769
+ "System.Net.Http": {
2770
+ "type": "Transitive",
2771
+ "resolved": "4.3.0",
2772
+ "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
2773
+ "dependencies": {
2774
+ "Microsoft.NETCore.Platforms": "1.1.0",
2775
+ "System.Collections": "4.3.0",
2776
+ "System.Diagnostics.Debug": "4.3.0",
2777
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
2778
+ "System.Diagnostics.Tracing": "4.3.0",
2779
+ "System.Globalization": "4.3.0",
2780
+ "System.Globalization.Extensions": "4.3.0",
2781
+ "System.IO": "4.3.0",
2782
+ "System.IO.FileSystem": "4.3.0",
2783
+ "System.Net.Primitives": "4.3.0",
2784
+ "System.Resources.ResourceManager": "4.3.0",
2785
+ "System.Runtime": "4.3.0",
2786
+ "System.Runtime.Extensions": "4.3.0",
2787
+ "System.Runtime.Handles": "4.3.0",
2788
+ "System.Runtime.InteropServices": "4.3.0",
2789
+ "System.Security.Cryptography.Algorithms": "4.3.0",
2790
+ "System.Security.Cryptography.Encoding": "4.3.0",
2791
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
2792
+ "System.Security.Cryptography.Primitives": "4.3.0",
2793
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
2794
+ "System.Text.Encoding": "4.3.0",
2795
+ "System.Threading": "4.3.0",
2796
+ "System.Threading.Tasks": "4.3.0",
2797
+ "runtime.native.System": "4.3.0",
2798
+ "runtime.native.System.Net.Http": "4.3.0",
2799
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2800
+ }
2801
+ },
2802
+ "System.Net.NameResolution": {
2803
+ "type": "Transitive",
2804
+ "resolved": "4.3.0",
2805
+ "contentHash": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
2806
+ "dependencies": {
2807
+ "Microsoft.NETCore.Platforms": "1.1.0",
2808
+ "System.Collections": "4.3.0",
2809
+ "System.Diagnostics.Tracing": "4.3.0",
2810
+ "System.Globalization": "4.3.0",
2811
+ "System.Net.Primitives": "4.3.0",
2812
+ "System.Resources.ResourceManager": "4.3.0",
2813
+ "System.Runtime": "4.3.0",
2814
+ "System.Runtime.Extensions": "4.3.0",
2815
+ "System.Runtime.Handles": "4.3.0",
2816
+ "System.Runtime.InteropServices": "4.3.0",
2817
+ "System.Security.Principal.Windows": "4.3.0",
2818
+ "System.Threading": "4.3.0",
2819
+ "System.Threading.Tasks": "4.3.0",
2820
+ "runtime.native.System": "4.3.0"
2821
+ }
2822
+ },
2823
+ "System.Net.Primitives": {
2824
+ "type": "Transitive",
2825
+ "resolved": "4.3.0",
2826
+ "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
2827
+ "dependencies": {
2828
+ "Microsoft.NETCore.Platforms": "1.1.0",
2829
+ "Microsoft.NETCore.Targets": "1.1.0",
2830
+ "System.Runtime": "4.3.0",
2831
+ "System.Runtime.Handles": "4.3.0",
2832
+ "runtime.win.System.Net.Primitives": "4.3.0"
2833
+ }
2834
+ },
2835
+ "System.Net.Sockets": {
2836
+ "type": "Transitive",
2837
+ "resolved": "4.3.0",
2838
+ "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
2839
+ "dependencies": {
2840
+ "Microsoft.NETCore.Platforms": "1.1.0",
2841
+ "Microsoft.NETCore.Targets": "1.1.0",
2842
+ "System.IO": "4.3.0",
2843
+ "System.Net.Primitives": "4.3.0",
2844
+ "System.Runtime": "4.3.0",
2845
+ "System.Threading.Tasks": "4.3.0",
2846
+ "runtime.win.System.Net.Sockets": "4.3.0"
2847
+ }
2848
+ },
2849
+ "System.Reflection": {
2850
+ "type": "Transitive",
2851
+ "resolved": "4.3.0",
2852
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
2853
+ "dependencies": {
2854
+ "Microsoft.NETCore.Platforms": "1.1.0",
2855
+ "Microsoft.NETCore.Targets": "1.1.0",
2856
+ "System.IO": "4.3.0",
2857
+ "System.Reflection.Primitives": "4.3.0",
2858
+ "System.Runtime": "4.3.0",
2859
+ "runtime.any.System.Reflection": "4.3.0"
2860
+ }
2861
+ },
2862
+ "System.Reflection.Extensions": {
2863
+ "type": "Transitive",
2864
+ "resolved": "4.3.0",
2865
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
2866
+ "dependencies": {
2867
+ "Microsoft.NETCore.Platforms": "1.1.0",
2868
+ "Microsoft.NETCore.Targets": "1.1.0",
2869
+ "System.Reflection": "4.3.0",
2870
+ "System.Runtime": "4.3.0",
2871
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
2872
+ }
2873
+ },
2874
+ "System.Reflection.Primitives": {
2875
+ "type": "Transitive",
2876
+ "resolved": "4.3.0",
2877
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
2878
+ "dependencies": {
2879
+ "Microsoft.NETCore.Platforms": "1.1.0",
2880
+ "Microsoft.NETCore.Targets": "1.1.0",
2881
+ "System.Runtime": "4.3.0",
2882
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
2883
+ }
2884
+ },
2885
+ "System.Resources.ResourceManager": {
2886
+ "type": "Transitive",
2887
+ "resolved": "4.3.0",
2888
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
2889
+ "dependencies": {
2890
+ "Microsoft.NETCore.Platforms": "1.1.0",
2891
+ "Microsoft.NETCore.Targets": "1.1.0",
2892
+ "System.Globalization": "4.3.0",
2893
+ "System.Reflection": "4.3.0",
2894
+ "System.Runtime": "4.3.0",
2895
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
2896
+ }
2897
+ },
2898
+ "System.Runtime": {
2899
+ "type": "Transitive",
2900
+ "resolved": "4.3.0",
2901
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
2902
+ "dependencies": {
2903
+ "Microsoft.NETCore.Platforms": "1.1.0",
2904
+ "Microsoft.NETCore.Targets": "1.1.0",
2905
+ "runtime.any.System.Runtime": "4.3.0"
2906
+ }
2907
+ },
2908
+ "System.Runtime.Extensions": {
2909
+ "type": "Transitive",
2910
+ "resolved": "4.3.0",
2911
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
2912
+ "dependencies": {
2913
+ "Microsoft.NETCore.Platforms": "1.1.0",
2914
+ "Microsoft.NETCore.Targets": "1.1.0",
2915
+ "System.Runtime": "4.3.0",
2916
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
2917
+ }
2918
+ },
2919
+ "System.Runtime.Handles": {
2920
+ "type": "Transitive",
2921
+ "resolved": "4.3.0",
2922
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
2923
+ "dependencies": {
2924
+ "Microsoft.NETCore.Platforms": "1.1.0",
2925
+ "Microsoft.NETCore.Targets": "1.1.0",
2926
+ "System.Runtime": "4.3.0",
2927
+ "runtime.any.System.Runtime.Handles": "4.3.0"
2928
+ }
2929
+ },
2930
+ "System.Runtime.InteropServices": {
2931
+ "type": "Transitive",
2932
+ "resolved": "4.3.0",
2933
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
2934
+ "dependencies": {
2935
+ "Microsoft.NETCore.Platforms": "1.1.0",
2936
+ "Microsoft.NETCore.Targets": "1.1.0",
2937
+ "System.Reflection": "4.3.0",
2938
+ "System.Reflection.Primitives": "4.3.0",
2939
+ "System.Runtime": "4.3.0",
2940
+ "System.Runtime.Handles": "4.3.0",
2941
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
2942
+ }
2943
+ },
2944
+ "System.Runtime.InteropServices.RuntimeInformation": {
2945
+ "type": "Transitive",
2946
+ "resolved": "4.3.0",
2947
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
2948
+ "dependencies": {
2949
+ "System.Reflection": "4.3.0",
2950
+ "System.Reflection.Extensions": "4.3.0",
2951
+ "System.Resources.ResourceManager": "4.3.0",
2952
+ "System.Runtime": "4.3.0",
2953
+ "System.Runtime.InteropServices": "4.3.0",
2954
+ "System.Threading": "4.3.0",
2955
+ "runtime.native.System": "4.3.0"
2956
+ }
2957
+ },
2958
+ "System.Security.Claims": {
2959
+ "type": "Transitive",
2960
+ "resolved": "4.3.0",
2961
+ "contentHash": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
2962
+ "dependencies": {
2963
+ "System.Collections": "4.3.0",
2964
+ "System.Globalization": "4.3.0",
2965
+ "System.IO": "4.3.0",
2966
+ "System.Resources.ResourceManager": "4.3.0",
2967
+ "System.Runtime": "4.3.0",
2968
+ "System.Runtime.Extensions": "4.3.0",
2969
+ "System.Security.Principal": "4.3.0"
2970
+ }
2971
+ },
2972
+ "System.Security.Cryptography.Algorithms": {
2973
+ "type": "Transitive",
2974
+ "resolved": "4.3.0",
2975
+ "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
2976
+ "dependencies": {
2977
+ "Microsoft.NETCore.Platforms": "1.1.0",
2978
+ "System.Collections": "4.3.0",
2979
+ "System.IO": "4.3.0",
2980
+ "System.Resources.ResourceManager": "4.3.0",
2981
+ "System.Runtime": "4.3.0",
2982
+ "System.Runtime.Extensions": "4.3.0",
2983
+ "System.Runtime.Handles": "4.3.0",
2984
+ "System.Runtime.InteropServices": "4.3.0",
2985
+ "System.Runtime.Numerics": "4.3.0",
2986
+ "System.Security.Cryptography.Encoding": "4.3.0",
2987
+ "System.Security.Cryptography.Primitives": "4.3.0",
2988
+ "System.Text.Encoding": "4.3.0",
2989
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
2990
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
2991
+ }
2992
+ },
2993
+ "System.Security.Cryptography.Cng": {
2994
+ "type": "Transitive",
2995
+ "resolved": "4.3.0",
2996
+ "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
2997
+ "dependencies": {
2998
+ "Microsoft.NETCore.Platforms": "1.1.0",
2999
+ "System.IO": "4.3.0",
3000
+ "System.Resources.ResourceManager": "4.3.0",
3001
+ "System.Runtime": "4.3.0",
3002
+ "System.Runtime.Extensions": "4.3.0",
3003
+ "System.Runtime.Handles": "4.3.0",
3004
+ "System.Runtime.InteropServices": "4.3.0",
3005
+ "System.Security.Cryptography.Algorithms": "4.3.0",
3006
+ "System.Security.Cryptography.Encoding": "4.3.0",
3007
+ "System.Security.Cryptography.Primitives": "4.3.0",
3008
+ "System.Text.Encoding": "4.3.0"
3009
+ }
3010
+ },
3011
+ "System.Security.Cryptography.Csp": {
3012
+ "type": "Transitive",
3013
+ "resolved": "4.3.0",
3014
+ "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
3015
+ "dependencies": {
3016
+ "Microsoft.NETCore.Platforms": "1.1.0",
3017
+ "System.IO": "4.3.0",
3018
+ "System.Reflection": "4.3.0",
3019
+ "System.Resources.ResourceManager": "4.3.0",
3020
+ "System.Runtime": "4.3.0",
3021
+ "System.Runtime.Extensions": "4.3.0",
3022
+ "System.Runtime.Handles": "4.3.0",
3023
+ "System.Runtime.InteropServices": "4.3.0",
3024
+ "System.Security.Cryptography.Algorithms": "4.3.0",
3025
+ "System.Security.Cryptography.Encoding": "4.3.0",
3026
+ "System.Security.Cryptography.Primitives": "4.3.0",
3027
+ "System.Text.Encoding": "4.3.0",
3028
+ "System.Threading": "4.3.0"
3029
+ }
3030
+ },
3031
+ "System.Security.Cryptography.Encoding": {
3032
+ "type": "Transitive",
3033
+ "resolved": "4.3.0",
3034
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
3035
+ "dependencies": {
3036
+ "Microsoft.NETCore.Platforms": "1.1.0",
3037
+ "System.Collections": "4.3.0",
3038
+ "System.Collections.Concurrent": "4.3.0",
3039
+ "System.Linq": "4.3.0",
3040
+ "System.Resources.ResourceManager": "4.3.0",
3041
+ "System.Runtime": "4.3.0",
3042
+ "System.Runtime.Extensions": "4.3.0",
3043
+ "System.Runtime.Handles": "4.3.0",
3044
+ "System.Runtime.InteropServices": "4.3.0",
3045
+ "System.Security.Cryptography.Primitives": "4.3.0",
3046
+ "System.Text.Encoding": "4.3.0",
3047
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3048
+ }
3049
+ },
3050
+ "System.Security.Cryptography.OpenSsl": {
3051
+ "type": "Transitive",
3052
+ "resolved": "4.3.0",
3053
+ "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
3054
+ "dependencies": {
3055
+ "System.Collections": "4.3.0",
3056
+ "System.IO": "4.3.0",
3057
+ "System.Resources.ResourceManager": "4.3.0",
3058
+ "System.Runtime": "4.3.0",
3059
+ "System.Runtime.Extensions": "4.3.0",
3060
+ "System.Runtime.Handles": "4.3.0",
3061
+ "System.Runtime.InteropServices": "4.3.0",
3062
+ "System.Runtime.Numerics": "4.3.0",
3063
+ "System.Security.Cryptography.Algorithms": "4.3.0",
3064
+ "System.Security.Cryptography.Encoding": "4.3.0",
3065
+ "System.Security.Cryptography.Primitives": "4.3.0",
3066
+ "System.Text.Encoding": "4.3.0",
3067
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3068
+ }
3069
+ },
3070
+ "System.Security.Cryptography.X509Certificates": {
3071
+ "type": "Transitive",
3072
+ "resolved": "4.3.0",
3073
+ "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
3074
+ "dependencies": {
3075
+ "Microsoft.NETCore.Platforms": "1.1.0",
3076
+ "System.Collections": "4.3.0",
3077
+ "System.Diagnostics.Debug": "4.3.0",
3078
+ "System.Globalization": "4.3.0",
3079
+ "System.Globalization.Calendars": "4.3.0",
3080
+ "System.IO": "4.3.0",
3081
+ "System.IO.FileSystem": "4.3.0",
3082
+ "System.IO.FileSystem.Primitives": "4.3.0",
3083
+ "System.Resources.ResourceManager": "4.3.0",
3084
+ "System.Runtime": "4.3.0",
3085
+ "System.Runtime.Extensions": "4.3.0",
3086
+ "System.Runtime.Handles": "4.3.0",
3087
+ "System.Runtime.InteropServices": "4.3.0",
3088
+ "System.Runtime.Numerics": "4.3.0",
3089
+ "System.Security.Cryptography.Algorithms": "4.3.0",
3090
+ "System.Security.Cryptography.Cng": "4.3.0",
3091
+ "System.Security.Cryptography.Csp": "4.3.0",
3092
+ "System.Security.Cryptography.Encoding": "4.3.0",
3093
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
3094
+ "System.Security.Cryptography.Primitives": "4.3.0",
3095
+ "System.Text.Encoding": "4.3.0",
3096
+ "System.Threading": "4.3.0",
3097
+ "runtime.native.System": "4.3.0",
3098
+ "runtime.native.System.Net.Http": "4.3.0",
3099
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
3100
+ }
3101
+ },
3102
+ "System.Security.Principal": {
3103
+ "type": "Transitive",
3104
+ "resolved": "4.3.0",
3105
+ "contentHash": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
3106
+ "dependencies": {
3107
+ "System.Runtime": "4.3.0"
3108
+ }
3109
+ },
3110
+ "System.Security.Principal.Windows": {
3111
+ "type": "Transitive",
3112
+ "resolved": "4.3.0",
3113
+ "contentHash": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
3114
+ "dependencies": {
3115
+ "Microsoft.NETCore.Platforms": "1.1.0",
3116
+ "Microsoft.Win32.Primitives": "4.3.0",
3117
+ "System.Collections": "4.3.0",
3118
+ "System.Diagnostics.Debug": "4.3.0",
3119
+ "System.Reflection": "4.3.0",
3120
+ "System.Resources.ResourceManager": "4.3.0",
3121
+ "System.Runtime": "4.3.0",
3122
+ "System.Runtime.Extensions": "4.3.0",
3123
+ "System.Runtime.Handles": "4.3.0",
3124
+ "System.Runtime.InteropServices": "4.3.0",
3125
+ "System.Security.Claims": "4.3.0",
3126
+ "System.Security.Principal": "4.3.0",
3127
+ "System.Text.Encoding": "4.3.0",
3128
+ "System.Threading": "4.3.0"
3129
+ }
3130
+ },
3131
+ "System.Text.Encoding": {
3132
+ "type": "Transitive",
3133
+ "resolved": "4.3.0",
3134
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
3135
+ "dependencies": {
3136
+ "Microsoft.NETCore.Platforms": "1.1.0",
3137
+ "Microsoft.NETCore.Targets": "1.1.0",
3138
+ "System.Runtime": "4.3.0",
3139
+ "runtime.any.System.Text.Encoding": "4.3.0"
3140
+ }
3141
+ },
3142
+ "System.Text.Encoding.CodePages": {
3143
+ "type": "Transitive",
3144
+ "resolved": "6.0.0",
3145
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
3146
+ "dependencies": {
3147
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
3148
+ }
3149
+ },
3150
+ "System.Text.Encoding.Extensions": {
3151
+ "type": "Transitive",
3152
+ "resolved": "4.3.0",
3153
+ "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
3154
+ "dependencies": {
3155
+ "Microsoft.NETCore.Platforms": "1.1.0",
3156
+ "Microsoft.NETCore.Targets": "1.1.0",
3157
+ "System.Runtime": "4.3.0",
3158
+ "System.Text.Encoding": "4.3.0",
3159
+ "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
3160
+ }
3161
+ },
3162
+ "System.Threading.Overlapped": {
3163
+ "type": "Transitive",
3164
+ "resolved": "4.3.0",
3165
+ "contentHash": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
3166
+ "dependencies": {
3167
+ "Microsoft.NETCore.Platforms": "1.1.0",
3168
+ "System.Resources.ResourceManager": "4.3.0",
3169
+ "System.Runtime": "4.3.0",
3170
+ "System.Runtime.Handles": "4.3.0"
3171
+ }
3172
+ },
3173
+ "System.Threading.Tasks": {
3174
+ "type": "Transitive",
3175
+ "resolved": "4.3.0",
3176
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
3177
+ "dependencies": {
3178
+ "Microsoft.NETCore.Platforms": "1.1.0",
3179
+ "Microsoft.NETCore.Targets": "1.1.0",
3180
+ "System.Runtime": "4.3.0",
3181
+ "runtime.any.System.Threading.Tasks": "4.3.0"
3182
+ }
3183
+ },
3184
+ "System.Threading.Timer": {
3185
+ "type": "Transitive",
3186
+ "resolved": "4.3.0",
3187
+ "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
3188
+ "dependencies": {
3189
+ "Microsoft.NETCore.Platforms": "1.1.0",
3190
+ "Microsoft.NETCore.Targets": "1.1.0",
3191
+ "System.Runtime": "4.3.0",
3192
+ "runtime.any.System.Threading.Timer": "4.3.0"
3193
+ }
3194
+ }
3195
+ }
3196
+ }
3197
+ }