From 3c0d36e4cce205a94fc555a427d41087ffade60b Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 13:00:52 -0800 Subject: [PATCH 01/11] renaming `clrcompression` --> `System.IO.Compression.Native` --- docs/coding-guidelines/interop-guidelines.md | 2 +- src/coreclr/scripts/superpmi-setup.py | 2 +- .../cli/apphost/static/CMakeLists.txt | 2 +- .../cli/hostpolicy/hostpolicy_context.cpp | 2 +- .../Directory.Build.props | 2 +- .../src/Interop/Windows/Interop.Libraries.cs | 2 +- src/libraries/Native/AnyOS/zlib/pal_zlib.c | 2 +- src/libraries/Native/Windows/CMakeLists.txt | 2 +- .../CMakeLists.txt | 36 +++++++++--------- .../Native.rc | 0 .../clrcompression.def | 4 +- .../zlib-intel/README.txt | 0 .../zlib-intel/adler32.c | 0 .../zlib-intel/compress.c | 0 .../zlib-intel/crc32.c | 0 .../zlib-intel/crc32.h | 0 .../zlib-intel/crc_folding.c | 0 .../zlib-intel/deflate.c | 0 .../zlib-intel/deflate.h | 0 .../zlib-intel/deflate_medium.c | 0 .../zlib-intel/deflate_quick.c | 0 .../zlib-intel/gzguts.h | 0 .../zlib-intel/inffast.c | 0 .../zlib-intel/inffast.h | 0 .../zlib-intel/inffixed.h | 0 .../zlib-intel/inflate.c | 0 .../zlib-intel/inflate.h | 0 .../zlib-intel/inftrees.c | 0 .../zlib-intel/inftrees.h | 0 .../zlib-intel/match.c | 0 .../zlib-intel/slide_sse.c | 0 .../zlib-intel/trees.c | 0 .../zlib-intel/trees.h | 0 .../zlib-intel/x86.c | 0 .../zlib-intel/x86.h | 0 .../zlib-intel/zconf.h | 0 .../zlib-intel/zlib.h | 0 .../zlib-intel/zutil.c | 0 .../zlib-intel/zutil.h | 0 .../zlib/CMakeLists.txt | 0 .../zlib/ChangeLog | 0 .../zlib/FAQ | 0 .../zlib/INDEX | 0 .../zlib/Makefile | 0 .../zlib/Makefile.in | 0 .../zlib/README | 0 .../zlib/adler32.c | 0 .../zlib/compress.c | 0 .../zlib/configure | 0 .../zlib/crc32.c | 0 .../zlib/crc32.h | 0 .../zlib/deflate.c | 0 .../zlib/deflate.h | 0 .../zlib/gzclose.c | 0 .../zlib/gzguts.h | 0 .../zlib/gzlib.c | 0 .../zlib/gzread.c | 0 .../zlib/gzwrite.c | 0 .../zlib/infback.c | 0 .../zlib/inffast.c | 0 .../zlib/inffast.h | 0 .../zlib/inffixed.h | 0 .../zlib/inflate.c | 0 .../zlib/inflate.h | 0 .../zlib/inftrees.c | 0 .../zlib/inftrees.h | 0 .../zlib/make_vms.com | 0 .../zlib/treebuild.xml | 0 .../zlib/trees.c | 0 .../zlib/trees.h | 0 .../zlib/uncompr.c | 0 .../zlib/zconf.h | 0 .../zlib/zconf.h.cmakein | 0 .../zlib/zconf.h.in | 0 .../zlib/zlib.3 | 0 .../zlib/zlib.3.pdf | Bin .../zlib/zlib.h | 0 .../zlib/zlib.map | 0 .../zlib/zlib.pc.cmakein | 0 .../zlib/zlib.pc.in | 0 .../zlib/zlib2ansi | 0 .../zlib/zutil.c | 0 .../zlib/zutil.h | 0 .../IO/Compression/DeflateZLib/ZLibNative.cs | 6 +-- .../tests/Resources/Strings.resx | 6 +-- src/libraries/pkg/descriptions.json | 2 +- 86 files changed, 35 insertions(+), 35 deletions(-) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/CMakeLists.txt (70%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/Native.rc (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/clrcompression.def (92%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/README.txt (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/adler32.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/compress.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/crc32.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/crc32.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/crc_folding.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/deflate.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/deflate.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/deflate_medium.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/deflate_quick.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/gzguts.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inffast.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inffast.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inffixed.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inflate.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inflate.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inftrees.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/inftrees.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/match.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/slide_sse.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/trees.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/trees.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/x86.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/x86.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/zconf.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/zlib.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/zutil.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib-intel/zutil.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/CMakeLists.txt (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/ChangeLog (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/FAQ (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/INDEX (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/Makefile (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/Makefile.in (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/README (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/adler32.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/compress.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/configure (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/crc32.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/crc32.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/deflate.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/deflate.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/gzclose.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/gzguts.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/gzlib.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/gzread.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/gzwrite.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/infback.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inffast.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inffast.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inffixed.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inflate.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inflate.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inftrees.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/inftrees.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/make_vms.com (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/treebuild.xml (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/trees.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/trees.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/uncompr.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zconf.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zconf.h.cmakein (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zconf.h.in (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.3 (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.3.pdf (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.h (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.map (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.pc.cmakein (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib.pc.in (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zlib2ansi (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zutil.c (100%) rename src/libraries/Native/Windows/{clrcompression => System.IO.Compression.Native}/zlib/zutil.h (100%) diff --git a/docs/coding-guidelines/interop-guidelines.md b/docs/coding-guidelines/interop-guidelines.md index 5ce81404073fbe..24cb0755d727c4 100644 --- a/docs/coding-guidelines/interop-guidelines.md +++ b/docs/coding-guidelines/interop-guidelines.md @@ -41,7 +41,7 @@ internal static partial class Interop ### File organization - The Interop partial class definitions should live in Interop.*.cs files. These Interop.*.cs files should all live under Common rather than within a given assembly's folder. - - The only exception to this should be when an assembly P/Invokes to its own native library that isn't available to or consumed by anyone else, e.g. System.IO.Compression P/Invoking to clrcompression.dll. In such cases, System.IO.Compression should have its own Interop folder which follows a similar scheme as outlined in this proposal, but just for these private P/Invokes. + - The only exception to this should be when an assembly P/Invokes to its own native library that isn't available to or consumed by anyone else, e.g. System.IO.Compression P/Invoking to System.IO.Compression.Native.dll. In such cases, System.IO.Compression should have its own Interop folder which follows a similar scheme as outlined in this proposal, but just for these private P/Invokes. - Under Common\src\Interop, we'll have a folder for each target platform, and within each platform, for each library from which functionality is being consumed. The Interop.*.cs files will live within those library folders, e.g. ``` diff --git a/src/coreclr/scripts/superpmi-setup.py b/src/coreclr/scripts/superpmi-setup.py index 10365804de8b2b..ba32ebfdb2779f 100644 --- a/src/coreclr/scripts/superpmi-setup.py +++ b/src/coreclr/scripts/superpmi-setup.py @@ -56,7 +56,7 @@ parser.add_argument("-max_size", help="Max size of each partition in MB") is_windows = platform.system() == "Windows" native_binaries_to_ignore = [ - "clrcompression.dll", + "System.IO.Compression.Native.dll", "clretwrc.dll", "clrgc.dll", "clrjit.dll", diff --git a/src/installer/corehost/cli/apphost/static/CMakeLists.txt b/src/installer/corehost/cli/apphost/static/CMakeLists.txt index cf100a715d1a34..530806e4ae2403 100644 --- a/src/installer/corehost/cli/apphost/static/CMakeLists.txt +++ b/src/installer/corehost/cli/apphost/static/CMakeLists.txt @@ -119,7 +119,7 @@ if(CLR_CMAKE_TARGET_WIN32) set(CORECLR_LIBRARIES ${CORECLR_STATIC_LIB_LOCATION}/coreclr_static.lib ${CORECLR_STATIC_LIB_LOCATION}/System.Globalization.Native.lib - ${CORECLR_STATIC_LIB_LOCATION}/libclrcompression.lib + ${CORECLR_STATIC_LIB_LOCATION}/System.IO.Compression.Native.lib kernel32.lib advapi32.lib ole32.lib diff --git a/src/installer/corehost/cli/hostpolicy/hostpolicy_context.cpp b/src/installer/corehost/cli/hostpolicy/hostpolicy_context.cpp index aba62722a0da58..6abafe19a841b0 100644 --- a/src/installer/corehost/cli/hostpolicy/hostpolicy_context.cpp +++ b/src/installer/corehost/cli/hostpolicy/hostpolicy_context.cpp @@ -47,7 +47,7 @@ namespace extern "C" const void* CompressionResolveDllImport(const char* name); #if defined(_WIN32) -#define COMPRESSION_DLL_NAME "clrcompression" +#define COMPRESSION_DLL_NAME "System.IO.Compression.Native" #else #define COMPRESSION_DLL_NAME "libSystem.IO.Compression.Native" #endif diff --git a/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props b/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props index 036716cf0a7f9f..8a4df134dae903 100644 --- a/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props +++ b/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props @@ -176,7 +176,7 @@ - + diff --git a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs index 4893a2894682de..2d2f6a991af390 100644 --- a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs @@ -31,7 +31,7 @@ internal static partial class Libraries internal const string Wldap32 = "wldap32.dll"; internal const string Ws2_32 = "ws2_32.dll"; internal const string Wtsapi32 = "wtsapi32.dll"; - internal const string CompressionNative = "clrcompression"; + internal const string CompressionNative = "System.IO.Compression.Native"; internal const string MsQuic = "msquic.dll"; internal const string HostPolicy = "hostpolicy.dll"; } diff --git a/src/libraries/Native/AnyOS/zlib/pal_zlib.c b/src/libraries/Native/AnyOS/zlib/pal_zlib.c index da4566a278ffb4..2c399639d0fa92 100644 --- a/src/libraries/Native/AnyOS/zlib/pal_zlib.c +++ b/src/libraries/Native/AnyOS/zlib/pal_zlib.c @@ -7,7 +7,7 @@ #ifdef _WIN32 #define c_static_assert(e) static_assert((e),"") - #include "../../Windows/clrcompression/zlib/zlib.h" + #include "../../Windows/System.IO.Compression.Native/zlib/zlib.h" #else #include "pal_utilities.h" #include diff --git a/src/libraries/Native/Windows/CMakeLists.txt b/src/libraries/Native/Windows/CMakeLists.txt index 1f3ac2bd8ecccf..66bb91dcc603e9 100644 --- a/src/libraries/Native/Windows/CMakeLists.txt +++ b/src/libraries/Native/Windows/CMakeLists.txt @@ -129,4 +129,4 @@ if(STATIC_LIBS_ONLY) add_subdirectory(../Unix/System.Globalization.Native System.Globalization.Native) endif() -add_subdirectory(clrcompression) +add_subdirectory(System.IO.Compression.Native) diff --git a/src/libraries/Native/Windows/clrcompression/CMakeLists.txt b/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt similarity index 70% rename from src/libraries/Native/Windows/clrcompression/CMakeLists.txt rename to src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt index 9566e381d88ec1..dcf39c31ec2536 100644 --- a/src/libraries/Native/Windows/clrcompression/CMakeLists.txt +++ b/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt @@ -1,4 +1,4 @@ -project(clrcompression) +project(System.IO.Compression.Native) if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}") message(FATAL_ERROR "Binary directory isn't being correctly set before calling Cmake. Tree must be built in separate directory from source.") @@ -81,46 +81,46 @@ set (NATIVECOMPRESSION_SOURCES include_directories("../../AnyOS/brotli/include") if (GEN_SHARED_LIB) - add_library(clrcompression + add_library(System.IO.Compression.Native SHARED ${NATIVECOMPRESSION_SOURCES} - clrcompression.def + System.IO.Compression.Native.def # This will add versioning to the library ${CMAKE_REPO_ROOT}/artifacts/obj/NativeVersion.rc ) endif() -add_library(clrcompression-static +add_library(System.IO.Compression.Native-static STATIC ${NATIVECOMPRESSION_SOURCES} ) -SET_TARGET_PROPERTIES(clrcompression-static PROPERTIES PREFIX "") -SET_TARGET_PROPERTIES(clrcompression-static PROPERTIES OUTPUT_NAME libclrcompression) +SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES PREFIX "") +SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES OUTPUT_NAME libSystem.IO.Compression.Native) # Allow specification of arguments that should be passed to the linker if (GEN_SHARED_LIB) - SET_TARGET_PROPERTIES(clrcompression PROPERTIES LINK_OPTIONS "${__LinkArgs};${__SharedLinkArgs}") + SET_TARGET_PROPERTIES(System.IO.Compression.Native PROPERTIES LINK_OPTIONS "${__LinkArgs};${__SharedLinkArgs}") endif() -SET_TARGET_PROPERTIES(clrcompression-static PROPERTIES STATIC_LIBRARY_OPTIONS "${__LinkArgs}") +SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES STATIC_LIBRARY_OPTIONS "${__LinkArgs}") # Allow specification of libraries that should be linked against if (GEN_SHARED_LIB) - target_link_libraries(clrcompression ${__LinkLibraries}) + target_link_libraries(System.IO.Compression.Native ${__LinkLibraries}) endif() -target_link_libraries(clrcompression-static ${__LinkLibraries}) +target_link_libraries(System.IO.Compression.Native-static ${__LinkLibraries}) if (GEN_SHARED_LIB) - GENERATE_EXPORT_HEADER( clrcompression - BASE_NAME clrcompression - EXPORT_MACRO_NAME clrcompression_EXPORT - EXPORT_FILE_NAME clrcompression_Export.h - STATIC_DEFINE clrcompression_BUILT_AS_STATIC + GENERATE_EXPORT_HEADER( System.IO.Compression.Native + BASE_NAME System.IO.Compression.Native + EXPORT_MACRO_NAME System.IO.Compression.Native_EXPORT + EXPORT_FILE_NAME System.IO.Compression.Native_Export.h + STATIC_DEFINE System.IO.Compression.Native_BUILT_AS_STATIC ) - install (TARGETS clrcompression DESTINATION .) - install (FILES $ DESTINATION .) + install (TARGETS System.IO.Compression.Native DESTINATION .) + install (FILES $ DESTINATION .) endif() -install (TARGETS clrcompression-static DESTINATION ${STATIC_LIB_DESTINATION}) +install (TARGETS System.IO.Compression.Native-static DESTINATION ${STATIC_LIB_DESTINATION}) diff --git a/src/libraries/Native/Windows/clrcompression/Native.rc b/src/libraries/Native/Windows/System.IO.Compression.Native/Native.rc similarity index 100% rename from src/libraries/Native/Windows/clrcompression/Native.rc rename to src/libraries/Native/Windows/System.IO.Compression.Native/Native.rc diff --git a/src/libraries/Native/Windows/clrcompression/clrcompression.def b/src/libraries/Native/Windows/System.IO.Compression.Native/clrcompression.def similarity index 92% rename from src/libraries/Native/Windows/clrcompression/clrcompression.def rename to src/libraries/Native/Windows/System.IO.Compression.Native/clrcompression.def index 95a413f199e929..a5d192ee42e83e 100644 --- a/src/libraries/Native/Windows/clrcompression/clrcompression.def +++ b/src/libraries/Native/Windows/System.IO.Compression.Native/clrcompression.def @@ -1,4 +1,4 @@ -LIBRARY clrcompression.dll +LIBRARY System.IO.Compression.Native.dll EXPORTS CompressionNative_Crc32 @@ -31,4 +31,4 @@ EXPORTS BrotliDecoderTakeOutput BrotliDecoderVersion BrotliGetDictionary - BrotliSetDictionaryData \ No newline at end of file + BrotliSetDictionaryData diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/README.txt b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/README.txt similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/README.txt rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/README.txt diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/adler32.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/adler32.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/adler32.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/adler32.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/compress.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/compress.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/compress.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/compress.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/crc32.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc32.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/crc32.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc32.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/crc32.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc32.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/crc32.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc32.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/crc_folding.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc_folding.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/crc_folding.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/crc_folding.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/deflate.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/deflate.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/deflate.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/deflate.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/deflate_medium.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate_medium.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/deflate_medium.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate_medium.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/deflate_quick.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate_quick.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/deflate_quick.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/deflate_quick.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/gzguts.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/gzguts.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/gzguts.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/gzguts.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inffast.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffast.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inffast.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffast.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inffast.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffast.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inffast.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffast.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inffixed.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffixed.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inffixed.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inffixed.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inflate.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inflate.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inflate.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inflate.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inflate.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inflate.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inflate.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inflate.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inftrees.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inftrees.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inftrees.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inftrees.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/inftrees.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inftrees.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/inftrees.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/inftrees.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/match.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/match.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/match.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/match.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/slide_sse.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/slide_sse.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/slide_sse.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/slide_sse.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/trees.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/trees.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/trees.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/trees.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/trees.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/trees.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/trees.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/trees.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/x86.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/x86.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/x86.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/x86.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/x86.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/x86.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/x86.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/x86.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/zconf.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zconf.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/zconf.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zconf.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/zlib.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zlib.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/zlib.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zlib.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/zutil.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zutil.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/zutil.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zutil.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib-intel/zutil.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zutil.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib-intel/zutil.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib-intel/zutil.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/CMakeLists.txt b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/CMakeLists.txt similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/CMakeLists.txt rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/CMakeLists.txt diff --git a/src/libraries/Native/Windows/clrcompression/zlib/ChangeLog b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/ChangeLog similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/ChangeLog rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/ChangeLog diff --git a/src/libraries/Native/Windows/clrcompression/zlib/FAQ b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/FAQ similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/FAQ rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/FAQ diff --git a/src/libraries/Native/Windows/clrcompression/zlib/INDEX b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/INDEX similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/INDEX rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/INDEX diff --git a/src/libraries/Native/Windows/clrcompression/zlib/Makefile b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/Makefile similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/Makefile rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/Makefile diff --git a/src/libraries/Native/Windows/clrcompression/zlib/Makefile.in b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/Makefile.in similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/Makefile.in rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/Makefile.in diff --git a/src/libraries/Native/Windows/clrcompression/zlib/README b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/README similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/README rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/README diff --git a/src/libraries/Native/Windows/clrcompression/zlib/adler32.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/adler32.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/adler32.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/adler32.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/compress.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/compress.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/compress.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/compress.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/configure b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/configure similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/configure rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/configure diff --git a/src/libraries/Native/Windows/clrcompression/zlib/crc32.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/crc32.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/crc32.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/crc32.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/crc32.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/crc32.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/crc32.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/crc32.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/deflate.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/deflate.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/deflate.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/deflate.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/deflate.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/deflate.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/deflate.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/deflate.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/gzclose.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzclose.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/gzclose.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzclose.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/gzguts.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzguts.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/gzguts.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzguts.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/gzlib.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzlib.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/gzlib.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzlib.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/gzread.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzread.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/gzread.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzread.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/gzwrite.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzwrite.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/gzwrite.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/gzwrite.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/infback.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/infback.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/infback.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/infback.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inffast.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffast.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inffast.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffast.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inffast.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffast.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inffast.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffast.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inffixed.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffixed.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inffixed.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inffixed.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inflate.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inflate.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inflate.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inflate.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inflate.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inflate.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inflate.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inflate.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inftrees.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inftrees.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inftrees.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inftrees.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/inftrees.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inftrees.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/inftrees.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/inftrees.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/make_vms.com b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/make_vms.com similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/make_vms.com rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/make_vms.com diff --git a/src/libraries/Native/Windows/clrcompression/zlib/treebuild.xml b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/treebuild.xml similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/treebuild.xml rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/treebuild.xml diff --git a/src/libraries/Native/Windows/clrcompression/zlib/trees.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/trees.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/trees.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/trees.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/trees.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/trees.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/trees.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/trees.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/uncompr.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/uncompr.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/uncompr.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/uncompr.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zconf.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zconf.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zconf.h.cmakein b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h.cmakein similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zconf.h.cmakein rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h.cmakein diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zconf.h.in b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h.in similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zconf.h.in rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zconf.h.in diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.3 b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.3 similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.3 rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.3 diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.3.pdf b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.3.pdf similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.3.pdf rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.3.pdf diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.h diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.map b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.map similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.map rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.map diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.pc.cmakein b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.pc.cmakein similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.pc.cmakein rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.pc.cmakein diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib.pc.in b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.pc.in similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib.pc.in rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib.pc.in diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zlib2ansi b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib2ansi similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zlib2ansi rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zlib2ansi diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zutil.c b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zutil.c similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zutil.c rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zutil.c diff --git a/src/libraries/Native/Windows/clrcompression/zlib/zutil.h b/src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zutil.h similarity index 100% rename from src/libraries/Native/Windows/clrcompression/zlib/zutil.h rename to src/libraries/Native/Windows/System.IO.Compression.Native/zlib/zutil.h diff --git a/src/libraries/System.IO.Compression/src/System/IO/Compression/DeflateZLib/ZLibNative.cs b/src/libraries/System.IO.Compression/src/System/IO/Compression/DeflateZLib/ZLibNative.cs index 8cffa5df290d6d..8118aeba0ecb82 100644 --- a/src/libraries/System.IO.Compression/src/System/IO/Compression/DeflateZLib/ZLibNative.cs +++ b/src/libraries/System.IO.Compression/src/System/IO/Compression/DeflateZLib/ZLibNative.cs @@ -8,7 +8,7 @@ namespace System.IO.Compression { /// /// This class provides declaration for constants and PInvokes as well as some basic tools for exposing the - /// native CLRCompression.dll (effectively, ZLib) library to managed code. + /// native System.IO.Compression.Native.dll (effectively, ZLib) library to managed code. /// /// See also: How to choose a compression level (in comments to CompressionLevel. /// @@ -159,12 +159,12 @@ public enum CompressionMethod : int * This was done on purpose to: * * - Achieve the right encapsulation in a situation where ZLibNative may be compiled division-wide - * into different assemblies that wish to consume CLRCompression. Since internal + * into different assemblies that wish to consume System.IO.Compression.Native. Since internal * scope is effectively like public scope when compiling ZLibNative into a higher * level assembly, we need a combination of inner types and private-scope members to achieve * the right encapsulation. * - * - Achieve late dynamic loading of CLRCompression.dll at the right time. + * - Achieve late dynamic loading of System.IO.Compression.Native.dll at the right time. * The native assembly will not be loaded unless it is actually used since the loading is performed by a static * constructor of an inner type that is not directly referenced by user code. * diff --git a/src/libraries/System.Text.Json/tests/Resources/Strings.resx b/src/libraries/System.Text.Json/tests/Resources/Strings.resx index 1d24e7d061d6f4..f7fd3b158e0064 100644 --- a/src/libraries/System.Text.Json/tests/Resources/Strings.resx +++ b/src/libraries/System.Text.Json/tests/Resources/Strings.resx @@ -171,7 +171,7 @@ tiline\"another\" String\\"],"str":"\"\""} {"test":[{"_id":"562704ab8c67fc70235cb3ee","index":0,"guid":"9e16ac89-e6cb-401d-b0bd-5cb567908ad7","isActive":false,"balance":"$2,222.13","picture":"http://placehold.it/32x32","age":34,"eyeColor":"blue","name":"Reba Abbott","gender":"female","company":"VERBUS","email":"rebaabbott@verbus.com","phone":"+1 (878) 506-3650","address":"800 Anchorage Place, Crayne, Illinois, 9130","about":"Proident ea dolor ullamco occaecat ut pariatur. Pariatur aute deserunt deserunt qui aute commodo. Dolor ipsum incididunt tempor ut reprehenderit irure ut do. Adipisicing ut reprehenderit quis culpa do reprehenderit velit. Elit laborum tempor deserunt dolore et enim duis irure pariatur amet ex nostrud adipisicing deserunt.\r\n","registered":"2015-09-05T11:49:57 +07:00","latitude":-27.135166,"longitude":-91.398162,"tags":["ea","irure","id","ullamco","nulla","incididunt","ut"],"friends":[{"id":0,"name":"Evelyn Jefferson"},{"id":1,"name":"Watkins Alston"},{"id":2,"name":"Wilma Lyons"}],"greeting":"Hello, Reba Abbott! You have 8 unread messages.","favoriteFruit":"apple"},{"_id":"562704abd5ff38d164660a26","index":1,"guid":"fdde9f75-521b-4b87-89d8-5ad20a88f24d","isActive":true,"balance":"$1,703.62","picture":"http://placehold.it/32x32","age":24,"eyeColor":"blue","name":"Hahn Brewer","gender":"male","company":"NIMON","email":"hahnbrewer@nimon.com","phone":"+1 (853) 532-2613","address":"753 Montgomery Street, Tooleville, New York, 3825","about":"Et ea amet eiusmod fugiat mollit nisi. Eiusmod laborum ex magna non sunt adipisicing enim id irure fugiat veniam laboris cillum sunt. Ad exercitation pariatur deserunt duis nostrud ut laborum duis dolore eiusmod. Quis qui ea consectetur exercitation. Irure consectetur aliquip adipisicing labore eiusmod consequat laboris culpa cillum.\r\n","registered":"2015-10-10T05:49:36 +07:00","latitude":30.695271,"longitude":120.942854,"tags":["ea","et","non","nisi","magna","ut","laborum"],"friends":[{"id":0,"name":"Angelita Bush"},{"id":1,"name":"Whitfield Little"},{"id":2,"name":"Irma Douglas"}],"greeting":"Hello, Hahn Brewer! You have 7 unread messages.","favoriteFruit":"banana"},{"_id":"562704ab54902c67a483499e","index":2,"guid":"b4a4d892-ed50-4fd4-9ee2-400dcd988b3b","isActive":false,"balance":"$1,209.52","picture":"http://placehold.it/32x32","age":31,"eyeColor":"brown","name":"Joseph Chambers","gender":"male","company":"CINESANCT","email":"josephchambers@cinesanct.com","phone":"+1 (895) 488-3412","address":"681 Hart Street, Virgie, West Virginia, 1860","about":"Irure exercitation duis amet enim aute deserunt. Mollit sunt proident consequat sint cupidatat ad proident tempor culpa et eu. Do duis non occaecat labore. Aliquip dolor ex enim cupidatat eu dolor commodo cupidatat tempor et officia consectetur laboris amet.\r\n","registered":"2014-02-09T12:25:45 +08:00","latitude":17.820853,"longitude":119.401495,"tags":["excepteur","consectetur","dolore","consectetur","culpa","ex","id"],"friends":[{"id":0,"name":"Richards Dorsey"},{"id":1,"name":"Vega Dunn"},{"id":2,"name":"Rosella Ortiz"}],"greeting":"Hello, Joseph Chambers! You have 1 unread messages.","favoriteFruit":"strawberry"},{"_id":"562704ab556505f3f3ab919f","index":3,"guid":"7117c6a1-4c2b-42d7-9392-f48e3e34ad18","isActive":false,"balance":"$3,266.27","picture":"http://placehold.it/32x32","age":25,"eyeColor":"blue","name":"Love Vinson","gender":"male","company":"COMTEST","email":"lovevinson@comtest.com","phone":"+1 (969) 580-3066","address":"280 Metropolitan Avenue, Allamuchy, Massachusetts, 3676","about":"Culpa nostrud nulla aliqua esse ut aliqua dolore ad exercitation irure ex. Excepteur anim exercitation tempor cupidatat ex commodo commodo nulla nostrud eiusmod. Nostrud ipsum culpa commodo consequat minim reprehenderit mollit nulla. Do fugiat eiusmod culpa laboris consequat occaecat mollit officia. Magna id sint officia duis enim magna sit culpa ex incididunt qui aute esse duis. Aute aute dolor do nisi fugiat. Proident cillum commodo eiusmod nisi proident duis.\r\n","registered":"2015-07-22T10:40:52 +07:00","latitude":86.474275,"longitude":-86.15884,"tags":["Lorem","nisi","et","ex","mollit","veniam","eu"],"friends":[{"id":0,"name":"Terry Nicholson"},{"id":1,"name":"Betty Johnston"},{"id":2,"name":"Moss Delaney"}],"greeting":"Hello, Love Vinson! You have 8 unread messages.","favoriteFruit":"apple"},{"_id":"562704ab07262f4afe428c85","index":4,"guid":"804feb78-f8ac-423f-aa49-29a95a868e6d","isActive":false,"balance":"$1,931.13","picture":"http://placehold.it/32x32","age":20,"eyeColor":"green","name":"Myers Knight","gender":"male","company":"BOSTONIC","email":"myersknight@bostonic.com","phone":"+1 (919) 430-2557","address":"882 Williams Avenue, Hinsdale, Arkansas, 1994","about":"Eu sint nulla id culpa ullamco dolor sunt dolore magna laborum cillum reprehenderit reprehenderit. Eu magna nostrud commodo officia officia. Enim do cupidatat qui cupidatat non labore ea exercitation. Tempor amet tempor eu mollit eu ex sint.\r\n","registered":"2015-08-22T04:55:26 +07:00","latitude":-31.838368,"longitude":-121.37722,"tags":["minim","do","ut","aliqua","commodo","exercitation","esse"],"friends":[{"id":0,"name":"Andrews Farrell"},{"id":1,"name":"Fay Greer"},{"id":2,"name":"Shannon Mercer"}],"greeting":"Hello, Myers Knight! You have 1 unread messages.","favoriteFruit":"strawberry"},{"_id":"562704ab97b7fd55ebd0de0f","index":5,"guid":"eca940d8-c3e6-46b4-a231-c4b9f2fcd39e","isActive":false,"balance":"$2,487.87","picture":"http://placehold.it/32x32","age":24,"eyeColor":"blue","name":"Sheppard Good","gender":"male","company":"POSHOME","email":"sheppardgood@poshome.com","phone":"+1 (848) 429-2573","address":"770 Troutman Street, Craig, Nevada, 1764","about":"In anim veniam eu sint velit ullamco pariatur. Nostrud commodo elit qui laboris velit dolore consectetur. Velit irure aliqua dolor amet adipisicing. Cillum qui eiusmod anim tempor.\r\n","registered":"2014-09-04T05:12:20 +07:00","latitude":43.692369,"longitude":158.982874,"tags":["do","fugiat","mollit","quis","sint","cillum","aliquip"],"friends":[{"id":0,"name":"Talley Nixon"},{"id":1,"name":"Moran England"},{"id":2,"name":"Dollie Mendoza"}],"greeting":"Hello, Sheppard Good! You have 3 unread messages.","favoriteFruit":"apple"},{"_id":"562704ab4efaa200c3c61148","index":6,"guid":"4b520900-988b-4009-a6da-dcd852af7b40","isActive":true,"balance":"$1,322.60","picture":"http://placehold.it/32x32","age":35,"eyeColor":"blue","name":"Kim Franklin","gender":"male","company":"NETUR","email":"kimfranklin@netur.com","phone":"+1 (948) 595-3481","address":"379 Malbone Street, Clinton, Connecticut, 4218","about":"Reprehenderit enim magna fugiat labore laboris aliqua ea anim exercitation nisi eiusmod. Enim velit incididunt occaecat id tempor aliquip minim minim cillum. Qui ea id deserunt eu laboris magna qui in esse officia est consectetur.\r\n","registered":"2015-05-20T08:57:51 +07:00","latitude":-25.146849,"longitude":-116.916727,"tags":["esse","ex","mollit","laborum","esse","do","occaecat"],"friends":[{"id":0,"name":"Benson Ashley"},{"id":1,"name":"Joan Franks"},{"id":2,"name":"Glenda Robertson"}],"greeting":"Hello, Kim Franklin! You have 8 unread messages.","favoriteFruit":"banana"}]} - {"locked":false,"version":1,"targets":{"DNXCore,Version=v5.0":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.NetworkInformation/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.NetworkInformation.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x64":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"native":{"runtimes/win7-x64/native/CoreConsole.exe":{}}},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}},"native":{"runtimes/win7-x64/native/clretwrc.dll":{},"runtimes/win7-x64/native/coreclr.dll":{},"runtimes/win7-x64/native/dbgshim.dll":{},"runtimes/win7-x64/native/mscordaccore.dll":{},"runtimes/win7-x64/native/mscordbi.dll":{},"runtimes/win7-x64/native/mscorrc.debug.dll":{},"runtimes/win7-x64/native/mscorrc.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.clrcompression-x64/4.0.0":{"native":{"runtimes/win7-x64/native/clrcompression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x86":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.clrcompression-x86/4.0.0":{"native":{"runtimes/win7-x86/native/clrcompression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}}},"libraries":{"Microsoft.CSharp/4.0.0":{"sha512":"oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==","type":"Package","files":["_rels/.rels","Microsoft.CSharp.nuspec","lib/dotnet/Microsoft.CSharp.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.CSharp.dll","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.CSharp.dll","ref/dotnet/Microsoft.CSharp.xml","ref/dotnet/zh-hant/Microsoft.CSharp.xml","ref/dotnet/de/Microsoft.CSharp.xml","ref/dotnet/fr/Microsoft.CSharp.xml","ref/dotnet/it/Microsoft.CSharp.xml","ref/dotnet/ja/Microsoft.CSharp.xml","ref/dotnet/ko/Microsoft.CSharp.xml","ref/dotnet/ru/Microsoft.CSharp.xml","ref/dotnet/zh-hans/Microsoft.CSharp.xml","ref/dotnet/es/Microsoft.CSharp.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.CSharp.dll","ref/netcore50/Microsoft.CSharp.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore/5.0.0":{"sha512":"QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.nuspec","_._","package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"sha512":"Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.ConsoleHost-x64.nuspec","runtimes/win7-x64/native/CoreConsole.exe","package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Platforms/1.0.0":{"sha512":"0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Platforms.nuspec","runtime.json","package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"sha512":"DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec","runtimes/win7-x64/native/clretwrc.dll","runtimes/win7-x64/native/coreclr.dll","runtimes/win7-x64/native/dbgshim.dll","runtimes/win7-x64/native/mscordaccore.dll","runtimes/win7-x64/native/mscordbi.dll","runtimes/win7-x64/native/mscorrc.debug.dll","runtimes/win7-x64/native/mscorrc.dll","runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll","ref/dotnet/_._","package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets/1.0.0":{"sha512":"XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.nuspec","runtime.json","package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{"sha512":"32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.DNXCore.nuspec","runtime.json","package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp","[Content_Types].xml"]},"Microsoft.VisualBasic/10.0.0":{"sha512":"5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==","type":"Package","files":["_rels/.rels","Microsoft.VisualBasic.nuspec","lib/dotnet/Microsoft.VisualBasic.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.VisualBasic.dll","lib/wpa81/_._","ref/dotnet/Microsoft.VisualBasic.dll","ref/dotnet/Microsoft.VisualBasic.xml","ref/dotnet/zh-hant/Microsoft.VisualBasic.xml","ref/dotnet/de/Microsoft.VisualBasic.xml","ref/dotnet/fr/Microsoft.VisualBasic.xml","ref/dotnet/it/Microsoft.VisualBasic.xml","ref/dotnet/ja/Microsoft.VisualBasic.xml","ref/dotnet/ko/Microsoft.VisualBasic.xml","ref/dotnet/ru/Microsoft.VisualBasic.xml","ref/dotnet/zh-hans/Microsoft.VisualBasic.xml","ref/dotnet/es/Microsoft.VisualBasic.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.VisualBasic.dll","ref/netcore50/Microsoft.VisualBasic.xml","ref/wpa81/_._","package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp","[Content_Types].xml"]},"Microsoft.Win32.Primitives/4.0.0":{"sha512":"CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==","type":"Package","files":["_rels/.rels","Microsoft.Win32.Primitives.nuspec","lib/dotnet/Microsoft.Win32.Primitives.dll","lib/net46/Microsoft.Win32.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.Win32.Primitives.dll","ref/dotnet/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml","ref/dotnet/de/Microsoft.Win32.Primitives.xml","ref/dotnet/fr/Microsoft.Win32.Primitives.xml","ref/dotnet/it/Microsoft.Win32.Primitives.xml","ref/dotnet/ja/Microsoft.Win32.Primitives.xml","ref/dotnet/ko/Microsoft.Win32.Primitives.xml","ref/dotnet/ru/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml","ref/dotnet/es/Microsoft.Win32.Primitives.xml","ref/net46/Microsoft.Win32.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp","[Content_Types].xml"]},"runtime.win7.System.Console/4.0.0-beta-23412":{"sha512":"j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==","type":"Package","files":["_rels/.rels","runtime.win7.System.Console.nuspec","runtimes/win7/lib/dotnet/System.Console.dll","ref/dotnet/_._","package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp","[Content_Types].xml"]},"System.AppContext/4.0.0":{"sha512":"gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==","type":"Package","files":["_rels/.rels","System.AppContext.nuspec","lib/netcore50/System.AppContext.dll","lib/DNXCore50/System.AppContext.dll","lib/net46/System.AppContext.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.AppContext.dll","ref/dotnet/System.AppContext.xml","ref/dotnet/zh-hant/System.AppContext.xml","ref/dotnet/de/System.AppContext.xml","ref/dotnet/fr/System.AppContext.xml","ref/dotnet/it/System.AppContext.xml","ref/dotnet/ja/System.AppContext.xml","ref/dotnet/ko/System.AppContext.xml","ref/dotnet/ru/System.AppContext.xml","ref/dotnet/zh-hans/System.AppContext.xml","ref/dotnet/es/System.AppContext.xml","ref/net46/System.AppContext.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp","[Content_Types].xml"]},"System.Collections/4.0.10":{"sha512":"ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==","type":"Package","files":["_rels/.rels","System.Collections.nuspec","lib/netcore50/System.Collections.dll","lib/DNXCore50/System.Collections.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.dll","ref/dotnet/System.Collections.xml","ref/dotnet/zh-hant/System.Collections.xml","ref/dotnet/de/System.Collections.xml","ref/dotnet/fr/System.Collections.xml","ref/dotnet/it/System.Collections.xml","ref/dotnet/ja/System.Collections.xml","ref/dotnet/ko/System.Collections.xml","ref/dotnet/ru/System.Collections.xml","ref/dotnet/zh-hans/System.Collections.xml","ref/dotnet/es/System.Collections.xml","runtimes/win8-aot/lib/netcore50/System.Collections.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp","[Content_Types].xml"]},"System.Collections.Concurrent/4.0.10":{"sha512":"ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==","type":"Package","files":["_rels/.rels","System.Collections.Concurrent.nuspec","lib/dotnet/System.Collections.Concurrent.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.Concurrent.dll","ref/dotnet/System.Collections.Concurrent.xml","ref/dotnet/zh-hant/System.Collections.Concurrent.xml","ref/dotnet/de/System.Collections.Concurrent.xml","ref/dotnet/fr/System.Collections.Concurrent.xml","ref/dotnet/it/System.Collections.Concurrent.xml","ref/dotnet/ja/System.Collections.Concurrent.xml","ref/dotnet/ko/System.Collections.Concurrent.xml","ref/dotnet/ru/System.Collections.Concurrent.xml","ref/dotnet/zh-hans/System.Collections.Concurrent.xml","ref/dotnet/es/System.Collections.Concurrent.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp","[Content_Types].xml"]},"System.Collections.Immutable/1.1.37":{"sha512":"fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==","type":"Package","files":["_rels/.rels","System.Collections.Immutable.nuspec","lib/dotnet/System.Collections.Immutable.dll","lib/dotnet/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll","package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp","[Content_Types].xml"]},"System.Collections.NonGeneric/4.0.0":{"sha512":"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==","type":"Package","files":["_rels/.rels","System.Collections.NonGeneric.nuspec","lib/dotnet/System.Collections.NonGeneric.dll","lib/net46/System.Collections.NonGeneric.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.NonGeneric.dll","ref/dotnet/System.Collections.NonGeneric.xml","ref/dotnet/zh-hant/System.Collections.NonGeneric.xml","ref/dotnet/de/System.Collections.NonGeneric.xml","ref/dotnet/fr/System.Collections.NonGeneric.xml","ref/dotnet/it/System.Collections.NonGeneric.xml","ref/dotnet/ja/System.Collections.NonGeneric.xml","ref/dotnet/ko/System.Collections.NonGeneric.xml","ref/dotnet/ru/System.Collections.NonGeneric.xml","ref/dotnet/zh-hans/System.Collections.NonGeneric.xml","ref/dotnet/es/System.Collections.NonGeneric.xml","ref/net46/System.Collections.NonGeneric.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp","[Content_Types].xml"]},"System.ComponentModel/4.0.0":{"sha512":"BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==","type":"Package","files":["_rels/.rels","System.ComponentModel.nuspec","lib/dotnet/System.ComponentModel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.ComponentModel.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.ComponentModel.dll","ref/dotnet/System.ComponentModel.xml","ref/dotnet/zh-hant/System.ComponentModel.xml","ref/dotnet/de/System.ComponentModel.xml","ref/dotnet/fr/System.ComponentModel.xml","ref/dotnet/it/System.ComponentModel.xml","ref/dotnet/ja/System.ComponentModel.xml","ref/dotnet/ko/System.ComponentModel.xml","ref/dotnet/ru/System.ComponentModel.xml","ref/dotnet/zh-hans/System.ComponentModel.xml","ref/dotnet/es/System.ComponentModel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.ComponentModel.dll","ref/netcore50/System.ComponentModel.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp","[Content_Types].xml"]},"System.ComponentModel.Annotations/4.0.10":{"sha512":"7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==","type":"Package","files":["_rels/.rels","System.ComponentModel.Annotations.nuspec","lib/dotnet/System.ComponentModel.Annotations.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.Annotations.dll","ref/dotnet/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml","ref/dotnet/de/System.ComponentModel.Annotations.xml","ref/dotnet/fr/System.ComponentModel.Annotations.xml","ref/dotnet/it/System.ComponentModel.Annotations.xml","ref/dotnet/ja/System.ComponentModel.Annotations.xml","ref/dotnet/ko/System.ComponentModel.Annotations.xml","ref/dotnet/ru/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml","ref/dotnet/es/System.ComponentModel.Annotations.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp","[Content_Types].xml"]},"System.ComponentModel.EventBasedAsync/4.0.10":{"sha512":"d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==","type":"Package","files":["_rels/.rels","System.ComponentModel.EventBasedAsync.nuspec","lib/dotnet/System.ComponentModel.EventBasedAsync.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.EventBasedAsync.dll","ref/dotnet/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp","[Content_Types].xml"]},"System.Console/4.0.0-beta-23412":{"sha512":"D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==","type":"Package","files":["_rels/.rels","System.Console.nuspec","lib/net46/System.Console.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Console.dll","ref/dotnet/System.Console.xml","ref/dotnet/zh-hant/System.Console.xml","ref/dotnet/de/System.Console.xml","ref/dotnet/fr/System.Console.xml","ref/dotnet/it/System.Console.xml","ref/dotnet/ja/System.Console.xml","ref/dotnet/ko/System.Console.xml","ref/dotnet/ru/System.Console.xml","ref/dotnet/zh-hans/System.Console.xml","ref/dotnet/es/System.Console.xml","ref/net46/System.Console.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Contracts/4.0.0":{"sha512":"lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==","type":"Package","files":["_rels/.rels","System.Diagnostics.Contracts.nuspec","lib/netcore50/System.Diagnostics.Contracts.dll","lib/DNXCore50/System.Diagnostics.Contracts.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Contracts.dll","ref/dotnet/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml","ref/dotnet/de/System.Diagnostics.Contracts.xml","ref/dotnet/fr/System.Diagnostics.Contracts.xml","ref/dotnet/it/System.Diagnostics.Contracts.xml","ref/dotnet/ja/System.Diagnostics.Contracts.xml","ref/dotnet/ko/System.Diagnostics.Contracts.xml","ref/dotnet/ru/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml","ref/dotnet/es/System.Diagnostics.Contracts.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Contracts.dll","ref/netcore50/System.Diagnostics.Contracts.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Debug/4.0.10":{"sha512":"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==","type":"Package","files":["_rels/.rels","System.Diagnostics.Debug.nuspec","lib/DNXCore50/System.Diagnostics.Debug.dll","lib/netcore50/System.Diagnostics.Debug.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Debug.dll","ref/dotnet/System.Diagnostics.Debug.xml","ref/dotnet/zh-hant/System.Diagnostics.Debug.xml","ref/dotnet/de/System.Diagnostics.Debug.xml","ref/dotnet/fr/System.Diagnostics.Debug.xml","ref/dotnet/it/System.Diagnostics.Debug.xml","ref/dotnet/ja/System.Diagnostics.Debug.xml","ref/dotnet/ko/System.Diagnostics.Debug.xml","ref/dotnet/ru/System.Diagnostics.Debug.xml","ref/dotnet/zh-hans/System.Diagnostics.Debug.xml","ref/dotnet/es/System.Diagnostics.Debug.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.StackTrace/4.0.0":{"sha512":"PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==","type":"Package","files":["_rels/.rels","System.Diagnostics.StackTrace.nuspec","lib/DNXCore50/System.Diagnostics.StackTrace.dll","lib/netcore50/System.Diagnostics.StackTrace.dll","lib/net46/System.Diagnostics.StackTrace.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.StackTrace.dll","ref/dotnet/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml","ref/dotnet/de/System.Diagnostics.StackTrace.xml","ref/dotnet/fr/System.Diagnostics.StackTrace.xml","ref/dotnet/it/System.Diagnostics.StackTrace.xml","ref/dotnet/ja/System.Diagnostics.StackTrace.xml","ref/dotnet/ko/System.Diagnostics.StackTrace.xml","ref/dotnet/ru/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml","ref/dotnet/es/System.Diagnostics.StackTrace.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll","ref/net46/System.Diagnostics.StackTrace.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tools/4.0.0":{"sha512":"uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tools.nuspec","lib/DNXCore50/System.Diagnostics.Tools.dll","lib/netcore50/System.Diagnostics.Tools.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Tools.dll","ref/dotnet/System.Diagnostics.Tools.xml","ref/dotnet/zh-hant/System.Diagnostics.Tools.xml","ref/dotnet/de/System.Diagnostics.Tools.xml","ref/dotnet/fr/System.Diagnostics.Tools.xml","ref/dotnet/it/System.Diagnostics.Tools.xml","ref/dotnet/ja/System.Diagnostics.Tools.xml","ref/dotnet/ko/System.Diagnostics.Tools.xml","ref/dotnet/ru/System.Diagnostics.Tools.xml","ref/dotnet/zh-hans/System.Diagnostics.Tools.xml","ref/dotnet/es/System.Diagnostics.Tools.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Tools.dll","ref/netcore50/System.Diagnostics.Tools.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tracing/4.0.20":{"sha512":"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tracing.nuspec","lib/netcore50/System.Diagnostics.Tracing.dll","lib/DNXCore50/System.Diagnostics.Tracing.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Tracing.dll","ref/dotnet/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml","ref/dotnet/de/System.Diagnostics.Tracing.xml","ref/dotnet/fr/System.Diagnostics.Tracing.xml","ref/dotnet/it/System.Diagnostics.Tracing.xml","ref/dotnet/ja/System.Diagnostics.Tracing.xml","ref/dotnet/ko/System.Diagnostics.Tracing.xml","ref/dotnet/ru/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml","ref/dotnet/es/System.Diagnostics.Tracing.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp","[Content_Types].xml"]},"System.Dynamic.Runtime/4.0.10":{"sha512":"r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==","type":"Package","files":["_rels/.rels","System.Dynamic.Runtime.nuspec","lib/netcore50/System.Dynamic.Runtime.dll","lib/DNXCore50/System.Dynamic.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Dynamic.Runtime.dll","ref/dotnet/System.Dynamic.Runtime.xml","ref/dotnet/zh-hant/System.Dynamic.Runtime.xml","ref/dotnet/de/System.Dynamic.Runtime.xml","ref/dotnet/fr/System.Dynamic.Runtime.xml","ref/dotnet/it/System.Dynamic.Runtime.xml","ref/dotnet/ja/System.Dynamic.Runtime.xml","ref/dotnet/ko/System.Dynamic.Runtime.xml","ref/dotnet/ru/System.Dynamic.Runtime.xml","ref/dotnet/zh-hans/System.Dynamic.Runtime.xml","ref/dotnet/es/System.Dynamic.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp","[Content_Types].xml"]},"System.Globalization/4.0.10":{"sha512":"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==","type":"Package","files":["_rels/.rels","System.Globalization.nuspec","lib/netcore50/System.Globalization.dll","lib/DNXCore50/System.Globalization.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.dll","ref/dotnet/System.Globalization.xml","ref/dotnet/zh-hant/System.Globalization.xml","ref/dotnet/de/System.Globalization.xml","ref/dotnet/fr/System.Globalization.xml","ref/dotnet/it/System.Globalization.xml","ref/dotnet/ja/System.Globalization.xml","ref/dotnet/ko/System.Globalization.xml","ref/dotnet/ru/System.Globalization.xml","ref/dotnet/zh-hans/System.Globalization.xml","ref/dotnet/es/System.Globalization.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp","[Content_Types].xml"]},"System.Globalization.Calendars/4.0.0":{"sha512":"cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==","type":"Package","files":["_rels/.rels","System.Globalization.Calendars.nuspec","lib/netcore50/System.Globalization.Calendars.dll","lib/DNXCore50/System.Globalization.Calendars.dll","lib/net46/System.Globalization.Calendars.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Calendars.dll","ref/dotnet/System.Globalization.Calendars.xml","ref/dotnet/zh-hant/System.Globalization.Calendars.xml","ref/dotnet/de/System.Globalization.Calendars.xml","ref/dotnet/fr/System.Globalization.Calendars.xml","ref/dotnet/it/System.Globalization.Calendars.xml","ref/dotnet/ja/System.Globalization.Calendars.xml","ref/dotnet/ko/System.Globalization.Calendars.xml","ref/dotnet/ru/System.Globalization.Calendars.xml","ref/dotnet/zh-hans/System.Globalization.Calendars.xml","ref/dotnet/es/System.Globalization.Calendars.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll","ref/net46/System.Globalization.Calendars.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp","[Content_Types].xml"]},"System.Globalization.Extensions/4.0.0":{"sha512":"rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==","type":"Package","files":["_rels/.rels","System.Globalization.Extensions.nuspec","lib/dotnet/System.Globalization.Extensions.dll","lib/net46/System.Globalization.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Extensions.dll","ref/dotnet/System.Globalization.Extensions.xml","ref/dotnet/zh-hant/System.Globalization.Extensions.xml","ref/dotnet/de/System.Globalization.Extensions.xml","ref/dotnet/fr/System.Globalization.Extensions.xml","ref/dotnet/it/System.Globalization.Extensions.xml","ref/dotnet/ja/System.Globalization.Extensions.xml","ref/dotnet/ko/System.Globalization.Extensions.xml","ref/dotnet/ru/System.Globalization.Extensions.xml","ref/dotnet/zh-hans/System.Globalization.Extensions.xml","ref/dotnet/es/System.Globalization.Extensions.xml","ref/net46/System.Globalization.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp","[Content_Types].xml"]},"System.IO/4.0.10":{"sha512":"kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==","type":"Package","files":["_rels/.rels","System.IO.nuspec","lib/netcore50/System.IO.dll","lib/DNXCore50/System.IO.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.dll","ref/dotnet/System.IO.xml","ref/dotnet/zh-hant/System.IO.xml","ref/dotnet/de/System.IO.xml","ref/dotnet/fr/System.IO.xml","ref/dotnet/it/System.IO.xml","ref/dotnet/ja/System.IO.xml","ref/dotnet/ko/System.IO.xml","ref/dotnet/ru/System.IO.xml","ref/dotnet/zh-hans/System.IO.xml","ref/dotnet/es/System.IO.xml","runtimes/win8-aot/lib/netcore50/System.IO.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp","[Content_Types].xml"]},"System.IO.Compression/4.0.0":{"sha512":"S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.nuspec","lib/dotnet/System.IO.Compression.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/System.IO.Compression.dll","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.dll","ref/dotnet/System.IO.Compression.xml","ref/dotnet/zh-hant/System.IO.Compression.xml","ref/dotnet/de/System.IO.Compression.xml","ref/dotnet/fr/System.IO.Compression.xml","ref/dotnet/it/System.IO.Compression.xml","ref/dotnet/ja/System.IO.Compression.xml","ref/dotnet/ko/System.IO.Compression.xml","ref/dotnet/ru/System.IO.Compression.xml","ref/dotnet/zh-hans/System.IO.Compression.xml","ref/dotnet/es/System.IO.Compression.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.IO.Compression.dll","ref/netcore50/System.IO.Compression.xml","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.clrcompression-x64/4.0.0":{"sha512":"Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==","type":"Package","files":["_rels/.rels","System.IO.Compression.clrcompression-x64.nuspec","runtimes/win7-x64/native/clrcompression.dll","runtimes/win10-x64/native/ClrCompression.dll","package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp","[Content_Types].xml"]},"System.IO.Compression.clrcompression-x86/4.0.0":{"sha512":"GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.clrcompression-x86.nuspec","runtimes/win7-x86/native/clrcompression.dll","runtimes/win10-x86/native/ClrCompression.dll","package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.ZipFile/4.0.0":{"sha512":"pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==","type":"Package","files":["_rels/.rels","System.IO.Compression.ZipFile.nuspec","lib/dotnet/System.IO.Compression.ZipFile.dll","lib/net46/System.IO.Compression.ZipFile.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.ZipFile.dll","ref/dotnet/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml","ref/dotnet/de/System.IO.Compression.ZipFile.xml","ref/dotnet/fr/System.IO.Compression.ZipFile.xml","ref/dotnet/it/System.IO.Compression.ZipFile.xml","ref/dotnet/ja/System.IO.Compression.ZipFile.xml","ref/dotnet/ko/System.IO.Compression.ZipFile.xml","ref/dotnet/ru/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml","ref/dotnet/es/System.IO.Compression.ZipFile.xml","ref/net46/System.IO.Compression.ZipFile.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem/4.0.0":{"sha512":"eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.nuspec","lib/DNXCore50/System.IO.FileSystem.dll","lib/netcore50/System.IO.FileSystem.dll","lib/net46/System.IO.FileSystem.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.dll","ref/dotnet/System.IO.FileSystem.xml","ref/dotnet/zh-hant/System.IO.FileSystem.xml","ref/dotnet/de/System.IO.FileSystem.xml","ref/dotnet/fr/System.IO.FileSystem.xml","ref/dotnet/it/System.IO.FileSystem.xml","ref/dotnet/ja/System.IO.FileSystem.xml","ref/dotnet/ko/System.IO.FileSystem.xml","ref/dotnet/ru/System.IO.FileSystem.xml","ref/dotnet/zh-hans/System.IO.FileSystem.xml","ref/dotnet/es/System.IO.FileSystem.xml","ref/net46/System.IO.FileSystem.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem.Primitives/4.0.0":{"sha512":"7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.Primitives.nuspec","lib/dotnet/System.IO.FileSystem.Primitives.dll","lib/net46/System.IO.FileSystem.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.Primitives.dll","ref/dotnet/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml","ref/dotnet/de/System.IO.FileSystem.Primitives.xml","ref/dotnet/fr/System.IO.FileSystem.Primitives.xml","ref/dotnet/it/System.IO.FileSystem.Primitives.xml","ref/dotnet/ja/System.IO.FileSystem.Primitives.xml","ref/dotnet/ko/System.IO.FileSystem.Primitives.xml","ref/dotnet/ru/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml","ref/dotnet/es/System.IO.FileSystem.Primitives.xml","ref/net46/System.IO.FileSystem.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp","[Content_Types].xml"]},"System.IO.UnmanagedMemoryStream/4.0.0":{"sha512":"i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==","type":"Package","files":["_rels/.rels","System.IO.UnmanagedMemoryStream.nuspec","lib/dotnet/System.IO.UnmanagedMemoryStream.dll","lib/net46/System.IO.UnmanagedMemoryStream.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.UnmanagedMemoryStream.dll","ref/dotnet/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml","ref/net46/System.IO.UnmanagedMemoryStream.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp","[Content_Types].xml"]},"System.Linq/4.0.0":{"sha512":"r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==","type":"Package","files":["_rels/.rels","System.Linq.nuspec","lib/dotnet/System.Linq.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.dll","ref/dotnet/System.Linq.xml","ref/dotnet/zh-hant/System.Linq.xml","ref/dotnet/de/System.Linq.xml","ref/dotnet/fr/System.Linq.xml","ref/dotnet/it/System.Linq.xml","ref/dotnet/ja/System.Linq.xml","ref/dotnet/ko/System.Linq.xml","ref/dotnet/ru/System.Linq.xml","ref/dotnet/zh-hans/System.Linq.xml","ref/dotnet/es/System.Linq.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.dll","ref/netcore50/System.Linq.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp","[Content_Types].xml"]},"System.Linq.Expressions/4.0.10":{"sha512":"qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==","type":"Package","files":["_rels/.rels","System.Linq.Expressions.nuspec","lib/netcore50/System.Linq.Expressions.dll","lib/DNXCore50/System.Linq.Expressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Linq.Expressions.dll","ref/dotnet/System.Linq.Expressions.xml","ref/dotnet/zh-hant/System.Linq.Expressions.xml","ref/dotnet/de/System.Linq.Expressions.xml","ref/dotnet/fr/System.Linq.Expressions.xml","ref/dotnet/it/System.Linq.Expressions.xml","ref/dotnet/ja/System.Linq.Expressions.xml","ref/dotnet/ko/System.Linq.Expressions.xml","ref/dotnet/ru/System.Linq.Expressions.xml","ref/dotnet/zh-hans/System.Linq.Expressions.xml","ref/dotnet/es/System.Linq.Expressions.xml","runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp","[Content_Types].xml"]},"System.Linq.Parallel/4.0.0":{"sha512":"PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==","type":"Package","files":["_rels/.rels","System.Linq.Parallel.nuspec","lib/dotnet/System.Linq.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Linq.Parallel.dll","ref/dotnet/System.Linq.Parallel.xml","ref/dotnet/zh-hant/System.Linq.Parallel.xml","ref/dotnet/de/System.Linq.Parallel.xml","ref/dotnet/fr/System.Linq.Parallel.xml","ref/dotnet/it/System.Linq.Parallel.xml","ref/dotnet/ja/System.Linq.Parallel.xml","ref/dotnet/ko/System.Linq.Parallel.xml","ref/dotnet/ru/System.Linq.Parallel.xml","ref/dotnet/zh-hans/System.Linq.Parallel.xml","ref/dotnet/es/System.Linq.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Parallel.dll","ref/netcore50/System.Linq.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp","[Content_Types].xml"]},"System.Linq.Queryable/4.0.0":{"sha512":"DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==","type":"Package","files":["_rels/.rels","System.Linq.Queryable.nuspec","lib/dotnet/System.Linq.Queryable.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Queryable.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.Queryable.dll","ref/dotnet/System.Linq.Queryable.xml","ref/dotnet/zh-hant/System.Linq.Queryable.xml","ref/dotnet/de/System.Linq.Queryable.xml","ref/dotnet/fr/System.Linq.Queryable.xml","ref/dotnet/it/System.Linq.Queryable.xml","ref/dotnet/ja/System.Linq.Queryable.xml","ref/dotnet/ko/System.Linq.Queryable.xml","ref/dotnet/ru/System.Linq.Queryable.xml","ref/dotnet/zh-hans/System.Linq.Queryable.xml","ref/dotnet/es/System.Linq.Queryable.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Queryable.dll","ref/netcore50/System.Linq.Queryable.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp","[Content_Types].xml"]},"System.Net.Http/4.0.0":{"sha512":"mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==","type":"Package","files":["_rels/.rels","System.Net.Http.nuspec","lib/netcore50/System.Net.Http.dll","lib/DNXCore50/System.Net.Http.dll","lib/net45/_._","lib/win8/_._","lib/wpa81/_._","ref/dotnet/System.Net.Http.dll","ref/dotnet/System.Net.Http.xml","ref/dotnet/zh-hant/System.Net.Http.xml","ref/dotnet/de/System.Net.Http.xml","ref/dotnet/fr/System.Net.Http.xml","ref/dotnet/it/System.Net.Http.xml","ref/dotnet/ja/System.Net.Http.xml","ref/dotnet/ko/System.Net.Http.xml","ref/dotnet/ru/System.Net.Http.xml","ref/dotnet/zh-hans/System.Net.Http.xml","ref/dotnet/es/System.Net.Http.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.Http.dll","ref/netcore50/System.Net.Http.xml","ref/wpa81/_._","package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp","[Content_Types].xml"]},"System.Net.NetworkInformation/4.0.0":{"sha512":"D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==","type":"Package","files":["_rels/.rels","System.Net.NetworkInformation.nuspec","lib/netcore50/System.Net.NetworkInformation.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.NetworkInformation.dll","ref/dotnet/System.Net.NetworkInformation.xml","ref/dotnet/zh-hant/System.Net.NetworkInformation.xml","ref/dotnet/de/System.Net.NetworkInformation.xml","ref/dotnet/fr/System.Net.NetworkInformation.xml","ref/dotnet/it/System.Net.NetworkInformation.xml","ref/dotnet/ja/System.Net.NetworkInformation.xml","ref/dotnet/ko/System.Net.NetworkInformation.xml","ref/dotnet/ru/System.Net.NetworkInformation.xml","ref/dotnet/zh-hans/System.Net.NetworkInformation.xml","ref/dotnet/es/System.Net.NetworkInformation.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.NetworkInformation.dll","ref/netcore50/System.Net.NetworkInformation.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp","[Content_Types].xml"]},"System.Net.Primitives/4.0.10":{"sha512":"YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==","type":"Package","files":["_rels/.rels","System.Net.Primitives.nuspec","lib/netcore50/System.Net.Primitives.dll","lib/DNXCore50/System.Net.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.Primitives.dll","ref/dotnet/System.Net.Primitives.xml","ref/dotnet/zh-hant/System.Net.Primitives.xml","ref/dotnet/de/System.Net.Primitives.xml","ref/dotnet/fr/System.Net.Primitives.xml","ref/dotnet/it/System.Net.Primitives.xml","ref/dotnet/ja/System.Net.Primitives.xml","ref/dotnet/ko/System.Net.Primitives.xml","ref/dotnet/ru/System.Net.Primitives.xml","ref/dotnet/zh-hans/System.Net.Primitives.xml","ref/dotnet/es/System.Net.Primitives.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp","[Content_Types].xml"]},"System.Numerics.Vectors/4.1.0":{"sha512":"jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==","type":"Package","files":["_rels/.rels","System.Numerics.Vectors.nuspec","lib/dotnet/System.Numerics.Vectors.dll","lib/net46/System.Numerics.Vectors.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Numerics.Vectors.dll","ref/net46/System.Numerics.Vectors.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp","[Content_Types].xml"]},"System.ObjectModel/4.0.10":{"sha512":"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==","type":"Package","files":["_rels/.rels","System.ObjectModel.nuspec","lib/dotnet/System.ObjectModel.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ObjectModel.dll","ref/dotnet/System.ObjectModel.xml","ref/dotnet/zh-hant/System.ObjectModel.xml","ref/dotnet/de/System.ObjectModel.xml","ref/dotnet/fr/System.ObjectModel.xml","ref/dotnet/it/System.ObjectModel.xml","ref/dotnet/ja/System.ObjectModel.xml","ref/dotnet/ko/System.ObjectModel.xml","ref/dotnet/ru/System.ObjectModel.xml","ref/dotnet/zh-hans/System.ObjectModel.xml","ref/dotnet/es/System.ObjectModel.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp","[Content_Types].xml"]},"System.Private.Networking/4.0.0":{"sha512":"RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==","type":"Package","files":["_rels/.rels","System.Private.Networking.nuspec","lib/netcore50/System.Private.Networking.dll","lib/DNXCore50/System.Private.Networking.dll","ref/dnxcore50/_._","ref/netcore50/_._","package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp","[Content_Types].xml"]},"System.Private.Uri/4.0.0":{"sha512":"CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==","type":"Package","files":["_rels/.rels","System.Private.Uri.nuspec","lib/netcore50/System.Private.Uri.dll","lib/DNXCore50/System.Private.Uri.dll","ref/dnxcore50/_._","ref/netcore50/_._","runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll","package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp","[Content_Types].xml"]},"System.Reflection/4.0.10":{"sha512":"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==","type":"Package","files":["_rels/.rels","System.Reflection.nuspec","lib/netcore50/System.Reflection.dll","lib/DNXCore50/System.Reflection.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.dll","ref/dotnet/System.Reflection.xml","ref/dotnet/zh-hant/System.Reflection.xml","ref/dotnet/de/System.Reflection.xml","ref/dotnet/fr/System.Reflection.xml","ref/dotnet/it/System.Reflection.xml","ref/dotnet/ja/System.Reflection.xml","ref/dotnet/ko/System.Reflection.xml","ref/dotnet/ru/System.Reflection.xml","ref/dotnet/zh-hans/System.Reflection.xml","ref/dotnet/es/System.Reflection.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp","[Content_Types].xml"]},"System.Reflection.DispatchProxy/4.0.0":{"sha512":"Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==","type":"Package","files":["_rels/.rels","System.Reflection.DispatchProxy.nuspec","lib/net46/System.Reflection.DispatchProxy.dll","lib/DNXCore50/System.Reflection.DispatchProxy.dll","lib/netcore50/System.Reflection.DispatchProxy.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.DispatchProxy.dll","ref/dotnet/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml","ref/dotnet/de/System.Reflection.DispatchProxy.xml","ref/dotnet/fr/System.Reflection.DispatchProxy.xml","ref/dotnet/it/System.Reflection.DispatchProxy.xml","ref/dotnet/ja/System.Reflection.DispatchProxy.xml","ref/dotnet/ko/System.Reflection.DispatchProxy.xml","ref/dotnet/ru/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml","ref/dotnet/es/System.Reflection.DispatchProxy.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit/4.0.0":{"sha512":"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.nuspec","lib/DNXCore50/System.Reflection.Emit.dll","lib/netcore50/System.Reflection.Emit.dll","lib/MonoAndroid10/_._","lib/net45/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.Emit.dll","ref/dotnet/System.Reflection.Emit.xml","ref/dotnet/zh-hant/System.Reflection.Emit.xml","ref/dotnet/de/System.Reflection.Emit.xml","ref/dotnet/fr/System.Reflection.Emit.xml","ref/dotnet/it/System.Reflection.Emit.xml","ref/dotnet/ja/System.Reflection.Emit.xml","ref/dotnet/ko/System.Reflection.Emit.xml","ref/dotnet/ru/System.Reflection.Emit.xml","ref/dotnet/zh-hans/System.Reflection.Emit.xml","ref/dotnet/es/System.Reflection.Emit.xml","ref/MonoAndroid10/_._","ref/net45/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.ILGeneration/4.0.0":{"sha512":"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.ILGeneration.nuspec","lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll","lib/netcore50/System.Reflection.Emit.ILGeneration.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.ILGeneration.dll","ref/dotnet/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.Lightweight/4.0.0":{"sha512":"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.Lightweight.nuspec","lib/DNXCore50/System.Reflection.Emit.Lightweight.dll","lib/netcore50/System.Reflection.Emit.Lightweight.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.Lightweight.dll","ref/dotnet/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml","ref/dotnet/de/System.Reflection.Emit.Lightweight.xml","ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml","ref/dotnet/it/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml","ref/dotnet/es/System.Reflection.Emit.Lightweight.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp","[Content_Types].xml"]},"System.Reflection.Extensions/4.0.0":{"sha512":"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==","type":"Package","files":["_rels/.rels","System.Reflection.Extensions.nuspec","lib/netcore50/System.Reflection.Extensions.dll","lib/DNXCore50/System.Reflection.Extensions.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Extensions.dll","ref/dotnet/System.Reflection.Extensions.xml","ref/dotnet/zh-hant/System.Reflection.Extensions.xml","ref/dotnet/de/System.Reflection.Extensions.xml","ref/dotnet/fr/System.Reflection.Extensions.xml","ref/dotnet/it/System.Reflection.Extensions.xml","ref/dotnet/ja/System.Reflection.Extensions.xml","ref/dotnet/ko/System.Reflection.Extensions.xml","ref/dotnet/ru/System.Reflection.Extensions.xml","ref/dotnet/zh-hans/System.Reflection.Extensions.xml","ref/dotnet/es/System.Reflection.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Extensions.dll","ref/netcore50/System.Reflection.Extensions.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp","[Content_Types].xml"]},"System.Reflection.Metadata/1.0.22":{"sha512":"ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==","type":"Package","files":["_rels/.rels","System.Reflection.Metadata.nuspec","lib/dotnet/System.Reflection.Metadata.dll","lib/dotnet/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.dll","package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp","[Content_Types].xml"]},"System.Reflection.Primitives/4.0.0":{"sha512":"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==","type":"Package","files":["_rels/.rels","System.Reflection.Primitives.nuspec","lib/netcore50/System.Reflection.Primitives.dll","lib/DNXCore50/System.Reflection.Primitives.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Primitives.dll","ref/dotnet/System.Reflection.Primitives.xml","ref/dotnet/zh-hant/System.Reflection.Primitives.xml","ref/dotnet/de/System.Reflection.Primitives.xml","ref/dotnet/fr/System.Reflection.Primitives.xml","ref/dotnet/it/System.Reflection.Primitives.xml","ref/dotnet/ja/System.Reflection.Primitives.xml","ref/dotnet/ko/System.Reflection.Primitives.xml","ref/dotnet/ru/System.Reflection.Primitives.xml","ref/dotnet/zh-hans/System.Reflection.Primitives.xml","ref/dotnet/es/System.Reflection.Primitives.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Primitives.dll","ref/netcore50/System.Reflection.Primitives.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp","[Content_Types].xml"]},"System.Reflection.TypeExtensions/4.0.0":{"sha512":"YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==","type":"Package","files":["_rels/.rels","System.Reflection.TypeExtensions.nuspec","lib/netcore50/System.Reflection.TypeExtensions.dll","lib/DNXCore50/System.Reflection.TypeExtensions.dll","lib/net46/System.Reflection.TypeExtensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.TypeExtensions.dll","ref/dotnet/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml","ref/dotnet/de/System.Reflection.TypeExtensions.xml","ref/dotnet/fr/System.Reflection.TypeExtensions.xml","ref/dotnet/it/System.Reflection.TypeExtensions.xml","ref/dotnet/ja/System.Reflection.TypeExtensions.xml","ref/dotnet/ko/System.Reflection.TypeExtensions.xml","ref/dotnet/ru/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml","ref/dotnet/es/System.Reflection.TypeExtensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll","ref/net46/System.Reflection.TypeExtensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp","[Content_Types].xml"]},"System.Resources.ResourceManager/4.0.0":{"sha512":"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==","type":"Package","files":["_rels/.rels","System.Resources.ResourceManager.nuspec","lib/netcore50/System.Resources.ResourceManager.dll","lib/DNXCore50/System.Resources.ResourceManager.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Resources.ResourceManager.dll","ref/dotnet/System.Resources.ResourceManager.xml","ref/dotnet/zh-hant/System.Resources.ResourceManager.xml","ref/dotnet/de/System.Resources.ResourceManager.xml","ref/dotnet/fr/System.Resources.ResourceManager.xml","ref/dotnet/it/System.Resources.ResourceManager.xml","ref/dotnet/ja/System.Resources.ResourceManager.xml","ref/dotnet/ko/System.Resources.ResourceManager.xml","ref/dotnet/ru/System.Resources.ResourceManager.xml","ref/dotnet/zh-hans/System.Resources.ResourceManager.xml","ref/dotnet/es/System.Resources.ResourceManager.xml","runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Resources.ResourceManager.dll","ref/netcore50/System.Resources.ResourceManager.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp","[Content_Types].xml"]},"System.Runtime/4.0.20":{"sha512":"X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==","type":"Package","files":["_rels/.rels","System.Runtime.nuspec","lib/netcore50/System.Runtime.dll","lib/DNXCore50/System.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.dll","ref/dotnet/System.Runtime.xml","ref/dotnet/zh-hant/System.Runtime.xml","ref/dotnet/de/System.Runtime.xml","ref/dotnet/fr/System.Runtime.xml","ref/dotnet/it/System.Runtime.xml","ref/dotnet/ja/System.Runtime.xml","ref/dotnet/ko/System.Runtime.xml","ref/dotnet/ru/System.Runtime.xml","ref/dotnet/zh-hans/System.Runtime.xml","ref/dotnet/es/System.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp","[Content_Types].xml"]},"System.Runtime.Extensions/4.0.10":{"sha512":"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==","type":"Package","files":["_rels/.rels","System.Runtime.Extensions.nuspec","lib/netcore50/System.Runtime.Extensions.dll","lib/DNXCore50/System.Runtime.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Extensions.dll","ref/dotnet/System.Runtime.Extensions.xml","ref/dotnet/zh-hant/System.Runtime.Extensions.xml","ref/dotnet/de/System.Runtime.Extensions.xml","ref/dotnet/fr/System.Runtime.Extensions.xml","ref/dotnet/it/System.Runtime.Extensions.xml","ref/dotnet/ja/System.Runtime.Extensions.xml","ref/dotnet/ko/System.Runtime.Extensions.xml","ref/dotnet/ru/System.Runtime.Extensions.xml","ref/dotnet/zh-hans/System.Runtime.Extensions.xml","ref/dotnet/es/System.Runtime.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp","[Content_Types].xml"]},"System.Runtime.Handles/4.0.0":{"sha512":"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==","type":"Package","files":["_rels/.rels","System.Runtime.Handles.nuspec","lib/DNXCore50/System.Runtime.Handles.dll","lib/netcore50/System.Runtime.Handles.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Handles.dll","ref/dotnet/System.Runtime.Handles.xml","ref/dotnet/zh-hant/System.Runtime.Handles.xml","ref/dotnet/de/System.Runtime.Handles.xml","ref/dotnet/fr/System.Runtime.Handles.xml","ref/dotnet/it/System.Runtime.Handles.xml","ref/dotnet/ja/System.Runtime.Handles.xml","ref/dotnet/ko/System.Runtime.Handles.xml","ref/dotnet/ru/System.Runtime.Handles.xml","ref/dotnet/zh-hans/System.Runtime.Handles.xml","ref/dotnet/es/System.Runtime.Handles.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp","[Content_Types].xml"]},"System.Runtime.InteropServices/4.0.20":{"sha512":"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==","type":"Package","files":["_rels/.rels","System.Runtime.InteropServices.nuspec","lib/DNXCore50/System.Runtime.InteropServices.dll","lib/netcore50/System.Runtime.InteropServices.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.InteropServices.dll","ref/dotnet/System.Runtime.InteropServices.xml","ref/dotnet/zh-hant/System.Runtime.InteropServices.xml","ref/dotnet/de/System.Runtime.InteropServices.xml","ref/dotnet/fr/System.Runtime.InteropServices.xml","ref/dotnet/it/System.Runtime.InteropServices.xml","ref/dotnet/ja/System.Runtime.InteropServices.xml","ref/dotnet/ko/System.Runtime.InteropServices.xml","ref/dotnet/ru/System.Runtime.InteropServices.xml","ref/dotnet/zh-hans/System.Runtime.InteropServices.xml","ref/dotnet/es/System.Runtime.InteropServices.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp","[Content_Types].xml"]},"System.Runtime.Numerics/4.0.0":{"sha512":"aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==","type":"Package","files":["_rels/.rels","System.Runtime.Numerics.nuspec","lib/dotnet/System.Runtime.Numerics.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Runtime.Numerics.dll","lib/wpa81/_._","ref/dotnet/System.Runtime.Numerics.dll","ref/dotnet/System.Runtime.Numerics.xml","ref/dotnet/zh-hant/System.Runtime.Numerics.xml","ref/dotnet/de/System.Runtime.Numerics.xml","ref/dotnet/fr/System.Runtime.Numerics.xml","ref/dotnet/it/System.Runtime.Numerics.xml","ref/dotnet/ja/System.Runtime.Numerics.xml","ref/dotnet/ko/System.Runtime.Numerics.xml","ref/dotnet/ru/System.Runtime.Numerics.xml","ref/dotnet/zh-hans/System.Runtime.Numerics.xml","ref/dotnet/es/System.Runtime.Numerics.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Runtime.Numerics.dll","ref/netcore50/System.Runtime.Numerics.xml","ref/wpa81/_._","package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp","[Content_Types].xml"]},"System.Security.Claims/4.0.0":{"sha512":"94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==","type":"Package","files":["_rels/.rels","System.Security.Claims.nuspec","lib/dotnet/System.Security.Claims.dll","lib/net46/System.Security.Claims.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Security.Claims.dll","ref/dotnet/System.Security.Claims.xml","ref/dotnet/zh-hant/System.Security.Claims.xml","ref/dotnet/de/System.Security.Claims.xml","ref/dotnet/fr/System.Security.Claims.xml","ref/dotnet/it/System.Security.Claims.xml","ref/dotnet/ja/System.Security.Claims.xml","ref/dotnet/ko/System.Security.Claims.xml","ref/dotnet/ru/System.Security.Claims.xml","ref/dotnet/zh-hans/System.Security.Claims.xml","ref/dotnet/es/System.Security.Claims.xml","ref/net46/System.Security.Claims.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp","[Content_Types].xml"]},"System.Security.Principal/4.0.0":{"sha512":"FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==","type":"Package","files":["_rels/.rels","System.Security.Principal.nuspec","lib/dotnet/System.Security.Principal.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Security.Principal.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Security.Principal.dll","ref/dotnet/System.Security.Principal.xml","ref/dotnet/zh-hant/System.Security.Principal.xml","ref/dotnet/de/System.Security.Principal.xml","ref/dotnet/fr/System.Security.Principal.xml","ref/dotnet/it/System.Security.Principal.xml","ref/dotnet/ja/System.Security.Principal.xml","ref/dotnet/ko/System.Security.Principal.xml","ref/dotnet/ru/System.Security.Principal.xml","ref/dotnet/zh-hans/System.Security.Principal.xml","ref/dotnet/es/System.Security.Principal.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Security.Principal.dll","ref/netcore50/System.Security.Principal.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp","[Content_Types].xml"]},"System.Text.Encoding/4.0.10":{"sha512":"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==","type":"Package","files":["_rels/.rels","System.Text.Encoding.nuspec","lib/netcore50/System.Text.Encoding.dll","lib/DNXCore50/System.Text.Encoding.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.dll","ref/dotnet/System.Text.Encoding.xml","ref/dotnet/zh-hant/System.Text.Encoding.xml","ref/dotnet/de/System.Text.Encoding.xml","ref/dotnet/fr/System.Text.Encoding.xml","ref/dotnet/it/System.Text.Encoding.xml","ref/dotnet/ja/System.Text.Encoding.xml","ref/dotnet/ko/System.Text.Encoding.xml","ref/dotnet/ru/System.Text.Encoding.xml","ref/dotnet/zh-hans/System.Text.Encoding.xml","ref/dotnet/es/System.Text.Encoding.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp","[Content_Types].xml"]},"System.Text.Encoding.Extensions/4.0.10":{"sha512":"TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==","type":"Package","files":["_rels/.rels","System.Text.Encoding.Extensions.nuspec","lib/netcore50/System.Text.Encoding.Extensions.dll","lib/DNXCore50/System.Text.Encoding.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.Extensions.dll","ref/dotnet/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml","ref/dotnet/de/System.Text.Encoding.Extensions.xml","ref/dotnet/fr/System.Text.Encoding.Extensions.xml","ref/dotnet/it/System.Text.Encoding.Extensions.xml","ref/dotnet/ja/System.Text.Encoding.Extensions.xml","ref/dotnet/ko/System.Text.Encoding.Extensions.xml","ref/dotnet/ru/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml","ref/dotnet/es/System.Text.Encoding.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp","[Content_Types].xml"]},"System.Text.RegularExpressions/4.0.10":{"sha512":"0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==","type":"Package","files":["_rels/.rels","System.Text.RegularExpressions.nuspec","lib/dotnet/System.Text.RegularExpressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.RegularExpressions.dll","ref/dotnet/System.Text.RegularExpressions.xml","ref/dotnet/zh-hant/System.Text.RegularExpressions.xml","ref/dotnet/de/System.Text.RegularExpressions.xml","ref/dotnet/fr/System.Text.RegularExpressions.xml","ref/dotnet/it/System.Text.RegularExpressions.xml","ref/dotnet/ja/System.Text.RegularExpressions.xml","ref/dotnet/ko/System.Text.RegularExpressions.xml","ref/dotnet/ru/System.Text.RegularExpressions.xml","ref/dotnet/zh-hans/System.Text.RegularExpressions.xml","ref/dotnet/es/System.Text.RegularExpressions.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp","[Content_Types].xml"]},"System.Threading/4.0.10":{"sha512":"0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==","type":"Package","files":["_rels/.rels","System.Threading.nuspec","lib/DNXCore50/System.Threading.dll","lib/netcore50/System.Threading.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.dll","ref/dotnet/System.Threading.xml","ref/dotnet/zh-hant/System.Threading.xml","ref/dotnet/de/System.Threading.xml","ref/dotnet/fr/System.Threading.xml","ref/dotnet/it/System.Threading.xml","ref/dotnet/ja/System.Threading.xml","ref/dotnet/ko/System.Threading.xml","ref/dotnet/ru/System.Threading.xml","ref/dotnet/zh-hans/System.Threading.xml","ref/dotnet/es/System.Threading.xml","runtimes/win8-aot/lib/netcore50/System.Threading.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp","[Content_Types].xml"]},"System.Threading.Overlapped/4.0.0":{"sha512":"X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==","type":"Package","files":["_rels/.rels","System.Threading.Overlapped.nuspec","lib/netcore50/System.Threading.Overlapped.dll","lib/DNXCore50/System.Threading.Overlapped.dll","lib/net46/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.xml","ref/dotnet/zh-hant/System.Threading.Overlapped.xml","ref/dotnet/de/System.Threading.Overlapped.xml","ref/dotnet/fr/System.Threading.Overlapped.xml","ref/dotnet/it/System.Threading.Overlapped.xml","ref/dotnet/ja/System.Threading.Overlapped.xml","ref/dotnet/ko/System.Threading.Overlapped.xml","ref/dotnet/ru/System.Threading.Overlapped.xml","ref/dotnet/zh-hans/System.Threading.Overlapped.xml","ref/dotnet/es/System.Threading.Overlapped.xml","ref/net46/System.Threading.Overlapped.dll","package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks/4.0.10":{"sha512":"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.nuspec","lib/netcore50/System.Threading.Tasks.dll","lib/DNXCore50/System.Threading.Tasks.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.Tasks.dll","ref/dotnet/System.Threading.Tasks.xml","ref/dotnet/zh-hant/System.Threading.Tasks.xml","ref/dotnet/de/System.Threading.Tasks.xml","ref/dotnet/fr/System.Threading.Tasks.xml","ref/dotnet/it/System.Threading.Tasks.xml","ref/dotnet/ja/System.Threading.Tasks.xml","ref/dotnet/ko/System.Threading.Tasks.xml","ref/dotnet/ru/System.Threading.Tasks.xml","ref/dotnet/zh-hans/System.Threading.Tasks.xml","ref/dotnet/es/System.Threading.Tasks.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Dataflow/4.5.25":{"sha512":"Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Dataflow.nuspec","lib/dotnet/System.Threading.Tasks.Dataflow.dll","lib/dotnet/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll","package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Parallel/4.0.0":{"sha512":"GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Parallel.nuspec","lib/dotnet/System.Threading.Tasks.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Threading.Tasks.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Threading.Tasks.Parallel.dll","ref/dotnet/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml","ref/dotnet/de/System.Threading.Tasks.Parallel.xml","ref/dotnet/fr/System.Threading.Tasks.Parallel.xml","ref/dotnet/it/System.Threading.Tasks.Parallel.xml","ref/dotnet/ja/System.Threading.Tasks.Parallel.xml","ref/dotnet/ko/System.Threading.Tasks.Parallel.xml","ref/dotnet/ru/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml","ref/dotnet/es/System.Threading.Tasks.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Threading.Tasks.Parallel.dll","ref/netcore50/System.Threading.Tasks.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp","[Content_Types].xml"]},"System.Threading.Timer/4.0.0":{"sha512":"BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==","type":"Package","files":["_rels/.rels","System.Threading.Timer.nuspec","lib/netcore50/System.Threading.Timer.dll","lib/DNXCore50/System.Threading.Timer.dll","lib/net451/_._","lib/win81/_._","lib/wpa81/_._","ref/dotnet/System.Threading.Timer.dll","ref/dotnet/System.Threading.Timer.xml","ref/dotnet/zh-hant/System.Threading.Timer.xml","ref/dotnet/de/System.Threading.Timer.xml","ref/dotnet/fr/System.Threading.Timer.xml","ref/dotnet/it/System.Threading.Timer.xml","ref/dotnet/ja/System.Threading.Timer.xml","ref/dotnet/ko/System.Threading.Timer.xml","ref/dotnet/ru/System.Threading.Timer.xml","ref/dotnet/zh-hans/System.Threading.Timer.xml","ref/dotnet/es/System.Threading.Timer.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll","ref/net451/_._","ref/win81/_._","ref/netcore50/System.Threading.Timer.dll","ref/netcore50/System.Threading.Timer.xml","ref/wpa81/_._","package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp","[Content_Types].xml"]},"System.Xml.ReaderWriter/4.0.10":{"sha512":"VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==","type":"Package","files":["_rels/.rels","System.Xml.ReaderWriter.nuspec","lib/dotnet/System.Xml.ReaderWriter.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.ReaderWriter.dll","ref/dotnet/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml","ref/dotnet/de/System.Xml.ReaderWriter.xml","ref/dotnet/fr/System.Xml.ReaderWriter.xml","ref/dotnet/it/System.Xml.ReaderWriter.xml","ref/dotnet/ja/System.Xml.ReaderWriter.xml","ref/dotnet/ko/System.Xml.ReaderWriter.xml","ref/dotnet/ru/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml","ref/dotnet/es/System.Xml.ReaderWriter.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp","[Content_Types].xml"]},"System.Xml.XDocument/4.0.10":{"sha512":"+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==","type":"Package","files":["_rels/.rels","System.Xml.XDocument.nuspec","lib/dotnet/System.Xml.XDocument.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.XDocument.dll","ref/dotnet/System.Xml.XDocument.xml","ref/dotnet/zh-hant/System.Xml.XDocument.xml","ref/dotnet/de/System.Xml.XDocument.xml","ref/dotnet/fr/System.Xml.XDocument.xml","ref/dotnet/it/System.Xml.XDocument.xml","ref/dotnet/ja/System.Xml.XDocument.xml","ref/dotnet/ko/System.Xml.XDocument.xml","ref/dotnet/ru/System.Xml.XDocument.xml","ref/dotnet/zh-hans/System.Xml.XDocument.xml","ref/dotnet/es/System.Xml.XDocument.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp","[Content_Types].xml"]}},"projectFileDependencyGroups":{"":["Microsoft.NETCore >= 5.0.0","System.Console >= 4.0.0-beta-23412","Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123","Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0"],"DNXCore,Version=v5.0":[]}} + {"locked":false,"version":1,"targets":{"DNXCore,Version=v5.0":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.NetworkInformation/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.NetworkInformation.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x64":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"native":{"runtimes/win7-x64/native/CoreConsole.exe":{}}},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}},"native":{"runtimes/win7-x64/native/clretwrc.dll":{},"runtimes/win7-x64/native/coreclr.dll":{},"runtimes/win7-x64/native/dbgshim.dll":{},"runtimes/win7-x64/native/mscordaccore.dll":{},"runtimes/win7-x64/native/mscordbi.dll":{},"runtimes/win7-x64/native/mscorrc.debug.dll":{},"runtimes/win7-x64/native/mscorrc.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.Native-x64/4.0.0":{"native":{"runtimes/win7-x64/native/System.IO.Compression.Native.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x86":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.Native-x86/4.0.0":{"native":{"runtimes/win7-x86/native/System.IO.Compression.Native.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}}},"libraries":{"Microsoft.CSharp/4.0.0":{"sha512":"oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==","type":"Package","files":["_rels/.rels","Microsoft.CSharp.nuspec","lib/dotnet/Microsoft.CSharp.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.CSharp.dll","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.CSharp.dll","ref/dotnet/Microsoft.CSharp.xml","ref/dotnet/zh-hant/Microsoft.CSharp.xml","ref/dotnet/de/Microsoft.CSharp.xml","ref/dotnet/fr/Microsoft.CSharp.xml","ref/dotnet/it/Microsoft.CSharp.xml","ref/dotnet/ja/Microsoft.CSharp.xml","ref/dotnet/ko/Microsoft.CSharp.xml","ref/dotnet/ru/Microsoft.CSharp.xml","ref/dotnet/zh-hans/Microsoft.CSharp.xml","ref/dotnet/es/Microsoft.CSharp.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.CSharp.dll","ref/netcore50/Microsoft.CSharp.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore/5.0.0":{"sha512":"QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.nuspec","_._","package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"sha512":"Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.ConsoleHost-x64.nuspec","runtimes/win7-x64/native/CoreConsole.exe","package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Platforms/1.0.0":{"sha512":"0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Platforms.nuspec","runtime.json","package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"sha512":"DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec","runtimes/win7-x64/native/clretwrc.dll","runtimes/win7-x64/native/coreclr.dll","runtimes/win7-x64/native/dbgshim.dll","runtimes/win7-x64/native/mscordaccore.dll","runtimes/win7-x64/native/mscordbi.dll","runtimes/win7-x64/native/mscorrc.debug.dll","runtimes/win7-x64/native/mscorrc.dll","runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll","ref/dotnet/_._","package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets/1.0.0":{"sha512":"XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.nuspec","runtime.json","package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{"sha512":"32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.DNXCore.nuspec","runtime.json","package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp","[Content_Types].xml"]},"Microsoft.VisualBasic/10.0.0":{"sha512":"5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==","type":"Package","files":["_rels/.rels","Microsoft.VisualBasic.nuspec","lib/dotnet/Microsoft.VisualBasic.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.VisualBasic.dll","lib/wpa81/_._","ref/dotnet/Microsoft.VisualBasic.dll","ref/dotnet/Microsoft.VisualBasic.xml","ref/dotnet/zh-hant/Microsoft.VisualBasic.xml","ref/dotnet/de/Microsoft.VisualBasic.xml","ref/dotnet/fr/Microsoft.VisualBasic.xml","ref/dotnet/it/Microsoft.VisualBasic.xml","ref/dotnet/ja/Microsoft.VisualBasic.xml","ref/dotnet/ko/Microsoft.VisualBasic.xml","ref/dotnet/ru/Microsoft.VisualBasic.xml","ref/dotnet/zh-hans/Microsoft.VisualBasic.xml","ref/dotnet/es/Microsoft.VisualBasic.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.VisualBasic.dll","ref/netcore50/Microsoft.VisualBasic.xml","ref/wpa81/_._","package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp","[Content_Types].xml"]},"Microsoft.Win32.Primitives/4.0.0":{"sha512":"CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==","type":"Package","files":["_rels/.rels","Microsoft.Win32.Primitives.nuspec","lib/dotnet/Microsoft.Win32.Primitives.dll","lib/net46/Microsoft.Win32.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.Win32.Primitives.dll","ref/dotnet/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml","ref/dotnet/de/Microsoft.Win32.Primitives.xml","ref/dotnet/fr/Microsoft.Win32.Primitives.xml","ref/dotnet/it/Microsoft.Win32.Primitives.xml","ref/dotnet/ja/Microsoft.Win32.Primitives.xml","ref/dotnet/ko/Microsoft.Win32.Primitives.xml","ref/dotnet/ru/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml","ref/dotnet/es/Microsoft.Win32.Primitives.xml","ref/net46/Microsoft.Win32.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp","[Content_Types].xml"]},"runtime.win7.System.Console/4.0.0-beta-23412":{"sha512":"j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==","type":"Package","files":["_rels/.rels","runtime.win7.System.Console.nuspec","runtimes/win7/lib/dotnet/System.Console.dll","ref/dotnet/_._","package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp","[Content_Types].xml"]},"System.AppContext/4.0.0":{"sha512":"gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==","type":"Package","files":["_rels/.rels","System.AppContext.nuspec","lib/netcore50/System.AppContext.dll","lib/DNXCore50/System.AppContext.dll","lib/net46/System.AppContext.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.AppContext.dll","ref/dotnet/System.AppContext.xml","ref/dotnet/zh-hant/System.AppContext.xml","ref/dotnet/de/System.AppContext.xml","ref/dotnet/fr/System.AppContext.xml","ref/dotnet/it/System.AppContext.xml","ref/dotnet/ja/System.AppContext.xml","ref/dotnet/ko/System.AppContext.xml","ref/dotnet/ru/System.AppContext.xml","ref/dotnet/zh-hans/System.AppContext.xml","ref/dotnet/es/System.AppContext.xml","ref/net46/System.AppContext.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp","[Content_Types].xml"]},"System.Collections/4.0.10":{"sha512":"ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==","type":"Package","files":["_rels/.rels","System.Collections.nuspec","lib/netcore50/System.Collections.dll","lib/DNXCore50/System.Collections.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.dll","ref/dotnet/System.Collections.xml","ref/dotnet/zh-hant/System.Collections.xml","ref/dotnet/de/System.Collections.xml","ref/dotnet/fr/System.Collections.xml","ref/dotnet/it/System.Collections.xml","ref/dotnet/ja/System.Collections.xml","ref/dotnet/ko/System.Collections.xml","ref/dotnet/ru/System.Collections.xml","ref/dotnet/zh-hans/System.Collections.xml","ref/dotnet/es/System.Collections.xml","runtimes/win8-aot/lib/netcore50/System.Collections.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp","[Content_Types].xml"]},"System.Collections.Concurrent/4.0.10":{"sha512":"ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==","type":"Package","files":["_rels/.rels","System.Collections.Concurrent.nuspec","lib/dotnet/System.Collections.Concurrent.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.Concurrent.dll","ref/dotnet/System.Collections.Concurrent.xml","ref/dotnet/zh-hant/System.Collections.Concurrent.xml","ref/dotnet/de/System.Collections.Concurrent.xml","ref/dotnet/fr/System.Collections.Concurrent.xml","ref/dotnet/it/System.Collections.Concurrent.xml","ref/dotnet/ja/System.Collections.Concurrent.xml","ref/dotnet/ko/System.Collections.Concurrent.xml","ref/dotnet/ru/System.Collections.Concurrent.xml","ref/dotnet/zh-hans/System.Collections.Concurrent.xml","ref/dotnet/es/System.Collections.Concurrent.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp","[Content_Types].xml"]},"System.Collections.Immutable/1.1.37":{"sha512":"fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==","type":"Package","files":["_rels/.rels","System.Collections.Immutable.nuspec","lib/dotnet/System.Collections.Immutable.dll","lib/dotnet/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll","package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp","[Content_Types].xml"]},"System.Collections.NonGeneric/4.0.0":{"sha512":"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==","type":"Package","files":["_rels/.rels","System.Collections.NonGeneric.nuspec","lib/dotnet/System.Collections.NonGeneric.dll","lib/net46/System.Collections.NonGeneric.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.NonGeneric.dll","ref/dotnet/System.Collections.NonGeneric.xml","ref/dotnet/zh-hant/System.Collections.NonGeneric.xml","ref/dotnet/de/System.Collections.NonGeneric.xml","ref/dotnet/fr/System.Collections.NonGeneric.xml","ref/dotnet/it/System.Collections.NonGeneric.xml","ref/dotnet/ja/System.Collections.NonGeneric.xml","ref/dotnet/ko/System.Collections.NonGeneric.xml","ref/dotnet/ru/System.Collections.NonGeneric.xml","ref/dotnet/zh-hans/System.Collections.NonGeneric.xml","ref/dotnet/es/System.Collections.NonGeneric.xml","ref/net46/System.Collections.NonGeneric.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp","[Content_Types].xml"]},"System.ComponentModel/4.0.0":{"sha512":"BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==","type":"Package","files":["_rels/.rels","System.ComponentModel.nuspec","lib/dotnet/System.ComponentModel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.ComponentModel.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.ComponentModel.dll","ref/dotnet/System.ComponentModel.xml","ref/dotnet/zh-hant/System.ComponentModel.xml","ref/dotnet/de/System.ComponentModel.xml","ref/dotnet/fr/System.ComponentModel.xml","ref/dotnet/it/System.ComponentModel.xml","ref/dotnet/ja/System.ComponentModel.xml","ref/dotnet/ko/System.ComponentModel.xml","ref/dotnet/ru/System.ComponentModel.xml","ref/dotnet/zh-hans/System.ComponentModel.xml","ref/dotnet/es/System.ComponentModel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.ComponentModel.dll","ref/netcore50/System.ComponentModel.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp","[Content_Types].xml"]},"System.ComponentModel.Annotations/4.0.10":{"sha512":"7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==","type":"Package","files":["_rels/.rels","System.ComponentModel.Annotations.nuspec","lib/dotnet/System.ComponentModel.Annotations.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.Annotations.dll","ref/dotnet/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml","ref/dotnet/de/System.ComponentModel.Annotations.xml","ref/dotnet/fr/System.ComponentModel.Annotations.xml","ref/dotnet/it/System.ComponentModel.Annotations.xml","ref/dotnet/ja/System.ComponentModel.Annotations.xml","ref/dotnet/ko/System.ComponentModel.Annotations.xml","ref/dotnet/ru/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml","ref/dotnet/es/System.ComponentModel.Annotations.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp","[Content_Types].xml"]},"System.ComponentModel.EventBasedAsync/4.0.10":{"sha512":"d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==","type":"Package","files":["_rels/.rels","System.ComponentModel.EventBasedAsync.nuspec","lib/dotnet/System.ComponentModel.EventBasedAsync.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.EventBasedAsync.dll","ref/dotnet/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp","[Content_Types].xml"]},"System.Console/4.0.0-beta-23412":{"sha512":"D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==","type":"Package","files":["_rels/.rels","System.Console.nuspec","lib/net46/System.Console.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Console.dll","ref/dotnet/System.Console.xml","ref/dotnet/zh-hant/System.Console.xml","ref/dotnet/de/System.Console.xml","ref/dotnet/fr/System.Console.xml","ref/dotnet/it/System.Console.xml","ref/dotnet/ja/System.Console.xml","ref/dotnet/ko/System.Console.xml","ref/dotnet/ru/System.Console.xml","ref/dotnet/zh-hans/System.Console.xml","ref/dotnet/es/System.Console.xml","ref/net46/System.Console.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Contracts/4.0.0":{"sha512":"lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==","type":"Package","files":["_rels/.rels","System.Diagnostics.Contracts.nuspec","lib/netcore50/System.Diagnostics.Contracts.dll","lib/DNXCore50/System.Diagnostics.Contracts.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Contracts.dll","ref/dotnet/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml","ref/dotnet/de/System.Diagnostics.Contracts.xml","ref/dotnet/fr/System.Diagnostics.Contracts.xml","ref/dotnet/it/System.Diagnostics.Contracts.xml","ref/dotnet/ja/System.Diagnostics.Contracts.xml","ref/dotnet/ko/System.Diagnostics.Contracts.xml","ref/dotnet/ru/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml","ref/dotnet/es/System.Diagnostics.Contracts.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Contracts.dll","ref/netcore50/System.Diagnostics.Contracts.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Debug/4.0.10":{"sha512":"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==","type":"Package","files":["_rels/.rels","System.Diagnostics.Debug.nuspec","lib/DNXCore50/System.Diagnostics.Debug.dll","lib/netcore50/System.Diagnostics.Debug.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Debug.dll","ref/dotnet/System.Diagnostics.Debug.xml","ref/dotnet/zh-hant/System.Diagnostics.Debug.xml","ref/dotnet/de/System.Diagnostics.Debug.xml","ref/dotnet/fr/System.Diagnostics.Debug.xml","ref/dotnet/it/System.Diagnostics.Debug.xml","ref/dotnet/ja/System.Diagnostics.Debug.xml","ref/dotnet/ko/System.Diagnostics.Debug.xml","ref/dotnet/ru/System.Diagnostics.Debug.xml","ref/dotnet/zh-hans/System.Diagnostics.Debug.xml","ref/dotnet/es/System.Diagnostics.Debug.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.StackTrace/4.0.0":{"sha512":"PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==","type":"Package","files":["_rels/.rels","System.Diagnostics.StackTrace.nuspec","lib/DNXCore50/System.Diagnostics.StackTrace.dll","lib/netcore50/System.Diagnostics.StackTrace.dll","lib/net46/System.Diagnostics.StackTrace.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.StackTrace.dll","ref/dotnet/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml","ref/dotnet/de/System.Diagnostics.StackTrace.xml","ref/dotnet/fr/System.Diagnostics.StackTrace.xml","ref/dotnet/it/System.Diagnostics.StackTrace.xml","ref/dotnet/ja/System.Diagnostics.StackTrace.xml","ref/dotnet/ko/System.Diagnostics.StackTrace.xml","ref/dotnet/ru/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml","ref/dotnet/es/System.Diagnostics.StackTrace.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll","ref/net46/System.Diagnostics.StackTrace.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tools/4.0.0":{"sha512":"uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tools.nuspec","lib/DNXCore50/System.Diagnostics.Tools.dll","lib/netcore50/System.Diagnostics.Tools.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Tools.dll","ref/dotnet/System.Diagnostics.Tools.xml","ref/dotnet/zh-hant/System.Diagnostics.Tools.xml","ref/dotnet/de/System.Diagnostics.Tools.xml","ref/dotnet/fr/System.Diagnostics.Tools.xml","ref/dotnet/it/System.Diagnostics.Tools.xml","ref/dotnet/ja/System.Diagnostics.Tools.xml","ref/dotnet/ko/System.Diagnostics.Tools.xml","ref/dotnet/ru/System.Diagnostics.Tools.xml","ref/dotnet/zh-hans/System.Diagnostics.Tools.xml","ref/dotnet/es/System.Diagnostics.Tools.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Tools.dll","ref/netcore50/System.Diagnostics.Tools.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tracing/4.0.20":{"sha512":"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tracing.nuspec","lib/netcore50/System.Diagnostics.Tracing.dll","lib/DNXCore50/System.Diagnostics.Tracing.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Tracing.dll","ref/dotnet/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml","ref/dotnet/de/System.Diagnostics.Tracing.xml","ref/dotnet/fr/System.Diagnostics.Tracing.xml","ref/dotnet/it/System.Diagnostics.Tracing.xml","ref/dotnet/ja/System.Diagnostics.Tracing.xml","ref/dotnet/ko/System.Diagnostics.Tracing.xml","ref/dotnet/ru/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml","ref/dotnet/es/System.Diagnostics.Tracing.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp","[Content_Types].xml"]},"System.Dynamic.Runtime/4.0.10":{"sha512":"r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==","type":"Package","files":["_rels/.rels","System.Dynamic.Runtime.nuspec","lib/netcore50/System.Dynamic.Runtime.dll","lib/DNXCore50/System.Dynamic.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Dynamic.Runtime.dll","ref/dotnet/System.Dynamic.Runtime.xml","ref/dotnet/zh-hant/System.Dynamic.Runtime.xml","ref/dotnet/de/System.Dynamic.Runtime.xml","ref/dotnet/fr/System.Dynamic.Runtime.xml","ref/dotnet/it/System.Dynamic.Runtime.xml","ref/dotnet/ja/System.Dynamic.Runtime.xml","ref/dotnet/ko/System.Dynamic.Runtime.xml","ref/dotnet/ru/System.Dynamic.Runtime.xml","ref/dotnet/zh-hans/System.Dynamic.Runtime.xml","ref/dotnet/es/System.Dynamic.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp","[Content_Types].xml"]},"System.Globalization/4.0.10":{"sha512":"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==","type":"Package","files":["_rels/.rels","System.Globalization.nuspec","lib/netcore50/System.Globalization.dll","lib/DNXCore50/System.Globalization.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.dll","ref/dotnet/System.Globalization.xml","ref/dotnet/zh-hant/System.Globalization.xml","ref/dotnet/de/System.Globalization.xml","ref/dotnet/fr/System.Globalization.xml","ref/dotnet/it/System.Globalization.xml","ref/dotnet/ja/System.Globalization.xml","ref/dotnet/ko/System.Globalization.xml","ref/dotnet/ru/System.Globalization.xml","ref/dotnet/zh-hans/System.Globalization.xml","ref/dotnet/es/System.Globalization.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp","[Content_Types].xml"]},"System.Globalization.Calendars/4.0.0":{"sha512":"cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==","type":"Package","files":["_rels/.rels","System.Globalization.Calendars.nuspec","lib/netcore50/System.Globalization.Calendars.dll","lib/DNXCore50/System.Globalization.Calendars.dll","lib/net46/System.Globalization.Calendars.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Calendars.dll","ref/dotnet/System.Globalization.Calendars.xml","ref/dotnet/zh-hant/System.Globalization.Calendars.xml","ref/dotnet/de/System.Globalization.Calendars.xml","ref/dotnet/fr/System.Globalization.Calendars.xml","ref/dotnet/it/System.Globalization.Calendars.xml","ref/dotnet/ja/System.Globalization.Calendars.xml","ref/dotnet/ko/System.Globalization.Calendars.xml","ref/dotnet/ru/System.Globalization.Calendars.xml","ref/dotnet/zh-hans/System.Globalization.Calendars.xml","ref/dotnet/es/System.Globalization.Calendars.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll","ref/net46/System.Globalization.Calendars.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp","[Content_Types].xml"]},"System.Globalization.Extensions/4.0.0":{"sha512":"rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==","type":"Package","files":["_rels/.rels","System.Globalization.Extensions.nuspec","lib/dotnet/System.Globalization.Extensions.dll","lib/net46/System.Globalization.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Extensions.dll","ref/dotnet/System.Globalization.Extensions.xml","ref/dotnet/zh-hant/System.Globalization.Extensions.xml","ref/dotnet/de/System.Globalization.Extensions.xml","ref/dotnet/fr/System.Globalization.Extensions.xml","ref/dotnet/it/System.Globalization.Extensions.xml","ref/dotnet/ja/System.Globalization.Extensions.xml","ref/dotnet/ko/System.Globalization.Extensions.xml","ref/dotnet/ru/System.Globalization.Extensions.xml","ref/dotnet/zh-hans/System.Globalization.Extensions.xml","ref/dotnet/es/System.Globalization.Extensions.xml","ref/net46/System.Globalization.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp","[Content_Types].xml"]},"System.IO/4.0.10":{"sha512":"kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==","type":"Package","files":["_rels/.rels","System.IO.nuspec","lib/netcore50/System.IO.dll","lib/DNXCore50/System.IO.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.dll","ref/dotnet/System.IO.xml","ref/dotnet/zh-hant/System.IO.xml","ref/dotnet/de/System.IO.xml","ref/dotnet/fr/System.IO.xml","ref/dotnet/it/System.IO.xml","ref/dotnet/ja/System.IO.xml","ref/dotnet/ko/System.IO.xml","ref/dotnet/ru/System.IO.xml","ref/dotnet/zh-hans/System.IO.xml","ref/dotnet/es/System.IO.xml","runtimes/win8-aot/lib/netcore50/System.IO.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp","[Content_Types].xml"]},"System.IO.Compression/4.0.0":{"sha512":"S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.nuspec","lib/dotnet/System.IO.Compression.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/System.IO.Compression.dll","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.dll","ref/dotnet/System.IO.Compression.xml","ref/dotnet/zh-hant/System.IO.Compression.xml","ref/dotnet/de/System.IO.Compression.xml","ref/dotnet/fr/System.IO.Compression.xml","ref/dotnet/it/System.IO.Compression.xml","ref/dotnet/ja/System.IO.Compression.xml","ref/dotnet/ko/System.IO.Compression.xml","ref/dotnet/ru/System.IO.Compression.xml","ref/dotnet/zh-hans/System.IO.Compression.xml","ref/dotnet/es/System.IO.Compression.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.IO.Compression.dll","ref/netcore50/System.IO.Compression.xml","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.Native-x64/4.0.0":{"sha512":"Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==","type":"Package","files":["_rels/.rels","System.IO.Compression.Native-x64.nuspec","runtimes/win7-x64/native/System.IO.Compression.Native.dll","runtimes/win10-x64/native/System.IO.Compression.Native.dll","package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp","[Content_Types].xml"]},"System.IO.Compression.Native-x86/4.0.0":{"sha512":"GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.Native-x86.nuspec","runtimes/win7-x86/native/System.IO.Compression.Native.dll","runtimes/win10-x86/native/System.IO.Compression.Native.dll","package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.ZipFile/4.0.0":{"sha512":"pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==","type":"Package","files":["_rels/.rels","System.IO.Compression.ZipFile.nuspec","lib/dotnet/System.IO.Compression.ZipFile.dll","lib/net46/System.IO.Compression.ZipFile.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.ZipFile.dll","ref/dotnet/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml","ref/dotnet/de/System.IO.Compression.ZipFile.xml","ref/dotnet/fr/System.IO.Compression.ZipFile.xml","ref/dotnet/it/System.IO.Compression.ZipFile.xml","ref/dotnet/ja/System.IO.Compression.ZipFile.xml","ref/dotnet/ko/System.IO.Compression.ZipFile.xml","ref/dotnet/ru/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml","ref/dotnet/es/System.IO.Compression.ZipFile.xml","ref/net46/System.IO.Compression.ZipFile.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem/4.0.0":{"sha512":"eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.nuspec","lib/DNXCore50/System.IO.FileSystem.dll","lib/netcore50/System.IO.FileSystem.dll","lib/net46/System.IO.FileSystem.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.dll","ref/dotnet/System.IO.FileSystem.xml","ref/dotnet/zh-hant/System.IO.FileSystem.xml","ref/dotnet/de/System.IO.FileSystem.xml","ref/dotnet/fr/System.IO.FileSystem.xml","ref/dotnet/it/System.IO.FileSystem.xml","ref/dotnet/ja/System.IO.FileSystem.xml","ref/dotnet/ko/System.IO.FileSystem.xml","ref/dotnet/ru/System.IO.FileSystem.xml","ref/dotnet/zh-hans/System.IO.FileSystem.xml","ref/dotnet/es/System.IO.FileSystem.xml","ref/net46/System.IO.FileSystem.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem.Primitives/4.0.0":{"sha512":"7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.Primitives.nuspec","lib/dotnet/System.IO.FileSystem.Primitives.dll","lib/net46/System.IO.FileSystem.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.Primitives.dll","ref/dotnet/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml","ref/dotnet/de/System.IO.FileSystem.Primitives.xml","ref/dotnet/fr/System.IO.FileSystem.Primitives.xml","ref/dotnet/it/System.IO.FileSystem.Primitives.xml","ref/dotnet/ja/System.IO.FileSystem.Primitives.xml","ref/dotnet/ko/System.IO.FileSystem.Primitives.xml","ref/dotnet/ru/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml","ref/dotnet/es/System.IO.FileSystem.Primitives.xml","ref/net46/System.IO.FileSystem.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp","[Content_Types].xml"]},"System.IO.UnmanagedMemoryStream/4.0.0":{"sha512":"i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==","type":"Package","files":["_rels/.rels","System.IO.UnmanagedMemoryStream.nuspec","lib/dotnet/System.IO.UnmanagedMemoryStream.dll","lib/net46/System.IO.UnmanagedMemoryStream.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.UnmanagedMemoryStream.dll","ref/dotnet/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml","ref/net46/System.IO.UnmanagedMemoryStream.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp","[Content_Types].xml"]},"System.Linq/4.0.0":{"sha512":"r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==","type":"Package","files":["_rels/.rels","System.Linq.nuspec","lib/dotnet/System.Linq.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.dll","ref/dotnet/System.Linq.xml","ref/dotnet/zh-hant/System.Linq.xml","ref/dotnet/de/System.Linq.xml","ref/dotnet/fr/System.Linq.xml","ref/dotnet/it/System.Linq.xml","ref/dotnet/ja/System.Linq.xml","ref/dotnet/ko/System.Linq.xml","ref/dotnet/ru/System.Linq.xml","ref/dotnet/zh-hans/System.Linq.xml","ref/dotnet/es/System.Linq.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.dll","ref/netcore50/System.Linq.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp","[Content_Types].xml"]},"System.Linq.Expressions/4.0.10":{"sha512":"qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==","type":"Package","files":["_rels/.rels","System.Linq.Expressions.nuspec","lib/netcore50/System.Linq.Expressions.dll","lib/DNXCore50/System.Linq.Expressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Linq.Expressions.dll","ref/dotnet/System.Linq.Expressions.xml","ref/dotnet/zh-hant/System.Linq.Expressions.xml","ref/dotnet/de/System.Linq.Expressions.xml","ref/dotnet/fr/System.Linq.Expressions.xml","ref/dotnet/it/System.Linq.Expressions.xml","ref/dotnet/ja/System.Linq.Expressions.xml","ref/dotnet/ko/System.Linq.Expressions.xml","ref/dotnet/ru/System.Linq.Expressions.xml","ref/dotnet/zh-hans/System.Linq.Expressions.xml","ref/dotnet/es/System.Linq.Expressions.xml","runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp","[Content_Types].xml"]},"System.Linq.Parallel/4.0.0":{"sha512":"PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==","type":"Package","files":["_rels/.rels","System.Linq.Parallel.nuspec","lib/dotnet/System.Linq.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Linq.Parallel.dll","ref/dotnet/System.Linq.Parallel.xml","ref/dotnet/zh-hant/System.Linq.Parallel.xml","ref/dotnet/de/System.Linq.Parallel.xml","ref/dotnet/fr/System.Linq.Parallel.xml","ref/dotnet/it/System.Linq.Parallel.xml","ref/dotnet/ja/System.Linq.Parallel.xml","ref/dotnet/ko/System.Linq.Parallel.xml","ref/dotnet/ru/System.Linq.Parallel.xml","ref/dotnet/zh-hans/System.Linq.Parallel.xml","ref/dotnet/es/System.Linq.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Parallel.dll","ref/netcore50/System.Linq.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp","[Content_Types].xml"]},"System.Linq.Queryable/4.0.0":{"sha512":"DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==","type":"Package","files":["_rels/.rels","System.Linq.Queryable.nuspec","lib/dotnet/System.Linq.Queryable.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Queryable.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.Queryable.dll","ref/dotnet/System.Linq.Queryable.xml","ref/dotnet/zh-hant/System.Linq.Queryable.xml","ref/dotnet/de/System.Linq.Queryable.xml","ref/dotnet/fr/System.Linq.Queryable.xml","ref/dotnet/it/System.Linq.Queryable.xml","ref/dotnet/ja/System.Linq.Queryable.xml","ref/dotnet/ko/System.Linq.Queryable.xml","ref/dotnet/ru/System.Linq.Queryable.xml","ref/dotnet/zh-hans/System.Linq.Queryable.xml","ref/dotnet/es/System.Linq.Queryable.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Queryable.dll","ref/netcore50/System.Linq.Queryable.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp","[Content_Types].xml"]},"System.Net.Http/4.0.0":{"sha512":"mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==","type":"Package","files":["_rels/.rels","System.Net.Http.nuspec","lib/netcore50/System.Net.Http.dll","lib/DNXCore50/System.Net.Http.dll","lib/net45/_._","lib/win8/_._","lib/wpa81/_._","ref/dotnet/System.Net.Http.dll","ref/dotnet/System.Net.Http.xml","ref/dotnet/zh-hant/System.Net.Http.xml","ref/dotnet/de/System.Net.Http.xml","ref/dotnet/fr/System.Net.Http.xml","ref/dotnet/it/System.Net.Http.xml","ref/dotnet/ja/System.Net.Http.xml","ref/dotnet/ko/System.Net.Http.xml","ref/dotnet/ru/System.Net.Http.xml","ref/dotnet/zh-hans/System.Net.Http.xml","ref/dotnet/es/System.Net.Http.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.Http.dll","ref/netcore50/System.Net.Http.xml","ref/wpa81/_._","package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp","[Content_Types].xml"]},"System.Net.NetworkInformation/4.0.0":{"sha512":"D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==","type":"Package","files":["_rels/.rels","System.Net.NetworkInformation.nuspec","lib/netcore50/System.Net.NetworkInformation.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.NetworkInformation.dll","ref/dotnet/System.Net.NetworkInformation.xml","ref/dotnet/zh-hant/System.Net.NetworkInformation.xml","ref/dotnet/de/System.Net.NetworkInformation.xml","ref/dotnet/fr/System.Net.NetworkInformation.xml","ref/dotnet/it/System.Net.NetworkInformation.xml","ref/dotnet/ja/System.Net.NetworkInformation.xml","ref/dotnet/ko/System.Net.NetworkInformation.xml","ref/dotnet/ru/System.Net.NetworkInformation.xml","ref/dotnet/zh-hans/System.Net.NetworkInformation.xml","ref/dotnet/es/System.Net.NetworkInformation.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.NetworkInformation.dll","ref/netcore50/System.Net.NetworkInformation.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp","[Content_Types].xml"]},"System.Net.Primitives/4.0.10":{"sha512":"YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==","type":"Package","files":["_rels/.rels","System.Net.Primitives.nuspec","lib/netcore50/System.Net.Primitives.dll","lib/DNXCore50/System.Net.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.Primitives.dll","ref/dotnet/System.Net.Primitives.xml","ref/dotnet/zh-hant/System.Net.Primitives.xml","ref/dotnet/de/System.Net.Primitives.xml","ref/dotnet/fr/System.Net.Primitives.xml","ref/dotnet/it/System.Net.Primitives.xml","ref/dotnet/ja/System.Net.Primitives.xml","ref/dotnet/ko/System.Net.Primitives.xml","ref/dotnet/ru/System.Net.Primitives.xml","ref/dotnet/zh-hans/System.Net.Primitives.xml","ref/dotnet/es/System.Net.Primitives.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp","[Content_Types].xml"]},"System.Numerics.Vectors/4.1.0":{"sha512":"jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==","type":"Package","files":["_rels/.rels","System.Numerics.Vectors.nuspec","lib/dotnet/System.Numerics.Vectors.dll","lib/net46/System.Numerics.Vectors.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Numerics.Vectors.dll","ref/net46/System.Numerics.Vectors.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp","[Content_Types].xml"]},"System.ObjectModel/4.0.10":{"sha512":"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==","type":"Package","files":["_rels/.rels","System.ObjectModel.nuspec","lib/dotnet/System.ObjectModel.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ObjectModel.dll","ref/dotnet/System.ObjectModel.xml","ref/dotnet/zh-hant/System.ObjectModel.xml","ref/dotnet/de/System.ObjectModel.xml","ref/dotnet/fr/System.ObjectModel.xml","ref/dotnet/it/System.ObjectModel.xml","ref/dotnet/ja/System.ObjectModel.xml","ref/dotnet/ko/System.ObjectModel.xml","ref/dotnet/ru/System.ObjectModel.xml","ref/dotnet/zh-hans/System.ObjectModel.xml","ref/dotnet/es/System.ObjectModel.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp","[Content_Types].xml"]},"System.Private.Networking/4.0.0":{"sha512":"RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==","type":"Package","files":["_rels/.rels","System.Private.Networking.nuspec","lib/netcore50/System.Private.Networking.dll","lib/DNXCore50/System.Private.Networking.dll","ref/dnxcore50/_._","ref/netcore50/_._","package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp","[Content_Types].xml"]},"System.Private.Uri/4.0.0":{"sha512":"CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==","type":"Package","files":["_rels/.rels","System.Private.Uri.nuspec","lib/netcore50/System.Private.Uri.dll","lib/DNXCore50/System.Private.Uri.dll","ref/dnxcore50/_._","ref/netcore50/_._","runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll","package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp","[Content_Types].xml"]},"System.Reflection/4.0.10":{"sha512":"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==","type":"Package","files":["_rels/.rels","System.Reflection.nuspec","lib/netcore50/System.Reflection.dll","lib/DNXCore50/System.Reflection.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.dll","ref/dotnet/System.Reflection.xml","ref/dotnet/zh-hant/System.Reflection.xml","ref/dotnet/de/System.Reflection.xml","ref/dotnet/fr/System.Reflection.xml","ref/dotnet/it/System.Reflection.xml","ref/dotnet/ja/System.Reflection.xml","ref/dotnet/ko/System.Reflection.xml","ref/dotnet/ru/System.Reflection.xml","ref/dotnet/zh-hans/System.Reflection.xml","ref/dotnet/es/System.Reflection.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp","[Content_Types].xml"]},"System.Reflection.DispatchProxy/4.0.0":{"sha512":"Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==","type":"Package","files":["_rels/.rels","System.Reflection.DispatchProxy.nuspec","lib/net46/System.Reflection.DispatchProxy.dll","lib/DNXCore50/System.Reflection.DispatchProxy.dll","lib/netcore50/System.Reflection.DispatchProxy.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.DispatchProxy.dll","ref/dotnet/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml","ref/dotnet/de/System.Reflection.DispatchProxy.xml","ref/dotnet/fr/System.Reflection.DispatchProxy.xml","ref/dotnet/it/System.Reflection.DispatchProxy.xml","ref/dotnet/ja/System.Reflection.DispatchProxy.xml","ref/dotnet/ko/System.Reflection.DispatchProxy.xml","ref/dotnet/ru/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml","ref/dotnet/es/System.Reflection.DispatchProxy.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit/4.0.0":{"sha512":"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.nuspec","lib/DNXCore50/System.Reflection.Emit.dll","lib/netcore50/System.Reflection.Emit.dll","lib/MonoAndroid10/_._","lib/net45/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.Emit.dll","ref/dotnet/System.Reflection.Emit.xml","ref/dotnet/zh-hant/System.Reflection.Emit.xml","ref/dotnet/de/System.Reflection.Emit.xml","ref/dotnet/fr/System.Reflection.Emit.xml","ref/dotnet/it/System.Reflection.Emit.xml","ref/dotnet/ja/System.Reflection.Emit.xml","ref/dotnet/ko/System.Reflection.Emit.xml","ref/dotnet/ru/System.Reflection.Emit.xml","ref/dotnet/zh-hans/System.Reflection.Emit.xml","ref/dotnet/es/System.Reflection.Emit.xml","ref/MonoAndroid10/_._","ref/net45/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.ILGeneration/4.0.0":{"sha512":"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.ILGeneration.nuspec","lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll","lib/netcore50/System.Reflection.Emit.ILGeneration.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.ILGeneration.dll","ref/dotnet/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.Lightweight/4.0.0":{"sha512":"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.Lightweight.nuspec","lib/DNXCore50/System.Reflection.Emit.Lightweight.dll","lib/netcore50/System.Reflection.Emit.Lightweight.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.Lightweight.dll","ref/dotnet/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml","ref/dotnet/de/System.Reflection.Emit.Lightweight.xml","ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml","ref/dotnet/it/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml","ref/dotnet/es/System.Reflection.Emit.Lightweight.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp","[Content_Types].xml"]},"System.Reflection.Extensions/4.0.0":{"sha512":"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==","type":"Package","files":["_rels/.rels","System.Reflection.Extensions.nuspec","lib/netcore50/System.Reflection.Extensions.dll","lib/DNXCore50/System.Reflection.Extensions.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Extensions.dll","ref/dotnet/System.Reflection.Extensions.xml","ref/dotnet/zh-hant/System.Reflection.Extensions.xml","ref/dotnet/de/System.Reflection.Extensions.xml","ref/dotnet/fr/System.Reflection.Extensions.xml","ref/dotnet/it/System.Reflection.Extensions.xml","ref/dotnet/ja/System.Reflection.Extensions.xml","ref/dotnet/ko/System.Reflection.Extensions.xml","ref/dotnet/ru/System.Reflection.Extensions.xml","ref/dotnet/zh-hans/System.Reflection.Extensions.xml","ref/dotnet/es/System.Reflection.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Extensions.dll","ref/netcore50/System.Reflection.Extensions.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp","[Content_Types].xml"]},"System.Reflection.Metadata/1.0.22":{"sha512":"ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==","type":"Package","files":["_rels/.rels","System.Reflection.Metadata.nuspec","lib/dotnet/System.Reflection.Metadata.dll","lib/dotnet/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.dll","package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp","[Content_Types].xml"]},"System.Reflection.Primitives/4.0.0":{"sha512":"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==","type":"Package","files":["_rels/.rels","System.Reflection.Primitives.nuspec","lib/netcore50/System.Reflection.Primitives.dll","lib/DNXCore50/System.Reflection.Primitives.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Primitives.dll","ref/dotnet/System.Reflection.Primitives.xml","ref/dotnet/zh-hant/System.Reflection.Primitives.xml","ref/dotnet/de/System.Reflection.Primitives.xml","ref/dotnet/fr/System.Reflection.Primitives.xml","ref/dotnet/it/System.Reflection.Primitives.xml","ref/dotnet/ja/System.Reflection.Primitives.xml","ref/dotnet/ko/System.Reflection.Primitives.xml","ref/dotnet/ru/System.Reflection.Primitives.xml","ref/dotnet/zh-hans/System.Reflection.Primitives.xml","ref/dotnet/es/System.Reflection.Primitives.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Primitives.dll","ref/netcore50/System.Reflection.Primitives.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp","[Content_Types].xml"]},"System.Reflection.TypeExtensions/4.0.0":{"sha512":"YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==","type":"Package","files":["_rels/.rels","System.Reflection.TypeExtensions.nuspec","lib/netcore50/System.Reflection.TypeExtensions.dll","lib/DNXCore50/System.Reflection.TypeExtensions.dll","lib/net46/System.Reflection.TypeExtensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.TypeExtensions.dll","ref/dotnet/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml","ref/dotnet/de/System.Reflection.TypeExtensions.xml","ref/dotnet/fr/System.Reflection.TypeExtensions.xml","ref/dotnet/it/System.Reflection.TypeExtensions.xml","ref/dotnet/ja/System.Reflection.TypeExtensions.xml","ref/dotnet/ko/System.Reflection.TypeExtensions.xml","ref/dotnet/ru/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml","ref/dotnet/es/System.Reflection.TypeExtensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll","ref/net46/System.Reflection.TypeExtensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp","[Content_Types].xml"]},"System.Resources.ResourceManager/4.0.0":{"sha512":"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==","type":"Package","files":["_rels/.rels","System.Resources.ResourceManager.nuspec","lib/netcore50/System.Resources.ResourceManager.dll","lib/DNXCore50/System.Resources.ResourceManager.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Resources.ResourceManager.dll","ref/dotnet/System.Resources.ResourceManager.xml","ref/dotnet/zh-hant/System.Resources.ResourceManager.xml","ref/dotnet/de/System.Resources.ResourceManager.xml","ref/dotnet/fr/System.Resources.ResourceManager.xml","ref/dotnet/it/System.Resources.ResourceManager.xml","ref/dotnet/ja/System.Resources.ResourceManager.xml","ref/dotnet/ko/System.Resources.ResourceManager.xml","ref/dotnet/ru/System.Resources.ResourceManager.xml","ref/dotnet/zh-hans/System.Resources.ResourceManager.xml","ref/dotnet/es/System.Resources.ResourceManager.xml","runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Resources.ResourceManager.dll","ref/netcore50/System.Resources.ResourceManager.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp","[Content_Types].xml"]},"System.Runtime/4.0.20":{"sha512":"X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==","type":"Package","files":["_rels/.rels","System.Runtime.nuspec","lib/netcore50/System.Runtime.dll","lib/DNXCore50/System.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.dll","ref/dotnet/System.Runtime.xml","ref/dotnet/zh-hant/System.Runtime.xml","ref/dotnet/de/System.Runtime.xml","ref/dotnet/fr/System.Runtime.xml","ref/dotnet/it/System.Runtime.xml","ref/dotnet/ja/System.Runtime.xml","ref/dotnet/ko/System.Runtime.xml","ref/dotnet/ru/System.Runtime.xml","ref/dotnet/zh-hans/System.Runtime.xml","ref/dotnet/es/System.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp","[Content_Types].xml"]},"System.Runtime.Extensions/4.0.10":{"sha512":"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==","type":"Package","files":["_rels/.rels","System.Runtime.Extensions.nuspec","lib/netcore50/System.Runtime.Extensions.dll","lib/DNXCore50/System.Runtime.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Extensions.dll","ref/dotnet/System.Runtime.Extensions.xml","ref/dotnet/zh-hant/System.Runtime.Extensions.xml","ref/dotnet/de/System.Runtime.Extensions.xml","ref/dotnet/fr/System.Runtime.Extensions.xml","ref/dotnet/it/System.Runtime.Extensions.xml","ref/dotnet/ja/System.Runtime.Extensions.xml","ref/dotnet/ko/System.Runtime.Extensions.xml","ref/dotnet/ru/System.Runtime.Extensions.xml","ref/dotnet/zh-hans/System.Runtime.Extensions.xml","ref/dotnet/es/System.Runtime.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp","[Content_Types].xml"]},"System.Runtime.Handles/4.0.0":{"sha512":"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==","type":"Package","files":["_rels/.rels","System.Runtime.Handles.nuspec","lib/DNXCore50/System.Runtime.Handles.dll","lib/netcore50/System.Runtime.Handles.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Handles.dll","ref/dotnet/System.Runtime.Handles.xml","ref/dotnet/zh-hant/System.Runtime.Handles.xml","ref/dotnet/de/System.Runtime.Handles.xml","ref/dotnet/fr/System.Runtime.Handles.xml","ref/dotnet/it/System.Runtime.Handles.xml","ref/dotnet/ja/System.Runtime.Handles.xml","ref/dotnet/ko/System.Runtime.Handles.xml","ref/dotnet/ru/System.Runtime.Handles.xml","ref/dotnet/zh-hans/System.Runtime.Handles.xml","ref/dotnet/es/System.Runtime.Handles.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp","[Content_Types].xml"]},"System.Runtime.InteropServices/4.0.20":{"sha512":"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==","type":"Package","files":["_rels/.rels","System.Runtime.InteropServices.nuspec","lib/DNXCore50/System.Runtime.InteropServices.dll","lib/netcore50/System.Runtime.InteropServices.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.InteropServices.dll","ref/dotnet/System.Runtime.InteropServices.xml","ref/dotnet/zh-hant/System.Runtime.InteropServices.xml","ref/dotnet/de/System.Runtime.InteropServices.xml","ref/dotnet/fr/System.Runtime.InteropServices.xml","ref/dotnet/it/System.Runtime.InteropServices.xml","ref/dotnet/ja/System.Runtime.InteropServices.xml","ref/dotnet/ko/System.Runtime.InteropServices.xml","ref/dotnet/ru/System.Runtime.InteropServices.xml","ref/dotnet/zh-hans/System.Runtime.InteropServices.xml","ref/dotnet/es/System.Runtime.InteropServices.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp","[Content_Types].xml"]},"System.Runtime.Numerics/4.0.0":{"sha512":"aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==","type":"Package","files":["_rels/.rels","System.Runtime.Numerics.nuspec","lib/dotnet/System.Runtime.Numerics.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Runtime.Numerics.dll","lib/wpa81/_._","ref/dotnet/System.Runtime.Numerics.dll","ref/dotnet/System.Runtime.Numerics.xml","ref/dotnet/zh-hant/System.Runtime.Numerics.xml","ref/dotnet/de/System.Runtime.Numerics.xml","ref/dotnet/fr/System.Runtime.Numerics.xml","ref/dotnet/it/System.Runtime.Numerics.xml","ref/dotnet/ja/System.Runtime.Numerics.xml","ref/dotnet/ko/System.Runtime.Numerics.xml","ref/dotnet/ru/System.Runtime.Numerics.xml","ref/dotnet/zh-hans/System.Runtime.Numerics.xml","ref/dotnet/es/System.Runtime.Numerics.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Runtime.Numerics.dll","ref/netcore50/System.Runtime.Numerics.xml","ref/wpa81/_._","package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp","[Content_Types].xml"]},"System.Security.Claims/4.0.0":{"sha512":"94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==","type":"Package","files":["_rels/.rels","System.Security.Claims.nuspec","lib/dotnet/System.Security.Claims.dll","lib/net46/System.Security.Claims.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Security.Claims.dll","ref/dotnet/System.Security.Claims.xml","ref/dotnet/zh-hant/System.Security.Claims.xml","ref/dotnet/de/System.Security.Claims.xml","ref/dotnet/fr/System.Security.Claims.xml","ref/dotnet/it/System.Security.Claims.xml","ref/dotnet/ja/System.Security.Claims.xml","ref/dotnet/ko/System.Security.Claims.xml","ref/dotnet/ru/System.Security.Claims.xml","ref/dotnet/zh-hans/System.Security.Claims.xml","ref/dotnet/es/System.Security.Claims.xml","ref/net46/System.Security.Claims.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp","[Content_Types].xml"]},"System.Security.Principal/4.0.0":{"sha512":"FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==","type":"Package","files":["_rels/.rels","System.Security.Principal.nuspec","lib/dotnet/System.Security.Principal.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Security.Principal.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Security.Principal.dll","ref/dotnet/System.Security.Principal.xml","ref/dotnet/zh-hant/System.Security.Principal.xml","ref/dotnet/de/System.Security.Principal.xml","ref/dotnet/fr/System.Security.Principal.xml","ref/dotnet/it/System.Security.Principal.xml","ref/dotnet/ja/System.Security.Principal.xml","ref/dotnet/ko/System.Security.Principal.xml","ref/dotnet/ru/System.Security.Principal.xml","ref/dotnet/zh-hans/System.Security.Principal.xml","ref/dotnet/es/System.Security.Principal.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Security.Principal.dll","ref/netcore50/System.Security.Principal.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp","[Content_Types].xml"]},"System.Text.Encoding/4.0.10":{"sha512":"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==","type":"Package","files":["_rels/.rels","System.Text.Encoding.nuspec","lib/netcore50/System.Text.Encoding.dll","lib/DNXCore50/System.Text.Encoding.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.dll","ref/dotnet/System.Text.Encoding.xml","ref/dotnet/zh-hant/System.Text.Encoding.xml","ref/dotnet/de/System.Text.Encoding.xml","ref/dotnet/fr/System.Text.Encoding.xml","ref/dotnet/it/System.Text.Encoding.xml","ref/dotnet/ja/System.Text.Encoding.xml","ref/dotnet/ko/System.Text.Encoding.xml","ref/dotnet/ru/System.Text.Encoding.xml","ref/dotnet/zh-hans/System.Text.Encoding.xml","ref/dotnet/es/System.Text.Encoding.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp","[Content_Types].xml"]},"System.Text.Encoding.Extensions/4.0.10":{"sha512":"TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==","type":"Package","files":["_rels/.rels","System.Text.Encoding.Extensions.nuspec","lib/netcore50/System.Text.Encoding.Extensions.dll","lib/DNXCore50/System.Text.Encoding.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.Extensions.dll","ref/dotnet/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml","ref/dotnet/de/System.Text.Encoding.Extensions.xml","ref/dotnet/fr/System.Text.Encoding.Extensions.xml","ref/dotnet/it/System.Text.Encoding.Extensions.xml","ref/dotnet/ja/System.Text.Encoding.Extensions.xml","ref/dotnet/ko/System.Text.Encoding.Extensions.xml","ref/dotnet/ru/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml","ref/dotnet/es/System.Text.Encoding.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp","[Content_Types].xml"]},"System.Text.RegularExpressions/4.0.10":{"sha512":"0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==","type":"Package","files":["_rels/.rels","System.Text.RegularExpressions.nuspec","lib/dotnet/System.Text.RegularExpressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.RegularExpressions.dll","ref/dotnet/System.Text.RegularExpressions.xml","ref/dotnet/zh-hant/System.Text.RegularExpressions.xml","ref/dotnet/de/System.Text.RegularExpressions.xml","ref/dotnet/fr/System.Text.RegularExpressions.xml","ref/dotnet/it/System.Text.RegularExpressions.xml","ref/dotnet/ja/System.Text.RegularExpressions.xml","ref/dotnet/ko/System.Text.RegularExpressions.xml","ref/dotnet/ru/System.Text.RegularExpressions.xml","ref/dotnet/zh-hans/System.Text.RegularExpressions.xml","ref/dotnet/es/System.Text.RegularExpressions.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp","[Content_Types].xml"]},"System.Threading/4.0.10":{"sha512":"0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==","type":"Package","files":["_rels/.rels","System.Threading.nuspec","lib/DNXCore50/System.Threading.dll","lib/netcore50/System.Threading.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.dll","ref/dotnet/System.Threading.xml","ref/dotnet/zh-hant/System.Threading.xml","ref/dotnet/de/System.Threading.xml","ref/dotnet/fr/System.Threading.xml","ref/dotnet/it/System.Threading.xml","ref/dotnet/ja/System.Threading.xml","ref/dotnet/ko/System.Threading.xml","ref/dotnet/ru/System.Threading.xml","ref/dotnet/zh-hans/System.Threading.xml","ref/dotnet/es/System.Threading.xml","runtimes/win8-aot/lib/netcore50/System.Threading.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp","[Content_Types].xml"]},"System.Threading.Overlapped/4.0.0":{"sha512":"X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==","type":"Package","files":["_rels/.rels","System.Threading.Overlapped.nuspec","lib/netcore50/System.Threading.Overlapped.dll","lib/DNXCore50/System.Threading.Overlapped.dll","lib/net46/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.xml","ref/dotnet/zh-hant/System.Threading.Overlapped.xml","ref/dotnet/de/System.Threading.Overlapped.xml","ref/dotnet/fr/System.Threading.Overlapped.xml","ref/dotnet/it/System.Threading.Overlapped.xml","ref/dotnet/ja/System.Threading.Overlapped.xml","ref/dotnet/ko/System.Threading.Overlapped.xml","ref/dotnet/ru/System.Threading.Overlapped.xml","ref/dotnet/zh-hans/System.Threading.Overlapped.xml","ref/dotnet/es/System.Threading.Overlapped.xml","ref/net46/System.Threading.Overlapped.dll","package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks/4.0.10":{"sha512":"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.nuspec","lib/netcore50/System.Threading.Tasks.dll","lib/DNXCore50/System.Threading.Tasks.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.Tasks.dll","ref/dotnet/System.Threading.Tasks.xml","ref/dotnet/zh-hant/System.Threading.Tasks.xml","ref/dotnet/de/System.Threading.Tasks.xml","ref/dotnet/fr/System.Threading.Tasks.xml","ref/dotnet/it/System.Threading.Tasks.xml","ref/dotnet/ja/System.Threading.Tasks.xml","ref/dotnet/ko/System.Threading.Tasks.xml","ref/dotnet/ru/System.Threading.Tasks.xml","ref/dotnet/zh-hans/System.Threading.Tasks.xml","ref/dotnet/es/System.Threading.Tasks.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Dataflow/4.5.25":{"sha512":"Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Dataflow.nuspec","lib/dotnet/System.Threading.Tasks.Dataflow.dll","lib/dotnet/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll","package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Parallel/4.0.0":{"sha512":"GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Parallel.nuspec","lib/dotnet/System.Threading.Tasks.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Threading.Tasks.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Threading.Tasks.Parallel.dll","ref/dotnet/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml","ref/dotnet/de/System.Threading.Tasks.Parallel.xml","ref/dotnet/fr/System.Threading.Tasks.Parallel.xml","ref/dotnet/it/System.Threading.Tasks.Parallel.xml","ref/dotnet/ja/System.Threading.Tasks.Parallel.xml","ref/dotnet/ko/System.Threading.Tasks.Parallel.xml","ref/dotnet/ru/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml","ref/dotnet/es/System.Threading.Tasks.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Threading.Tasks.Parallel.dll","ref/netcore50/System.Threading.Tasks.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp","[Content_Types].xml"]},"System.Threading.Timer/4.0.0":{"sha512":"BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==","type":"Package","files":["_rels/.rels","System.Threading.Timer.nuspec","lib/netcore50/System.Threading.Timer.dll","lib/DNXCore50/System.Threading.Timer.dll","lib/net451/_._","lib/win81/_._","lib/wpa81/_._","ref/dotnet/System.Threading.Timer.dll","ref/dotnet/System.Threading.Timer.xml","ref/dotnet/zh-hant/System.Threading.Timer.xml","ref/dotnet/de/System.Threading.Timer.xml","ref/dotnet/fr/System.Threading.Timer.xml","ref/dotnet/it/System.Threading.Timer.xml","ref/dotnet/ja/System.Threading.Timer.xml","ref/dotnet/ko/System.Threading.Timer.xml","ref/dotnet/ru/System.Threading.Timer.xml","ref/dotnet/zh-hans/System.Threading.Timer.xml","ref/dotnet/es/System.Threading.Timer.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll","ref/net451/_._","ref/win81/_._","ref/netcore50/System.Threading.Timer.dll","ref/netcore50/System.Threading.Timer.xml","ref/wpa81/_._","package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp","[Content_Types].xml"]},"System.Xml.ReaderWriter/4.0.10":{"sha512":"VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==","type":"Package","files":["_rels/.rels","System.Xml.ReaderWriter.nuspec","lib/dotnet/System.Xml.ReaderWriter.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.ReaderWriter.dll","ref/dotnet/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml","ref/dotnet/de/System.Xml.ReaderWriter.xml","ref/dotnet/fr/System.Xml.ReaderWriter.xml","ref/dotnet/it/System.Xml.ReaderWriter.xml","ref/dotnet/ja/System.Xml.ReaderWriter.xml","ref/dotnet/ko/System.Xml.ReaderWriter.xml","ref/dotnet/ru/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml","ref/dotnet/es/System.Xml.ReaderWriter.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp","[Content_Types].xml"]},"System.Xml.XDocument/4.0.10":{"sha512":"+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==","type":"Package","files":["_rels/.rels","System.Xml.XDocument.nuspec","lib/dotnet/System.Xml.XDocument.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.XDocument.dll","ref/dotnet/System.Xml.XDocument.xml","ref/dotnet/zh-hant/System.Xml.XDocument.xml","ref/dotnet/de/System.Xml.XDocument.xml","ref/dotnet/fr/System.Xml.XDocument.xml","ref/dotnet/it/System.Xml.XDocument.xml","ref/dotnet/ja/System.Xml.XDocument.xml","ref/dotnet/ko/System.Xml.XDocument.xml","ref/dotnet/ru/System.Xml.XDocument.xml","ref/dotnet/zh-hans/System.Xml.XDocument.xml","ref/dotnet/es/System.Xml.XDocument.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp","[Content_Types].xml"]}},"projectFileDependencyGroups":{"":["Microsoft.NETCore >= 5.0.0","System.Console >= 4.0.0-beta-23412","Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123","Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0"],"DNXCore,Version=v5.0":[]}} {"age":30,"first":"John","last":"Smith","phoneNumbers":["425-000-1212","425-000-1213"],"address":{"street":"1MicrosoftWay","city":"Redmond","zip":98052},"IDs":[425,-70,9223372036854775000],"arrayWithObjects":["text",14,[],null,false,{},{"time":24},["1","2","3"]],"boolean":false,"null":null,"objectName":{"group":{"array":[false],"field":"simple","anotherFieldNum":5,"anotherFieldBool":true,"lastField":null}},"emptyObject":{}} @@ -217,7 +217,7 @@ tiline\"another\" String\\"],"str":"\"\""} ] - { "locked": false, "version": 1, "targets": { "DNXCore,Version=v5.0": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.NetworkInformation/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.NetworkInformation.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x64": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "native": { "runtimes/win7-x64/native/CoreConsole.exe": {} } }, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} }, "native": { "runtimes/win7-x64/native/clretwrc.dll": {}, "runtimes/win7-x64/native/coreclr.dll": {}, "runtimes/win7-x64/native/dbgshim.dll": {}, "runtimes/win7-x64/native/mscordaccore.dll": {}, "runtimes/win7-x64/native/mscordbi.dll": {}, "runtimes/win7-x64/native/mscorrc.debug.dll": {}, "runtimes/win7-x64/native/mscorrc.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.clrcompression-x64/4.0.0": { "native": { "runtimes/win7-x64/native/clrcompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x86": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.clrcompression-x86/4.0.0": { "native": { "runtimes/win7-x86/native/clrcompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } } }, "libraries": { "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.CSharp.nuspec", "lib/dotnet/Microsoft.CSharp.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.CSharp.dll", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.CSharp.dll", "ref/dotnet/Microsoft.CSharp.xml", "ref/dotnet/zh-hant/Microsoft.CSharp.xml", "ref/dotnet/de/Microsoft.CSharp.xml", "ref/dotnet/fr/Microsoft.CSharp.xml", "ref/dotnet/it/Microsoft.CSharp.xml", "ref/dotnet/ja/Microsoft.CSharp.xml", "ref/dotnet/ko/Microsoft.CSharp.xml", "ref/dotnet/ru/Microsoft.CSharp.xml", "ref/dotnet/zh-hans/Microsoft.CSharp.xml", "ref/dotnet/es/Microsoft.CSharp.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.CSharp.dll", "ref/netcore50/Microsoft.CSharp.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.nuspec", "_._", "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "sha512": "Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.ConsoleHost-x64.nuspec", "runtimes/win7-x64/native/CoreConsole.exe", "package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Platforms.nuspec", "runtime.json", "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", "runtimes/win7-x64/native/clretwrc.dll", "runtimes/win7-x64/native/coreclr.dll", "runtimes/win7-x64/native/dbgshim.dll", "runtimes/win7-x64/native/mscordaccore.dll", "runtimes/win7-x64/native/mscordbi.dll", "runtimes/win7-x64/native/mscorrc.debug.dll", "runtimes/win7-x64/native/mscorrc.dll", "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.nuspec", "runtime.json", "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": { "sha512": "32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.DNXCore.nuspec", "runtime.json", "package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp", "[Content_Types].xml" ] }, "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.VisualBasic.nuspec", "lib/dotnet/Microsoft.VisualBasic.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.VisualBasic.dll", "lib/wpa81/_._", "ref/dotnet/Microsoft.VisualBasic.dll", "ref/dotnet/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", "ref/dotnet/de/Microsoft.VisualBasic.xml", "ref/dotnet/fr/Microsoft.VisualBasic.xml", "ref/dotnet/it/Microsoft.VisualBasic.xml", "ref/dotnet/ja/Microsoft.VisualBasic.xml", "ref/dotnet/ko/Microsoft.VisualBasic.xml", "ref/dotnet/ru/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", "ref/dotnet/es/Microsoft.VisualBasic.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.VisualBasic.dll", "ref/netcore50/Microsoft.VisualBasic.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", "[Content_Types].xml" ] }, "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.Win32.Primitives.nuspec", "lib/dotnet/Microsoft.Win32.Primitives.dll", "lib/net46/Microsoft.Win32.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.Win32.Primitives.dll", "ref/dotnet/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", "ref/dotnet/de/Microsoft.Win32.Primitives.xml", "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", "ref/dotnet/it/Microsoft.Win32.Primitives.xml", "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", "ref/dotnet/es/Microsoft.Win32.Primitives.xml", "ref/net46/Microsoft.Win32.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", "[Content_Types].xml" ] }, "runtime.win7.System.Console/4.0.0-beta-23412": { "sha512": "j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==", "type": "Package", "files": [ "_rels/.rels", "runtime.win7.System.Console.nuspec", "runtimes/win7/lib/dotnet/System.Console.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp", "[Content_Types].xml" ] }, "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "Package", "files": [ "_rels/.rels", "System.AppContext.nuspec", "lib/netcore50/System.AppContext.dll", "lib/DNXCore50/System.AppContext.dll", "lib/net46/System.AppContext.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.AppContext.dll", "ref/dotnet/System.AppContext.xml", "ref/dotnet/zh-hant/System.AppContext.xml", "ref/dotnet/de/System.AppContext.xml", "ref/dotnet/fr/System.AppContext.xml", "ref/dotnet/it/System.AppContext.xml", "ref/dotnet/ja/System.AppContext.xml", "ref/dotnet/ko/System.AppContext.xml", "ref/dotnet/ru/System.AppContext.xml", "ref/dotnet/zh-hans/System.AppContext.xml", "ref/dotnet/es/System.AppContext.xml", "ref/net46/System.AppContext.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", "[Content_Types].xml" ] }, "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.nuspec", "lib/netcore50/System.Collections.dll", "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.dll", "ref/dotnet/System.Collections.xml", "ref/dotnet/zh-hant/System.Collections.xml", "ref/dotnet/de/System.Collections.xml", "ref/dotnet/fr/System.Collections.xml", "ref/dotnet/it/System.Collections.xml", "ref/dotnet/ja/System.Collections.xml", "ref/dotnet/ko/System.Collections.xml", "ref/dotnet/ru/System.Collections.xml", "ref/dotnet/zh-hans/System.Collections.xml", "ref/dotnet/es/System.Collections.xml", "runtimes/win8-aot/lib/netcore50/System.Collections.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Concurrent.nuspec", "lib/dotnet/System.Collections.Concurrent.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.Concurrent.dll", "ref/dotnet/System.Collections.Concurrent.xml", "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", "ref/dotnet/de/System.Collections.Concurrent.xml", "ref/dotnet/fr/System.Collections.Concurrent.xml", "ref/dotnet/it/System.Collections.Concurrent.xml", "ref/dotnet/ja/System.Collections.Concurrent.xml", "ref/dotnet/ko/System.Collections.Concurrent.xml", "ref/dotnet/ru/System.Collections.Concurrent.xml", "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", "ref/dotnet/es/System.Collections.Concurrent.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", "[Content_Types].xml" ] }, "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.NonGeneric.nuspec", "lib/dotnet/System.Collections.NonGeneric.dll", "lib/net46/System.Collections.NonGeneric.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.NonGeneric.dll", "ref/dotnet/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", "ref/dotnet/de/System.Collections.NonGeneric.xml", "ref/dotnet/fr/System.Collections.NonGeneric.xml", "ref/dotnet/it/System.Collections.NonGeneric.xml", "ref/dotnet/ja/System.Collections.NonGeneric.xml", "ref/dotnet/ko/System.Collections.NonGeneric.xml", "ref/dotnet/ru/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", "ref/dotnet/es/System.Collections.NonGeneric.xml", "ref/net46/System.Collections.NonGeneric.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.nuspec", "lib/dotnet/System.ComponentModel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.ComponentModel.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.ComponentModel.dll", "ref/dotnet/System.ComponentModel.xml", "ref/dotnet/zh-hant/System.ComponentModel.xml", "ref/dotnet/de/System.ComponentModel.xml", "ref/dotnet/fr/System.ComponentModel.xml", "ref/dotnet/it/System.ComponentModel.xml", "ref/dotnet/ja/System.ComponentModel.xml", "ref/dotnet/ko/System.ComponentModel.xml", "ref/dotnet/ru/System.ComponentModel.xml", "ref/dotnet/zh-hans/System.ComponentModel.xml", "ref/dotnet/es/System.ComponentModel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.ComponentModel.dll", "ref/netcore50/System.ComponentModel.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.Annotations.nuspec", "lib/dotnet/System.ComponentModel.Annotations.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.Annotations.dll", "ref/dotnet/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", "ref/dotnet/de/System.ComponentModel.Annotations.xml", "ref/dotnet/fr/System.ComponentModel.Annotations.xml", "ref/dotnet/it/System.ComponentModel.Annotations.xml", "ref/dotnet/ja/System.ComponentModel.Annotations.xml", "ref/dotnet/ko/System.ComponentModel.Annotations.xml", "ref/dotnet/ru/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", "ref/dotnet/es/System.ComponentModel.Annotations.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.EventBasedAsync.nuspec", "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", "[Content_Types].xml" ] }, "System.Console/4.0.0-beta-23412": { "sha512": "D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==", "type": "Package", "files": [ "_rels/.rels", "System.Console.nuspec", "lib/net46/System.Console.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Console.dll", "ref/dotnet/System.Console.xml", "ref/dotnet/zh-hant/System.Console.xml", "ref/dotnet/de/System.Console.xml", "ref/dotnet/fr/System.Console.xml", "ref/dotnet/it/System.Console.xml", "ref/dotnet/ja/System.Console.xml", "ref/dotnet/ko/System.Console.xml", "ref/dotnet/ru/System.Console.xml", "ref/dotnet/zh-hans/System.Console.xml", "ref/dotnet/es/System.Console.xml", "ref/net46/System.Console.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Contracts.nuspec", "lib/netcore50/System.Diagnostics.Contracts.dll", "lib/DNXCore50/System.Diagnostics.Contracts.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Contracts.dll", "ref/dotnet/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", "ref/dotnet/de/System.Diagnostics.Contracts.xml", "ref/dotnet/fr/System.Diagnostics.Contracts.xml", "ref/dotnet/it/System.Diagnostics.Contracts.xml", "ref/dotnet/ja/System.Diagnostics.Contracts.xml", "ref/dotnet/ko/System.Diagnostics.Contracts.xml", "ref/dotnet/ru/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", "ref/dotnet/es/System.Diagnostics.Contracts.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Contracts.dll", "ref/netcore50/System.Diagnostics.Contracts.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Debug.nuspec", "lib/DNXCore50/System.Diagnostics.Debug.dll", "lib/netcore50/System.Diagnostics.Debug.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Debug.dll", "ref/dotnet/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", "ref/dotnet/de/System.Diagnostics.Debug.xml", "ref/dotnet/fr/System.Diagnostics.Debug.xml", "ref/dotnet/it/System.Diagnostics.Debug.xml", "ref/dotnet/ja/System.Diagnostics.Debug.xml", "ref/dotnet/ko/System.Diagnostics.Debug.xml", "ref/dotnet/ru/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", "ref/dotnet/es/System.Diagnostics.Debug.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.StackTrace.nuspec", "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/netcore50/System.Diagnostics.StackTrace.dll", "lib/net46/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.StackTrace.dll", "ref/dotnet/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", "ref/dotnet/de/System.Diagnostics.StackTrace.xml", "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", "ref/dotnet/it/System.Diagnostics.StackTrace.xml", "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", "ref/dotnet/es/System.Diagnostics.StackTrace.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", "ref/net46/System.Diagnostics.StackTrace.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tools.nuspec", "lib/DNXCore50/System.Diagnostics.Tools.dll", "lib/netcore50/System.Diagnostics.Tools.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Tools.dll", "ref/dotnet/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", "ref/dotnet/de/System.Diagnostics.Tools.xml", "ref/dotnet/fr/System.Diagnostics.Tools.xml", "ref/dotnet/it/System.Diagnostics.Tools.xml", "ref/dotnet/ja/System.Diagnostics.Tools.xml", "ref/dotnet/ko/System.Diagnostics.Tools.xml", "ref/dotnet/ru/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", "ref/dotnet/es/System.Diagnostics.Tools.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Tools.dll", "ref/netcore50/System.Diagnostics.Tools.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tracing.nuspec", "lib/netcore50/System.Diagnostics.Tracing.dll", "lib/DNXCore50/System.Diagnostics.Tracing.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Tracing.dll", "ref/dotnet/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", "ref/dotnet/de/System.Diagnostics.Tracing.xml", "ref/dotnet/fr/System.Diagnostics.Tracing.xml", "ref/dotnet/it/System.Diagnostics.Tracing.xml", "ref/dotnet/ja/System.Diagnostics.Tracing.xml", "ref/dotnet/ko/System.Diagnostics.Tracing.xml", "ref/dotnet/ru/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", "ref/dotnet/es/System.Diagnostics.Tracing.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", "[Content_Types].xml" ] }, "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "Package", "files": [ "_rels/.rels", "System.Dynamic.Runtime.nuspec", "lib/netcore50/System.Dynamic.Runtime.dll", "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Dynamic.Runtime.dll", "ref/dotnet/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", "ref/dotnet/de/System.Dynamic.Runtime.xml", "ref/dotnet/fr/System.Dynamic.Runtime.xml", "ref/dotnet/it/System.Dynamic.Runtime.xml", "ref/dotnet/ja/System.Dynamic.Runtime.xml", "ref/dotnet/ko/System.Dynamic.Runtime.xml", "ref/dotnet/ru/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", "ref/dotnet/es/System.Dynamic.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", "[Content_Types].xml" ] }, "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.nuspec", "lib/netcore50/System.Globalization.dll", "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.dll", "ref/dotnet/System.Globalization.xml", "ref/dotnet/zh-hant/System.Globalization.xml", "ref/dotnet/de/System.Globalization.xml", "ref/dotnet/fr/System.Globalization.xml", "ref/dotnet/it/System.Globalization.xml", "ref/dotnet/ja/System.Globalization.xml", "ref/dotnet/ko/System.Globalization.xml", "ref/dotnet/ru/System.Globalization.xml", "ref/dotnet/zh-hans/System.Globalization.xml", "ref/dotnet/es/System.Globalization.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Calendars.nuspec", "lib/netcore50/System.Globalization.Calendars.dll", "lib/DNXCore50/System.Globalization.Calendars.dll", "lib/net46/System.Globalization.Calendars.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Calendars.dll", "ref/dotnet/System.Globalization.Calendars.xml", "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", "ref/dotnet/de/System.Globalization.Calendars.xml", "ref/dotnet/fr/System.Globalization.Calendars.xml", "ref/dotnet/it/System.Globalization.Calendars.xml", "ref/dotnet/ja/System.Globalization.Calendars.xml", "ref/dotnet/ko/System.Globalization.Calendars.xml", "ref/dotnet/ru/System.Globalization.Calendars.xml", "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", "ref/dotnet/es/System.Globalization.Calendars.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", "ref/net46/System.Globalization.Calendars.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Extensions.nuspec", "lib/dotnet/System.Globalization.Extensions.dll", "lib/net46/System.Globalization.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Extensions.dll", "ref/dotnet/System.Globalization.Extensions.xml", "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", "ref/dotnet/de/System.Globalization.Extensions.xml", "ref/dotnet/fr/System.Globalization.Extensions.xml", "ref/dotnet/it/System.Globalization.Extensions.xml", "ref/dotnet/ja/System.Globalization.Extensions.xml", "ref/dotnet/ko/System.Globalization.Extensions.xml", "ref/dotnet/ru/System.Globalization.Extensions.xml", "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", "ref/dotnet/es/System.Globalization.Extensions.xml", "ref/net46/System.Globalization.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", "[Content_Types].xml" ] }, "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.nuspec", "lib/netcore50/System.IO.dll", "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.dll", "ref/dotnet/System.IO.xml", "ref/dotnet/zh-hant/System.IO.xml", "ref/dotnet/de/System.IO.xml", "ref/dotnet/fr/System.IO.xml", "ref/dotnet/it/System.IO.xml", "ref/dotnet/ja/System.IO.xml", "ref/dotnet/ko/System.IO.xml", "ref/dotnet/ru/System.IO.xml", "ref/dotnet/zh-hans/System.IO.xml", "ref/dotnet/es/System.IO.xml", "runtimes/win8-aot/lib/netcore50/System.IO.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.nuspec", "lib/dotnet/System.IO.Compression.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.IO.Compression.dll", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.dll", "ref/dotnet/System.IO.Compression.xml", "ref/dotnet/zh-hant/System.IO.Compression.xml", "ref/dotnet/de/System.IO.Compression.xml", "ref/dotnet/fr/System.IO.Compression.xml", "ref/dotnet/it/System.IO.Compression.xml", "ref/dotnet/ja/System.IO.Compression.xml", "ref/dotnet/ko/System.IO.Compression.xml", "ref/dotnet/ru/System.IO.Compression.xml", "ref/dotnet/zh-hans/System.IO.Compression.xml", "ref/dotnet/es/System.IO.Compression.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.IO.Compression.dll", "ref/netcore50/System.IO.Compression.xml", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.clrcompression-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.clrcompression-x64.nuspec", "runtimes/win7-x64/native/clrcompression.dll", "runtimes/win10-x64/native/ClrCompression.dll", "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.clrcompression-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.clrcompression-x86.nuspec", "runtimes/win7-x86/native/clrcompression.dll", "runtimes/win10-x86/native/ClrCompression.dll", "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.ZipFile.nuspec", "lib/dotnet/System.IO.Compression.ZipFile.dll", "lib/net46/System.IO.Compression.ZipFile.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.ZipFile.dll", "ref/dotnet/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", "ref/dotnet/de/System.IO.Compression.ZipFile.xml", "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", "ref/dotnet/it/System.IO.Compression.ZipFile.xml", "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", "ref/dotnet/es/System.IO.Compression.ZipFile.xml", "ref/net46/System.IO.Compression.ZipFile.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.nuspec", "lib/DNXCore50/System.IO.FileSystem.dll", "lib/netcore50/System.IO.FileSystem.dll", "lib/net46/System.IO.FileSystem.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.dll", "ref/dotnet/System.IO.FileSystem.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.xml", "ref/dotnet/de/System.IO.FileSystem.xml", "ref/dotnet/fr/System.IO.FileSystem.xml", "ref/dotnet/it/System.IO.FileSystem.xml", "ref/dotnet/ja/System.IO.FileSystem.xml", "ref/dotnet/ko/System.IO.FileSystem.xml", "ref/dotnet/ru/System.IO.FileSystem.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.xml", "ref/dotnet/es/System.IO.FileSystem.xml", "ref/net46/System.IO.FileSystem.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.Primitives.nuspec", "lib/dotnet/System.IO.FileSystem.Primitives.dll", "lib/net46/System.IO.FileSystem.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.Primitives.dll", "ref/dotnet/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", "[Content_Types].xml" ] }, "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.UnmanagedMemoryStream.nuspec", "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", "lib/net46/System.IO.UnmanagedMemoryStream.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", "ref/net46/System.IO.UnmanagedMemoryStream.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", "[Content_Types].xml" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.dll", "ref/dotnet/System.Linq.xml", "ref/dotnet/zh-hant/System.Linq.xml", "ref/dotnet/de/System.Linq.xml", "ref/dotnet/fr/System.Linq.xml", "ref/dotnet/it/System.Linq.xml", "ref/dotnet/ja/System.Linq.xml", "ref/dotnet/ko/System.Linq.xml", "ref/dotnet/ru/System.Linq.xml", "ref/dotnet/zh-hans/System.Linq.xml", "ref/dotnet/es/System.Linq.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Expressions.nuspec", "lib/netcore50/System.Linq.Expressions.dll", "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Linq.Expressions.dll", "ref/dotnet/System.Linq.Expressions.xml", "ref/dotnet/zh-hant/System.Linq.Expressions.xml", "ref/dotnet/de/System.Linq.Expressions.xml", "ref/dotnet/fr/System.Linq.Expressions.xml", "ref/dotnet/it/System.Linq.Expressions.xml", "ref/dotnet/ja/System.Linq.Expressions.xml", "ref/dotnet/ko/System.Linq.Expressions.xml", "ref/dotnet/ru/System.Linq.Expressions.xml", "ref/dotnet/zh-hans/System.Linq.Expressions.xml", "ref/dotnet/es/System.Linq.Expressions.xml", "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Parallel.nuspec", "lib/dotnet/System.Linq.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Linq.Parallel.dll", "ref/dotnet/System.Linq.Parallel.xml", "ref/dotnet/zh-hant/System.Linq.Parallel.xml", "ref/dotnet/de/System.Linq.Parallel.xml", "ref/dotnet/fr/System.Linq.Parallel.xml", "ref/dotnet/it/System.Linq.Parallel.xml", "ref/dotnet/ja/System.Linq.Parallel.xml", "ref/dotnet/ko/System.Linq.Parallel.xml", "ref/dotnet/ru/System.Linq.Parallel.xml", "ref/dotnet/zh-hans/System.Linq.Parallel.xml", "ref/dotnet/es/System.Linq.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Parallel.dll", "ref/netcore50/System.Linq.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Queryable.nuspec", "lib/dotnet/System.Linq.Queryable.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Queryable.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.Queryable.dll", "ref/dotnet/System.Linq.Queryable.xml", "ref/dotnet/zh-hant/System.Linq.Queryable.xml", "ref/dotnet/de/System.Linq.Queryable.xml", "ref/dotnet/fr/System.Linq.Queryable.xml", "ref/dotnet/it/System.Linq.Queryable.xml", "ref/dotnet/ja/System.Linq.Queryable.xml", "ref/dotnet/ko/System.Linq.Queryable.xml", "ref/dotnet/ru/System.Linq.Queryable.xml", "ref/dotnet/zh-hans/System.Linq.Queryable.xml", "ref/dotnet/es/System.Linq.Queryable.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Queryable.dll", "ref/netcore50/System.Linq.Queryable.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", "[Content_Types].xml" ] }, "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Http.nuspec", "lib/netcore50/System.Net.Http.dll", "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", "lib/win8/_._", "lib/wpa81/_._", "ref/dotnet/System.Net.Http.dll", "ref/dotnet/System.Net.Http.xml", "ref/dotnet/zh-hant/System.Net.Http.xml", "ref/dotnet/de/System.Net.Http.xml", "ref/dotnet/fr/System.Net.Http.xml", "ref/dotnet/it/System.Net.Http.xml", "ref/dotnet/ja/System.Net.Http.xml", "ref/dotnet/ko/System.Net.Http.xml", "ref/dotnet/ru/System.Net.Http.xml", "ref/dotnet/zh-hans/System.Net.Http.xml", "ref/dotnet/es/System.Net.Http.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", "[Content_Types].xml" ] }, "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "Package", "files": [ "_rels/.rels", "System.Net.NetworkInformation.nuspec", "lib/netcore50/System.Net.NetworkInformation.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.NetworkInformation.dll", "ref/dotnet/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", "ref/dotnet/de/System.Net.NetworkInformation.xml", "ref/dotnet/fr/System.Net.NetworkInformation.xml", "ref/dotnet/it/System.Net.NetworkInformation.xml", "ref/dotnet/ja/System.Net.NetworkInformation.xml", "ref/dotnet/ko/System.Net.NetworkInformation.xml", "ref/dotnet/ru/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", "ref/dotnet/es/System.Net.NetworkInformation.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.NetworkInformation.dll", "ref/netcore50/System.Net.NetworkInformation.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", "[Content_Types].xml" ] }, "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Primitives.nuspec", "lib/netcore50/System.Net.Primitives.dll", "lib/DNXCore50/System.Net.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.Primitives.dll", "ref/dotnet/System.Net.Primitives.xml", "ref/dotnet/zh-hant/System.Net.Primitives.xml", "ref/dotnet/de/System.Net.Primitives.xml", "ref/dotnet/fr/System.Net.Primitives.xml", "ref/dotnet/it/System.Net.Primitives.xml", "ref/dotnet/ja/System.Net.Primitives.xml", "ref/dotnet/ko/System.Net.Primitives.xml", "ref/dotnet/ru/System.Net.Primitives.xml", "ref/dotnet/zh-hans/System.Net.Primitives.xml", "ref/dotnet/es/System.Net.Primitives.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", "[Content_Types].xml" ] }, "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "Package", "files": [ "_rels/.rels", "System.Numerics.Vectors.nuspec", "lib/dotnet/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", "[Content_Types].xml" ] }, "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "Package", "files": [ "_rels/.rels", "System.ObjectModel.nuspec", "lib/dotnet/System.ObjectModel.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ObjectModel.dll", "ref/dotnet/System.ObjectModel.xml", "ref/dotnet/zh-hant/System.ObjectModel.xml", "ref/dotnet/de/System.ObjectModel.xml", "ref/dotnet/fr/System.ObjectModel.xml", "ref/dotnet/it/System.ObjectModel.xml", "ref/dotnet/ja/System.ObjectModel.xml", "ref/dotnet/ko/System.ObjectModel.xml", "ref/dotnet/ru/System.ObjectModel.xml", "ref/dotnet/zh-hans/System.ObjectModel.xml", "ref/dotnet/es/System.ObjectModel.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", "[Content_Types].xml" ] }, "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Networking.nuspec", "lib/netcore50/System.Private.Networking.dll", "lib/DNXCore50/System.Private.Networking.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", "[Content_Types].xml" ] }, "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Uri.nuspec", "lib/netcore50/System.Private.Uri.dll", "lib/DNXCore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", "[Content_Types].xml" ] }, "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.nuspec", "lib/netcore50/System.Reflection.dll", "lib/DNXCore50/System.Reflection.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.dll", "ref/dotnet/System.Reflection.xml", "ref/dotnet/zh-hant/System.Reflection.xml", "ref/dotnet/de/System.Reflection.xml", "ref/dotnet/fr/System.Reflection.xml", "ref/dotnet/it/System.Reflection.xml", "ref/dotnet/ja/System.Reflection.xml", "ref/dotnet/ko/System.Reflection.xml", "ref/dotnet/ru/System.Reflection.xml", "ref/dotnet/zh-hans/System.Reflection.xml", "ref/dotnet/es/System.Reflection.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.DispatchProxy.nuspec", "lib/net46/System.Reflection.DispatchProxy.dll", "lib/DNXCore50/System.Reflection.DispatchProxy.dll", "lib/netcore50/System.Reflection.DispatchProxy.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.DispatchProxy.dll", "ref/dotnet/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", "ref/dotnet/de/System.Reflection.DispatchProxy.xml", "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", "ref/dotnet/it/System.Reflection.DispatchProxy.xml", "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", "ref/dotnet/es/System.Reflection.DispatchProxy.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.nuspec", "lib/DNXCore50/System.Reflection.Emit.dll", "lib/netcore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", "lib/net45/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.Emit.dll", "ref/dotnet/System.Reflection.Emit.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.xml", "ref/dotnet/de/System.Reflection.Emit.xml", "ref/dotnet/fr/System.Reflection.Emit.xml", "ref/dotnet/it/System.Reflection.Emit.xml", "ref/dotnet/ja/System.Reflection.Emit.xml", "ref/dotnet/ko/System.Reflection.Emit.xml", "ref/dotnet/ru/System.Reflection.Emit.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.xml", "ref/dotnet/es/System.Reflection.Emit.xml", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.ILGeneration.nuspec", "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.Lightweight.nuspec", "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.Lightweight.dll", "ref/dotnet/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Extensions.nuspec", "lib/netcore50/System.Reflection.Extensions.dll", "lib/DNXCore50/System.Reflection.Extensions.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Extensions.dll", "ref/dotnet/System.Reflection.Extensions.xml", "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", "ref/dotnet/de/System.Reflection.Extensions.xml", "ref/dotnet/fr/System.Reflection.Extensions.xml", "ref/dotnet/it/System.Reflection.Extensions.xml", "ref/dotnet/ja/System.Reflection.Extensions.xml", "ref/dotnet/ko/System.Reflection.Extensions.xml", "ref/dotnet/ru/System.Reflection.Extensions.xml", "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", "ref/dotnet/es/System.Reflection.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Extensions.dll", "ref/netcore50/System.Reflection.Extensions.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Metadata.nuspec", "lib/dotnet/System.Reflection.Metadata.dll", "lib/dotnet/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.dll", "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Primitives.nuspec", "lib/netcore50/System.Reflection.Primitives.dll", "lib/DNXCore50/System.Reflection.Primitives.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Primitives.dll", "ref/dotnet/System.Reflection.Primitives.xml", "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", "ref/dotnet/de/System.Reflection.Primitives.xml", "ref/dotnet/fr/System.Reflection.Primitives.xml", "ref/dotnet/it/System.Reflection.Primitives.xml", "ref/dotnet/ja/System.Reflection.Primitives.xml", "ref/dotnet/ko/System.Reflection.Primitives.xml", "ref/dotnet/ru/System.Reflection.Primitives.xml", "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", "ref/dotnet/es/System.Reflection.Primitives.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Primitives.dll", "ref/netcore50/System.Reflection.Primitives.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.TypeExtensions.nuspec", "lib/netcore50/System.Reflection.TypeExtensions.dll", "lib/DNXCore50/System.Reflection.TypeExtensions.dll", "lib/net46/System.Reflection.TypeExtensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.TypeExtensions.dll", "ref/dotnet/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", "ref/dotnet/de/System.Reflection.TypeExtensions.xml", "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", "ref/dotnet/it/System.Reflection.TypeExtensions.xml", "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", "ref/dotnet/es/System.Reflection.TypeExtensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", "ref/net46/System.Reflection.TypeExtensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", "[Content_Types].xml" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "Package", "files": [ "_rels/.rels", "System.Resources.ResourceManager.nuspec", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Resources.ResourceManager.dll", "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", "ref/dotnet/de/System.Resources.ResourceManager.xml", "ref/dotnet/fr/System.Resources.ResourceManager.xml", "ref/dotnet/it/System.Resources.ResourceManager.xml", "ref/dotnet/ja/System.Resources.ResourceManager.xml", "ref/dotnet/ko/System.Resources.ResourceManager.xml", "ref/dotnet/ru/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet/es/System.Resources.ResourceManager.xml", "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Resources.ResourceManager.dll", "ref/netcore50/System.Resources.ResourceManager.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", "[Content_Types].xml" ] }, "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.nuspec", "lib/netcore50/System.Runtime.dll", "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.dll", "ref/dotnet/System.Runtime.xml", "ref/dotnet/zh-hant/System.Runtime.xml", "ref/dotnet/de/System.Runtime.xml", "ref/dotnet/fr/System.Runtime.xml", "ref/dotnet/it/System.Runtime.xml", "ref/dotnet/ja/System.Runtime.xml", "ref/dotnet/ko/System.Runtime.xml", "ref/dotnet/ru/System.Runtime.xml", "ref/dotnet/zh-hans/System.Runtime.xml", "ref/dotnet/es/System.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Extensions.nuspec", "lib/netcore50/System.Runtime.Extensions.dll", "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Extensions.dll", "ref/dotnet/System.Runtime.Extensions.xml", "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", "ref/dotnet/de/System.Runtime.Extensions.xml", "ref/dotnet/fr/System.Runtime.Extensions.xml", "ref/dotnet/it/System.Runtime.Extensions.xml", "ref/dotnet/ja/System.Runtime.Extensions.xml", "ref/dotnet/ko/System.Runtime.Extensions.xml", "ref/dotnet/ru/System.Runtime.Extensions.xml", "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", "ref/dotnet/es/System.Runtime.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Handles.nuspec", "lib/DNXCore50/System.Runtime.Handles.dll", "lib/netcore50/System.Runtime.Handles.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Handles.dll", "ref/dotnet/System.Runtime.Handles.xml", "ref/dotnet/zh-hant/System.Runtime.Handles.xml", "ref/dotnet/de/System.Runtime.Handles.xml", "ref/dotnet/fr/System.Runtime.Handles.xml", "ref/dotnet/it/System.Runtime.Handles.xml", "ref/dotnet/ja/System.Runtime.Handles.xml", "ref/dotnet/ko/System.Runtime.Handles.xml", "ref/dotnet/ru/System.Runtime.Handles.xml", "ref/dotnet/zh-hans/System.Runtime.Handles.xml", "ref/dotnet/es/System.Runtime.Handles.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.InteropServices.nuspec", "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/netcore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.InteropServices.dll", "ref/dotnet/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", "ref/dotnet/de/System.Runtime.InteropServices.xml", "ref/dotnet/fr/System.Runtime.InteropServices.xml", "ref/dotnet/it/System.Runtime.InteropServices.xml", "ref/dotnet/ja/System.Runtime.InteropServices.xml", "ref/dotnet/ko/System.Runtime.InteropServices.xml", "ref/dotnet/ru/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", "ref/dotnet/es/System.Runtime.InteropServices.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Numerics.nuspec", "lib/dotnet/System.Runtime.Numerics.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Runtime.Numerics.dll", "lib/wpa81/_._", "ref/dotnet/System.Runtime.Numerics.dll", "ref/dotnet/System.Runtime.Numerics.xml", "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", "ref/dotnet/de/System.Runtime.Numerics.xml", "ref/dotnet/fr/System.Runtime.Numerics.xml", "ref/dotnet/it/System.Runtime.Numerics.xml", "ref/dotnet/ja/System.Runtime.Numerics.xml", "ref/dotnet/ko/System.Runtime.Numerics.xml", "ref/dotnet/ru/System.Runtime.Numerics.xml", "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", "ref/dotnet/es/System.Runtime.Numerics.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Runtime.Numerics.dll", "ref/netcore50/System.Runtime.Numerics.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", "[Content_Types].xml" ] }, "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Claims.nuspec", "lib/dotnet/System.Security.Claims.dll", "lib/net46/System.Security.Claims.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Security.Claims.dll", "ref/dotnet/System.Security.Claims.xml", "ref/dotnet/zh-hant/System.Security.Claims.xml", "ref/dotnet/de/System.Security.Claims.xml", "ref/dotnet/fr/System.Security.Claims.xml", "ref/dotnet/it/System.Security.Claims.xml", "ref/dotnet/ja/System.Security.Claims.xml", "ref/dotnet/ko/System.Security.Claims.xml", "ref/dotnet/ru/System.Security.Claims.xml", "ref/dotnet/zh-hans/System.Security.Claims.xml", "ref/dotnet/es/System.Security.Claims.xml", "ref/net46/System.Security.Claims.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", "[Content_Types].xml" ] }, "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Principal.nuspec", "lib/dotnet/System.Security.Principal.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Security.Principal.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Security.Principal.dll", "ref/dotnet/System.Security.Principal.xml", "ref/dotnet/zh-hant/System.Security.Principal.xml", "ref/dotnet/de/System.Security.Principal.xml", "ref/dotnet/fr/System.Security.Principal.xml", "ref/dotnet/it/System.Security.Principal.xml", "ref/dotnet/ja/System.Security.Principal.xml", "ref/dotnet/ko/System.Security.Principal.xml", "ref/dotnet/ru/System.Security.Principal.xml", "ref/dotnet/zh-hans/System.Security.Principal.xml", "ref/dotnet/es/System.Security.Principal.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Security.Principal.dll", "ref/netcore50/System.Security.Principal.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.nuspec", "lib/netcore50/System.Text.Encoding.dll", "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.dll", "ref/dotnet/System.Text.Encoding.xml", "ref/dotnet/zh-hant/System.Text.Encoding.xml", "ref/dotnet/de/System.Text.Encoding.xml", "ref/dotnet/fr/System.Text.Encoding.xml", "ref/dotnet/it/System.Text.Encoding.xml", "ref/dotnet/ja/System.Text.Encoding.xml", "ref/dotnet/ko/System.Text.Encoding.xml", "ref/dotnet/ru/System.Text.Encoding.xml", "ref/dotnet/zh-hans/System.Text.Encoding.xml", "ref/dotnet/es/System.Text.Encoding.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.Extensions.nuspec", "lib/netcore50/System.Text.Encoding.Extensions.dll", "lib/DNXCore50/System.Text.Encoding.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.Extensions.dll", "ref/dotnet/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", "ref/dotnet/de/System.Text.Encoding.Extensions.xml", "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", "ref/dotnet/it/System.Text.Encoding.Extensions.xml", "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", "ref/dotnet/es/System.Text.Encoding.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", "[Content_Types].xml" ] }, "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "Package", "files": [ "_rels/.rels", "System.Text.RegularExpressions.nuspec", "lib/dotnet/System.Text.RegularExpressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.RegularExpressions.dll", "ref/dotnet/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", "ref/dotnet/de/System.Text.RegularExpressions.xml", "ref/dotnet/fr/System.Text.RegularExpressions.xml", "ref/dotnet/it/System.Text.RegularExpressions.xml", "ref/dotnet/ja/System.Text.RegularExpressions.xml", "ref/dotnet/ko/System.Text.RegularExpressions.xml", "ref/dotnet/ru/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", "ref/dotnet/es/System.Text.RegularExpressions.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", "[Content_Types].xml" ] }, "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.nuspec", "lib/DNXCore50/System.Threading.dll", "lib/netcore50/System.Threading.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.dll", "ref/dotnet/System.Threading.xml", "ref/dotnet/zh-hant/System.Threading.xml", "ref/dotnet/de/System.Threading.xml", "ref/dotnet/fr/System.Threading.xml", "ref/dotnet/it/System.Threading.xml", "ref/dotnet/ja/System.Threading.xml", "ref/dotnet/ko/System.Threading.xml", "ref/dotnet/ru/System.Threading.xml", "ref/dotnet/zh-hans/System.Threading.xml", "ref/dotnet/es/System.Threading.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Overlapped.nuspec", "lib/netcore50/System.Threading.Overlapped.dll", "lib/DNXCore50/System.Threading.Overlapped.dll", "lib/net46/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.xml", "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", "ref/dotnet/de/System.Threading.Overlapped.xml", "ref/dotnet/fr/System.Threading.Overlapped.xml", "ref/dotnet/it/System.Threading.Overlapped.xml", "ref/dotnet/ja/System.Threading.Overlapped.xml", "ref/dotnet/ko/System.Threading.Overlapped.xml", "ref/dotnet/ru/System.Threading.Overlapped.xml", "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", "ref/dotnet/es/System.Threading.Overlapped.xml", "ref/net46/System.Threading.Overlapped.dll", "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.nuspec", "lib/netcore50/System.Threading.Tasks.dll", "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.Tasks.dll", "ref/dotnet/System.Threading.Tasks.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.xml", "ref/dotnet/de/System.Threading.Tasks.xml", "ref/dotnet/fr/System.Threading.Tasks.xml", "ref/dotnet/it/System.Threading.Tasks.xml", "ref/dotnet/ja/System.Threading.Tasks.xml", "ref/dotnet/ko/System.Threading.Tasks.xml", "ref/dotnet/ru/System.Threading.Tasks.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.xml", "ref/dotnet/es/System.Threading.Tasks.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Dataflow.nuspec", "lib/dotnet/System.Threading.Tasks.Dataflow.dll", "lib/dotnet/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Parallel.nuspec", "lib/dotnet/System.Threading.Tasks.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Threading.Tasks.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Threading.Tasks.Parallel.dll", "ref/dotnet/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Threading.Tasks.Parallel.dll", "ref/netcore50/System.Threading.Tasks.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Timer.nuspec", "lib/netcore50/System.Threading.Timer.dll", "lib/DNXCore50/System.Threading.Timer.dll", "lib/net451/_._", "lib/win81/_._", "lib/wpa81/_._", "ref/dotnet/System.Threading.Timer.dll", "ref/dotnet/System.Threading.Timer.xml", "ref/dotnet/zh-hant/System.Threading.Timer.xml", "ref/dotnet/de/System.Threading.Timer.xml", "ref/dotnet/fr/System.Threading.Timer.xml", "ref/dotnet/it/System.Threading.Timer.xml", "ref/dotnet/ja/System.Threading.Timer.xml", "ref/dotnet/ko/System.Threading.Timer.xml", "ref/dotnet/ru/System.Threading.Timer.xml", "ref/dotnet/zh-hans/System.Threading.Timer.xml", "ref/dotnet/es/System.Threading.Timer.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", "ref/net451/_._", "ref/win81/_._", "ref/netcore50/System.Threading.Timer.dll", "ref/netcore50/System.Threading.Timer.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", "[Content_Types].xml" ] }, "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.ReaderWriter.nuspec", "lib/dotnet/System.Xml.ReaderWriter.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.ReaderWriter.dll", "ref/dotnet/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", "ref/dotnet/de/System.Xml.ReaderWriter.xml", "ref/dotnet/fr/System.Xml.ReaderWriter.xml", "ref/dotnet/it/System.Xml.ReaderWriter.xml", "ref/dotnet/ja/System.Xml.ReaderWriter.xml", "ref/dotnet/ko/System.Xml.ReaderWriter.xml", "ref/dotnet/ru/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", "ref/dotnet/es/System.Xml.ReaderWriter.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", "[Content_Types].xml" ] }, "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.XDocument.nuspec", "lib/dotnet/System.Xml.XDocument.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.XDocument.dll", "ref/dotnet/System.Xml.XDocument.xml", "ref/dotnet/zh-hant/System.Xml.XDocument.xml", "ref/dotnet/de/System.Xml.XDocument.xml", "ref/dotnet/fr/System.Xml.XDocument.xml", "ref/dotnet/it/System.Xml.XDocument.xml", "ref/dotnet/ja/System.Xml.XDocument.xml", "ref/dotnet/ko/System.Xml.XDocument.xml", "ref/dotnet/ru/System.Xml.XDocument.xml", "ref/dotnet/zh-hans/System.Xml.XDocument.xml", "ref/dotnet/es/System.Xml.XDocument.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", "[Content_Types].xml" ] } }, "projectFileDependencyGroups": { "": [ "Microsoft.NETCore >= 5.0.0", "System.Console >= 4.0.0-beta-23412", "Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123", "Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0" ], "DNXCore,Version=v5.0": [] }} + { "locked": false, "version": 1, "targets": { "DNXCore,Version=v5.0": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.NetworkInformation/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.NetworkInformation.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x64": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "native": { "runtimes/win7-x64/native/CoreConsole.exe": {} } }, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} }, "native": { "runtimes/win7-x64/native/clretwrc.dll": {}, "runtimes/win7-x64/native/coreclr.dll": {}, "runtimes/win7-x64/native/dbgshim.dll": {}, "runtimes/win7-x64/native/mscordaccore.dll": {}, "runtimes/win7-x64/native/mscordbi.dll": {}, "runtimes/win7-x64/native/mscorrc.debug.dll": {}, "runtimes/win7-x64/native/mscorrc.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.Native-x64/4.0.0": { "native": { "runtimes/win7-x64/native/System.IO.Compression.Native.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x86": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.Native-x86/4.0.0": { "native": { "runtimes/win7-x86/native/System.IO.Compression.Native.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } } }, "libraries": { "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.CSharp.nuspec", "lib/dotnet/Microsoft.CSharp.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.CSharp.dll", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.CSharp.dll", "ref/dotnet/Microsoft.CSharp.xml", "ref/dotnet/zh-hant/Microsoft.CSharp.xml", "ref/dotnet/de/Microsoft.CSharp.xml", "ref/dotnet/fr/Microsoft.CSharp.xml", "ref/dotnet/it/Microsoft.CSharp.xml", "ref/dotnet/ja/Microsoft.CSharp.xml", "ref/dotnet/ko/Microsoft.CSharp.xml", "ref/dotnet/ru/Microsoft.CSharp.xml", "ref/dotnet/zh-hans/Microsoft.CSharp.xml", "ref/dotnet/es/Microsoft.CSharp.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.CSharp.dll", "ref/netcore50/Microsoft.CSharp.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.nuspec", "_._", "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "sha512": "Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.ConsoleHost-x64.nuspec", "runtimes/win7-x64/native/CoreConsole.exe", "package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Platforms.nuspec", "runtime.json", "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", "runtimes/win7-x64/native/clretwrc.dll", "runtimes/win7-x64/native/coreclr.dll", "runtimes/win7-x64/native/dbgshim.dll", "runtimes/win7-x64/native/mscordaccore.dll", "runtimes/win7-x64/native/mscordbi.dll", "runtimes/win7-x64/native/mscorrc.debug.dll", "runtimes/win7-x64/native/mscorrc.dll", "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.nuspec", "runtime.json", "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": { "sha512": "32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.DNXCore.nuspec", "runtime.json", "package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp", "[Content_Types].xml" ] }, "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.VisualBasic.nuspec", "lib/dotnet/Microsoft.VisualBasic.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.VisualBasic.dll", "lib/wpa81/_._", "ref/dotnet/Microsoft.VisualBasic.dll", "ref/dotnet/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", "ref/dotnet/de/Microsoft.VisualBasic.xml", "ref/dotnet/fr/Microsoft.VisualBasic.xml", "ref/dotnet/it/Microsoft.VisualBasic.xml", "ref/dotnet/ja/Microsoft.VisualBasic.xml", "ref/dotnet/ko/Microsoft.VisualBasic.xml", "ref/dotnet/ru/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", "ref/dotnet/es/Microsoft.VisualBasic.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.VisualBasic.dll", "ref/netcore50/Microsoft.VisualBasic.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", "[Content_Types].xml" ] }, "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.Win32.Primitives.nuspec", "lib/dotnet/Microsoft.Win32.Primitives.dll", "lib/net46/Microsoft.Win32.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.Win32.Primitives.dll", "ref/dotnet/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", "ref/dotnet/de/Microsoft.Win32.Primitives.xml", "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", "ref/dotnet/it/Microsoft.Win32.Primitives.xml", "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", "ref/dotnet/es/Microsoft.Win32.Primitives.xml", "ref/net46/Microsoft.Win32.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", "[Content_Types].xml" ] }, "runtime.win7.System.Console/4.0.0-beta-23412": { "sha512": "j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==", "type": "Package", "files": [ "_rels/.rels", "runtime.win7.System.Console.nuspec", "runtimes/win7/lib/dotnet/System.Console.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp", "[Content_Types].xml" ] }, "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "Package", "files": [ "_rels/.rels", "System.AppContext.nuspec", "lib/netcore50/System.AppContext.dll", "lib/DNXCore50/System.AppContext.dll", "lib/net46/System.AppContext.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.AppContext.dll", "ref/dotnet/System.AppContext.xml", "ref/dotnet/zh-hant/System.AppContext.xml", "ref/dotnet/de/System.AppContext.xml", "ref/dotnet/fr/System.AppContext.xml", "ref/dotnet/it/System.AppContext.xml", "ref/dotnet/ja/System.AppContext.xml", "ref/dotnet/ko/System.AppContext.xml", "ref/dotnet/ru/System.AppContext.xml", "ref/dotnet/zh-hans/System.AppContext.xml", "ref/dotnet/es/System.AppContext.xml", "ref/net46/System.AppContext.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", "[Content_Types].xml" ] }, "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.nuspec", "lib/netcore50/System.Collections.dll", "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.dll", "ref/dotnet/System.Collections.xml", "ref/dotnet/zh-hant/System.Collections.xml", "ref/dotnet/de/System.Collections.xml", "ref/dotnet/fr/System.Collections.xml", "ref/dotnet/it/System.Collections.xml", "ref/dotnet/ja/System.Collections.xml", "ref/dotnet/ko/System.Collections.xml", "ref/dotnet/ru/System.Collections.xml", "ref/dotnet/zh-hans/System.Collections.xml", "ref/dotnet/es/System.Collections.xml", "runtimes/win8-aot/lib/netcore50/System.Collections.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Concurrent.nuspec", "lib/dotnet/System.Collections.Concurrent.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.Concurrent.dll", "ref/dotnet/System.Collections.Concurrent.xml", "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", "ref/dotnet/de/System.Collections.Concurrent.xml", "ref/dotnet/fr/System.Collections.Concurrent.xml", "ref/dotnet/it/System.Collections.Concurrent.xml", "ref/dotnet/ja/System.Collections.Concurrent.xml", "ref/dotnet/ko/System.Collections.Concurrent.xml", "ref/dotnet/ru/System.Collections.Concurrent.xml", "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", "ref/dotnet/es/System.Collections.Concurrent.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", "[Content_Types].xml" ] }, "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.NonGeneric.nuspec", "lib/dotnet/System.Collections.NonGeneric.dll", "lib/net46/System.Collections.NonGeneric.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.NonGeneric.dll", "ref/dotnet/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", "ref/dotnet/de/System.Collections.NonGeneric.xml", "ref/dotnet/fr/System.Collections.NonGeneric.xml", "ref/dotnet/it/System.Collections.NonGeneric.xml", "ref/dotnet/ja/System.Collections.NonGeneric.xml", "ref/dotnet/ko/System.Collections.NonGeneric.xml", "ref/dotnet/ru/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", "ref/dotnet/es/System.Collections.NonGeneric.xml", "ref/net46/System.Collections.NonGeneric.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.nuspec", "lib/dotnet/System.ComponentModel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.ComponentModel.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.ComponentModel.dll", "ref/dotnet/System.ComponentModel.xml", "ref/dotnet/zh-hant/System.ComponentModel.xml", "ref/dotnet/de/System.ComponentModel.xml", "ref/dotnet/fr/System.ComponentModel.xml", "ref/dotnet/it/System.ComponentModel.xml", "ref/dotnet/ja/System.ComponentModel.xml", "ref/dotnet/ko/System.ComponentModel.xml", "ref/dotnet/ru/System.ComponentModel.xml", "ref/dotnet/zh-hans/System.ComponentModel.xml", "ref/dotnet/es/System.ComponentModel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.ComponentModel.dll", "ref/netcore50/System.ComponentModel.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.Annotations.nuspec", "lib/dotnet/System.ComponentModel.Annotations.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.Annotations.dll", "ref/dotnet/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", "ref/dotnet/de/System.ComponentModel.Annotations.xml", "ref/dotnet/fr/System.ComponentModel.Annotations.xml", "ref/dotnet/it/System.ComponentModel.Annotations.xml", "ref/dotnet/ja/System.ComponentModel.Annotations.xml", "ref/dotnet/ko/System.ComponentModel.Annotations.xml", "ref/dotnet/ru/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", "ref/dotnet/es/System.ComponentModel.Annotations.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.EventBasedAsync.nuspec", "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", "[Content_Types].xml" ] }, "System.Console/4.0.0-beta-23412": { "sha512": "D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==", "type": "Package", "files": [ "_rels/.rels", "System.Console.nuspec", "lib/net46/System.Console.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Console.dll", "ref/dotnet/System.Console.xml", "ref/dotnet/zh-hant/System.Console.xml", "ref/dotnet/de/System.Console.xml", "ref/dotnet/fr/System.Console.xml", "ref/dotnet/it/System.Console.xml", "ref/dotnet/ja/System.Console.xml", "ref/dotnet/ko/System.Console.xml", "ref/dotnet/ru/System.Console.xml", "ref/dotnet/zh-hans/System.Console.xml", "ref/dotnet/es/System.Console.xml", "ref/net46/System.Console.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Contracts.nuspec", "lib/netcore50/System.Diagnostics.Contracts.dll", "lib/DNXCore50/System.Diagnostics.Contracts.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Contracts.dll", "ref/dotnet/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", "ref/dotnet/de/System.Diagnostics.Contracts.xml", "ref/dotnet/fr/System.Diagnostics.Contracts.xml", "ref/dotnet/it/System.Diagnostics.Contracts.xml", "ref/dotnet/ja/System.Diagnostics.Contracts.xml", "ref/dotnet/ko/System.Diagnostics.Contracts.xml", "ref/dotnet/ru/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", "ref/dotnet/es/System.Diagnostics.Contracts.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Contracts.dll", "ref/netcore50/System.Diagnostics.Contracts.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Debug.nuspec", "lib/DNXCore50/System.Diagnostics.Debug.dll", "lib/netcore50/System.Diagnostics.Debug.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Debug.dll", "ref/dotnet/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", "ref/dotnet/de/System.Diagnostics.Debug.xml", "ref/dotnet/fr/System.Diagnostics.Debug.xml", "ref/dotnet/it/System.Diagnostics.Debug.xml", "ref/dotnet/ja/System.Diagnostics.Debug.xml", "ref/dotnet/ko/System.Diagnostics.Debug.xml", "ref/dotnet/ru/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", "ref/dotnet/es/System.Diagnostics.Debug.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.StackTrace.nuspec", "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/netcore50/System.Diagnostics.StackTrace.dll", "lib/net46/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.StackTrace.dll", "ref/dotnet/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", "ref/dotnet/de/System.Diagnostics.StackTrace.xml", "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", "ref/dotnet/it/System.Diagnostics.StackTrace.xml", "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", "ref/dotnet/es/System.Diagnostics.StackTrace.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", "ref/net46/System.Diagnostics.StackTrace.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tools.nuspec", "lib/DNXCore50/System.Diagnostics.Tools.dll", "lib/netcore50/System.Diagnostics.Tools.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Tools.dll", "ref/dotnet/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", "ref/dotnet/de/System.Diagnostics.Tools.xml", "ref/dotnet/fr/System.Diagnostics.Tools.xml", "ref/dotnet/it/System.Diagnostics.Tools.xml", "ref/dotnet/ja/System.Diagnostics.Tools.xml", "ref/dotnet/ko/System.Diagnostics.Tools.xml", "ref/dotnet/ru/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", "ref/dotnet/es/System.Diagnostics.Tools.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Tools.dll", "ref/netcore50/System.Diagnostics.Tools.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tracing.nuspec", "lib/netcore50/System.Diagnostics.Tracing.dll", "lib/DNXCore50/System.Diagnostics.Tracing.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Tracing.dll", "ref/dotnet/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", "ref/dotnet/de/System.Diagnostics.Tracing.xml", "ref/dotnet/fr/System.Diagnostics.Tracing.xml", "ref/dotnet/it/System.Diagnostics.Tracing.xml", "ref/dotnet/ja/System.Diagnostics.Tracing.xml", "ref/dotnet/ko/System.Diagnostics.Tracing.xml", "ref/dotnet/ru/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", "ref/dotnet/es/System.Diagnostics.Tracing.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", "[Content_Types].xml" ] }, "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "Package", "files": [ "_rels/.rels", "System.Dynamic.Runtime.nuspec", "lib/netcore50/System.Dynamic.Runtime.dll", "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Dynamic.Runtime.dll", "ref/dotnet/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", "ref/dotnet/de/System.Dynamic.Runtime.xml", "ref/dotnet/fr/System.Dynamic.Runtime.xml", "ref/dotnet/it/System.Dynamic.Runtime.xml", "ref/dotnet/ja/System.Dynamic.Runtime.xml", "ref/dotnet/ko/System.Dynamic.Runtime.xml", "ref/dotnet/ru/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", "ref/dotnet/es/System.Dynamic.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", "[Content_Types].xml" ] }, "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.nuspec", "lib/netcore50/System.Globalization.dll", "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.dll", "ref/dotnet/System.Globalization.xml", "ref/dotnet/zh-hant/System.Globalization.xml", "ref/dotnet/de/System.Globalization.xml", "ref/dotnet/fr/System.Globalization.xml", "ref/dotnet/it/System.Globalization.xml", "ref/dotnet/ja/System.Globalization.xml", "ref/dotnet/ko/System.Globalization.xml", "ref/dotnet/ru/System.Globalization.xml", "ref/dotnet/zh-hans/System.Globalization.xml", "ref/dotnet/es/System.Globalization.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Calendars.nuspec", "lib/netcore50/System.Globalization.Calendars.dll", "lib/DNXCore50/System.Globalization.Calendars.dll", "lib/net46/System.Globalization.Calendars.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Calendars.dll", "ref/dotnet/System.Globalization.Calendars.xml", "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", "ref/dotnet/de/System.Globalization.Calendars.xml", "ref/dotnet/fr/System.Globalization.Calendars.xml", "ref/dotnet/it/System.Globalization.Calendars.xml", "ref/dotnet/ja/System.Globalization.Calendars.xml", "ref/dotnet/ko/System.Globalization.Calendars.xml", "ref/dotnet/ru/System.Globalization.Calendars.xml", "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", "ref/dotnet/es/System.Globalization.Calendars.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", "ref/net46/System.Globalization.Calendars.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Extensions.nuspec", "lib/dotnet/System.Globalization.Extensions.dll", "lib/net46/System.Globalization.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Extensions.dll", "ref/dotnet/System.Globalization.Extensions.xml", "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", "ref/dotnet/de/System.Globalization.Extensions.xml", "ref/dotnet/fr/System.Globalization.Extensions.xml", "ref/dotnet/it/System.Globalization.Extensions.xml", "ref/dotnet/ja/System.Globalization.Extensions.xml", "ref/dotnet/ko/System.Globalization.Extensions.xml", "ref/dotnet/ru/System.Globalization.Extensions.xml", "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", "ref/dotnet/es/System.Globalization.Extensions.xml", "ref/net46/System.Globalization.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", "[Content_Types].xml" ] }, "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.nuspec", "lib/netcore50/System.IO.dll", "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.dll", "ref/dotnet/System.IO.xml", "ref/dotnet/zh-hant/System.IO.xml", "ref/dotnet/de/System.IO.xml", "ref/dotnet/fr/System.IO.xml", "ref/dotnet/it/System.IO.xml", "ref/dotnet/ja/System.IO.xml", "ref/dotnet/ko/System.IO.xml", "ref/dotnet/ru/System.IO.xml", "ref/dotnet/zh-hans/System.IO.xml", "ref/dotnet/es/System.IO.xml", "runtimes/win8-aot/lib/netcore50/System.IO.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.nuspec", "lib/dotnet/System.IO.Compression.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.IO.Compression.dll", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.dll", "ref/dotnet/System.IO.Compression.xml", "ref/dotnet/zh-hant/System.IO.Compression.xml", "ref/dotnet/de/System.IO.Compression.xml", "ref/dotnet/fr/System.IO.Compression.xml", "ref/dotnet/it/System.IO.Compression.xml", "ref/dotnet/ja/System.IO.Compression.xml", "ref/dotnet/ko/System.IO.Compression.xml", "ref/dotnet/ru/System.IO.Compression.xml", "ref/dotnet/zh-hans/System.IO.Compression.xml", "ref/dotnet/es/System.IO.Compression.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.IO.Compression.dll", "ref/netcore50/System.IO.Compression.xml", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.Native-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.Native-x64.nuspec", "runtimes/win7-x64/native/System.IO.Compression.Native.dll", "runtimes/win10-x64/native/System.IO.Compression.Native.dll", "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.Native-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.Native-x86.nuspec", "runtimes/win7-x86/native/System.IO.Compression.Native.dll", "runtimes/win10-x86/native/System.IO.Compression.Native.dll", "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.ZipFile.nuspec", "lib/dotnet/System.IO.Compression.ZipFile.dll", "lib/net46/System.IO.Compression.ZipFile.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.ZipFile.dll", "ref/dotnet/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", "ref/dotnet/de/System.IO.Compression.ZipFile.xml", "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", "ref/dotnet/it/System.IO.Compression.ZipFile.xml", "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", "ref/dotnet/es/System.IO.Compression.ZipFile.xml", "ref/net46/System.IO.Compression.ZipFile.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.nuspec", "lib/DNXCore50/System.IO.FileSystem.dll", "lib/netcore50/System.IO.FileSystem.dll", "lib/net46/System.IO.FileSystem.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.dll", "ref/dotnet/System.IO.FileSystem.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.xml", "ref/dotnet/de/System.IO.FileSystem.xml", "ref/dotnet/fr/System.IO.FileSystem.xml", "ref/dotnet/it/System.IO.FileSystem.xml", "ref/dotnet/ja/System.IO.FileSystem.xml", "ref/dotnet/ko/System.IO.FileSystem.xml", "ref/dotnet/ru/System.IO.FileSystem.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.xml", "ref/dotnet/es/System.IO.FileSystem.xml", "ref/net46/System.IO.FileSystem.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.Primitives.nuspec", "lib/dotnet/System.IO.FileSystem.Primitives.dll", "lib/net46/System.IO.FileSystem.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.Primitives.dll", "ref/dotnet/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", "[Content_Types].xml" ] }, "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.UnmanagedMemoryStream.nuspec", "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", "lib/net46/System.IO.UnmanagedMemoryStream.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", "ref/net46/System.IO.UnmanagedMemoryStream.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", "[Content_Types].xml" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.dll", "ref/dotnet/System.Linq.xml", "ref/dotnet/zh-hant/System.Linq.xml", "ref/dotnet/de/System.Linq.xml", "ref/dotnet/fr/System.Linq.xml", "ref/dotnet/it/System.Linq.xml", "ref/dotnet/ja/System.Linq.xml", "ref/dotnet/ko/System.Linq.xml", "ref/dotnet/ru/System.Linq.xml", "ref/dotnet/zh-hans/System.Linq.xml", "ref/dotnet/es/System.Linq.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Expressions.nuspec", "lib/netcore50/System.Linq.Expressions.dll", "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Linq.Expressions.dll", "ref/dotnet/System.Linq.Expressions.xml", "ref/dotnet/zh-hant/System.Linq.Expressions.xml", "ref/dotnet/de/System.Linq.Expressions.xml", "ref/dotnet/fr/System.Linq.Expressions.xml", "ref/dotnet/it/System.Linq.Expressions.xml", "ref/dotnet/ja/System.Linq.Expressions.xml", "ref/dotnet/ko/System.Linq.Expressions.xml", "ref/dotnet/ru/System.Linq.Expressions.xml", "ref/dotnet/zh-hans/System.Linq.Expressions.xml", "ref/dotnet/es/System.Linq.Expressions.xml", "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Parallel.nuspec", "lib/dotnet/System.Linq.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Linq.Parallel.dll", "ref/dotnet/System.Linq.Parallel.xml", "ref/dotnet/zh-hant/System.Linq.Parallel.xml", "ref/dotnet/de/System.Linq.Parallel.xml", "ref/dotnet/fr/System.Linq.Parallel.xml", "ref/dotnet/it/System.Linq.Parallel.xml", "ref/dotnet/ja/System.Linq.Parallel.xml", "ref/dotnet/ko/System.Linq.Parallel.xml", "ref/dotnet/ru/System.Linq.Parallel.xml", "ref/dotnet/zh-hans/System.Linq.Parallel.xml", "ref/dotnet/es/System.Linq.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Parallel.dll", "ref/netcore50/System.Linq.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Queryable.nuspec", "lib/dotnet/System.Linq.Queryable.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Queryable.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.Queryable.dll", "ref/dotnet/System.Linq.Queryable.xml", "ref/dotnet/zh-hant/System.Linq.Queryable.xml", "ref/dotnet/de/System.Linq.Queryable.xml", "ref/dotnet/fr/System.Linq.Queryable.xml", "ref/dotnet/it/System.Linq.Queryable.xml", "ref/dotnet/ja/System.Linq.Queryable.xml", "ref/dotnet/ko/System.Linq.Queryable.xml", "ref/dotnet/ru/System.Linq.Queryable.xml", "ref/dotnet/zh-hans/System.Linq.Queryable.xml", "ref/dotnet/es/System.Linq.Queryable.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Queryable.dll", "ref/netcore50/System.Linq.Queryable.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", "[Content_Types].xml" ] }, "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Http.nuspec", "lib/netcore50/System.Net.Http.dll", "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", "lib/win8/_._", "lib/wpa81/_._", "ref/dotnet/System.Net.Http.dll", "ref/dotnet/System.Net.Http.xml", "ref/dotnet/zh-hant/System.Net.Http.xml", "ref/dotnet/de/System.Net.Http.xml", "ref/dotnet/fr/System.Net.Http.xml", "ref/dotnet/it/System.Net.Http.xml", "ref/dotnet/ja/System.Net.Http.xml", "ref/dotnet/ko/System.Net.Http.xml", "ref/dotnet/ru/System.Net.Http.xml", "ref/dotnet/zh-hans/System.Net.Http.xml", "ref/dotnet/es/System.Net.Http.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", "[Content_Types].xml" ] }, "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "Package", "files": [ "_rels/.rels", "System.Net.NetworkInformation.nuspec", "lib/netcore50/System.Net.NetworkInformation.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.NetworkInformation.dll", "ref/dotnet/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", "ref/dotnet/de/System.Net.NetworkInformation.xml", "ref/dotnet/fr/System.Net.NetworkInformation.xml", "ref/dotnet/it/System.Net.NetworkInformation.xml", "ref/dotnet/ja/System.Net.NetworkInformation.xml", "ref/dotnet/ko/System.Net.NetworkInformation.xml", "ref/dotnet/ru/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", "ref/dotnet/es/System.Net.NetworkInformation.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.NetworkInformation.dll", "ref/netcore50/System.Net.NetworkInformation.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", "[Content_Types].xml" ] }, "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Primitives.nuspec", "lib/netcore50/System.Net.Primitives.dll", "lib/DNXCore50/System.Net.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.Primitives.dll", "ref/dotnet/System.Net.Primitives.xml", "ref/dotnet/zh-hant/System.Net.Primitives.xml", "ref/dotnet/de/System.Net.Primitives.xml", "ref/dotnet/fr/System.Net.Primitives.xml", "ref/dotnet/it/System.Net.Primitives.xml", "ref/dotnet/ja/System.Net.Primitives.xml", "ref/dotnet/ko/System.Net.Primitives.xml", "ref/dotnet/ru/System.Net.Primitives.xml", "ref/dotnet/zh-hans/System.Net.Primitives.xml", "ref/dotnet/es/System.Net.Primitives.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", "[Content_Types].xml" ] }, "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "Package", "files": [ "_rels/.rels", "System.Numerics.Vectors.nuspec", "lib/dotnet/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", "[Content_Types].xml" ] }, "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "Package", "files": [ "_rels/.rels", "System.ObjectModel.nuspec", "lib/dotnet/System.ObjectModel.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ObjectModel.dll", "ref/dotnet/System.ObjectModel.xml", "ref/dotnet/zh-hant/System.ObjectModel.xml", "ref/dotnet/de/System.ObjectModel.xml", "ref/dotnet/fr/System.ObjectModel.xml", "ref/dotnet/it/System.ObjectModel.xml", "ref/dotnet/ja/System.ObjectModel.xml", "ref/dotnet/ko/System.ObjectModel.xml", "ref/dotnet/ru/System.ObjectModel.xml", "ref/dotnet/zh-hans/System.ObjectModel.xml", "ref/dotnet/es/System.ObjectModel.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", "[Content_Types].xml" ] }, "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Networking.nuspec", "lib/netcore50/System.Private.Networking.dll", "lib/DNXCore50/System.Private.Networking.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", "[Content_Types].xml" ] }, "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Uri.nuspec", "lib/netcore50/System.Private.Uri.dll", "lib/DNXCore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", "[Content_Types].xml" ] }, "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.nuspec", "lib/netcore50/System.Reflection.dll", "lib/DNXCore50/System.Reflection.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.dll", "ref/dotnet/System.Reflection.xml", "ref/dotnet/zh-hant/System.Reflection.xml", "ref/dotnet/de/System.Reflection.xml", "ref/dotnet/fr/System.Reflection.xml", "ref/dotnet/it/System.Reflection.xml", "ref/dotnet/ja/System.Reflection.xml", "ref/dotnet/ko/System.Reflection.xml", "ref/dotnet/ru/System.Reflection.xml", "ref/dotnet/zh-hans/System.Reflection.xml", "ref/dotnet/es/System.Reflection.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.DispatchProxy.nuspec", "lib/net46/System.Reflection.DispatchProxy.dll", "lib/DNXCore50/System.Reflection.DispatchProxy.dll", "lib/netcore50/System.Reflection.DispatchProxy.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.DispatchProxy.dll", "ref/dotnet/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", "ref/dotnet/de/System.Reflection.DispatchProxy.xml", "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", "ref/dotnet/it/System.Reflection.DispatchProxy.xml", "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", "ref/dotnet/es/System.Reflection.DispatchProxy.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.nuspec", "lib/DNXCore50/System.Reflection.Emit.dll", "lib/netcore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", "lib/net45/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.Emit.dll", "ref/dotnet/System.Reflection.Emit.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.xml", "ref/dotnet/de/System.Reflection.Emit.xml", "ref/dotnet/fr/System.Reflection.Emit.xml", "ref/dotnet/it/System.Reflection.Emit.xml", "ref/dotnet/ja/System.Reflection.Emit.xml", "ref/dotnet/ko/System.Reflection.Emit.xml", "ref/dotnet/ru/System.Reflection.Emit.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.xml", "ref/dotnet/es/System.Reflection.Emit.xml", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.ILGeneration.nuspec", "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.Lightweight.nuspec", "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.Lightweight.dll", "ref/dotnet/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Extensions.nuspec", "lib/netcore50/System.Reflection.Extensions.dll", "lib/DNXCore50/System.Reflection.Extensions.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Extensions.dll", "ref/dotnet/System.Reflection.Extensions.xml", "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", "ref/dotnet/de/System.Reflection.Extensions.xml", "ref/dotnet/fr/System.Reflection.Extensions.xml", "ref/dotnet/it/System.Reflection.Extensions.xml", "ref/dotnet/ja/System.Reflection.Extensions.xml", "ref/dotnet/ko/System.Reflection.Extensions.xml", "ref/dotnet/ru/System.Reflection.Extensions.xml", "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", "ref/dotnet/es/System.Reflection.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Extensions.dll", "ref/netcore50/System.Reflection.Extensions.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Metadata.nuspec", "lib/dotnet/System.Reflection.Metadata.dll", "lib/dotnet/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.dll", "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Primitives.nuspec", "lib/netcore50/System.Reflection.Primitives.dll", "lib/DNXCore50/System.Reflection.Primitives.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Primitives.dll", "ref/dotnet/System.Reflection.Primitives.xml", "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", "ref/dotnet/de/System.Reflection.Primitives.xml", "ref/dotnet/fr/System.Reflection.Primitives.xml", "ref/dotnet/it/System.Reflection.Primitives.xml", "ref/dotnet/ja/System.Reflection.Primitives.xml", "ref/dotnet/ko/System.Reflection.Primitives.xml", "ref/dotnet/ru/System.Reflection.Primitives.xml", "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", "ref/dotnet/es/System.Reflection.Primitives.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Primitives.dll", "ref/netcore50/System.Reflection.Primitives.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.TypeExtensions.nuspec", "lib/netcore50/System.Reflection.TypeExtensions.dll", "lib/DNXCore50/System.Reflection.TypeExtensions.dll", "lib/net46/System.Reflection.TypeExtensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.TypeExtensions.dll", "ref/dotnet/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", "ref/dotnet/de/System.Reflection.TypeExtensions.xml", "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", "ref/dotnet/it/System.Reflection.TypeExtensions.xml", "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", "ref/dotnet/es/System.Reflection.TypeExtensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", "ref/net46/System.Reflection.TypeExtensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", "[Content_Types].xml" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "Package", "files": [ "_rels/.rels", "System.Resources.ResourceManager.nuspec", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Resources.ResourceManager.dll", "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", "ref/dotnet/de/System.Resources.ResourceManager.xml", "ref/dotnet/fr/System.Resources.ResourceManager.xml", "ref/dotnet/it/System.Resources.ResourceManager.xml", "ref/dotnet/ja/System.Resources.ResourceManager.xml", "ref/dotnet/ko/System.Resources.ResourceManager.xml", "ref/dotnet/ru/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet/es/System.Resources.ResourceManager.xml", "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Resources.ResourceManager.dll", "ref/netcore50/System.Resources.ResourceManager.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", "[Content_Types].xml" ] }, "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.nuspec", "lib/netcore50/System.Runtime.dll", "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.dll", "ref/dotnet/System.Runtime.xml", "ref/dotnet/zh-hant/System.Runtime.xml", "ref/dotnet/de/System.Runtime.xml", "ref/dotnet/fr/System.Runtime.xml", "ref/dotnet/it/System.Runtime.xml", "ref/dotnet/ja/System.Runtime.xml", "ref/dotnet/ko/System.Runtime.xml", "ref/dotnet/ru/System.Runtime.xml", "ref/dotnet/zh-hans/System.Runtime.xml", "ref/dotnet/es/System.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Extensions.nuspec", "lib/netcore50/System.Runtime.Extensions.dll", "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Extensions.dll", "ref/dotnet/System.Runtime.Extensions.xml", "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", "ref/dotnet/de/System.Runtime.Extensions.xml", "ref/dotnet/fr/System.Runtime.Extensions.xml", "ref/dotnet/it/System.Runtime.Extensions.xml", "ref/dotnet/ja/System.Runtime.Extensions.xml", "ref/dotnet/ko/System.Runtime.Extensions.xml", "ref/dotnet/ru/System.Runtime.Extensions.xml", "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", "ref/dotnet/es/System.Runtime.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Handles.nuspec", "lib/DNXCore50/System.Runtime.Handles.dll", "lib/netcore50/System.Runtime.Handles.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Handles.dll", "ref/dotnet/System.Runtime.Handles.xml", "ref/dotnet/zh-hant/System.Runtime.Handles.xml", "ref/dotnet/de/System.Runtime.Handles.xml", "ref/dotnet/fr/System.Runtime.Handles.xml", "ref/dotnet/it/System.Runtime.Handles.xml", "ref/dotnet/ja/System.Runtime.Handles.xml", "ref/dotnet/ko/System.Runtime.Handles.xml", "ref/dotnet/ru/System.Runtime.Handles.xml", "ref/dotnet/zh-hans/System.Runtime.Handles.xml", "ref/dotnet/es/System.Runtime.Handles.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.InteropServices.nuspec", "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/netcore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.InteropServices.dll", "ref/dotnet/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", "ref/dotnet/de/System.Runtime.InteropServices.xml", "ref/dotnet/fr/System.Runtime.InteropServices.xml", "ref/dotnet/it/System.Runtime.InteropServices.xml", "ref/dotnet/ja/System.Runtime.InteropServices.xml", "ref/dotnet/ko/System.Runtime.InteropServices.xml", "ref/dotnet/ru/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", "ref/dotnet/es/System.Runtime.InteropServices.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Numerics.nuspec", "lib/dotnet/System.Runtime.Numerics.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Runtime.Numerics.dll", "lib/wpa81/_._", "ref/dotnet/System.Runtime.Numerics.dll", "ref/dotnet/System.Runtime.Numerics.xml", "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", "ref/dotnet/de/System.Runtime.Numerics.xml", "ref/dotnet/fr/System.Runtime.Numerics.xml", "ref/dotnet/it/System.Runtime.Numerics.xml", "ref/dotnet/ja/System.Runtime.Numerics.xml", "ref/dotnet/ko/System.Runtime.Numerics.xml", "ref/dotnet/ru/System.Runtime.Numerics.xml", "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", "ref/dotnet/es/System.Runtime.Numerics.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Runtime.Numerics.dll", "ref/netcore50/System.Runtime.Numerics.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", "[Content_Types].xml" ] }, "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Claims.nuspec", "lib/dotnet/System.Security.Claims.dll", "lib/net46/System.Security.Claims.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Security.Claims.dll", "ref/dotnet/System.Security.Claims.xml", "ref/dotnet/zh-hant/System.Security.Claims.xml", "ref/dotnet/de/System.Security.Claims.xml", "ref/dotnet/fr/System.Security.Claims.xml", "ref/dotnet/it/System.Security.Claims.xml", "ref/dotnet/ja/System.Security.Claims.xml", "ref/dotnet/ko/System.Security.Claims.xml", "ref/dotnet/ru/System.Security.Claims.xml", "ref/dotnet/zh-hans/System.Security.Claims.xml", "ref/dotnet/es/System.Security.Claims.xml", "ref/net46/System.Security.Claims.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", "[Content_Types].xml" ] }, "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Principal.nuspec", "lib/dotnet/System.Security.Principal.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Security.Principal.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Security.Principal.dll", "ref/dotnet/System.Security.Principal.xml", "ref/dotnet/zh-hant/System.Security.Principal.xml", "ref/dotnet/de/System.Security.Principal.xml", "ref/dotnet/fr/System.Security.Principal.xml", "ref/dotnet/it/System.Security.Principal.xml", "ref/dotnet/ja/System.Security.Principal.xml", "ref/dotnet/ko/System.Security.Principal.xml", "ref/dotnet/ru/System.Security.Principal.xml", "ref/dotnet/zh-hans/System.Security.Principal.xml", "ref/dotnet/es/System.Security.Principal.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Security.Principal.dll", "ref/netcore50/System.Security.Principal.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.nuspec", "lib/netcore50/System.Text.Encoding.dll", "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.dll", "ref/dotnet/System.Text.Encoding.xml", "ref/dotnet/zh-hant/System.Text.Encoding.xml", "ref/dotnet/de/System.Text.Encoding.xml", "ref/dotnet/fr/System.Text.Encoding.xml", "ref/dotnet/it/System.Text.Encoding.xml", "ref/dotnet/ja/System.Text.Encoding.xml", "ref/dotnet/ko/System.Text.Encoding.xml", "ref/dotnet/ru/System.Text.Encoding.xml", "ref/dotnet/zh-hans/System.Text.Encoding.xml", "ref/dotnet/es/System.Text.Encoding.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.Extensions.nuspec", "lib/netcore50/System.Text.Encoding.Extensions.dll", "lib/DNXCore50/System.Text.Encoding.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.Extensions.dll", "ref/dotnet/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", "ref/dotnet/de/System.Text.Encoding.Extensions.xml", "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", "ref/dotnet/it/System.Text.Encoding.Extensions.xml", "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", "ref/dotnet/es/System.Text.Encoding.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", "[Content_Types].xml" ] }, "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "Package", "files": [ "_rels/.rels", "System.Text.RegularExpressions.nuspec", "lib/dotnet/System.Text.RegularExpressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.RegularExpressions.dll", "ref/dotnet/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", "ref/dotnet/de/System.Text.RegularExpressions.xml", "ref/dotnet/fr/System.Text.RegularExpressions.xml", "ref/dotnet/it/System.Text.RegularExpressions.xml", "ref/dotnet/ja/System.Text.RegularExpressions.xml", "ref/dotnet/ko/System.Text.RegularExpressions.xml", "ref/dotnet/ru/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", "ref/dotnet/es/System.Text.RegularExpressions.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", "[Content_Types].xml" ] }, "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.nuspec", "lib/DNXCore50/System.Threading.dll", "lib/netcore50/System.Threading.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.dll", "ref/dotnet/System.Threading.xml", "ref/dotnet/zh-hant/System.Threading.xml", "ref/dotnet/de/System.Threading.xml", "ref/dotnet/fr/System.Threading.xml", "ref/dotnet/it/System.Threading.xml", "ref/dotnet/ja/System.Threading.xml", "ref/dotnet/ko/System.Threading.xml", "ref/dotnet/ru/System.Threading.xml", "ref/dotnet/zh-hans/System.Threading.xml", "ref/dotnet/es/System.Threading.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Overlapped.nuspec", "lib/netcore50/System.Threading.Overlapped.dll", "lib/DNXCore50/System.Threading.Overlapped.dll", "lib/net46/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.xml", "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", "ref/dotnet/de/System.Threading.Overlapped.xml", "ref/dotnet/fr/System.Threading.Overlapped.xml", "ref/dotnet/it/System.Threading.Overlapped.xml", "ref/dotnet/ja/System.Threading.Overlapped.xml", "ref/dotnet/ko/System.Threading.Overlapped.xml", "ref/dotnet/ru/System.Threading.Overlapped.xml", "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", "ref/dotnet/es/System.Threading.Overlapped.xml", "ref/net46/System.Threading.Overlapped.dll", "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.nuspec", "lib/netcore50/System.Threading.Tasks.dll", "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.Tasks.dll", "ref/dotnet/System.Threading.Tasks.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.xml", "ref/dotnet/de/System.Threading.Tasks.xml", "ref/dotnet/fr/System.Threading.Tasks.xml", "ref/dotnet/it/System.Threading.Tasks.xml", "ref/dotnet/ja/System.Threading.Tasks.xml", "ref/dotnet/ko/System.Threading.Tasks.xml", "ref/dotnet/ru/System.Threading.Tasks.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.xml", "ref/dotnet/es/System.Threading.Tasks.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Dataflow.nuspec", "lib/dotnet/System.Threading.Tasks.Dataflow.dll", "lib/dotnet/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Parallel.nuspec", "lib/dotnet/System.Threading.Tasks.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Threading.Tasks.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Threading.Tasks.Parallel.dll", "ref/dotnet/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Threading.Tasks.Parallel.dll", "ref/netcore50/System.Threading.Tasks.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Timer.nuspec", "lib/netcore50/System.Threading.Timer.dll", "lib/DNXCore50/System.Threading.Timer.dll", "lib/net451/_._", "lib/win81/_._", "lib/wpa81/_._", "ref/dotnet/System.Threading.Timer.dll", "ref/dotnet/System.Threading.Timer.xml", "ref/dotnet/zh-hant/System.Threading.Timer.xml", "ref/dotnet/de/System.Threading.Timer.xml", "ref/dotnet/fr/System.Threading.Timer.xml", "ref/dotnet/it/System.Threading.Timer.xml", "ref/dotnet/ja/System.Threading.Timer.xml", "ref/dotnet/ko/System.Threading.Timer.xml", "ref/dotnet/ru/System.Threading.Timer.xml", "ref/dotnet/zh-hans/System.Threading.Timer.xml", "ref/dotnet/es/System.Threading.Timer.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", "ref/net451/_._", "ref/win81/_._", "ref/netcore50/System.Threading.Timer.dll", "ref/netcore50/System.Threading.Timer.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", "[Content_Types].xml" ] }, "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.ReaderWriter.nuspec", "lib/dotnet/System.Xml.ReaderWriter.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.ReaderWriter.dll", "ref/dotnet/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", "ref/dotnet/de/System.Xml.ReaderWriter.xml", "ref/dotnet/fr/System.Xml.ReaderWriter.xml", "ref/dotnet/it/System.Xml.ReaderWriter.xml", "ref/dotnet/ja/System.Xml.ReaderWriter.xml", "ref/dotnet/ko/System.Xml.ReaderWriter.xml", "ref/dotnet/ru/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", "ref/dotnet/es/System.Xml.ReaderWriter.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", "[Content_Types].xml" ] }, "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.XDocument.nuspec", "lib/dotnet/System.Xml.XDocument.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.XDocument.dll", "ref/dotnet/System.Xml.XDocument.xml", "ref/dotnet/zh-hant/System.Xml.XDocument.xml", "ref/dotnet/de/System.Xml.XDocument.xml", "ref/dotnet/fr/System.Xml.XDocument.xml", "ref/dotnet/it/System.Xml.XDocument.xml", "ref/dotnet/ja/System.Xml.XDocument.xml", "ref/dotnet/ko/System.Xml.XDocument.xml", "ref/dotnet/ru/System.Xml.XDocument.xml", "ref/dotnet/zh-hans/System.Xml.XDocument.xml", "ref/dotnet/es/System.Xml.XDocument.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", "[Content_Types].xml" ] } }, "projectFileDependencyGroups": { "": [ "Microsoft.NETCore >= 5.0.0", "System.Console >= 4.0.0-beta-23412", "Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123", "Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0" ], "DNXCore,Version=v5.0": [] }} [ @@ -20287,4 +20287,4 @@ tiline\"another\" String\\"],"str":"\"\""} {"customers":[{"id":-6444715464212907024,"email":"Donald_Robel8@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T11:09:51.4336179+01:00","updated_at":"2020-09-16T00:38:54.0476046+01:00","first_name":"Claud","last_name":"Schamberger","orders_count":828600420,"state":"Florida","total_spent":"Investment Account","last_order_id":-6250163298268487517,"note":"Innovative","verified_email":false,"multipass_identifier":"Sierra Leone","tax_exempt":true,"tags":"Center","last_order_name":"Architect","default_address":{"first_name":"Paolo","address1":"Guillermo Harbors","phone":"Fresh","city":"New Consuelo","zip":"Cambridgeshire","province":null,"country":"Luxembourg","last_name":"Kohler","address2":null,"company":"interface","latitude":0.76308054,"longitude":0.90856695,"name":"Multi-tiered","country_code":"HK","province_code":"models"},"addresses":[{"first_name":"Camylle","address1":"Minnesota","phone":"scalable","city":"Lake Afton","zip":"Kwacha","province":"invoice","country":"Tonga","last_name":"Bahringer","address2":"Arizona","company":"deliverables","latitude":0.53062123,"longitude":0.0345649,"name":"transition","country_code":"SZ","province_code":"Borders"},{"first_name":"Coby","address1":"Handmade Metal Soap","phone":"grey","city":"East Gisselleland","zip":"calculating","province":"Open-architected","country":"Zimbabwe","last_name":"Hilll","address2":"secured line","company":"Agent","latitude":0.29925257,"longitude":0.67247564,"name":"Congolese Franc","country_code":"DJ","province_code":"European Unit of Account 9(E.U.A.-9)"},{"first_name":"Benton","address1":"overriding","phone":"Rubber","city":"Dewitttown","zip":"Assistant","province":"revolutionary","country":"Saint Helena","last_name":"Kautzer","address2":"HDD","company":"application","latitude":0.2472279,"longitude":0.13901316,"name":"Associate","country_code":"BV","province_code":"navigating"},{"first_name":"Paolo","address1":"Guillermo Harbors","phone":"Fresh","city":"New Consuelo","zip":"Cambridgeshire","province":null,"country":"Luxembourg","last_name":"Kohler","address2":null,"company":"interface","latitude":0.76308054,"longitude":0.90856695,"name":"Multi-tiered","country_code":"HK","province_code":"models"}]},{"id":1067378027289123743,"email":"Joanna_Gottlieb@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T00:29:39.9028795+01:00","updated_at":"2020-09-15T15:42:49.6581201+01:00","first_name":"Nickolas","last_name":"Bashirian","orders_count":-1196081909,"state":"Hawaii","total_spent":"THX","last_order_id":8034293186304090002,"note":"primary","verified_email":true,"multipass_identifier":"Savings Account","tax_exempt":true,"tags":"Intranet","last_order_name":"Fantastic Frozen Chicken","default_address":{"first_name":"Maye","address1":"Tate Alley","phone":"Corporate","city":"Hellerborough","zip":"Croatia","province":null,"country":"Turkey","last_name":"Murazik","address2":null,"company":"Games \u0026 Sports","latitude":0.1190542,"longitude":0.7401329,"name":"calculate","country_code":"GY","province_code":"Clothing"},"addresses":[{"first_name":"Serena","address1":"Incredible Concrete Ball","phone":"Vision-oriented","city":"Lake Mozelle","zip":"override","province":"Qatari Rial","country":"Ireland","last_name":"Schumm","address2":"Berkshire","company":"synthesizing","latitude":0.46275967,"longitude":0.5390696,"name":"Isle","country_code":"BZ","province_code":"Grove"},{"first_name":"Lloyd","address1":"Intelligent Steel Cheese","phone":"Intelligent","city":"Cordiechester","zip":"transmitting","province":"Brand","country":"Guatemala","last_name":"Koelpin","address2":"Steel","company":"Toys, Games \u0026 Outdoors","latitude":0.65764135,"longitude":0.94055426,"name":"Strategist","country_code":"MY","province_code":"monitor"},{"first_name":"Norris","address1":"logistical","phone":"Officer","city":"New Dean","zip":"exploit","province":"RAM","country":"Barbados","last_name":"Grady","address2":"neural-net","company":"Realigned","latitude":0.067042194,"longitude":0.984979,"name":"flexibility","country_code":"PM","province_code":"firewall"},{"first_name":"Maye","address1":"Tate Alley","phone":"Corporate","city":"Hellerborough","zip":"Croatia","province":null,"country":"Turkey","last_name":"Murazik","address2":null,"company":"Games \u0026 Sports","latitude":0.1190542,"longitude":0.7401329,"name":"calculate","country_code":"GY","province_code":"Clothing"}]},{"id":-8425342665932514640,"email":"Ethel_White75@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T09:29:11.5803254+01:00","updated_at":"2020-09-16T00:10:35.6218625+01:00","first_name":"Carleton","last_name":"Nolan","orders_count":-1075174329,"state":"Oklahoma","total_spent":"back up","last_order_id":-2380531027015800547,"note":"hard drive","verified_email":false,"multipass_identifier":"India","tax_exempt":true,"tags":"hybrid","last_order_name":"Avon","default_address":{"first_name":"Evalyn","address1":"Kassulke Shores","phone":"overriding","city":"Jaceyburgh","zip":"Handcrafted Concrete Chicken","province":"Alaska","country":"Democratic People\u0027s Republic of Korea","last_name":"Ankunding","address2":null,"company":"Turnpike","latitude":0.40271956,"longitude":0.23823602,"name":"Shoals","country_code":"BV","province_code":"Distributed"},"addresses":[{"first_name":"Phyllis","address1":"Practical","phone":"wireless","city":"Nataliashire","zip":"Integrated","province":"Awesome Soft Mouse","country":"Ireland","last_name":"Paucek","address2":"Generic Wooden Towels","company":"indexing","latitude":0.29858905,"longitude":0.4285656,"name":"local","country_code":"GQ","province_code":"Dynamic"},{"first_name":"Addison","address1":"connect","phone":"networks","city":"East Leone","zip":"Director","province":"Well","country":"Reunion","last_name":"Emmerich","address2":"deliverables","company":"moratorium","latitude":0.8038754,"longitude":0.120811924,"name":"Investment Account","country_code":"SH","province_code":"Buckinghamshire"},{"first_name":"Lamar","address1":"port","phone":"Re-engineered","city":"Robertaburgh","zip":"Refined","province":"Rapids","country":"Christmas Island","last_name":"Zulauf","address2":"homogeneous","company":"bluetooth","latitude":0.6864373,"longitude":0.2766055,"name":"gold","country_code":"LB","province_code":"North Dakota"},{"first_name":"Evalyn","address1":"Kassulke Shores","phone":"overriding","city":"Jaceyburgh","zip":"Handcrafted Concrete Chicken","province":"Alaska","country":"Democratic People\u0027s Republic of Korea","last_name":"Ankunding","address2":null,"company":"Turnpike","latitude":0.40271956,"longitude":0.23823602,"name":"Shoals","country_code":"BV","province_code":"Distributed"}]},{"id":5191328669604682282,"email":"Roosevelt_Dare74@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T18:49:54.2128859+01:00","updated_at":"2020-09-15T21:40:03.9957882+01:00","first_name":"Lillie","last_name":"Hayes","orders_count":1495984373,"state":"Colorado","total_spent":"Rubber","last_order_id":1705310774191516799,"note":"Functionality","verified_email":false,"multipass_identifier":"mesh","tax_exempt":true,"tags":"Credit Card Account","last_order_name":"calculate","default_address":{"first_name":"Ivory","address1":"Dixie Mount","phone":"leverage","city":"Lake Amostown","zip":"Delaware","province":null,"country":"Brunei Darussalam","last_name":"Gibson","address2":null,"company":"mint green","latitude":0.5004098,"longitude":0.1621479,"name":"Syrian Arab Republic","country_code":"MZ","province_code":"New Hampshire"},"addresses":[{"first_name":"Adah","address1":"Assimilated","phone":"Clothing \u0026 Books","city":"Luettgenbury","zip":"initiatives","province":"e-business","country":"Cuba","last_name":"Weissnat","address2":"Serbian Dinar","company":"bypassing","latitude":0.34963647,"longitude":0.99259675,"name":"Guinea-Bissau","country_code":"CR","province_code":"attitude"},{"first_name":"Riley","address1":"Gorgeous Wooden Computer","phone":"Intranet","city":"South Fredrick","zip":"proactive","province":"channels","country":"Bahamas","last_name":"Cummings","address2":"Louisiana","company":"Grocery \u0026 Home","latitude":0.038570676,"longitude":0.2162873,"name":"Small","country_code":"RU","province_code":"Yemeni Rial"},{"first_name":"Adolphus","address1":"Cotton","phone":"Web","city":"West Caitlynborough","zip":"Cape Verde Escudo","province":"Awesome Rubber Tuna","country":"Belgium","last_name":"Gutmann","address2":"national","company":"disintermediate","latitude":0.045502957,"longitude":0.4608651,"name":"paradigm","country_code":"BY","province_code":"Fantastic Frozen Mouse"},{"first_name":"Ivory","address1":"Dixie Mount","phone":"leverage","city":"Lake Amostown","zip":"Delaware","province":null,"country":"Brunei Darussalam","last_name":"Gibson","address2":null,"company":"mint green","latitude":0.5004098,"longitude":0.1621479,"name":"Syrian Arab Republic","country_code":"MZ","province_code":"New Hampshire"}]},{"id":5387826627533786459,"email":"Karla_Mills@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T17:16:54.5241265+01:00","updated_at":"2020-09-16T07:06:47.6564567+01:00","first_name":"Myrtice","last_name":"Sanford","orders_count":-1881347090,"state":"Arizona","total_spent":"New Mexico","last_order_id":-8927554978794051404,"note":"evolve","verified_email":true,"multipass_identifier":"Gourde","tax_exempt":true,"tags":"Chief","last_order_name":"Kwanza","default_address":{"first_name":"Edward","address1":"Garfield Glens","phone":"Incredible Soft Mouse","city":"West Priscillashire","zip":"Vista","province":"Hawaii","country":"Jersey","last_name":"Cronin","address2":null,"company":"black","latitude":0.23169407,"longitude":0.25228536,"name":"Devolved","country_code":"GM","province_code":"compressing"},"addresses":[{"first_name":"Eldridge","address1":"Berkshire","phone":"implement","city":"Lake Tiamouth","zip":"Turnpike","province":"Center","country":"United Kingdom","last_name":"Rath","address2":"Venezuela","company":"Lesotho","latitude":0.12459579,"longitude":0.70055014,"name":"Unbranded Soft Chair","country_code":"KR","province_code":"front-end"},{"first_name":"Viva","address1":"Integration","phone":"Accountability","city":"New Addie","zip":"Awesome","province":"portals","country":"Saint Vincent and the Grenadines","last_name":"Kuhic","address2":"Avon","company":"Pakistan","latitude":0.9999907,"longitude":0.027689833,"name":"Vista","country_code":"BQ","province_code":"Grocery \u0026 Industrial"},{"first_name":"Odessa","address1":"withdrawal","phone":"Program","city":"West Evastad","zip":"Rhode Island","province":"sensor","country":"Equatorial Guinea","last_name":"Mante","address2":"Configuration","company":"Rubber","latitude":0.9786745,"longitude":0.07797922,"name":"SDD","country_code":"IE","province_code":"Hills"},{"first_name":"Edward","address1":"Garfield Glens","phone":"Incredible Soft Mouse","city":"West Priscillashire","zip":"Vista","province":"Hawaii","country":"Jersey","last_name":"Cronin","address2":null,"company":"black","latitude":0.23169407,"longitude":0.25228536,"name":"Devolved","country_code":"GM","province_code":"compressing"}]},{"id":-4650548899026830108,"email":"Guadalupe78@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T04:12:53.699174+01:00","updated_at":"2020-09-16T00:13:04.6294543+01:00","first_name":"Rashawn","last_name":"Waelchi","orders_count":-1606463071,"state":"South Carolina","total_spent":"navigate","last_order_id":8680640366848749138,"note":"radical","verified_email":true,"multipass_identifier":"integrate","tax_exempt":false,"tags":"Personal Loan Account","last_order_name":"Berkshire","default_address":{"first_name":"Keira","address1":"Braun Squares","phone":"Plastic","city":"New Kaitlynfurt","zip":"Open-architected","province":null,"country":"Azerbaijan","last_name":"Mohr","address2":null,"company":"bus","latitude":0.023017664,"longitude":0.40950555,"name":"circuit","country_code":"NE","province_code":"Metrics"},"addresses":[{"first_name":"Laron","address1":"El Salvador Colon","phone":"indigo","city":"Jamelborough","zip":"enhance","province":"Nebraska","country":"Reunion","last_name":"Mosciski","address2":"Buckinghamshire","company":"visionary","latitude":0.88458955,"longitude":0.6842276,"name":"digital","country_code":"BQ","province_code":"Intelligent Frozen Bacon"},{"first_name":"Ozella","address1":"Village","phone":"plug-and-play","city":"Kautzerburgh","zip":"protocol","province":"Balanced","country":"Monaco","last_name":"Heaney","address2":"FTP","company":"Wooden","latitude":0.7116171,"longitude":0.5989839,"name":"Nakfa","country_code":"MH","province_code":"North Korean Won"},{"first_name":"Zola","address1":"Bedfordshire","phone":"Louisiana","city":"West Aurore","zip":"Metal","province":"US Dollar","country":"Greece","last_name":"Reichert","address2":"Berkshire","company":"quantifying","latitude":0.32416353,"longitude":0.72842544,"name":"grid-enabled","country_code":"AE","province_code":"payment"},{"first_name":"Keira","address1":"Braun Squares","phone":"Plastic","city":"New Kaitlynfurt","zip":"Open-architected","province":null,"country":"Azerbaijan","last_name":"Mohr","address2":null,"company":"bus","latitude":0.023017664,"longitude":0.40950555,"name":"circuit","country_code":"NE","province_code":"Metrics"}]},{"id":478079986830731092,"email":"Sherry44@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T15:23:26.2561244+01:00","updated_at":"2020-09-16T04:03:56.1051805+01:00","first_name":"Cicero","last_name":"Morissette","orders_count":918323568,"state":"Kentucky","total_spent":"Networked","last_order_id":1707942936310171984,"note":"payment","verified_email":true,"multipass_identifier":"Senior","tax_exempt":true,"tags":"USB","last_order_name":"Baby, Games \u0026 Home","default_address":{"first_name":"Mireya","address1":"Aleen Ports","phone":"Associate","city":"West Queenie","zip":"Corners","province":null,"country":"Mozambique","last_name":"Zieme","address2":null,"company":"Berkshire","latitude":0.45527536,"longitude":0.36662376,"name":"Drive","country_code":"JP","province_code":"out-of-the-box"},"addresses":[{"first_name":"Marcelina","address1":"Garden \u0026 Health","phone":"Brazil","city":"Erlington","zip":"microchip","province":"Hawaii","country":"Bangladesh","last_name":"Bogisich","address2":"vortals","company":"Sleek Fresh Towels","latitude":0.80090076,"longitude":0.18601455,"name":"fuchsia","country_code":"BB","province_code":"Fantastic"},{"first_name":"Rosella","address1":"neural","phone":"Music","city":"East Arnoland","zip":"Rubber","province":"Money Market Account","country":"Brunei Darussalam","last_name":"O\u0027Conner","address2":"Alabama","company":"synergize","latitude":0.4861614,"longitude":0.6491813,"name":"hack","country_code":"KE","province_code":"contingency"},{"first_name":"Annette","address1":"pink","phone":"Operations","city":"Antonettaton","zip":"Robust","province":"sensor","country":"Jersey","last_name":"Erdman","address2":"calculate","company":"calculate","latitude":0.46730122,"longitude":0.21026371,"name":"Producer","country_code":"SI","province_code":"users"},{"first_name":"Mireya","address1":"Aleen Ports","phone":"Associate","city":"West Queenie","zip":"Corners","province":null,"country":"Mozambique","last_name":"Zieme","address2":null,"company":"Berkshire","latitude":0.45527536,"longitude":0.36662376,"name":"Drive","country_code":"JP","province_code":"out-of-the-box"}]},{"id":2672558326191861827,"email":"Charles.Zboncak92@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T06:48:21.7539732+01:00","updated_at":"2020-09-15T16:25:52.8881219+01:00","first_name":"Timmy","last_name":"Feil","orders_count":969390481,"state":"Florida","total_spent":"Squares","last_order_id":4715943306601998408,"note":"high-level","verified_email":false,"multipass_identifier":"process improvement","tax_exempt":false,"tags":"deposit","last_order_name":"Rubber","default_address":{"first_name":"Carrie","address1":"Jeramy Throughway","phone":"Assurance","city":"Gibsonview","zip":"synthesizing","province":"Colorado","country":"Swaziland","last_name":"Kilback","address2":null,"company":"Gorgeous Plastic Gloves","latitude":0.11702666,"longitude":0.10429706,"name":"Cook Islands","country_code":"GS","province_code":"Stand-alone"},"addresses":[{"first_name":"Aiyana","address1":"Gorgeous","phone":"Lead","city":"Stammport","zip":"Handmade Granite Cheese","province":"Mills","country":"Switzerland","last_name":"Donnelly","address2":"Proactive","company":"array","latitude":0.23611428,"longitude":0.124483414,"name":"Rubber","country_code":"CZ","province_code":"Spurs"},{"first_name":"Katelyn","address1":"Cambridgeshire","phone":"applications","city":"Kelsieland","zip":"programming","province":"compressing","country":"Ireland","last_name":"Pfannerstill","address2":"matrix","company":"Technician","latitude":0.72225523,"longitude":0.35374406,"name":"Divide","country_code":"SZ","province_code":"panel"},{"first_name":"Lea","address1":"Estates","phone":"efficient","city":"East Ginaville","zip":"firmware","province":"Unbranded Soft Fish","country":"Botswana","last_name":"DuBuque","address2":"Lithuanian Litas","company":"grey","latitude":0.5143434,"longitude":0.02533377,"name":"bi-directional","country_code":"VE","province_code":"Solutions"},{"first_name":"Carrie","address1":"Jeramy Throughway","phone":"Assurance","city":"Gibsonview","zip":"synthesizing","province":"Colorado","country":"Swaziland","last_name":"Kilback","address2":null,"company":"Gorgeous Plastic Gloves","latitude":0.11702666,"longitude":0.10429706,"name":"Cook Islands","country_code":"GS","province_code":"Stand-alone"}]},{"id":2749411904086582414,"email":"Stephanie.Armstrong76@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T17:55:41.4762761+01:00","updated_at":"2020-09-16T01:16:02.6507235+01:00","first_name":"Mina","last_name":"Haley","orders_count":-578415174,"state":"Georgia","total_spent":"lime","last_order_id":1615125385875568476,"note":"empower","verified_email":false,"multipass_identifier":"encryption","tax_exempt":true,"tags":"grey","last_order_name":"Quality","default_address":{"first_name":"Xavier","address1":"Aubree Light","phone":"Berkshire","city":"East Rosalee","zip":"Berkshire","province":null,"country":"Tanzania","last_name":"Gaylord","address2":null,"company":"HTTP","latitude":0.3943896,"longitude":0.24977398,"name":"GB","country_code":"DJ","province_code":"New Taiwan Dollar"},"addresses":[{"first_name":"Bryon","address1":"blue","phone":"generating","city":"Riceville","zip":"Berkshire","province":"monitor","country":"Nigeria","last_name":"Shanahan","address2":"Kazakhstan","company":"Gorgeous Plastic Bike","latitude":0.23367849,"longitude":0.16926381,"name":"Clothing \u0026 Toys","country_code":"GM","province_code":"Product"},{"first_name":"Marisol","address1":"Steel","phone":"indigo","city":"Jewellland","zip":"Regional","province":"system","country":"Papua New Guinea","last_name":"Steuber","address2":"SSL","company":"Togo","latitude":0.86858267,"longitude":0.49076435,"name":"seize","country_code":"NG","province_code":"Metal"},{"first_name":"Freddy","address1":"schemas","phone":"Row","city":"North Gilbertofurt","zip":"XML","province":"Pound Sterling","country":"Colombia","last_name":"Wolff","address2":"Swiss Franc","company":"Soft","latitude":0.6497201,"longitude":0.9164595,"name":"Gorgeous","country_code":"IQ","province_code":"withdrawal"},{"first_name":"Xavier","address1":"Aubree Light","phone":"Berkshire","city":"East Rosalee","zip":"Berkshire","province":null,"country":"Tanzania","last_name":"Gaylord","address2":null,"company":"HTTP","latitude":0.3943896,"longitude":0.24977398,"name":"GB","country_code":"DJ","province_code":"New Taiwan Dollar"}]},{"id":-330502110152773020,"email":"Roxanne_Robel@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T04:40:48.5633918+01:00","updated_at":"2020-09-16T02:55:04.4007528+01:00","first_name":"Mandy","last_name":"Bins","orders_count":-156231637,"state":"Wisconsin","total_spent":"Global","last_order_id":6245539929180941238,"note":"Sleek Plastic Tuna","verified_email":false,"multipass_identifier":"online","tax_exempt":false,"tags":"Investor","last_order_name":"Lead","default_address":{"first_name":"Sydni","address1":"Waelchi Manors","phone":"Unbranded","city":"Hermannland","zip":"Oklahoma","province":null,"country":"Guyana","last_name":"Davis","address2":null,"company":"Brand","latitude":0.9088058,"longitude":0.2707896,"name":"Lao People\u0027s Democratic Republic","country_code":"BY","province_code":"Home Loan Account"},"addresses":[{"first_name":"Earlene","address1":"Handcrafted","phone":"Intelligent Metal Chips","city":"Emilyberg","zip":"Ergonomic Granite Mouse","province":"Centralized","country":"Sierra Leone","last_name":"Mosciski","address2":"International","company":"paradigms","latitude":0.18850005,"longitude":0.00061416486,"name":"Comoros","country_code":"MQ","province_code":"Grocery"},{"first_name":"Okey","address1":"Ergonomic Steel Table","phone":"Fantastic Granite Chair","city":"Sabrynafurt","zip":"circuit","province":"Senior","country":"Equatorial Guinea","last_name":"Runte","address2":"Rustic Plastic Cheese","company":"Kyrgyz Republic","latitude":0.07994146,"longitude":0.8019357,"name":"Gorgeous","country_code":"CF","province_code":"copy"},{"first_name":"Bernardo","address1":"United States Minor Outlying Islands","phone":"24/7","city":"North Collinport","zip":"Facilitator","province":"Director","country":"Slovenia","last_name":"Lowe","address2":"Technician","company":"Borders","latitude":0.6678292,"longitude":0.11937749,"name":"Run","country_code":"CG","province_code":"e-enable"},{"first_name":"Sydni","address1":"Waelchi Manors","phone":"Unbranded","city":"Hermannland","zip":"Oklahoma","province":null,"country":"Guyana","last_name":"Davis","address2":null,"company":"Brand","latitude":0.9088058,"longitude":0.2707896,"name":"Lao People\u0027s Democratic Republic","country_code":"BY","province_code":"Home Loan Account"}]},{"id":7709038199044566913,"email":"Samuel_Runolfsson94@hotmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:19:10.0505917+01:00","updated_at":"2020-09-16T03:22:41.7480277+01:00","first_name":"Tevin","last_name":"Kuhlman","orders_count":1515984176,"state":"Ohio","total_spent":"Handmade","last_order_id":774068843583377495,"note":"Savings Account","verified_email":true,"multipass_identifier":"Practical Concrete Tuna","tax_exempt":false,"tags":"bypass","last_order_name":"Coves","default_address":{"first_name":"Taylor","address1":"Domenico Stream","phone":"XSS","city":"East Randyport","zip":"Cotton","province":null,"country":"Nepal","last_name":"Bins","address2":null,"company":"Personal Loan Account","latitude":0.3900756,"longitude":0.2645045,"name":"bypassing","country_code":"TO","province_code":"conglomeration"},"addresses":[{"first_name":"Stone","address1":"Ville","phone":"South Dakota","city":"Isommouth","zip":"Colombian Peso","province":"robust","country":"Afghanistan","last_name":"Bins","address2":"Balanced","company":"CSS","latitude":0.558404,"longitude":0.8861784,"name":"invoice","country_code":"RE","province_code":"matrix"},{"first_name":"Stephanie","address1":"object-oriented","phone":"wireless","city":"Langoshbury","zip":"enhance","province":"bypass","country":"Serbia","last_name":"Mohr","address2":"Directives","company":"Generic","latitude":0.6187562,"longitude":0.16153108,"name":"e-markets","country_code":"AQ","province_code":"Licensed"},{"first_name":"Ruth","address1":"SSL","phone":"Fantastic Soft Mouse","city":"Waelchibury","zip":"Assurance","province":"Practical Wooden Bike","country":"Netherlands","last_name":"Jacobson","address2":"bypassing","company":"virtual","latitude":0.54499876,"longitude":0.73072785,"name":"Administrator","country_code":"CD","province_code":"Security"},{"first_name":"Taylor","address1":"Domenico Stream","phone":"XSS","city":"East Randyport","zip":"Cotton","province":null,"country":"Nepal","last_name":"Bins","address2":null,"company":"Personal Loan Account","latitude":0.3900756,"longitude":0.2645045,"name":"bypassing","country_code":"TO","province_code":"conglomeration"}]},{"id":-1350232410188029192,"email":"Noel.Lebsack@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T06:29:44.0653207+01:00","updated_at":"2020-09-16T00:46:52.38226+01:00","first_name":"Eusebio","last_name":"Murphy","orders_count":1830283453,"state":"Mississippi","total_spent":"PCI","last_order_id":767462453734609909,"note":"lavender","verified_email":true,"multipass_identifier":"magnetic","tax_exempt":false,"tags":"Interactions","last_order_name":"non-volatile","default_address":{"first_name":"Maximilian","address1":"Elissa Road","phone":"Frozen","city":"Lake Janiyaside","zip":"teal","province":"Vermont","country":"Niger","last_name":"Harvey","address2":null,"company":"Beauty, Kids \u0026 Clothing","latitude":0.33954582,"longitude":0.32256073,"name":"initiative","country_code":"IO","province_code":"SCSI"},"addresses":[{"first_name":"Raymond","address1":"Buckinghamshire","phone":"robust","city":"Raynorton","zip":"value-added","province":"Handcrafted Rubber Chicken","country":"Gabon","last_name":"Leannon","address2":"Saudi Arabia","company":"connect","latitude":0.5508708,"longitude":0.6495972,"name":"middleware","country_code":"EH","province_code":"Locks"},{"first_name":"Syble","address1":"Metrics","phone":"Macedonia","city":"Keeblerburgh","zip":"compressing","province":"embrace","country":"Guernsey","last_name":"Wilderman","address2":"Kids \u0026 Shoes","company":"back-end","latitude":0.09943722,"longitude":0.5558206,"name":"whiteboard","country_code":"RO","province_code":"COM"},{"first_name":"Evans","address1":"knowledge base","phone":"holistic","city":"Eudoraside","zip":"Bedfordshire","province":"Agent","country":"Togo","last_name":"Heathcote","address2":"Diverse","company":"Facilitator","latitude":0.63907444,"longitude":0.4193961,"name":"transmit","country_code":"KI","province_code":"New Mexico"},{"first_name":"Maximilian","address1":"Elissa Road","phone":"Frozen","city":"Lake Janiyaside","zip":"teal","province":"Vermont","country":"Niger","last_name":"Harvey","address2":null,"company":"Beauty, Kids \u0026 Clothing","latitude":0.33954582,"longitude":0.32256073,"name":"initiative","country_code":"IO","province_code":"SCSI"}]},{"id":-5157553390370596823,"email":"Keith.Runolfsson@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T03:07:34.3146192+01:00","updated_at":"2020-09-15T15:05:33.0805532+01:00","first_name":"Pietro","last_name":"Feest","orders_count":-809297418,"state":"Kentucky","total_spent":"Credit Card Account","last_order_id":6425679928629993468,"note":"Books","verified_email":true,"multipass_identifier":"protocol","tax_exempt":true,"tags":"XSS","last_order_name":"Sports","default_address":{"first_name":"Winfield","address1":"Pouros Loaf","phone":"bandwidth","city":"North Doyle","zip":"Beauty","province":null,"country":"United Kingdom","last_name":"Bauch","address2":"Garnet Locks","company":"panel","latitude":0.6938083,"longitude":0.6647738,"name":"Isle","country_code":"AE","province_code":"Home Loan Account"},"addresses":[{"first_name":"Demetris","address1":"Plastic","phone":"capability","city":"North Bradybury","zip":"Kentucky","province":"Dynamic","country":"Mali","last_name":"Dibbert","address2":"reboot","company":"infrastructures","latitude":0.53106934,"longitude":0.5643099,"name":"Cuban Peso Convertible","country_code":"IL","province_code":"copying"},{"first_name":"Dejon","address1":"multi-tasking","phone":"Applications","city":"Hermannville","zip":"Incredible Frozen Car","province":"input","country":"Haiti","last_name":"Wiegand","address2":"withdrawal","company":"Solutions","latitude":0.8751561,"longitude":0.91147727,"name":"Incredible","country_code":"CF","province_code":"Refined Granite Chair"},{"first_name":"Deron","address1":"Fantastic Granite Pizza","phone":"Borders","city":"Port Shawna","zip":"Cambodia","province":"card","country":"Djibouti","last_name":"Murphy","address2":"Chilean Peso","company":"override","latitude":0.24803144,"longitude":0.7046462,"name":"Principal","country_code":"TG","province_code":"copy"},{"first_name":"Winfield","address1":"Pouros Loaf","phone":"bandwidth","city":"North Doyle","zip":"Beauty","province":null,"country":"United Kingdom","last_name":"Bauch","address2":"Garnet Locks","company":"panel","latitude":0.6938083,"longitude":0.6647738,"name":"Isle","country_code":"AE","province_code":"Home Loan Account"}]},{"id":-6270238052728741096,"email":"Ted3@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T23:41:15.0810922+01:00","updated_at":"2020-09-16T03:51:05.2283317+01:00","first_name":"Jaylan","last_name":"Kling","orders_count":478274400,"state":"Nebraska","total_spent":"back-end","last_order_id":732773660726050582,"note":"program","verified_email":true,"multipass_identifier":"GB","tax_exempt":true,"tags":"initiatives","last_order_name":"green","default_address":{"first_name":"Veronica","address1":"Ulises Valleys","phone":"azure","city":"South Maude","zip":"intuitive","province":"California","country":"Mauritania","last_name":"Boehm","address2":null,"company":"AGP","latitude":0.47725978,"longitude":0.19087262,"name":"input","country_code":"ST","province_code":"Practical Wooden Chicken"},"addresses":[{"first_name":"Durward","address1":"incentivize","phone":"Guinea","city":"Celiamouth","zip":"Rest","province":"Meadow","country":"South Georgia and the South Sandwich Islands","last_name":"Mitchell","address2":"Delaware","company":"Computers","latitude":0.8631475,"longitude":0.88620377,"name":"Security","country_code":"UA","province_code":"Stream"},{"first_name":"Camden","address1":"Handcrafted Granite Pizza","phone":"collaborative","city":"South Angus","zip":"transmitter","province":"metrics","country":"Mauritius","last_name":"Bernier","address2":"hybrid","company":"Total","latitude":0.57475597,"longitude":0.5012689,"name":"XML","country_code":"BE","province_code":"Investment Account"},{"first_name":"Kenyon","address1":"compress","phone":"orange","city":"Lake Colby","zip":"database","province":"back-end","country":"Cuba","last_name":"Dibbert","address2":"value-added","company":"index","latitude":0.829793,"longitude":0.12210045,"name":"Streamlined","country_code":"GF","province_code":"payment"},{"first_name":"Veronica","address1":"Ulises Valleys","phone":"azure","city":"South Maude","zip":"intuitive","province":"California","country":"Mauritania","last_name":"Boehm","address2":null,"company":"AGP","latitude":0.47725978,"longitude":0.19087262,"name":"input","country_code":"ST","province_code":"Practical Wooden Chicken"}]},{"id":3949949538409780998,"email":"Raymond.Zieme@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T09:20:51.7041802+01:00","updated_at":"2020-09-15T14:06:15.2855134+01:00","first_name":"Connor","last_name":"Herzog","orders_count":-1195218835,"state":"Oklahoma","total_spent":"Ohio","last_order_id":-1870272814475983411,"note":"card","verified_email":true,"multipass_identifier":"revolutionize","tax_exempt":false,"tags":"Tasty Plastic Table","last_order_name":"Money Market Account","default_address":{"first_name":"Grady","address1":"Bayer Mount","phone":"Computers \u0026 Games","city":"Lake Maybellechester","zip":"generate","province":null,"country":"Saudi Arabia","last_name":"Murphy","address2":null,"company":"Garden","latitude":0.014394206,"longitude":0.6697355,"name":"web services","country_code":"GA","province_code":"fault-tolerant"},"addresses":[{"first_name":"Seth","address1":"Nakfa","phone":"Virgin Islands, British","city":"West Louieport","zip":"bypass","province":"Cambridgeshire","country":"Slovenia","last_name":"O\u0027Keefe","address2":"violet","company":"Checking Account","latitude":0.8933042,"longitude":0.80155015,"name":"Fantastic Granite Tuna","country_code":"KM","province_code":"Generic"},{"first_name":"Miles","address1":"Ville","phone":"interface","city":"Donnellhaven","zip":"Optimization","province":"Movies","country":"Seychelles","last_name":"Goyette","address2":"Business-focused","company":"Small Rubber Chips","latitude":0.88800234,"longitude":0.83051187,"name":"relationships","country_code":"TD","province_code":"Intranet"},{"first_name":"Lillian","address1":"Developer","phone":"platforms","city":"Skyefort","zip":"maroon","province":"transmitter","country":"Poland","last_name":"Schoen","address2":"US Dollar","company":"Implementation","latitude":0.83833003,"longitude":0.85982823,"name":"enable","country_code":"BO","province_code":"Place"},{"first_name":"Grady","address1":"Bayer Mount","phone":"Computers \u0026 Games","city":"Lake Maybellechester","zip":"generate","province":null,"country":"Saudi Arabia","last_name":"Murphy","address2":null,"company":"Garden","latitude":0.014394206,"longitude":0.6697355,"name":"web services","country_code":"GA","province_code":"fault-tolerant"}]},{"id":-8245197899069761189,"email":"Lloyd_Fadel@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T06:26:00.4220701+01:00","updated_at":"2020-09-15T21:32:51.0681222+01:00","first_name":"Felicity","last_name":"Kozey","orders_count":2053326905,"state":"Virginia","total_spent":"Way","last_order_id":-8786516378805859226,"note":"Georgia","verified_email":false,"multipass_identifier":"generate","tax_exempt":true,"tags":"National","last_order_name":"calculating","default_address":{"first_name":"Matt","address1":"Schmeler Branch","phone":"USB","city":"Bridiemouth","zip":"maximize","province":null,"country":"Benin","last_name":"Paucek","address2":null,"company":"Ghana","latitude":0.7278752,"longitude":0.92420185,"name":"backing up","country_code":"GR","province_code":"Bedfordshire"},"addresses":[{"first_name":"Maximo","address1":"deliver","phone":"Home Loan Account","city":"Reynoldshire","zip":"online","province":"sky blue","country":"Tajikistan","last_name":"Hane","address2":"e-markets","company":"matrix","latitude":0.6353469,"longitude":0.7375188,"name":"International","country_code":"DZ","province_code":"THX"},{"first_name":"Arianna","address1":"Saudi Riyal","phone":"archive","city":"West Kennachester","zip":"Cambridgeshire","province":"bypassing","country":"Vietnam","last_name":"Lindgren","address2":"Assistant","company":"circuit","latitude":0.7374935,"longitude":0.98784304,"name":"UIC-Franc","country_code":"IR","province_code":"project"},{"first_name":"Queen","address1":"SDR","phone":"Maryland","city":"Port Ruthhaven","zip":"withdrawal","province":"Lead","country":"Ireland","last_name":"Reinger","address2":"driver","company":"Credit Card Account","latitude":0.89237654,"longitude":0.676159,"name":"Madagascar","country_code":"GF","province_code":"Unbranded Steel Towels"},{"first_name":"Matt","address1":"Schmeler Branch","phone":"USB","city":"Bridiemouth","zip":"maximize","province":null,"country":"Benin","last_name":"Paucek","address2":null,"company":"Ghana","latitude":0.7278752,"longitude":0.92420185,"name":"backing up","country_code":"GR","province_code":"Bedfordshire"}]},{"id":5411901611456186762,"email":"Cedric93@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T02:05:56.9631643+01:00","updated_at":"2020-09-16T01:47:52.1827812+01:00","first_name":"Marilie","last_name":"Yundt","orders_count":938905497,"state":"Maine","total_spent":"back-end","last_order_id":2782554998494152813,"note":"quantify","verified_email":true,"multipass_identifier":"JBOD","tax_exempt":false,"tags":"Re-engineered","last_order_name":"Mayotte","default_address":{"first_name":"Nya","address1":"Annamae Station","phone":"Licensed","city":"North Jazminborough","zip":"Lodge","province":"Massachusetts","country":"Kyrgyz Republic","last_name":"Nader","address2":null,"company":"Som","latitude":0.42387116,"longitude":0.7461869,"name":"withdrawal","country_code":"VA","province_code":"Pike"},"addresses":[{"first_name":"Asia","address1":"compress","phone":"reboot","city":"Baileefurt","zip":"mobile","province":"Philippines","country":"Madagascar","last_name":"Labadie","address2":"enhance","company":"mesh","latitude":0.7180965,"longitude":0.049737636,"name":"compress","country_code":"SR","province_code":"Licensed Frozen Keyboard"},{"first_name":"Delmer","address1":"Dynamic","phone":"quantify","city":"Karleyside","zip":"Maine","province":"Senior","country":"Mongolia","last_name":"Bartoletti","address2":"backing up","company":"homogeneous","latitude":0.051172674,"longitude":0.8083431,"name":"deposit","country_code":"LA","province_code":"Gardens"},{"first_name":"Myles","address1":"haptic","phone":"mobile","city":"Port Jerryfurt","zip":"gold","province":"5th generation","country":"Azerbaijan","last_name":"Block","address2":"Lilangeni","company":"National","latitude":0.37165424,"longitude":0.98772514,"name":"SQL","country_code":"BZ","province_code":"copying"},{"first_name":"Nya","address1":"Annamae Station","phone":"Licensed","city":"North Jazminborough","zip":"Lodge","province":"Massachusetts","country":"Kyrgyz Republic","last_name":"Nader","address2":null,"company":"Som","latitude":0.42387116,"longitude":0.7461869,"name":"withdrawal","country_code":"VA","province_code":"Pike"}]},{"id":7200797272515057270,"email":"Lucy_Waters47@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T20:35:45.9023248+01:00","updated_at":"2020-09-16T01:03:38.7204013+01:00","first_name":"Anais","last_name":"Lockman","orders_count":-950400261,"state":"Hawaii","total_spent":"SMS","last_order_id":-4369357295537494698,"note":"Re-engineered","verified_email":true,"multipass_identifier":"multi-byte","tax_exempt":true,"tags":"Roads","last_order_name":"HTTP","default_address":{"first_name":"Damaris","address1":"Barrows River","phone":"system-worthy","city":"East Chetton","zip":"1080p","province":null,"country":"Belize","last_name":"Wolff","address2":null,"company":"compress","latitude":0.6406222,"longitude":0.9157587,"name":"payment","country_code":"TK","province_code":"bandwidth-monitored"},"addresses":[{"first_name":"Cathrine","address1":"International","phone":"Cloned","city":"Spinkafort","zip":"Electronics, Kids \u0026 Kids","province":"Pula","country":"Niue","last_name":"Bernhard","address2":"evolve","company":"program","latitude":0.34469342,"longitude":0.8002931,"name":"disintermediate","country_code":"NC","province_code":"Tactics"},{"first_name":"Freida","address1":"generate","phone":"Home Loan Account","city":"Macyland","zip":"array","province":"Fresh","country":"Moldova","last_name":"Hegmann","address2":"Plastic","company":"digital","latitude":0.11493664,"longitude":0.45161587,"name":"vortals","country_code":"NR","province_code":"analyzer"},{"first_name":"Edward","address1":"Awesome Soft Bacon","phone":"executive","city":"Jamieberg","zip":"New Hampshire","province":"application","country":"Finland","last_name":"Legros","address2":"Refined","company":"invoice","latitude":0.11343644,"longitude":0.48020223,"name":"Glen","country_code":"PA","province_code":"Avon"},{"first_name":"Damaris","address1":"Barrows River","phone":"system-worthy","city":"East Chetton","zip":"1080p","province":null,"country":"Belize","last_name":"Wolff","address2":null,"company":"compress","latitude":0.6406222,"longitude":0.9157587,"name":"payment","country_code":"TK","province_code":"bandwidth-monitored"}]},{"id":-5012977197617731154,"email":"Violet_Pagac@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T10:28:51.8248997+01:00","updated_at":"2020-09-15T14:15:03.6136767+01:00","first_name":"Russel","last_name":"Murphy","orders_count":-1237005816,"state":"Connecticut","total_spent":"transmitting","last_order_id":5777484254289822412,"note":"interfaces","verified_email":false,"multipass_identifier":"Coordinator","tax_exempt":false,"tags":"Forward","last_order_name":"Alaska","default_address":{"first_name":"Geovany","address1":"Mann Causeway","phone":"green","city":"Garrymouth","zip":"Roads","province":null,"country":"United Kingdom","last_name":"Blanda","address2":null,"company":"Fantastic Plastic Hat","latitude":0.7286596,"longitude":0.5114789,"name":"Wooden","country_code":"KG","province_code":"orchid"},"addresses":[{"first_name":"Junior","address1":"North Dakota","phone":"full-range","city":"Kuhlmanfort","zip":"Personal Loan Account","province":"matrix","country":"Cayman Islands","last_name":"Torphy","address2":"clicks-and-mortar","company":"open-source","latitude":0.3481649,"longitude":0.4490005,"name":"supply-chains","country_code":"TL","province_code":"Shoal"},{"first_name":"Devin","address1":"Brunei Dollar","phone":"Belarus","city":"Lake Murlbury","zip":"Facilitator","province":"THX","country":"Chile","last_name":"Legros","address2":"index","company":"Usability","latitude":0.58157414,"longitude":0.9123596,"name":"SAS","country_code":"BV","province_code":"enable"},{"first_name":"Angus","address1":"Idaho","phone":"Program","city":"Watsonview","zip":"New Jersey","province":"local area network","country":"France","last_name":"Cummings","address2":"Missouri","company":"Fantastic Plastic Salad","latitude":0.6837216,"longitude":0.2357027,"name":"Row","country_code":"UZ","province_code":"Solomon Islands"},{"first_name":"Geovany","address1":"Mann Causeway","phone":"green","city":"Garrymouth","zip":"Roads","province":null,"country":"United Kingdom","last_name":"Blanda","address2":null,"company":"Fantastic Plastic Hat","latitude":0.7286596,"longitude":0.5114789,"name":"Wooden","country_code":"KG","province_code":"orchid"}]},{"id":1071871722723999049,"email":"Elvira_Gleason46@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T02:06:43.2489246+01:00","updated_at":"2020-09-15T13:35:54.0974557+01:00","first_name":"Allie","last_name":"Nitzsche","orders_count":-1939334131,"state":"Kentucky","total_spent":"Unbranded Frozen Tuna","last_order_id":-1842536886328097277,"note":"Ohio","verified_email":false,"multipass_identifier":"dynamic","tax_exempt":true,"tags":"Greece","last_order_name":"transmit","default_address":{"first_name":"Yesenia","address1":"Roderick Expressway","phone":"Bedfordshire","city":"West Phyllisport","zip":"program","province":"New Hampshire","country":"Romania","last_name":"Oberbrunner","address2":null,"company":"Functionality","latitude":0.6871647,"longitude":0.55859303,"name":"European Monetary Unit (E.M.U.-6)","country_code":"BQ","province_code":"Cambridgeshire"},"addresses":[{"first_name":"Issac","address1":"deliverables","phone":"Avon","city":"North Brian","zip":"South Dakota","province":"deposit","country":"Mozambique","last_name":"Kuphal","address2":"Green","company":"throughput","latitude":0.04258345,"longitude":0.42839578,"name":"transmit","country_code":"NP","province_code":"connect"},{"first_name":"Marc","address1":"Small","phone":"backing up","city":"Lake Camillaberg","zip":"Cyprus","province":"Licensed","country":"Pakistan","last_name":"Schneider","address2":"Plains","company":"Fantastic Wooden Pizza","latitude":0.46160424,"longitude":0.7948651,"name":"grow","country_code":"PG","province_code":"Track"},{"first_name":"Garrick","address1":"Granite","phone":"neural","city":"Jedchester","zip":"deposit","province":"Ridge","country":"Ethiopia","last_name":"Sporer","address2":"functionalities","company":"flexibility","latitude":0.35568455,"longitude":0.8517735,"name":"Ergonomic Granite Computer","country_code":"GP","province_code":"innovative"},{"first_name":"Yesenia","address1":"Roderick Expressway","phone":"Bedfordshire","city":"West Phyllisport","zip":"program","province":"New Hampshire","country":"Romania","last_name":"Oberbrunner","address2":null,"company":"Functionality","latitude":0.6871647,"longitude":0.55859303,"name":"European Monetary Unit (E.M.U.-6)","country_code":"BQ","province_code":"Cambridgeshire"}]},{"id":6430892541461015590,"email":"Geraldine97@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T16:03:17.6596864+01:00","updated_at":"2020-09-16T01:29:51.3329471+01:00","first_name":"Gia","last_name":"Hyatt","orders_count":-1889685072,"state":"Michigan","total_spent":"Fresh","last_order_id":-6330339866591866527,"note":"Industrial","verified_email":false,"multipass_identifier":"Brooks","tax_exempt":true,"tags":"Sleek Cotton Pants","last_order_name":"deposit","default_address":{"first_name":"Dayton","address1":"Horacio River","phone":"XML","city":"Brycenberg","zip":"override","province":null,"country":"Virgin Islands, U.S.","last_name":"Wilderman","address2":"Devan Creek","company":"payment","latitude":0.5550434,"longitude":0.06514018,"name":"Awesome Frozen Chair","country_code":"AW","province_code":"innovate"},"addresses":[{"first_name":"Domingo","address1":"Rubber","phone":"regional","city":"North Leoport","zip":"Progressive","province":"Soft","country":"Sweden","last_name":"Kozey","address2":"Gorgeous Plastic Car","company":"Optimized","latitude":0.031266097,"longitude":0.08466371,"name":"evolve","country_code":"SX","province_code":"Japan"},{"first_name":"Gladyce","address1":"AGP","phone":"Plastic","city":"Greenton","zip":"withdrawal","province":"programming","country":"Norfolk Island","last_name":"Konopelski","address2":"Identity","company":"tan","latitude":0.03560356,"longitude":0.67937356,"name":"Cote d\u0027Ivoire","country_code":"MN","province_code":"incentivize"},{"first_name":"Germaine","address1":"cross-platform","phone":"cross-platform","city":"Kohlerborough","zip":"Home Loan Account","province":"Tasty Metal Mouse","country":"Serbia","last_name":"Parisian","address2":"bypass","company":"withdrawal","latitude":0.24809949,"longitude":0.26383966,"name":"Meadow","country_code":"DM","province_code":"Viaduct"},{"first_name":"Dayton","address1":"Horacio River","phone":"XML","city":"Brycenberg","zip":"override","province":null,"country":"Virgin Islands, U.S.","last_name":"Wilderman","address2":"Devan Creek","company":"payment","latitude":0.5550434,"longitude":0.06514018,"name":"Awesome Frozen Chair","country_code":"AW","province_code":"innovate"}]},{"id":-3784188239070913641,"email":"Gerald26@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T15:33:10.437416+01:00","updated_at":"2020-09-15T20:18:19.8117044+01:00","first_name":"Yazmin","last_name":"Tillman","orders_count":1382862444,"state":"Washington","total_spent":"withdrawal","last_order_id":5251259655438497085,"note":"input","verified_email":true,"multipass_identifier":"Wells","tax_exempt":true,"tags":"Guinea-Bissau","last_order_name":"Multi-layered","default_address":{"first_name":"Gaylord","address1":"George Harbors","phone":"Extension","city":"New Vitamouth","zip":"Metal","province":null,"country":"Trinidad and Tobago","last_name":"McGlynn","address2":null,"company":"reboot","latitude":0.32212314,"longitude":0.23543558,"name":"Awesome Soft Gloves","country_code":"SZ","province_code":"Small Cotton Chips"},"addresses":[{"first_name":"Andreanne","address1":"Agent","phone":"Saint Pierre and Miquelon","city":"East Margueriteton","zip":"Bahamas","province":"envisioneer","country":"United States Minor Outlying Islands","last_name":"Weber","address2":"virtual","company":"Money Market Account","latitude":0.30954537,"longitude":0.47787765,"name":"Georgia","country_code":"BE","province_code":"Intelligent"},{"first_name":"Lottie","address1":"Hong Kong Dollar","phone":"Utah","city":"Justenshire","zip":"Advanced","province":"European Unit of Account 9(E.U.A.-9)","country":"Dominican Republic","last_name":"Crona","address2":"Pines","company":"web-readiness","latitude":0.21121119,"longitude":0.7158595,"name":"Strategist","country_code":"CY","province_code":"Lead"},{"first_name":"Dominic","address1":"convergence","phone":"synthesizing","city":"Ziemannberg","zip":"fuchsia","province":"Tennessee","country":"French Polynesia","last_name":"Gerlach","address2":"flexibility","company":"Rustic Granite Ball","latitude":0.23848832,"longitude":0.73305905,"name":"holistic","country_code":"BD","province_code":"invoice"},{"first_name":"Gaylord","address1":"George Harbors","phone":"Extension","city":"New Vitamouth","zip":"Metal","province":null,"country":"Trinidad and Tobago","last_name":"McGlynn","address2":null,"company":"reboot","latitude":0.32212314,"longitude":0.23543558,"name":"Awesome Soft Gloves","country_code":"SZ","province_code":"Small Cotton Chips"}]},{"id":-5311807536015260712,"email":"Roderick_Schultz71@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:22:28.9976957+01:00","updated_at":"2020-09-15T20:54:59.281092+01:00","first_name":"Lauren","last_name":"Rutherford","orders_count":1372893677,"state":"Missouri","total_spent":"Money Market Account","last_order_id":7471107138268253125,"note":"Music, Garden \u0026 Movies","verified_email":false,"multipass_identifier":"definition","tax_exempt":true,"tags":"impactful","last_order_name":"Guyana Dollar","default_address":{"first_name":"Joe","address1":"Green Vista","phone":"streamline","city":"Uptonside","zip":"Camp","province":null,"country":"Canada","last_name":"Little","address2":null,"company":"Bermudian Dollar (customarily known as Bermuda Dollar)","latitude":0.30303708,"longitude":0.22646515,"name":"withdrawal","country_code":"LI","province_code":"Via"},"addresses":[{"first_name":"Tremaine","address1":"Savings Account","phone":"Circles","city":"Oscarhaven","zip":"communities","province":"Cambridgeshire","country":"Estonia","last_name":"Braun","address2":"Lakes","company":"azure","latitude":0.79599774,"longitude":0.21298389,"name":"Distributed","country_code":"ET","province_code":"functionalities"},{"first_name":"Amparo","address1":"sensor","phone":"South Carolina","city":"Framitown","zip":"visualize","province":"viral","country":"Qatar","last_name":"Adams","address2":"tan","company":"View","latitude":0.4708028,"longitude":0.95616883,"name":"Tasty Cotton Towels","country_code":"GF","province_code":"bypass"},{"first_name":"Florida","address1":"black","phone":"Product","city":"Desireeshire","zip":"Ergonomic Wooden Ball","province":"grey","country":"Swaziland","last_name":"Medhurst","address2":"Infrastructure","company":"Cape Verde Escudo","latitude":0.8378451,"longitude":0.37397474,"name":"Iowa","country_code":"GT","province_code":"Refined Wooden Sausages"},{"first_name":"Joe","address1":"Green Vista","phone":"streamline","city":"Uptonside","zip":"Camp","province":null,"country":"Canada","last_name":"Little","address2":null,"company":"Bermudian Dollar (customarily known as Bermuda Dollar)","latitude":0.30303708,"longitude":0.22646515,"name":"withdrawal","country_code":"LI","province_code":"Via"}]},{"id":7923300442365911901,"email":"Sonya.Daugherty67@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T02:29:41.9585251+01:00","updated_at":"2020-09-15T23:31:11.0699808+01:00","first_name":"Ella","last_name":"Larkin","orders_count":1017984325,"state":"Indiana","total_spent":"Internal","last_order_id":-6932853358217445957,"note":"Tactics","verified_email":false,"multipass_identifier":"Mobility","tax_exempt":false,"tags":"West Virginia","last_order_name":"ADP","default_address":{"first_name":"Hassan","address1":"McLaughlin Stream","phone":"Communications","city":"Aufderharstad","zip":"Garden","province":null,"country":"Nauru","last_name":"Jaskolski","address2":null,"company":"input","latitude":0.5846186,"longitude":0.38826293,"name":"Sleek","country_code":"BH","province_code":"Adaptive"},"addresses":[{"first_name":"Melyssa","address1":"Guam","phone":"Land","city":"New Kyleigh","zip":"PCI","province":"Credit Card Account","country":"Senegal","last_name":"Murphy","address2":"Valleys","company":"Visionary","latitude":0.29790324,"longitude":0.75631756,"name":"Convertible Marks","country_code":"CN","province_code":"Awesome Fresh Hat"},{"first_name":"Hillard","address1":"Switchable","phone":"system engine","city":"North Nikolas","zip":"primary","province":"Tools","country":"Eritrea","last_name":"Ondricka","address2":"cross-platform","company":"frictionless","latitude":0.29657546,"longitude":0.49687865,"name":"Generic Steel Ball","country_code":"KP","province_code":"Practical Rubber Tuna"},{"first_name":"Mervin","address1":"Pines","phone":"conglomeration","city":"Lake Dallin","zip":"quantify","province":"Unbranded Metal Soap","country":"Uzbekistan","last_name":"Jerde","address2":"driver","company":"Avon","latitude":0.45993042,"longitude":0.5225844,"name":"Electronics, Games \u0026 Automotive","country_code":"CY","province_code":"green"},{"first_name":"Hassan","address1":"McLaughlin Stream","phone":"Communications","city":"Aufderharstad","zip":"Garden","province":null,"country":"Nauru","last_name":"Jaskolski","address2":null,"company":"input","latitude":0.5846186,"longitude":0.38826293,"name":"Sleek","country_code":"BH","province_code":"Adaptive"}]},{"id":2632473516658701579,"email":"Kent49@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T11:14:20.2528968+01:00","updated_at":"2020-09-16T01:39:47.7817413+01:00","first_name":"Jesse","last_name":"Goyette","orders_count":-794906214,"state":"Wisconsin","total_spent":"Kids","last_order_id":3931058811944285162,"note":"Tasty Frozen Cheese","verified_email":true,"multipass_identifier":"Factors","tax_exempt":false,"tags":"pricing structure","last_order_name":"Generic Frozen Bike","default_address":{"first_name":"Wilford","address1":"Lourdes Camp","phone":"discrete","city":"Desmondborough","zip":"customer loyalty","province":null,"country":"Norway","last_name":"Predovic","address2":"Schaefer Knoll","company":"Unbranded","latitude":0.97121906,"longitude":0.43341923,"name":"maximize","country_code":"DE","province_code":"cross-platform"},"addresses":[{"first_name":"Ayden","address1":"SCSI","phone":"plum","city":"Dietrichshire","zip":"microchip","province":"Cuba","country":"Kazakhstan","last_name":"Yost","address2":"Turnpike","company":"Legacy","latitude":0.21919478,"longitude":0.061567016,"name":"Corporate","country_code":"BF","province_code":"brand"},{"first_name":"Melissa","address1":"whiteboard","phone":"Ergonomic","city":"South Ignatius","zip":"Investment Account","province":"CSS","country":"Costa Rica","last_name":"Gorczany","address2":"neural-net","company":"national","latitude":0.89497846,"longitude":0.3405301,"name":"Uzbekistan","country_code":"GU","province_code":"Gibraltar Pound"},{"first_name":"Ansel","address1":"calculate","phone":"payment","city":"West Larissa","zip":"deposit","province":"Facilitator","country":"Albania","last_name":"Connelly","address2":"Industrial","company":"lime","latitude":0.93411,"longitude":0.6889674,"name":"Handcrafted","country_code":"BQ","province_code":"Wooden"},{"first_name":"Wilford","address1":"Lourdes Camp","phone":"discrete","city":"Desmondborough","zip":"customer loyalty","province":null,"country":"Norway","last_name":"Predovic","address2":"Schaefer Knoll","company":"Unbranded","latitude":0.97121906,"longitude":0.43341923,"name":"maximize","country_code":"DE","province_code":"cross-platform"}]},{"id":-843641189187608879,"email":"Raymond.Larkin61@gmail.com","accepts_marketing":false,"created_at":"2020-09-15T14:09:17.0702411+01:00","updated_at":"2020-09-15T15:31:36.7329836+01:00","first_name":"Josue","last_name":"Stark","orders_count":98531735,"state":"Indiana","total_spent":"Automotive, Music \u0026 Shoes","last_order_id":-9049152761495165138,"note":"CSS","verified_email":true,"multipass_identifier":"Legacy","tax_exempt":false,"tags":"Trafficway","last_order_name":"TCP","default_address":{"first_name":"Macie","address1":"Lesly Prairie","phone":"transmitter","city":"South Bonnieside","zip":"Lead","province":null,"country":"Vanuatu","last_name":"Schamberger","address2":null,"company":"magenta","latitude":0.66105944,"longitude":0.34369344,"name":"payment","country_code":"AF","province_code":"parse"},"addresses":[{"first_name":"Louisa","address1":"Baby","phone":"Group","city":"Marcelborough","zip":"systematic","province":"supply-chains","country":"Thailand","last_name":"Quitzon","address2":"explicit","company":"Granite","latitude":0.5952899,"longitude":0.9349366,"name":"Investment Account","country_code":"DJ","province_code":"Egypt"},{"first_name":"Asa","address1":"Pakistan Rupee","phone":"Handmade Rubber Gloves","city":"Lake Ruthe","zip":"Unbranded Metal Ball","province":"paradigms","country":"Bangladesh","last_name":"Kunde","address2":"core","company":"IB","latitude":0.12850767,"longitude":0.7326846,"name":"Key","country_code":"LV","province_code":"Awesome Soft Chips"},{"first_name":"Tremayne","address1":"Incredible","phone":"Handmade","city":"Port Billville","zip":"Home Loan Account","province":"Refined Plastic Keyboard","country":"Poland","last_name":"Murphy","address2":"Won","company":"Nebraska","latitude":0.35156053,"longitude":0.49290586,"name":"alarm","country_code":"MK","province_code":"Wooden"},{"first_name":"Macie","address1":"Lesly Prairie","phone":"transmitter","city":"South Bonnieside","zip":"Lead","province":null,"country":"Vanuatu","last_name":"Schamberger","address2":null,"company":"magenta","latitude":0.66105944,"longitude":0.34369344,"name":"payment","country_code":"AF","province_code":"parse"}]},{"id":-828289429876332889,"email":"Ken.Bauch@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T06:31:44.6799109+01:00","updated_at":"2020-09-16T03:19:53.6718263+01:00","first_name":"Theresa","last_name":"Gorczany","orders_count":-571757668,"state":"Virginia","total_spent":"Illinois","last_order_id":-2750479641546807323,"note":"Fantastic Steel Ball","verified_email":true,"multipass_identifier":"overriding","tax_exempt":true,"tags":"PNG","last_order_name":"Internal","default_address":{"first_name":"Astrid","address1":"Runolfsson Trail","phone":"Chief","city":"Emersonside","zip":"AI","province":null,"country":"Saint Kitts and Nevis","last_name":"Hills","address2":null,"company":"Synergized","latitude":0.0737248,"longitude":0.07477021,"name":"Metrics","country_code":"KY","province_code":"Kids, Automotive \u0026 Clothing"},"addresses":[{"first_name":"Urban","address1":"Jersey","phone":"PNG","city":"Vickiefort","zip":"Awesome Concrete Pizza","province":"Automated","country":"Dominican Republic","last_name":"Feeney","address2":"Credit Card Account","company":"grow","latitude":0.56917495,"longitude":0.7485369,"name":"Indian Rupee","country_code":"MK","province_code":"Wooden"},{"first_name":"Leone","address1":"Granite","phone":"Rustic","city":"East Terranceside","zip":"purple","province":"olive","country":"New Caledonia","last_name":"Ruecker","address2":"Bedfordshire","company":"Fantastic","latitude":0.8945395,"longitude":0.5985837,"name":"District","country_code":"PN","province_code":"Practical Metal Cheese"},{"first_name":"Loma","address1":"virtual","phone":"Cambodia","city":"Kadinville","zip":"Implemented","province":"Sleek","country":"South Georgia and the South Sandwich Islands","last_name":"Hilpert","address2":"program","company":"navigating","latitude":0.7336069,"longitude":0.2629795,"name":"digital","country_code":"GI","province_code":"Kids, Computers \u0026 Garden"},{"first_name":"Astrid","address1":"Runolfsson Trail","phone":"Chief","city":"Emersonside","zip":"AI","province":null,"country":"Saint Kitts and Nevis","last_name":"Hills","address2":null,"company":"Synergized","latitude":0.0737248,"longitude":0.07477021,"name":"Metrics","country_code":"KY","province_code":"Kids, Automotive \u0026 Clothing"}]},{"id":-2069238798053464321,"email":"Kerry_Lindgren18@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T07:28:17.0855267+01:00","updated_at":"2020-09-15T13:35:40.8954556+01:00","first_name":"Odessa","last_name":"Mraz","orders_count":901991648,"state":"Virginia","total_spent":"New Mexico","last_order_id":-7115833172864084101,"note":"Gorgeous Frozen Towels","verified_email":true,"multipass_identifier":"Licensed","tax_exempt":true,"tags":"Stravenue","last_order_name":"Legacy","default_address":{"first_name":"Cathy","address1":"Funk Union","phone":"Macao","city":"Feeneyfurt","zip":"Uganda Shilling","province":"North Carolina","country":"New Zealand","last_name":"Torp","address2":null,"company":"Mandatory","latitude":0.28973016,"longitude":0.7732056,"name":"Walk","country_code":"CA","province_code":"copying"},"addresses":[{"first_name":"Hilbert","address1":"generating","phone":"Borders","city":"West Elyse","zip":"Awesome Metal Ball","province":"Turks and Caicos Islands","country":"Guinea-Bissau","last_name":"O\u0027Hara","address2":"Singapore Dollar","company":"initiatives","latitude":0.7582756,"longitude":0.10346796,"name":"Electronics","country_code":"DJ","province_code":"User-centric"},{"first_name":"Elvie","address1":"Cook Islands","phone":"feed","city":"Christelleview","zip":"Light","province":"indexing","country":"Denmark","last_name":"Stoltenberg","address2":"Fantastic","company":"Licensed Cotton Bike","latitude":0.12395438,"longitude":0.43334723,"name":"Granite","country_code":"GD","province_code":"navigating"},{"first_name":"Janice","address1":"solid state","phone":"Director","city":"Lake Paolo","zip":"Small Granite Bacon","province":"Argentine Peso","country":"Isle of Man","last_name":"Boyer","address2":"Berkshire","company":"system","latitude":0.9972781,"longitude":0.08198454,"name":"Rustic Frozen Sausages","country_code":"NI","province_code":"Intelligent Cotton Fish"},{"first_name":"Cathy","address1":"Funk Union","phone":"Macao","city":"Feeneyfurt","zip":"Uganda Shilling","province":"North Carolina","country":"New Zealand","last_name":"Torp","address2":null,"company":"Mandatory","latitude":0.28973016,"longitude":0.7732056,"name":"Walk","country_code":"CA","province_code":"copying"}]},{"id":5099649964108887000,"email":"Chad.Daniel@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T05:35:24.6543238+01:00","updated_at":"2020-09-16T09:42:41.0528108+01:00","first_name":"Ethel","last_name":"Raynor","orders_count":-1323494348,"state":"Idaho","total_spent":"niches","last_order_id":-3537108313834293103,"note":"Jewelery","verified_email":true,"multipass_identifier":"Paradigm","tax_exempt":true,"tags":"Group","last_order_name":"Automotive, Computers \u0026 Baby","default_address":{"first_name":"Chaim","address1":"Pagac Bridge","phone":"Savings Account","city":"New Dominiqueburgh","zip":"Realigned","province":"Nebraska","country":"Haiti","last_name":"Quigley","address2":null,"company":"Small Fresh Pizza","latitude":0.9385953,"longitude":0.57356393,"name":"magnetic","country_code":"JE","province_code":"Borders"},"addresses":[{"first_name":"Eduardo","address1":"Crossroad","phone":"CSS","city":"East Rozellaberg","zip":"Tasty Rubber Computer","province":"Unbranded Frozen Shirt","country":"Greece","last_name":"Smitham","address2":"Island","company":"facilitate","latitude":0.84402335,"longitude":0.9166492,"name":"Technician","country_code":"LI","province_code":"impactful"},{"first_name":"Juanita","address1":"Direct","phone":"4th generation","city":"Everetteberg","zip":"connect","province":"Cambridgeshire","country":"Australia","last_name":"Quigley","address2":"Jamaican Dollar","company":"Functionality","latitude":0.37723646,"longitude":0.6046104,"name":"Borders","country_code":"TK","province_code":"Legacy"},{"first_name":"Abigail","address1":"e-markets","phone":"Maine","city":"Malindaberg","zip":"cyan","province":"Fresh","country":"Jordan","last_name":"Dooley","address2":"Frozen","company":"programming","latitude":0.43160385,"longitude":0.5098503,"name":"solid state","country_code":"SZ","province_code":"array"},{"first_name":"Chaim","address1":"Pagac Bridge","phone":"Savings Account","city":"New Dominiqueburgh","zip":"Realigned","province":"Nebraska","country":"Haiti","last_name":"Quigley","address2":null,"company":"Small Fresh Pizza","latitude":0.9385953,"longitude":0.57356393,"name":"magnetic","country_code":"JE","province_code":"Borders"}]},{"id":3796177459894646854,"email":"Christy84@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:14:46.0509226+01:00","updated_at":"2020-09-16T02:00:13.3418448+01:00","first_name":"Evert","last_name":"Fisher","orders_count":708929191,"state":"Alaska","total_spent":"Producer","last_order_id":-4677714421157799440,"note":"quantifying","verified_email":false,"multipass_identifier":"Infrastructure","tax_exempt":false,"tags":"red","last_order_name":"blue","default_address":{"first_name":"Chloe","address1":"Pagac Brook","phone":"Communications","city":"Lake Leonardohaven","zip":"Usability","province":null,"country":"Palestinian Territory","last_name":"Schamberger","address2":null,"company":"optical","latitude":0.4030111,"longitude":0.9246763,"name":"Granite","country_code":"RO","province_code":"synthesizing"},"addresses":[{"first_name":"Lester","address1":"Tasty","phone":"Fantastic Granite Car","city":"West Macy","zip":"Gorgeous Frozen Shirt","province":"France","country":"Monaco","last_name":"Kilback","address2":"solutions","company":"Fantastic Steel Pizza","latitude":0.9048519,"longitude":0.40821815,"name":"Home \u0026 Industrial","country_code":"CM","province_code":"withdrawal"},{"first_name":"Kareem","address1":"synergies","phone":"global","city":"South Paul","zip":"even-keeled","province":"Saint Lucia","country":"Peru","last_name":"Kerluke","address2":"Branding","company":"invoice","latitude":0.9829782,"longitude":0.23075224,"name":"deposit","country_code":"CO","province_code":"SCSI"},{"first_name":"Michale","address1":"TCP","phone":"Ohio","city":"North Jensenhaven","zip":"withdrawal","province":"success","country":"French Guiana","last_name":"Wiegand","address2":"back-end","company":"CSS","latitude":0.42148197,"longitude":0.3027598,"name":"Future","country_code":"CL","province_code":"Customer"},{"first_name":"Chloe","address1":"Pagac Brook","phone":"Communications","city":"Lake Leonardohaven","zip":"Usability","province":null,"country":"Palestinian Territory","last_name":"Schamberger","address2":null,"company":"optical","latitude":0.4030111,"longitude":0.9246763,"name":"Granite","country_code":"RO","province_code":"synthesizing"}]},{"id":-5361790321024949049,"email":"Christie22@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T00:38:30.2348116+01:00","updated_at":"2020-09-16T04:48:45.9624009+01:00","first_name":"Kelsie","last_name":"Kuhlman","orders_count":-1159838267,"state":"Texas","total_spent":"Israel","last_order_id":-4548993564041968599,"note":"Games \u0026 Garden","verified_email":false,"multipass_identifier":"withdrawal","tax_exempt":true,"tags":"Savings Account","last_order_name":"Soft","default_address":{"first_name":"Nickolas","address1":"Candice Radial","phone":"Wooden","city":"Yundtmouth","zip":"Refined","province":null,"country":"Burundi","last_name":"Haley","address2":null,"company":"Designer","latitude":0.21573353,"longitude":0.45975754,"name":"Concrete","country_code":"CW","province_code":"copy"},"addresses":[{"first_name":"Stone","address1":"Handcrafted Metal Gloves","phone":"mobile","city":"Huelsview","zip":"Summit","province":"Seamless","country":"Gambia","last_name":"Emard","address2":"Dynamic","company":"Optimization","latitude":0.87686396,"longitude":0.07466855,"name":"Rapids","country_code":"ID","province_code":"Developer"},{"first_name":"Cleo","address1":"iterate","phone":"Cross-platform","city":"West Caraburgh","zip":"Handcrafted","province":"Small","country":"Sweden","last_name":"Yost","address2":"transmitter","company":"deliver","latitude":0.93893665,"longitude":0.41050118,"name":"transmit","country_code":"BG","province_code":"Handmade Cotton Keyboard"},{"first_name":"Noemie","address1":"Malaysia","phone":"seamless","city":"Corbinton","zip":"Books","province":"lime","country":"Madagascar","last_name":"Upton","address2":"e-tailers","company":"whiteboard","latitude":0.11269718,"longitude":0.2191635,"name":"Canyon","country_code":"DM","province_code":"Consultant"},{"first_name":"Nickolas","address1":"Candice Radial","phone":"Wooden","city":"Yundtmouth","zip":"Refined","province":null,"country":"Burundi","last_name":"Haley","address2":null,"company":"Designer","latitude":0.21573353,"longitude":0.45975754,"name":"Concrete","country_code":"CW","province_code":"copy"}]},{"id":-1924847778520681537,"email":"Rex.Veum@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T08:17:02.3211338+01:00","updated_at":"2020-09-16T03:28:21.1299975+01:00","first_name":"Eladio","last_name":"Fritsch","orders_count":1941876277,"state":"New York","total_spent":"interface","last_order_id":-1677471947217109921,"note":"Sleek","verified_email":true,"multipass_identifier":"brand","tax_exempt":false,"tags":"Consultant","last_order_name":"reboot","default_address":{"first_name":"Jarrett","address1":"Lukas Locks","phone":"User-centric","city":"Crystelview","zip":"Borders","province":null,"country":"Tanzania","last_name":"Bernier","address2":null,"company":"Central","latitude":0.26685336,"longitude":0.39224827,"name":"SAS","country_code":"AF","province_code":"auxiliary"},"addresses":[{"first_name":"Lavon","address1":"Berkshire","phone":"invoice","city":"Port Rebecca","zip":"actuating","province":"Incredible Metal Chips","country":"Iceland","last_name":"McGlynn","address2":"Drive","company":"Bedfordshire","latitude":0.43653938,"longitude":0.20560262,"name":"Swedish Krona","country_code":"LU","province_code":"multimedia"},{"first_name":"Abraham","address1":"Mountain","phone":"database","city":"Port Jessechester","zip":"budgetary management","province":"drive","country":"Sri Lanka","last_name":"Quitzon","address2":"Granite","company":"Health","latitude":0.08104627,"longitude":0.45955744,"name":"SQL","country_code":"VN","province_code":"bandwidth-monitored"},{"first_name":"Germaine","address1":"hacking","phone":"program","city":"Dedrickmouth","zip":"Computers","province":"Inverse","country":"Tonga","last_name":"Schinner","address2":"hack","company":"Metal","latitude":0.57667977,"longitude":0.14906959,"name":"cutting-edge","country_code":"GH","province_code":"pixel"},{"first_name":"Jarrett","address1":"Lukas Locks","phone":"User-centric","city":"Crystelview","zip":"Borders","province":null,"country":"Tanzania","last_name":"Bernier","address2":null,"company":"Central","latitude":0.26685336,"longitude":0.39224827,"name":"SAS","country_code":"AF","province_code":"auxiliary"}]},{"id":-7310431724455310336,"email":"Jill.Stokes@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T00:18:37.89437+01:00","updated_at":"2020-09-16T11:04:01.1777063+01:00","first_name":"Vivianne","last_name":"Schuster","orders_count":2022538630,"state":"Nevada","total_spent":"Licensed Cotton Shirt","last_order_id":-1023824000870687159,"note":"withdrawal","verified_email":true,"multipass_identifier":"policy","tax_exempt":true,"tags":"Cotton","last_order_name":"Implemented","default_address":{"first_name":"Alvera","address1":"Darrel Groves","phone":"users","city":"Bayleemouth","zip":"Toys \u0026 Health","province":null,"country":"Gambia","last_name":"Bradtke","address2":null,"company":"Burg","latitude":0.51727635,"longitude":0.2037577,"name":"Configuration","country_code":"GI","province_code":"functionalities"},"addresses":[{"first_name":"Lawson","address1":"payment","phone":"Applications","city":"Ezraport","zip":"Strategist","province":"Guinea Franc","country":"Angola","last_name":"Thiel","address2":"fuchsia","company":"cross-media","latitude":0.25495335,"longitude":0.4412057,"name":"Generic Fresh Mouse","country_code":"NC","province_code":"orange"},{"first_name":"Filomena","address1":"Handmade Soft Ball","phone":"harness","city":"Terrychester","zip":"input","province":"Trail","country":"Rwanda","last_name":"Pollich","address2":"Ergonomic Metal Tuna","company":"Refined Cotton Pants","latitude":0.515323,"longitude":0.98324645,"name":"Supervisor","country_code":"DJ","province_code":"Fresh"},{"first_name":"Maud","address1":"Generic Plastic Sausages","phone":"Fantastic","city":"Juliettown","zip":"deposit","province":"Savings Account","country":"Kyrgyz Republic","last_name":"Hackett","address2":"International","company":"bypass","latitude":0.4480096,"longitude":0.64706725,"name":"Berkshire","country_code":"GS","province_code":"Investment Account"},{"first_name":"Alvera","address1":"Darrel Groves","phone":"users","city":"Bayleemouth","zip":"Toys \u0026 Health","province":null,"country":"Gambia","last_name":"Bradtke","address2":null,"company":"Burg","latitude":0.51727635,"longitude":0.2037577,"name":"Configuration","country_code":"GI","province_code":"functionalities"}]},{"id":3768587526275177067,"email":"Tina_Bayer@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T14:53:36.4485183+01:00","updated_at":"2020-09-16T01:17:42.5541514+01:00","first_name":"Eleazar","last_name":"Becker","orders_count":-571262242,"state":"South Dakota","total_spent":"override","last_order_id":-5917455804012564706,"note":"navigating","verified_email":false,"multipass_identifier":"Concrete","tax_exempt":false,"tags":"metrics","last_order_name":"Moldova","default_address":{"first_name":"Jaden","address1":"Carmelo Islands","phone":"Integration","city":"Rueckertown","zip":"Frozen","province":"Maine","country":"Eritrea","last_name":"Swaniawski","address2":null,"company":"Stravenue","latitude":0.051986124,"longitude":0.8222571,"name":"Fantastic Wooden Chicken","country_code":"TK","province_code":"Walks"},"addresses":[{"first_name":"Christine","address1":"Digitized","phone":"Berkshire","city":"West Destinyborough","zip":"Generic Granite Shoes","province":"technologies","country":"Niger","last_name":"Aufderhar","address2":"withdrawal","company":"synthesize","latitude":0.29560062,"longitude":0.5930182,"name":"copying","country_code":"MP","province_code":"Refined Frozen Hat"},{"first_name":"Maurice","address1":"Florida","phone":"world-class","city":"Andersonburgh","zip":"Direct","province":"tangible","country":"Cook Islands","last_name":"Nikolaus","address2":"Skyway","company":"Macedonia","latitude":0.8876562,"longitude":0.55399907,"name":"HTTP","country_code":"HU","province_code":"RSS"},{"first_name":"Savanna","address1":"visualize","phone":"Orchestrator","city":"East Tierra","zip":"impactful","province":"applications","country":"Kiribati","last_name":"Ledner","address2":"Program","company":"withdrawal","latitude":0.102364235,"longitude":0.87589484,"name":"sexy","country_code":"AO","province_code":"Money Market Account"},{"first_name":"Jaden","address1":"Carmelo Islands","phone":"Integration","city":"Rueckertown","zip":"Frozen","province":"Maine","country":"Eritrea","last_name":"Swaniawski","address2":null,"company":"Stravenue","latitude":0.051986124,"longitude":0.8222571,"name":"Fantastic Wooden Chicken","country_code":"TK","province_code":"Walks"}]},{"id":5696107002088476533,"email":"Wallace47@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T02:59:44.4461211+01:00","updated_at":"2020-09-15T16:13:51.4360778+01:00","first_name":"Marcelle","last_name":"Haley","orders_count":-48337088,"state":"Michigan","total_spent":"web-enabled","last_order_id":3156467300905518873,"note":"turquoise","verified_email":false,"multipass_identifier":"attitude","tax_exempt":true,"tags":"back-end","last_order_name":"Cocos (Keeling) Islands","default_address":{"first_name":"Gabriella","address1":"Welch Grove","phone":"deposit","city":"Gusikowskistad","zip":"withdrawal","province":"Montana","country":"Andorra","last_name":"Abernathy","address2":null,"company":"Forges","latitude":0.5415099,"longitude":0.14064807,"name":"Group","country_code":"YE","province_code":"intangible"},"addresses":[{"first_name":"Mustafa","address1":"Intelligent","phone":"Burundi","city":"Port Edmondview","zip":"open-source","province":"Multi-tiered","country":"Greece","last_name":"Klein","address2":"microchip","company":"navigate","latitude":0.25450388,"longitude":0.4146715,"name":"next-generation","country_code":"BM","province_code":"Refined Wooden Towels"},{"first_name":"Faustino","address1":"virtual","phone":"open-source","city":"New Tyresestad","zip":"asymmetric","province":"intuitive","country":"Zambia","last_name":"Cruickshank","address2":"RAM","company":"Berkshire","latitude":0.70334804,"longitude":0.71376073,"name":"expedite","country_code":"TZ","province_code":"withdrawal"},{"first_name":"Bennett","address1":"withdrawal","phone":"Saint Lucia","city":"New Kirsten","zip":"Gorgeous Frozen Fish","province":"clear-thinking","country":"French Guiana","last_name":"Schmidt","address2":"Neck","company":"Dynamic","latitude":0.47317863,"longitude":0.2737406,"name":"SMS","country_code":"GN","province_code":"Ghana"},{"first_name":"Gabriella","address1":"Welch Grove","phone":"deposit","city":"Gusikowskistad","zip":"withdrawal","province":"Montana","country":"Andorra","last_name":"Abernathy","address2":null,"company":"Forges","latitude":0.5415099,"longitude":0.14064807,"name":"Group","country_code":"YE","province_code":"intangible"}]},{"id":9092438034629892825,"email":"Jeffery41@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T19:50:57.4482143+01:00","updated_at":"2020-09-16T11:03:22.968531+01:00","first_name":"Stefan","last_name":"Gaylord","orders_count":1783914,"state":"Massachusetts","total_spent":"Buckinghamshire","last_order_id":-4270519240333180197,"note":"facilitate","verified_email":false,"multipass_identifier":"Hungary","tax_exempt":true,"tags":"software","last_order_name":"multi-byte","default_address":{"first_name":"Amina","address1":"Conroy Ford","phone":"compress","city":"North Paulfort","zip":"deposit","province":null,"country":"Macao","last_name":"Boehm","address2":null,"company":"Reunion","latitude":0.92123115,"longitude":0.984956,"name":"Togo","country_code":"JO","province_code":"user-centric"},"addresses":[{"first_name":"Sydni","address1":"Credit Card Account","phone":"Small Soft Mouse","city":"Collierborough","zip":"Credit Card Account","province":"transmitter","country":"Guinea","last_name":"Kuhic","address2":"real-time","company":"Rustic Wooden Soap","latitude":0.06729677,"longitude":0.48115617,"name":"online","country_code":"HT","province_code":"utilize"},{"first_name":"Tyshawn","address1":"payment","phone":"Buckinghamshire","city":"Danialmouth","zip":"copy","province":"Unbranded","country":"Timor-Leste","last_name":"Beatty","address2":"payment","company":"Dynamic","latitude":0.52899855,"longitude":0.14867774,"name":"transmitter","country_code":"LR","province_code":"quantifying"},{"first_name":"Maxine","address1":"Analyst","phone":"back up","city":"West Modesto","zip":"Berkshire","province":"Technician","country":"Sierra Leone","last_name":"Greenfelder","address2":"Producer","company":"compressing","latitude":0.8697944,"longitude":0.2640952,"name":"SDD","country_code":"US","province_code":"invoice"},{"first_name":"Amina","address1":"Conroy Ford","phone":"compress","city":"North Paulfort","zip":"deposit","province":null,"country":"Macao","last_name":"Boehm","address2":null,"company":"Reunion","latitude":0.92123115,"longitude":0.984956,"name":"Togo","country_code":"JO","province_code":"user-centric"}]},{"id":8740057485615167478,"email":"Kayla_Spinka@hotmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:15:07.3611201+01:00","updated_at":"2020-09-16T09:05:22.1900421+01:00","first_name":"Myrtice","last_name":"Dickinson","orders_count":1504455241,"state":"Indiana","total_spent":"firewall","last_order_id":6166638596777879926,"note":"frame","verified_email":false,"multipass_identifier":"system engine","tax_exempt":true,"tags":"Liechtenstein","last_order_name":"Steel","default_address":{"first_name":"Lourdes","address1":"Dianna Tunnel","phone":"real-time","city":"Augustfurt","zip":"Checking Account","province":null,"country":"Netherlands","last_name":"Von","address2":"Reilly Ford","company":"invoice","latitude":0.49553168,"longitude":0.15320018,"name":"Hong Kong","country_code":"SZ","province_code":"Tools, Books \u0026 Jewelery"},"addresses":[{"first_name":"Verdie","address1":"PCI","phone":"Refined Wooden Bike","city":"Iketown","zip":"Leone","province":"extend","country":"Syrian Arab Republic","last_name":"Waelchi","address2":"Buckinghamshire","company":"Security","latitude":0.8812565,"longitude":0.53371376,"name":"primary","country_code":"AS","province_code":"Internal"},{"first_name":"Bettie","address1":"Cotton","phone":"Consultant","city":"Louieside","zip":"Intelligent","province":"Intranet","country":"El Salvador","last_name":"Hodkiewicz","address2":"Savings Account","company":"compress","latitude":0.6948807,"longitude":0.0068717734,"name":"Cambridgeshire","country_code":"SJ","province_code":"Central"},{"first_name":"Josefina","address1":"Divide","phone":"distributed","city":"East Precious","zip":"visionary","province":"Congo","country":"Bhutan","last_name":"Gerlach","address2":"Regional","company":"Gorgeous Soft Pizza","latitude":0.18195218,"longitude":0.026779516,"name":"deposit","country_code":"VA","province_code":"Corner"},{"first_name":"Lourdes","address1":"Dianna Tunnel","phone":"real-time","city":"Augustfurt","zip":"Checking Account","province":null,"country":"Netherlands","last_name":"Von","address2":"Reilly Ford","company":"invoice","latitude":0.49553168,"longitude":0.15320018,"name":"Hong Kong","country_code":"SZ","province_code":"Tools, Books \u0026 Jewelery"}]},{"id":2749923194173604824,"email":"Georgia20@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T09:56:57.8949292+01:00","updated_at":"2020-09-15T12:53:57.6042597+01:00","first_name":"Maximo","last_name":"Kassulke","orders_count":667582581,"state":"Utah","total_spent":"synthesize","last_order_id":-7875150809528552912,"note":"magenta","verified_email":false,"multipass_identifier":"Generic","tax_exempt":true,"tags":"granular","last_order_name":"action-items","default_address":{"first_name":"Margaretta","address1":"Aaron Road","phone":"optimal","city":"West Adelleland","zip":"Stream","province":null,"country":"Papua New Guinea","last_name":"Koelpin","address2":null,"company":"reboot","latitude":0.30552635,"longitude":0.14761214,"name":"Incredible","country_code":"TG","province_code":"Walks"},"addresses":[{"first_name":"Laisha","address1":"Checking Account","phone":"Idaho","city":"West Hermann","zip":"Dynamic","province":"channels","country":"Kyrgyz Republic","last_name":"Wisozk","address2":"sensor","company":"Consultant","latitude":0.8186869,"longitude":0.2535623,"name":"programming","country_code":"GU","province_code":"Berkshire"},{"first_name":"Zelma","address1":"RAM","phone":"Rustic Soft Keyboard","city":"Okunevaville","zip":"Handmade","province":"Handmade","country":"Nepal","last_name":"Marquardt","address2":"Forest","company":"Crest","latitude":0.78556156,"longitude":0.61967677,"name":"6th generation","country_code":"CA","province_code":"Refined Cotton Pants"},{"first_name":"Darrell","address1":"Cape","phone":"transmitting","city":"Heaneychester","zip":"extend","province":"extensible","country":"Togo","last_name":"White","address2":"China","company":"Sleek","latitude":0.85221297,"longitude":0.048935104,"name":"Unbranded Metal Shirt","country_code":"HM","province_code":"web-enabled"},{"first_name":"Margaretta","address1":"Aaron Road","phone":"optimal","city":"West Adelleland","zip":"Stream","province":null,"country":"Papua New Guinea","last_name":"Koelpin","address2":null,"company":"reboot","latitude":0.30552635,"longitude":0.14761214,"name":"Incredible","country_code":"TG","province_code":"Walks"}]},{"id":6864035621187613955,"email":"Eugene17@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T12:56:43.5943242+01:00","updated_at":"2020-09-16T10:46:34.2692417+01:00","first_name":"Claudine","last_name":"Wintheiser","orders_count":-1521062467,"state":"New Hampshire","total_spent":"bypassing","last_order_id":-5378157908821677299,"note":"Generic","verified_email":false,"multipass_identifier":"Cambridgeshire","tax_exempt":false,"tags":"Cambridgeshire","last_order_name":"magnetic","default_address":{"first_name":"Kailyn","address1":"Gerlach Junctions","phone":"invoice","city":"Port Franco","zip":"Trace","province":"Wisconsin","country":"Thailand","last_name":"Kessler","address2":null,"company":"Phased","latitude":0.8637785,"longitude":0.41584036,"name":"24/365","country_code":"SB","province_code":"Incredible"},"addresses":[{"first_name":"Joey","address1":"Soft","phone":"Armenian Dram","city":"Lake Carter","zip":"Rubber","province":"Outdoors, Tools \u0026 Books","country":"Guyana","last_name":"Ledner","address2":"withdrawal","company":"Glen","latitude":0.41273972,"longitude":0.015956486,"name":"Shoal","country_code":"CM","province_code":"Berkshire"},{"first_name":"Joan","address1":"turquoise","phone":"Public-key","city":"Bernieceburgh","zip":"quantifying","province":"Rubber","country":"Guatemala","last_name":"Bradtke","address2":"Curve","company":"Uganda Shilling","latitude":0.514776,"longitude":0.35285625,"name":"invoice","country_code":"BB","province_code":"Somali Shilling"},{"first_name":"Gertrude","address1":"Turkey","phone":"National","city":"Cassinside","zip":"SSL","province":"Auto Loan Account","country":"Chile","last_name":"Bechtelar","address2":"Tasty","company":"Gorgeous Steel Table","latitude":0.49450782,"longitude":0.89639515,"name":"Illinois","country_code":"DZ","province_code":"orange"},{"first_name":"Kailyn","address1":"Gerlach Junctions","phone":"invoice","city":"Port Franco","zip":"Trace","province":"Wisconsin","country":"Thailand","last_name":"Kessler","address2":null,"company":"Phased","latitude":0.8637785,"longitude":0.41584036,"name":"24/365","country_code":"SB","province_code":"Incredible"}]},{"id":1247582623046334484,"email":"David83@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T16:14:44.2187229+01:00","updated_at":"2020-09-15T19:27:54.4987045+01:00","first_name":"Katharina","last_name":"Thiel","orders_count":-1897276464,"state":"Connecticut","total_spent":"connecting","last_order_id":-792142701628521739,"note":"Djibouti","verified_email":true,"multipass_identifier":"Turkish Lira","tax_exempt":true,"tags":"mesh","last_order_name":"bypass","default_address":{"first_name":"Kristoffer","address1":"Roob Courts","phone":"Streets","city":"Mullerchester","zip":"THX","province":null,"country":"Brazil","last_name":"Crist","address2":null,"company":"intangible","latitude":0.07807616,"longitude":0.8256437,"name":"out-of-the-box","country_code":"UA","province_code":"circuit"},"addresses":[{"first_name":"Ivy","address1":"Awesome","phone":"seamless","city":"Haleyside","zip":"Utah","province":"Balboa","country":"Lithuania","last_name":"Bernier","address2":"Electronics, Toys \u0026 Movies","company":"Savings Account","latitude":0.26621893,"longitude":0.8373157,"name":"Brazilian Real","country_code":"BR","province_code":"Avon"},{"first_name":"Nayeli","address1":"Hollow","phone":"Streets","city":"Letaberg","zip":"Regional","province":"Bedfordshire","country":"Malaysia","last_name":"Yost","address2":"toolset","company":"internet solution","latitude":0.10351693,"longitude":0.600444,"name":"optical","country_code":"BY","province_code":"interfaces"},{"first_name":"Maryam","address1":"system","phone":"Engineer","city":"South Daphne","zip":"indexing","province":"payment","country":"Liberia","last_name":"Gusikowski","address2":"online","company":"Customizable","latitude":0.64539695,"longitude":0.7205236,"name":"Ergonomic Granite Bacon","country_code":"MA","province_code":"deposit"},{"first_name":"Kristoffer","address1":"Roob Courts","phone":"Streets","city":"Mullerchester","zip":"THX","province":null,"country":"Brazil","last_name":"Crist","address2":null,"company":"intangible","latitude":0.07807616,"longitude":0.8256437,"name":"out-of-the-box","country_code":"UA","province_code":"circuit"}]},{"id":7208163356179501113,"email":"Rosemarie.Torphy23@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T15:19:06.3399972+01:00","updated_at":"2020-09-16T10:54:10.0386182+01:00","first_name":"Mandy","last_name":"Mueller","orders_count":1741656955,"state":"North Dakota","total_spent":"Berkshire","last_order_id":-4424596905771572817,"note":"Incredible Plastic Shirt","verified_email":false,"multipass_identifier":"Indian Rupee","tax_exempt":true,"tags":"Utah","last_order_name":"Unbranded","default_address":{"first_name":"Karelle","address1":"Glen Court","phone":"Hawaii","city":"West Ricofort","zip":"redundant","province":null,"country":"Mongolia","last_name":"MacGyver","address2":null,"company":"methodologies","latitude":0.8411965,"longitude":0.56469905,"name":"distributed","country_code":"SX","province_code":"Up-sized"},"addresses":[{"first_name":"Paige","address1":"Designer","phone":"Internal","city":"East Dewayneshire","zip":"Garden","province":"Practical Granite Gloves","country":"Cocos (Keeling) Islands","last_name":"Hauck","address2":"customer loyalty","company":"Cape Verde Escudo","latitude":0.42719808,"longitude":0.29557475,"name":"compressing","country_code":"CL","province_code":"Quality"},{"first_name":"Sigurd","address1":"Tools","phone":"functionalities","city":"New Ryan","zip":"Avon","province":"Heights","country":"Micronesia","last_name":"O\u0027Keefe","address2":"Wooden","company":"Licensed Cotton Chips","latitude":0.3039254,"longitude":0.20464593,"name":"Intelligent","country_code":"GE","province_code":"redundant"},{"first_name":"Rafaela","address1":"Passage","phone":"array","city":"Parkerhaven","zip":"strategic","province":"Berkshire","country":"Suriname","last_name":"Willms","address2":"Regional","company":"end-to-end","latitude":0.42712578,"longitude":0.11728781,"name":"Internal","country_code":"GI","province_code":"invoice"},{"first_name":"Karelle","address1":"Glen Court","phone":"Hawaii","city":"West Ricofort","zip":"redundant","province":null,"country":"Mongolia","last_name":"MacGyver","address2":null,"company":"methodologies","latitude":0.8411965,"longitude":0.56469905,"name":"distributed","country_code":"SX","province_code":"Up-sized"}]},{"id":-6423839767071041534,"email":"Randolph14@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T00:07:51.6521019+01:00","updated_at":"2020-09-16T10:37:50.9416163+01:00","first_name":"Annabel","last_name":"Morissette","orders_count":-26815839,"state":"Indiana","total_spent":"bleeding-edge","last_order_id":1236240000959378264,"note":"Martinique","verified_email":false,"multipass_identifier":"Legacy","tax_exempt":true,"tags":"redundant","last_order_name":"Product","default_address":{"first_name":"Verner","address1":"Moore Club","phone":"French Guiana","city":"Juneside","zip":"Devolved","province":null,"country":"Timor-Leste","last_name":"Kuhn","address2":null,"company":"virtual","latitude":0.053026162,"longitude":0.050994813,"name":"Ford","country_code":"BN","province_code":"Wall"},"addresses":[{"first_name":"Hilda","address1":"Seychelles","phone":"bluetooth","city":"South Anahitown","zip":"withdrawal","province":"implementation","country":"Morocco","last_name":"Lind","address2":"Faroe Islands","company":"Crescent","latitude":0.47909948,"longitude":0.99057543,"name":"Mayotte","country_code":"YE","province_code":"Forward"},{"first_name":"Kian","address1":"Plastic","phone":"Unbranded","city":"East Zion","zip":"Consultant","province":"Personal Loan Account","country":"Morocco","last_name":"Turner","address2":"Horizontal","company":"deposit","latitude":0.5097637,"longitude":0.77225006,"name":"Bedfordshire","country_code":"QA","province_code":"payment"},{"first_name":"Godfrey","address1":"artificial intelligence","phone":"synergies","city":"North Jerelberg","zip":"Dynamic","province":"payment","country":"Myanmar","last_name":"Durgan","address2":"Avon","company":"Creek","latitude":0.027540864,"longitude":0.65964854,"name":"Rustic Concrete Pants","country_code":"QA","province_code":"Bedfordshire"},{"first_name":"Verner","address1":"Moore Club","phone":"French Guiana","city":"Juneside","zip":"Devolved","province":null,"country":"Timor-Leste","last_name":"Kuhn","address2":null,"company":"virtual","latitude":0.053026162,"longitude":0.050994813,"name":"Ford","country_code":"BN","province_code":"Wall"}]},{"id":-8801399033198916838,"email":"Tabitha.Gerhold90@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:12:57.872157+01:00","updated_at":"2020-09-16T01:17:16.3067455+01:00","first_name":"Peter","last_name":"Schneider","orders_count":-1065475505,"state":"Kentucky","total_spent":"Israel","last_order_id":2300450425441723905,"note":"frictionless","verified_email":true,"multipass_identifier":"enable","tax_exempt":false,"tags":"bypass","last_order_name":"hacking","default_address":{"first_name":"Haven","address1":"Schmitt Falls","phone":"Handcrafted","city":"South Katelynshire","zip":"Accountability","province":null,"country":"Reunion","last_name":"VonRueden","address2":null,"company":"Synergistic","latitude":0.22830227,"longitude":0.77561826,"name":"RAM","country_code":"VI","province_code":"copying"},"addresses":[{"first_name":"Abbie","address1":"Brunei Dollar","phone":"programming","city":"Cruickshankhaven","zip":"AI","province":"solid state","country":"Sudan","last_name":"Emmerich","address2":"encryption","company":"virtual","latitude":0.064124756,"longitude":0.044018667,"name":"Handmade Fresh Bacon","country_code":"AU","province_code":"open architecture"},{"first_name":"Israel","address1":"deposit","phone":"compress","city":"Lake Celinebury","zip":"Savings Account","province":"wireless","country":"Papua New Guinea","last_name":"Schneider","address2":"program","company":"one-to-one","latitude":0.91034186,"longitude":0.33877528,"name":"Data","country_code":"DE","province_code":"Rustic"},{"first_name":"Ruben","address1":"Cliffs","phone":"Canyon","city":"O\u0027Reillyton","zip":"Liberian Dollar","province":"Fantastic","country":"Yemen","last_name":"Orn","address2":"optical","company":"Kansas","latitude":0.52839875,"longitude":0.798142,"name":"hierarchy","country_code":"LR","province_code":"Outdoors, Outdoors \u0026 Books"},{"first_name":"Haven","address1":"Schmitt Falls","phone":"Handcrafted","city":"South Katelynshire","zip":"Accountability","province":null,"country":"Reunion","last_name":"VonRueden","address2":null,"company":"Synergistic","latitude":0.22830227,"longitude":0.77561826,"name":"RAM","country_code":"VI","province_code":"copying"}]},{"id":1547843572101158899,"email":"Greg33@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:44:42.8998002+01:00","updated_at":"2020-09-16T05:25:53.9517231+01:00","first_name":"Hiram","last_name":"Hodkiewicz","orders_count":1089602459,"state":"Oklahoma","total_spent":"Cambridgeshire","last_order_id":-2230682538566353045,"note":"PCI","verified_email":true,"multipass_identifier":"Multi-tiered","tax_exempt":false,"tags":"interactive","last_order_name":"card","default_address":{"first_name":"Jeff","address1":"Gerlach Mission","phone":"holistic","city":"Sierraville","zip":"scale","province":"Texas","country":"Colombia","last_name":"Ullrich","address2":null,"company":"capability","latitude":0.61058104,"longitude":0.87085545,"name":"Unbranded Cotton Shoes","country_code":"AT","province_code":"Finland"},"addresses":[{"first_name":"Lorenzo","address1":"Generic Steel Towels","phone":"Generic","city":"Marquiseton","zip":"Island","province":"robust","country":"Finland","last_name":"Beatty","address2":"Direct","company":"networks","latitude":0.36626396,"longitude":0.40937674,"name":"Developer","country_code":"GI","province_code":"withdrawal"},{"first_name":"Anne","address1":"Object-based","phone":"haptic","city":"South Amelieside","zip":"magnetic","province":"Field","country":"Palau","last_name":"Gaylord","address2":"global","company":"applications","latitude":0.6177121,"longitude":0.78331596,"name":"fuchsia","country_code":"ZW","province_code":"Accountability"},{"first_name":"Guido","address1":"Security","phone":"Tanzanian Shilling","city":"New Maymie","zip":"teal","province":"compelling","country":"Antigua and Barbuda","last_name":"Bosco","address2":"Agent","company":"infrastructures","latitude":0.2612324,"longitude":0.5388334,"name":"Savings Account","country_code":"NG","province_code":"killer"},{"first_name":"Jeff","address1":"Gerlach Mission","phone":"holistic","city":"Sierraville","zip":"scale","province":"Texas","country":"Colombia","last_name":"Ullrich","address2":null,"company":"capability","latitude":0.61058104,"longitude":0.87085545,"name":"Unbranded Cotton Shoes","country_code":"AT","province_code":"Finland"}]},{"id":3238250539185688888,"email":"Ernesto.Emard73@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T07:39:54.0667274+01:00","updated_at":"2020-09-15T13:18:05.7834826+01:00","first_name":"Parker","last_name":"Jenkins","orders_count":-1192539106,"state":"Ohio","total_spent":"methodologies","last_order_id":1782822573004540831,"note":"Borders","verified_email":true,"multipass_identifier":"Squares","tax_exempt":false,"tags":"methodologies","last_order_name":"Camp","default_address":{"first_name":"Verla","address1":"Gibson Walks","phone":"Savings Account","city":"Fadelburgh","zip":"communities","province":"Maryland","country":"Heard Island and McDonald Islands","last_name":"Stroman","address2":null,"company":"Avon","latitude":0.7495766,"longitude":0.5488675,"name":"maroon","country_code":"FJ","province_code":"Communications"},"addresses":[{"first_name":"Darius","address1":"Handcrafted","phone":"Uganda","city":"Odessashire","zip":"Granite","province":"clear-thinking","country":"Turkmenistan","last_name":"Nikolaus","address2":"Extensions","company":"Re-contextualized","latitude":0.7190818,"longitude":0.15408249,"name":"Buckinghamshire","country_code":"AO","province_code":"Developer"},{"first_name":"Harvey","address1":"circuit","phone":"calculate","city":"Mertzfurt","zip":"Hawaii","province":"JSON","country":"Tunisia","last_name":"Lang","address2":"Bedfordshire","company":"pink","latitude":0.73431426,"longitude":0.41454747,"name":"white","country_code":"NO","province_code":"Customer"},{"first_name":"Beulah","address1":"EXE","phone":"Profit-focused","city":"Blandaland","zip":"Steel","province":"Metal","country":"South Africa","last_name":"Schowalter","address2":"Branding","company":"Sierra Leone","latitude":0.14722338,"longitude":0.20060048,"name":"Facilitator","country_code":"SD","province_code":"matrix"},{"first_name":"Verla","address1":"Gibson Walks","phone":"Savings Account","city":"Fadelburgh","zip":"communities","province":"Maryland","country":"Heard Island and McDonald Islands","last_name":"Stroman","address2":null,"company":"Avon","latitude":0.7495766,"longitude":0.5488675,"name":"maroon","country_code":"FJ","province_code":"Communications"}]},{"id":6232766473098399438,"email":"Colleen.DuBuque@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T10:17:14.7815918+01:00","updated_at":"2020-09-16T07:29:38.702093+01:00","first_name":"Hanna","last_name":"Hayes","orders_count":-1146586034,"state":"South Carolina","total_spent":"transmit","last_order_id":-6649128548656014505,"note":"Interactions","verified_email":false,"multipass_identifier":"Beauty","tax_exempt":true,"tags":"Tasty Plastic Table","last_order_name":"Operations","default_address":{"first_name":"Filomena","address1":"Clare Brooks","phone":"Fords","city":"Dareview","zip":"Djibouti Franc","province":null,"country":"Virgin Islands, U.S.","last_name":"Bauch","address2":null,"company":"Books \u0026 Tools","latitude":0.83176833,"longitude":0.67627746,"name":"harness","country_code":"PL","province_code":"Small Frozen Towels"},"addresses":[{"first_name":"Noemi","address1":"Savings Account","phone":"scalable","city":"Samantabury","zip":"withdrawal","province":"copying","country":"Rwanda","last_name":"Cronin","address2":"indexing","company":"Dynamic","latitude":0.9885551,"longitude":0.32967794,"name":"Concrete","country_code":"SL","province_code":"Bedfordshire"},{"first_name":"Andre","address1":"Generic","phone":"Handcrafted Wooden Car","city":"South Keyon","zip":"Representative","province":"Buckinghamshire","country":"Pitcairn Islands","last_name":"Russel","address2":"Gorgeous","company":"B2C","latitude":0.59049654,"longitude":0.19169967,"name":"Ergonomic","country_code":"TO","province_code":"Generic"},{"first_name":"Velda","address1":"Right-sized","phone":"Ramp","city":"Savannashire","zip":"incentivize","province":"Plastic","country":"Hungary","last_name":"Rice","address2":"interface","company":"Cross-group","latitude":0.658301,"longitude":0.4977541,"name":"national","country_code":"JM","province_code":"input"},{"first_name":"Filomena","address1":"Clare Brooks","phone":"Fords","city":"Dareview","zip":"Djibouti Franc","province":null,"country":"Virgin Islands, U.S.","last_name":"Bauch","address2":null,"company":"Books \u0026 Tools","latitude":0.83176833,"longitude":0.67627746,"name":"harness","country_code":"PL","province_code":"Small Frozen Towels"}]},{"id":-7587821637640828256,"email":"Gregg_Williamson12@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T20:21:19.4154384+01:00","updated_at":"2020-09-15T13:21:42.185075+01:00","first_name":"Cydney","last_name":"Cole","orders_count":1967180061,"state":"Wyoming","total_spent":"client-driven","last_order_id":6657308855040927765,"note":"Unbranded Plastic Mouse","verified_email":true,"multipass_identifier":"quantifying","tax_exempt":true,"tags":"Rubber","last_order_name":"e-commerce","default_address":{"first_name":"Kassandra","address1":"Kirlin Landing","phone":"motivating","city":"South Jesus","zip":"Fields","province":null,"country":"Cape Verde","last_name":"Mertz","address2":null,"company":"Idaho","latitude":0.16705954,"longitude":0.43423963,"name":"Island","country_code":"AE","province_code":"array"},"addresses":[{"first_name":"Alta","address1":"Intelligent","phone":"Fiji","city":"East Celinemouth","zip":"compress","province":"compressing","country":"Western Sahara","last_name":"Kiehn","address2":"deliver","company":"Beauty \u0026 Music","latitude":0.11052986,"longitude":0.40010676,"name":"Louisiana","country_code":"TL","province_code":"primary"},{"first_name":"Lincoln","address1":"Tasty Concrete Ball","phone":"systemic","city":"Karianebury","zip":"extensible","province":"methodologies","country":"Saint Martin","last_name":"Mraz","address2":"Auto Loan Account","company":"Incredible Plastic Car","latitude":0.24122569,"longitude":0.27981958,"name":"Kids \u0026 Home","country_code":"ES","province_code":"Generic Cotton Shoes"},{"first_name":"Clemens","address1":"program","phone":"Cambridgeshire","city":"North Salvatore","zip":"channels","province":"Credit Card Account","country":"Iceland","last_name":"Gutkowski","address2":"Incredible","company":"regional","latitude":0.65334064,"longitude":0.82396543,"name":"Forks","country_code":"CL","province_code":"Lights"},{"first_name":"Kassandra","address1":"Kirlin Landing","phone":"motivating","city":"South Jesus","zip":"Fields","province":null,"country":"Cape Verde","last_name":"Mertz","address2":null,"company":"Idaho","latitude":0.16705954,"longitude":0.43423963,"name":"Island","country_code":"AE","province_code":"array"}]},{"id":1354556523134097541,"email":"Abel_Kuhn@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T01:22:29.6939564+01:00","updated_at":"2020-09-16T01:43:58.373402+01:00","first_name":"Christine","last_name":"Cruickshank","orders_count":994129996,"state":"Indiana","total_spent":"Place","last_order_id":7523852669582325986,"note":"solutions","verified_email":true,"multipass_identifier":"Right-sized","tax_exempt":true,"tags":"Vision-oriented","last_order_name":"yellow","default_address":{"first_name":"Sallie","address1":"Elliot Run","phone":"Savings Account","city":"Wardport","zip":"Enterprise-wide","province":null,"country":"Haiti","last_name":"Towne","address2":"Jett Summit","company":"Wisconsin","latitude":0.23545948,"longitude":0.07677648,"name":"connect","country_code":"VG","province_code":"Refined Fresh Car"},"addresses":[{"first_name":"Carmel","address1":"next-generation","phone":"e-services","city":"East Micaelaborough","zip":"Avon","province":"content","country":"France","last_name":"Rodriguez","address2":"payment","company":"Avon","latitude":0.17068386,"longitude":0.7623551,"name":"District","country_code":"FO","province_code":"Cote d\u0027Ivoire"},{"first_name":"Larissa","address1":"array","phone":"Lane","city":"Orlandochester","zip":"B2B","province":"Home Loan Account","country":"Mauritania","last_name":"Kunde","address2":"withdrawal","company":"platforms","latitude":0.17609566,"longitude":0.37443995,"name":"Sri Lanka Rupee","country_code":"UZ","province_code":"PNG"},{"first_name":"Lorna","address1":"Quality","phone":"West Virginia","city":"Edfort","zip":"Bedfordshire","province":"parsing","country":"Gabon","last_name":"Padberg","address2":"Fundamental","company":"black","latitude":0.054480758,"longitude":0.09094696,"name":"Port","country_code":"KE","province_code":"Macedonia"},{"first_name":"Sallie","address1":"Elliot Run","phone":"Savings Account","city":"Wardport","zip":"Enterprise-wide","province":null,"country":"Haiti","last_name":"Towne","address2":"Jett Summit","company":"Wisconsin","latitude":0.23545948,"longitude":0.07677648,"name":"connect","country_code":"VG","province_code":"Refined Fresh Car"}]},{"id":-2449526807620031104,"email":"Marianne77@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T23:39:04.1960221+01:00","updated_at":"2020-09-16T05:32:11.7270775+01:00","first_name":"Paolo","last_name":"Weissnat","orders_count":410308187,"state":"Idaho","total_spent":"pink","last_order_id":1607968106341299927,"note":"Cedi","verified_email":true,"multipass_identifier":"Strategist","tax_exempt":false,"tags":"Product","last_order_name":"Auto Loan Account","default_address":{"first_name":"Noemie","address1":"Daniela Island","phone":"Utah","city":"Quitzonchester","zip":"green","province":"Maine","country":"Macao","last_name":"Krajcik","address2":null,"company":"Camp","latitude":0.19113797,"longitude":0.2604634,"name":"Cuban Peso","country_code":"RS","province_code":"Fresh"},"addresses":[{"first_name":"Isidro","address1":"hack","phone":"Facilitator","city":"New Reaganfort","zip":"Money Market Account","province":"Washington","country":"Bouvet Island (Bouvetoya)","last_name":"Durgan","address2":"Zambian Kwacha","company":"Honduras","latitude":0.13473126,"longitude":0.45268753,"name":"aggregate","country_code":"SN","province_code":"Tasty Plastic Sausages"},{"first_name":"Jacinthe","address1":"Generic Granite Sausages","phone":"Skyway","city":"Graysonland","zip":"THX","province":"program","country":"Saudi Arabia","last_name":"Reichert","address2":"Borders","company":"Principal","latitude":0.404918,"longitude":0.0014944468,"name":"Bedfordshire","country_code":"VI","province_code":"multi-state"},{"first_name":"Martina","address1":"index","phone":"microchip","city":"Satterfieldton","zip":"Global","province":"Bulgaria","country":"Romania","last_name":"Mraz","address2":"Directives","company":"input","latitude":0.81193316,"longitude":0.42431313,"name":"reinvent","country_code":"CD","province_code":"indigo"},{"first_name":"Noemie","address1":"Daniela Island","phone":"Utah","city":"Quitzonchester","zip":"green","province":"Maine","country":"Macao","last_name":"Krajcik","address2":null,"company":"Camp","latitude":0.19113797,"longitude":0.2604634,"name":"Cuban Peso","country_code":"RS","province_code":"Fresh"}]},{"id":-5982379818179323914,"email":"Benny_Mills59@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T14:37:00.9488387+01:00","updated_at":"2020-09-16T03:20:32.0260099+01:00","first_name":"Wendell","last_name":"Okuneva","orders_count":-313677668,"state":"Ohio","total_spent":"deposit","last_order_id":-1316715370157687574,"note":"Specialist","verified_email":false,"multipass_identifier":"Buckinghamshire","tax_exempt":true,"tags":"navigate","last_order_name":"firewall","default_address":{"first_name":"Katrine","address1":"Funk Course","phone":"Associate","city":"Hazelburgh","zip":"Dynamic","province":null,"country":"Thailand","last_name":"Runolfsdottir","address2":null,"company":"Meadow","latitude":0.63775414,"longitude":0.9361916,"name":"New Israeli Sheqel","country_code":"GP","province_code":"azure"},"addresses":[{"first_name":"Katelin","address1":"Monitored","phone":"haptic","city":"Port Justusstad","zip":"Jewelery","province":"Steel","country":"Trinidad and Tobago","last_name":"Dibbert","address2":"Investment Account","company":"Sleek Plastic Fish","latitude":0.475761,"longitude":0.77784646,"name":"back up","country_code":"HU","province_code":"Research"},{"first_name":"Marcelo","address1":"cross-platform","phone":"support","city":"Port Carlee","zip":"Path","province":"Checking Account","country":"Guinea","last_name":"Rice","address2":"Movies, Shoes \u0026 Games","company":"quantify","latitude":0.5526047,"longitude":0.68786293,"name":"leverage","country_code":"EE","province_code":"Object-based"},{"first_name":"Meda","address1":"Mandatory","phone":"Toys \u0026 Outdoors","city":"Leuschkemouth","zip":"Incredible Wooden Mouse","province":"user-centric","country":"Brunei Darussalam","last_name":"Lowe","address2":"Orchestrator","company":"Fantastic","latitude":0.8447222,"longitude":0.41494846,"name":"Republic of Korea","country_code":"FO","province_code":"Administrator"},{"first_name":"Katrine","address1":"Funk Course","phone":"Associate","city":"Hazelburgh","zip":"Dynamic","province":null,"country":"Thailand","last_name":"Runolfsdottir","address2":null,"company":"Meadow","latitude":0.63775414,"longitude":0.9361916,"name":"New Israeli Sheqel","country_code":"GP","province_code":"azure"}]}]} - \ No newline at end of file + diff --git a/src/libraries/pkg/descriptions.json b/src/libraries/pkg/descriptions.json index d699b5765cdea2..4b955199d64492 100644 --- a/src/libraries/pkg/descriptions.json +++ b/src/libraries/pkg/descriptions.json @@ -1024,7 +1024,7 @@ ] }, { - "Name": "System.IO.Compression.clrcompression", + "Name": "System.IO.Compression.Native", "Description": "Internal implementation package not meant for direct consumption. Please do not reference directly. Provides native implementation dll used for GZIP compression.", "CommonTypes": [] }, From 24aca919a173f0ab62fd258a4a532cf90b1fce14 Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 13:36:09 -0800 Subject: [PATCH 02/11] rename `clrcompression.def` file --- .../{clrcompression.def => System.IO.Compression.Native.def} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/libraries/Native/Windows/System.IO.Compression.Native/{clrcompression.def => System.IO.Compression.Native.def} (100%) diff --git a/src/libraries/Native/Windows/System.IO.Compression.Native/clrcompression.def b/src/libraries/Native/Windows/System.IO.Compression.Native/System.IO.Compression.Native.def similarity index 100% rename from src/libraries/Native/Windows/System.IO.Compression.Native/clrcompression.def rename to src/libraries/Native/Windows/System.IO.Compression.Native/System.IO.Compression.Native.def From 0104e6f8ce6516f322755ff6c5ee5d57d6a3dbde Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 14:09:41 -0800 Subject: [PATCH 03/11] exclude `System.*.Native.dll` when creating managed shims --- src/libraries/shims/manual/Directory.Build.props | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libraries/shims/manual/Directory.Build.props b/src/libraries/shims/manual/Directory.Build.props index 4070e431ee5759..ac7cd2bb10611e 100644 --- a/src/libraries/shims/manual/Directory.Build.props +++ b/src/libraries/shims/manual/Directory.Build.props @@ -20,7 +20,9 @@ + Exclude="$(NetCoreAppCurrentRuntimePath)$(MSBuildProjectName).dll; + $(NetCoreAppCurrentRuntimePath)System.*.Native.dll" + /> From 3838fa98ceadbc933c83bfa70a4ad37534201b0a Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 15:20:41 -0800 Subject: [PATCH 04/11] static library should be `System.IO.Compression.Native.lib` on Windows. Same as Globalization - without `lib` prefix --- .../Native/Windows/System.IO.Compression.Native/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt b/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt index dcf39c31ec2536..8b0633417c5267 100644 --- a/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt +++ b/src/libraries/Native/Windows/System.IO.Compression.Native/CMakeLists.txt @@ -96,7 +96,7 @@ add_library(System.IO.Compression.Native-static ) SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES PREFIX "") -SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES OUTPUT_NAME libSystem.IO.Compression.Native) +SET_TARGET_PROPERTIES(System.IO.Compression.Native-static PROPERTIES OUTPUT_NAME System.IO.Compression.Native) # Allow specification of arguments that should be passed to the linker if (GEN_SHARED_LIB) From 8d2604fcd209aeb22748848a57b8a7de7e3c5a1e Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 15:59:16 -0800 Subject: [PATCH 05/11] revert change to the resource string in tests --- src/libraries/System.Text.Json/tests/Resources/Strings.resx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/System.Text.Json/tests/Resources/Strings.resx b/src/libraries/System.Text.Json/tests/Resources/Strings.resx index f7fd3b158e0064..1d24e7d061d6f4 100644 --- a/src/libraries/System.Text.Json/tests/Resources/Strings.resx +++ b/src/libraries/System.Text.Json/tests/Resources/Strings.resx @@ -171,7 +171,7 @@ tiline\"another\" String\\"],"str":"\"\""} {"test":[{"_id":"562704ab8c67fc70235cb3ee","index":0,"guid":"9e16ac89-e6cb-401d-b0bd-5cb567908ad7","isActive":false,"balance":"$2,222.13","picture":"http://placehold.it/32x32","age":34,"eyeColor":"blue","name":"Reba Abbott","gender":"female","company":"VERBUS","email":"rebaabbott@verbus.com","phone":"+1 (878) 506-3650","address":"800 Anchorage Place, Crayne, Illinois, 9130","about":"Proident ea dolor ullamco occaecat ut pariatur. Pariatur aute deserunt deserunt qui aute commodo. Dolor ipsum incididunt tempor ut reprehenderit irure ut do. Adipisicing ut reprehenderit quis culpa do reprehenderit velit. Elit laborum tempor deserunt dolore et enim duis irure pariatur amet ex nostrud adipisicing deserunt.\r\n","registered":"2015-09-05T11:49:57 +07:00","latitude":-27.135166,"longitude":-91.398162,"tags":["ea","irure","id","ullamco","nulla","incididunt","ut"],"friends":[{"id":0,"name":"Evelyn Jefferson"},{"id":1,"name":"Watkins Alston"},{"id":2,"name":"Wilma Lyons"}],"greeting":"Hello, Reba Abbott! You have 8 unread messages.","favoriteFruit":"apple"},{"_id":"562704abd5ff38d164660a26","index":1,"guid":"fdde9f75-521b-4b87-89d8-5ad20a88f24d","isActive":true,"balance":"$1,703.62","picture":"http://placehold.it/32x32","age":24,"eyeColor":"blue","name":"Hahn Brewer","gender":"male","company":"NIMON","email":"hahnbrewer@nimon.com","phone":"+1 (853) 532-2613","address":"753 Montgomery Street, Tooleville, New York, 3825","about":"Et ea amet eiusmod fugiat mollit nisi. Eiusmod laborum ex magna non sunt adipisicing enim id irure fugiat veniam laboris cillum sunt. Ad exercitation pariatur deserunt duis nostrud ut laborum duis dolore eiusmod. Quis qui ea consectetur exercitation. Irure consectetur aliquip adipisicing labore eiusmod consequat laboris culpa cillum.\r\n","registered":"2015-10-10T05:49:36 +07:00","latitude":30.695271,"longitude":120.942854,"tags":["ea","et","non","nisi","magna","ut","laborum"],"friends":[{"id":0,"name":"Angelita Bush"},{"id":1,"name":"Whitfield Little"},{"id":2,"name":"Irma Douglas"}],"greeting":"Hello, Hahn Brewer! You have 7 unread messages.","favoriteFruit":"banana"},{"_id":"562704ab54902c67a483499e","index":2,"guid":"b4a4d892-ed50-4fd4-9ee2-400dcd988b3b","isActive":false,"balance":"$1,209.52","picture":"http://placehold.it/32x32","age":31,"eyeColor":"brown","name":"Joseph Chambers","gender":"male","company":"CINESANCT","email":"josephchambers@cinesanct.com","phone":"+1 (895) 488-3412","address":"681 Hart Street, Virgie, West Virginia, 1860","about":"Irure exercitation duis amet enim aute deserunt. Mollit sunt proident consequat sint cupidatat ad proident tempor culpa et eu. Do duis non occaecat labore. Aliquip dolor ex enim cupidatat eu dolor commodo cupidatat tempor et officia consectetur laboris amet.\r\n","registered":"2014-02-09T12:25:45 +08:00","latitude":17.820853,"longitude":119.401495,"tags":["excepteur","consectetur","dolore","consectetur","culpa","ex","id"],"friends":[{"id":0,"name":"Richards Dorsey"},{"id":1,"name":"Vega Dunn"},{"id":2,"name":"Rosella Ortiz"}],"greeting":"Hello, Joseph Chambers! You have 1 unread messages.","favoriteFruit":"strawberry"},{"_id":"562704ab556505f3f3ab919f","index":3,"guid":"7117c6a1-4c2b-42d7-9392-f48e3e34ad18","isActive":false,"balance":"$3,266.27","picture":"http://placehold.it/32x32","age":25,"eyeColor":"blue","name":"Love Vinson","gender":"male","company":"COMTEST","email":"lovevinson@comtest.com","phone":"+1 (969) 580-3066","address":"280 Metropolitan Avenue, Allamuchy, Massachusetts, 3676","about":"Culpa nostrud nulla aliqua esse ut aliqua dolore ad exercitation irure ex. Excepteur anim exercitation tempor cupidatat ex commodo commodo nulla nostrud eiusmod. Nostrud ipsum culpa commodo consequat minim reprehenderit mollit nulla. Do fugiat eiusmod culpa laboris consequat occaecat mollit officia. Magna id sint officia duis enim magna sit culpa ex incididunt qui aute esse duis. Aute aute dolor do nisi fugiat. Proident cillum commodo eiusmod nisi proident duis.\r\n","registered":"2015-07-22T10:40:52 +07:00","latitude":86.474275,"longitude":-86.15884,"tags":["Lorem","nisi","et","ex","mollit","veniam","eu"],"friends":[{"id":0,"name":"Terry Nicholson"},{"id":1,"name":"Betty Johnston"},{"id":2,"name":"Moss Delaney"}],"greeting":"Hello, Love Vinson! You have 8 unread messages.","favoriteFruit":"apple"},{"_id":"562704ab07262f4afe428c85","index":4,"guid":"804feb78-f8ac-423f-aa49-29a95a868e6d","isActive":false,"balance":"$1,931.13","picture":"http://placehold.it/32x32","age":20,"eyeColor":"green","name":"Myers Knight","gender":"male","company":"BOSTONIC","email":"myersknight@bostonic.com","phone":"+1 (919) 430-2557","address":"882 Williams Avenue, Hinsdale, Arkansas, 1994","about":"Eu sint nulla id culpa ullamco dolor sunt dolore magna laborum cillum reprehenderit reprehenderit. Eu magna nostrud commodo officia officia. Enim do cupidatat qui cupidatat non labore ea exercitation. Tempor amet tempor eu mollit eu ex sint.\r\n","registered":"2015-08-22T04:55:26 +07:00","latitude":-31.838368,"longitude":-121.37722,"tags":["minim","do","ut","aliqua","commodo","exercitation","esse"],"friends":[{"id":0,"name":"Andrews Farrell"},{"id":1,"name":"Fay Greer"},{"id":2,"name":"Shannon Mercer"}],"greeting":"Hello, Myers Knight! You have 1 unread messages.","favoriteFruit":"strawberry"},{"_id":"562704ab97b7fd55ebd0de0f","index":5,"guid":"eca940d8-c3e6-46b4-a231-c4b9f2fcd39e","isActive":false,"balance":"$2,487.87","picture":"http://placehold.it/32x32","age":24,"eyeColor":"blue","name":"Sheppard Good","gender":"male","company":"POSHOME","email":"sheppardgood@poshome.com","phone":"+1 (848) 429-2573","address":"770 Troutman Street, Craig, Nevada, 1764","about":"In anim veniam eu sint velit ullamco pariatur. Nostrud commodo elit qui laboris velit dolore consectetur. Velit irure aliqua dolor amet adipisicing. Cillum qui eiusmod anim tempor.\r\n","registered":"2014-09-04T05:12:20 +07:00","latitude":43.692369,"longitude":158.982874,"tags":["do","fugiat","mollit","quis","sint","cillum","aliquip"],"friends":[{"id":0,"name":"Talley Nixon"},{"id":1,"name":"Moran England"},{"id":2,"name":"Dollie Mendoza"}],"greeting":"Hello, Sheppard Good! You have 3 unread messages.","favoriteFruit":"apple"},{"_id":"562704ab4efaa200c3c61148","index":6,"guid":"4b520900-988b-4009-a6da-dcd852af7b40","isActive":true,"balance":"$1,322.60","picture":"http://placehold.it/32x32","age":35,"eyeColor":"blue","name":"Kim Franklin","gender":"male","company":"NETUR","email":"kimfranklin@netur.com","phone":"+1 (948) 595-3481","address":"379 Malbone Street, Clinton, Connecticut, 4218","about":"Reprehenderit enim magna fugiat labore laboris aliqua ea anim exercitation nisi eiusmod. Enim velit incididunt occaecat id tempor aliquip minim minim cillum. Qui ea id deserunt eu laboris magna qui in esse officia est consectetur.\r\n","registered":"2015-05-20T08:57:51 +07:00","latitude":-25.146849,"longitude":-116.916727,"tags":["esse","ex","mollit","laborum","esse","do","occaecat"],"friends":[{"id":0,"name":"Benson Ashley"},{"id":1,"name":"Joan Franks"},{"id":2,"name":"Glenda Robertson"}],"greeting":"Hello, Kim Franklin! You have 8 unread messages.","favoriteFruit":"banana"}]} - {"locked":false,"version":1,"targets":{"DNXCore,Version=v5.0":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.NetworkInformation/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.NetworkInformation.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x64":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"native":{"runtimes/win7-x64/native/CoreConsole.exe":{}}},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}},"native":{"runtimes/win7-x64/native/clretwrc.dll":{},"runtimes/win7-x64/native/coreclr.dll":{},"runtimes/win7-x64/native/dbgshim.dll":{},"runtimes/win7-x64/native/mscordaccore.dll":{},"runtimes/win7-x64/native/mscordbi.dll":{},"runtimes/win7-x64/native/mscorrc.debug.dll":{},"runtimes/win7-x64/native/mscorrc.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.Native-x64/4.0.0":{"native":{"runtimes/win7-x64/native/System.IO.Compression.Native.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x86":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.Native-x86/4.0.0":{"native":{"runtimes/win7-x86/native/System.IO.Compression.Native.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}}},"libraries":{"Microsoft.CSharp/4.0.0":{"sha512":"oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==","type":"Package","files":["_rels/.rels","Microsoft.CSharp.nuspec","lib/dotnet/Microsoft.CSharp.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.CSharp.dll","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.CSharp.dll","ref/dotnet/Microsoft.CSharp.xml","ref/dotnet/zh-hant/Microsoft.CSharp.xml","ref/dotnet/de/Microsoft.CSharp.xml","ref/dotnet/fr/Microsoft.CSharp.xml","ref/dotnet/it/Microsoft.CSharp.xml","ref/dotnet/ja/Microsoft.CSharp.xml","ref/dotnet/ko/Microsoft.CSharp.xml","ref/dotnet/ru/Microsoft.CSharp.xml","ref/dotnet/zh-hans/Microsoft.CSharp.xml","ref/dotnet/es/Microsoft.CSharp.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.CSharp.dll","ref/netcore50/Microsoft.CSharp.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore/5.0.0":{"sha512":"QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.nuspec","_._","package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"sha512":"Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.ConsoleHost-x64.nuspec","runtimes/win7-x64/native/CoreConsole.exe","package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Platforms/1.0.0":{"sha512":"0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Platforms.nuspec","runtime.json","package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"sha512":"DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec","runtimes/win7-x64/native/clretwrc.dll","runtimes/win7-x64/native/coreclr.dll","runtimes/win7-x64/native/dbgshim.dll","runtimes/win7-x64/native/mscordaccore.dll","runtimes/win7-x64/native/mscordbi.dll","runtimes/win7-x64/native/mscorrc.debug.dll","runtimes/win7-x64/native/mscorrc.dll","runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll","ref/dotnet/_._","package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets/1.0.0":{"sha512":"XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.nuspec","runtime.json","package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{"sha512":"32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.DNXCore.nuspec","runtime.json","package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp","[Content_Types].xml"]},"Microsoft.VisualBasic/10.0.0":{"sha512":"5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==","type":"Package","files":["_rels/.rels","Microsoft.VisualBasic.nuspec","lib/dotnet/Microsoft.VisualBasic.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.VisualBasic.dll","lib/wpa81/_._","ref/dotnet/Microsoft.VisualBasic.dll","ref/dotnet/Microsoft.VisualBasic.xml","ref/dotnet/zh-hant/Microsoft.VisualBasic.xml","ref/dotnet/de/Microsoft.VisualBasic.xml","ref/dotnet/fr/Microsoft.VisualBasic.xml","ref/dotnet/it/Microsoft.VisualBasic.xml","ref/dotnet/ja/Microsoft.VisualBasic.xml","ref/dotnet/ko/Microsoft.VisualBasic.xml","ref/dotnet/ru/Microsoft.VisualBasic.xml","ref/dotnet/zh-hans/Microsoft.VisualBasic.xml","ref/dotnet/es/Microsoft.VisualBasic.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.VisualBasic.dll","ref/netcore50/Microsoft.VisualBasic.xml","ref/wpa81/_._","package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp","[Content_Types].xml"]},"Microsoft.Win32.Primitives/4.0.0":{"sha512":"CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==","type":"Package","files":["_rels/.rels","Microsoft.Win32.Primitives.nuspec","lib/dotnet/Microsoft.Win32.Primitives.dll","lib/net46/Microsoft.Win32.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.Win32.Primitives.dll","ref/dotnet/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml","ref/dotnet/de/Microsoft.Win32.Primitives.xml","ref/dotnet/fr/Microsoft.Win32.Primitives.xml","ref/dotnet/it/Microsoft.Win32.Primitives.xml","ref/dotnet/ja/Microsoft.Win32.Primitives.xml","ref/dotnet/ko/Microsoft.Win32.Primitives.xml","ref/dotnet/ru/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml","ref/dotnet/es/Microsoft.Win32.Primitives.xml","ref/net46/Microsoft.Win32.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp","[Content_Types].xml"]},"runtime.win7.System.Console/4.0.0-beta-23412":{"sha512":"j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==","type":"Package","files":["_rels/.rels","runtime.win7.System.Console.nuspec","runtimes/win7/lib/dotnet/System.Console.dll","ref/dotnet/_._","package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp","[Content_Types].xml"]},"System.AppContext/4.0.0":{"sha512":"gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==","type":"Package","files":["_rels/.rels","System.AppContext.nuspec","lib/netcore50/System.AppContext.dll","lib/DNXCore50/System.AppContext.dll","lib/net46/System.AppContext.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.AppContext.dll","ref/dotnet/System.AppContext.xml","ref/dotnet/zh-hant/System.AppContext.xml","ref/dotnet/de/System.AppContext.xml","ref/dotnet/fr/System.AppContext.xml","ref/dotnet/it/System.AppContext.xml","ref/dotnet/ja/System.AppContext.xml","ref/dotnet/ko/System.AppContext.xml","ref/dotnet/ru/System.AppContext.xml","ref/dotnet/zh-hans/System.AppContext.xml","ref/dotnet/es/System.AppContext.xml","ref/net46/System.AppContext.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp","[Content_Types].xml"]},"System.Collections/4.0.10":{"sha512":"ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==","type":"Package","files":["_rels/.rels","System.Collections.nuspec","lib/netcore50/System.Collections.dll","lib/DNXCore50/System.Collections.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.dll","ref/dotnet/System.Collections.xml","ref/dotnet/zh-hant/System.Collections.xml","ref/dotnet/de/System.Collections.xml","ref/dotnet/fr/System.Collections.xml","ref/dotnet/it/System.Collections.xml","ref/dotnet/ja/System.Collections.xml","ref/dotnet/ko/System.Collections.xml","ref/dotnet/ru/System.Collections.xml","ref/dotnet/zh-hans/System.Collections.xml","ref/dotnet/es/System.Collections.xml","runtimes/win8-aot/lib/netcore50/System.Collections.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp","[Content_Types].xml"]},"System.Collections.Concurrent/4.0.10":{"sha512":"ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==","type":"Package","files":["_rels/.rels","System.Collections.Concurrent.nuspec","lib/dotnet/System.Collections.Concurrent.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.Concurrent.dll","ref/dotnet/System.Collections.Concurrent.xml","ref/dotnet/zh-hant/System.Collections.Concurrent.xml","ref/dotnet/de/System.Collections.Concurrent.xml","ref/dotnet/fr/System.Collections.Concurrent.xml","ref/dotnet/it/System.Collections.Concurrent.xml","ref/dotnet/ja/System.Collections.Concurrent.xml","ref/dotnet/ko/System.Collections.Concurrent.xml","ref/dotnet/ru/System.Collections.Concurrent.xml","ref/dotnet/zh-hans/System.Collections.Concurrent.xml","ref/dotnet/es/System.Collections.Concurrent.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp","[Content_Types].xml"]},"System.Collections.Immutable/1.1.37":{"sha512":"fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==","type":"Package","files":["_rels/.rels","System.Collections.Immutable.nuspec","lib/dotnet/System.Collections.Immutable.dll","lib/dotnet/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll","package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp","[Content_Types].xml"]},"System.Collections.NonGeneric/4.0.0":{"sha512":"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==","type":"Package","files":["_rels/.rels","System.Collections.NonGeneric.nuspec","lib/dotnet/System.Collections.NonGeneric.dll","lib/net46/System.Collections.NonGeneric.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.NonGeneric.dll","ref/dotnet/System.Collections.NonGeneric.xml","ref/dotnet/zh-hant/System.Collections.NonGeneric.xml","ref/dotnet/de/System.Collections.NonGeneric.xml","ref/dotnet/fr/System.Collections.NonGeneric.xml","ref/dotnet/it/System.Collections.NonGeneric.xml","ref/dotnet/ja/System.Collections.NonGeneric.xml","ref/dotnet/ko/System.Collections.NonGeneric.xml","ref/dotnet/ru/System.Collections.NonGeneric.xml","ref/dotnet/zh-hans/System.Collections.NonGeneric.xml","ref/dotnet/es/System.Collections.NonGeneric.xml","ref/net46/System.Collections.NonGeneric.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp","[Content_Types].xml"]},"System.ComponentModel/4.0.0":{"sha512":"BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==","type":"Package","files":["_rels/.rels","System.ComponentModel.nuspec","lib/dotnet/System.ComponentModel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.ComponentModel.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.ComponentModel.dll","ref/dotnet/System.ComponentModel.xml","ref/dotnet/zh-hant/System.ComponentModel.xml","ref/dotnet/de/System.ComponentModel.xml","ref/dotnet/fr/System.ComponentModel.xml","ref/dotnet/it/System.ComponentModel.xml","ref/dotnet/ja/System.ComponentModel.xml","ref/dotnet/ko/System.ComponentModel.xml","ref/dotnet/ru/System.ComponentModel.xml","ref/dotnet/zh-hans/System.ComponentModel.xml","ref/dotnet/es/System.ComponentModel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.ComponentModel.dll","ref/netcore50/System.ComponentModel.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp","[Content_Types].xml"]},"System.ComponentModel.Annotations/4.0.10":{"sha512":"7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==","type":"Package","files":["_rels/.rels","System.ComponentModel.Annotations.nuspec","lib/dotnet/System.ComponentModel.Annotations.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.Annotations.dll","ref/dotnet/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml","ref/dotnet/de/System.ComponentModel.Annotations.xml","ref/dotnet/fr/System.ComponentModel.Annotations.xml","ref/dotnet/it/System.ComponentModel.Annotations.xml","ref/dotnet/ja/System.ComponentModel.Annotations.xml","ref/dotnet/ko/System.ComponentModel.Annotations.xml","ref/dotnet/ru/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml","ref/dotnet/es/System.ComponentModel.Annotations.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp","[Content_Types].xml"]},"System.ComponentModel.EventBasedAsync/4.0.10":{"sha512":"d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==","type":"Package","files":["_rels/.rels","System.ComponentModel.EventBasedAsync.nuspec","lib/dotnet/System.ComponentModel.EventBasedAsync.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.EventBasedAsync.dll","ref/dotnet/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp","[Content_Types].xml"]},"System.Console/4.0.0-beta-23412":{"sha512":"D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==","type":"Package","files":["_rels/.rels","System.Console.nuspec","lib/net46/System.Console.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Console.dll","ref/dotnet/System.Console.xml","ref/dotnet/zh-hant/System.Console.xml","ref/dotnet/de/System.Console.xml","ref/dotnet/fr/System.Console.xml","ref/dotnet/it/System.Console.xml","ref/dotnet/ja/System.Console.xml","ref/dotnet/ko/System.Console.xml","ref/dotnet/ru/System.Console.xml","ref/dotnet/zh-hans/System.Console.xml","ref/dotnet/es/System.Console.xml","ref/net46/System.Console.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Contracts/4.0.0":{"sha512":"lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==","type":"Package","files":["_rels/.rels","System.Diagnostics.Contracts.nuspec","lib/netcore50/System.Diagnostics.Contracts.dll","lib/DNXCore50/System.Diagnostics.Contracts.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Contracts.dll","ref/dotnet/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml","ref/dotnet/de/System.Diagnostics.Contracts.xml","ref/dotnet/fr/System.Diagnostics.Contracts.xml","ref/dotnet/it/System.Diagnostics.Contracts.xml","ref/dotnet/ja/System.Diagnostics.Contracts.xml","ref/dotnet/ko/System.Diagnostics.Contracts.xml","ref/dotnet/ru/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml","ref/dotnet/es/System.Diagnostics.Contracts.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Contracts.dll","ref/netcore50/System.Diagnostics.Contracts.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Debug/4.0.10":{"sha512":"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==","type":"Package","files":["_rels/.rels","System.Diagnostics.Debug.nuspec","lib/DNXCore50/System.Diagnostics.Debug.dll","lib/netcore50/System.Diagnostics.Debug.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Debug.dll","ref/dotnet/System.Diagnostics.Debug.xml","ref/dotnet/zh-hant/System.Diagnostics.Debug.xml","ref/dotnet/de/System.Diagnostics.Debug.xml","ref/dotnet/fr/System.Diagnostics.Debug.xml","ref/dotnet/it/System.Diagnostics.Debug.xml","ref/dotnet/ja/System.Diagnostics.Debug.xml","ref/dotnet/ko/System.Diagnostics.Debug.xml","ref/dotnet/ru/System.Diagnostics.Debug.xml","ref/dotnet/zh-hans/System.Diagnostics.Debug.xml","ref/dotnet/es/System.Diagnostics.Debug.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.StackTrace/4.0.0":{"sha512":"PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==","type":"Package","files":["_rels/.rels","System.Diagnostics.StackTrace.nuspec","lib/DNXCore50/System.Diagnostics.StackTrace.dll","lib/netcore50/System.Diagnostics.StackTrace.dll","lib/net46/System.Diagnostics.StackTrace.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.StackTrace.dll","ref/dotnet/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml","ref/dotnet/de/System.Diagnostics.StackTrace.xml","ref/dotnet/fr/System.Diagnostics.StackTrace.xml","ref/dotnet/it/System.Diagnostics.StackTrace.xml","ref/dotnet/ja/System.Diagnostics.StackTrace.xml","ref/dotnet/ko/System.Diagnostics.StackTrace.xml","ref/dotnet/ru/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml","ref/dotnet/es/System.Diagnostics.StackTrace.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll","ref/net46/System.Diagnostics.StackTrace.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tools/4.0.0":{"sha512":"uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tools.nuspec","lib/DNXCore50/System.Diagnostics.Tools.dll","lib/netcore50/System.Diagnostics.Tools.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Tools.dll","ref/dotnet/System.Diagnostics.Tools.xml","ref/dotnet/zh-hant/System.Diagnostics.Tools.xml","ref/dotnet/de/System.Diagnostics.Tools.xml","ref/dotnet/fr/System.Diagnostics.Tools.xml","ref/dotnet/it/System.Diagnostics.Tools.xml","ref/dotnet/ja/System.Diagnostics.Tools.xml","ref/dotnet/ko/System.Diagnostics.Tools.xml","ref/dotnet/ru/System.Diagnostics.Tools.xml","ref/dotnet/zh-hans/System.Diagnostics.Tools.xml","ref/dotnet/es/System.Diagnostics.Tools.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Tools.dll","ref/netcore50/System.Diagnostics.Tools.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tracing/4.0.20":{"sha512":"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tracing.nuspec","lib/netcore50/System.Diagnostics.Tracing.dll","lib/DNXCore50/System.Diagnostics.Tracing.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Tracing.dll","ref/dotnet/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml","ref/dotnet/de/System.Diagnostics.Tracing.xml","ref/dotnet/fr/System.Diagnostics.Tracing.xml","ref/dotnet/it/System.Diagnostics.Tracing.xml","ref/dotnet/ja/System.Diagnostics.Tracing.xml","ref/dotnet/ko/System.Diagnostics.Tracing.xml","ref/dotnet/ru/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml","ref/dotnet/es/System.Diagnostics.Tracing.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp","[Content_Types].xml"]},"System.Dynamic.Runtime/4.0.10":{"sha512":"r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==","type":"Package","files":["_rels/.rels","System.Dynamic.Runtime.nuspec","lib/netcore50/System.Dynamic.Runtime.dll","lib/DNXCore50/System.Dynamic.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Dynamic.Runtime.dll","ref/dotnet/System.Dynamic.Runtime.xml","ref/dotnet/zh-hant/System.Dynamic.Runtime.xml","ref/dotnet/de/System.Dynamic.Runtime.xml","ref/dotnet/fr/System.Dynamic.Runtime.xml","ref/dotnet/it/System.Dynamic.Runtime.xml","ref/dotnet/ja/System.Dynamic.Runtime.xml","ref/dotnet/ko/System.Dynamic.Runtime.xml","ref/dotnet/ru/System.Dynamic.Runtime.xml","ref/dotnet/zh-hans/System.Dynamic.Runtime.xml","ref/dotnet/es/System.Dynamic.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp","[Content_Types].xml"]},"System.Globalization/4.0.10":{"sha512":"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==","type":"Package","files":["_rels/.rels","System.Globalization.nuspec","lib/netcore50/System.Globalization.dll","lib/DNXCore50/System.Globalization.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.dll","ref/dotnet/System.Globalization.xml","ref/dotnet/zh-hant/System.Globalization.xml","ref/dotnet/de/System.Globalization.xml","ref/dotnet/fr/System.Globalization.xml","ref/dotnet/it/System.Globalization.xml","ref/dotnet/ja/System.Globalization.xml","ref/dotnet/ko/System.Globalization.xml","ref/dotnet/ru/System.Globalization.xml","ref/dotnet/zh-hans/System.Globalization.xml","ref/dotnet/es/System.Globalization.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp","[Content_Types].xml"]},"System.Globalization.Calendars/4.0.0":{"sha512":"cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==","type":"Package","files":["_rels/.rels","System.Globalization.Calendars.nuspec","lib/netcore50/System.Globalization.Calendars.dll","lib/DNXCore50/System.Globalization.Calendars.dll","lib/net46/System.Globalization.Calendars.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Calendars.dll","ref/dotnet/System.Globalization.Calendars.xml","ref/dotnet/zh-hant/System.Globalization.Calendars.xml","ref/dotnet/de/System.Globalization.Calendars.xml","ref/dotnet/fr/System.Globalization.Calendars.xml","ref/dotnet/it/System.Globalization.Calendars.xml","ref/dotnet/ja/System.Globalization.Calendars.xml","ref/dotnet/ko/System.Globalization.Calendars.xml","ref/dotnet/ru/System.Globalization.Calendars.xml","ref/dotnet/zh-hans/System.Globalization.Calendars.xml","ref/dotnet/es/System.Globalization.Calendars.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll","ref/net46/System.Globalization.Calendars.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp","[Content_Types].xml"]},"System.Globalization.Extensions/4.0.0":{"sha512":"rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==","type":"Package","files":["_rels/.rels","System.Globalization.Extensions.nuspec","lib/dotnet/System.Globalization.Extensions.dll","lib/net46/System.Globalization.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Extensions.dll","ref/dotnet/System.Globalization.Extensions.xml","ref/dotnet/zh-hant/System.Globalization.Extensions.xml","ref/dotnet/de/System.Globalization.Extensions.xml","ref/dotnet/fr/System.Globalization.Extensions.xml","ref/dotnet/it/System.Globalization.Extensions.xml","ref/dotnet/ja/System.Globalization.Extensions.xml","ref/dotnet/ko/System.Globalization.Extensions.xml","ref/dotnet/ru/System.Globalization.Extensions.xml","ref/dotnet/zh-hans/System.Globalization.Extensions.xml","ref/dotnet/es/System.Globalization.Extensions.xml","ref/net46/System.Globalization.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp","[Content_Types].xml"]},"System.IO/4.0.10":{"sha512":"kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==","type":"Package","files":["_rels/.rels","System.IO.nuspec","lib/netcore50/System.IO.dll","lib/DNXCore50/System.IO.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.dll","ref/dotnet/System.IO.xml","ref/dotnet/zh-hant/System.IO.xml","ref/dotnet/de/System.IO.xml","ref/dotnet/fr/System.IO.xml","ref/dotnet/it/System.IO.xml","ref/dotnet/ja/System.IO.xml","ref/dotnet/ko/System.IO.xml","ref/dotnet/ru/System.IO.xml","ref/dotnet/zh-hans/System.IO.xml","ref/dotnet/es/System.IO.xml","runtimes/win8-aot/lib/netcore50/System.IO.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp","[Content_Types].xml"]},"System.IO.Compression/4.0.0":{"sha512":"S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.nuspec","lib/dotnet/System.IO.Compression.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/System.IO.Compression.dll","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.dll","ref/dotnet/System.IO.Compression.xml","ref/dotnet/zh-hant/System.IO.Compression.xml","ref/dotnet/de/System.IO.Compression.xml","ref/dotnet/fr/System.IO.Compression.xml","ref/dotnet/it/System.IO.Compression.xml","ref/dotnet/ja/System.IO.Compression.xml","ref/dotnet/ko/System.IO.Compression.xml","ref/dotnet/ru/System.IO.Compression.xml","ref/dotnet/zh-hans/System.IO.Compression.xml","ref/dotnet/es/System.IO.Compression.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.IO.Compression.dll","ref/netcore50/System.IO.Compression.xml","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.Native-x64/4.0.0":{"sha512":"Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==","type":"Package","files":["_rels/.rels","System.IO.Compression.Native-x64.nuspec","runtimes/win7-x64/native/System.IO.Compression.Native.dll","runtimes/win10-x64/native/System.IO.Compression.Native.dll","package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp","[Content_Types].xml"]},"System.IO.Compression.Native-x86/4.0.0":{"sha512":"GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.Native-x86.nuspec","runtimes/win7-x86/native/System.IO.Compression.Native.dll","runtimes/win10-x86/native/System.IO.Compression.Native.dll","package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.ZipFile/4.0.0":{"sha512":"pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==","type":"Package","files":["_rels/.rels","System.IO.Compression.ZipFile.nuspec","lib/dotnet/System.IO.Compression.ZipFile.dll","lib/net46/System.IO.Compression.ZipFile.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.ZipFile.dll","ref/dotnet/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml","ref/dotnet/de/System.IO.Compression.ZipFile.xml","ref/dotnet/fr/System.IO.Compression.ZipFile.xml","ref/dotnet/it/System.IO.Compression.ZipFile.xml","ref/dotnet/ja/System.IO.Compression.ZipFile.xml","ref/dotnet/ko/System.IO.Compression.ZipFile.xml","ref/dotnet/ru/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml","ref/dotnet/es/System.IO.Compression.ZipFile.xml","ref/net46/System.IO.Compression.ZipFile.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem/4.0.0":{"sha512":"eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.nuspec","lib/DNXCore50/System.IO.FileSystem.dll","lib/netcore50/System.IO.FileSystem.dll","lib/net46/System.IO.FileSystem.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.dll","ref/dotnet/System.IO.FileSystem.xml","ref/dotnet/zh-hant/System.IO.FileSystem.xml","ref/dotnet/de/System.IO.FileSystem.xml","ref/dotnet/fr/System.IO.FileSystem.xml","ref/dotnet/it/System.IO.FileSystem.xml","ref/dotnet/ja/System.IO.FileSystem.xml","ref/dotnet/ko/System.IO.FileSystem.xml","ref/dotnet/ru/System.IO.FileSystem.xml","ref/dotnet/zh-hans/System.IO.FileSystem.xml","ref/dotnet/es/System.IO.FileSystem.xml","ref/net46/System.IO.FileSystem.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem.Primitives/4.0.0":{"sha512":"7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.Primitives.nuspec","lib/dotnet/System.IO.FileSystem.Primitives.dll","lib/net46/System.IO.FileSystem.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.Primitives.dll","ref/dotnet/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml","ref/dotnet/de/System.IO.FileSystem.Primitives.xml","ref/dotnet/fr/System.IO.FileSystem.Primitives.xml","ref/dotnet/it/System.IO.FileSystem.Primitives.xml","ref/dotnet/ja/System.IO.FileSystem.Primitives.xml","ref/dotnet/ko/System.IO.FileSystem.Primitives.xml","ref/dotnet/ru/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml","ref/dotnet/es/System.IO.FileSystem.Primitives.xml","ref/net46/System.IO.FileSystem.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp","[Content_Types].xml"]},"System.IO.UnmanagedMemoryStream/4.0.0":{"sha512":"i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==","type":"Package","files":["_rels/.rels","System.IO.UnmanagedMemoryStream.nuspec","lib/dotnet/System.IO.UnmanagedMemoryStream.dll","lib/net46/System.IO.UnmanagedMemoryStream.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.UnmanagedMemoryStream.dll","ref/dotnet/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml","ref/net46/System.IO.UnmanagedMemoryStream.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp","[Content_Types].xml"]},"System.Linq/4.0.0":{"sha512":"r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==","type":"Package","files":["_rels/.rels","System.Linq.nuspec","lib/dotnet/System.Linq.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.dll","ref/dotnet/System.Linq.xml","ref/dotnet/zh-hant/System.Linq.xml","ref/dotnet/de/System.Linq.xml","ref/dotnet/fr/System.Linq.xml","ref/dotnet/it/System.Linq.xml","ref/dotnet/ja/System.Linq.xml","ref/dotnet/ko/System.Linq.xml","ref/dotnet/ru/System.Linq.xml","ref/dotnet/zh-hans/System.Linq.xml","ref/dotnet/es/System.Linq.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.dll","ref/netcore50/System.Linq.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp","[Content_Types].xml"]},"System.Linq.Expressions/4.0.10":{"sha512":"qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==","type":"Package","files":["_rels/.rels","System.Linq.Expressions.nuspec","lib/netcore50/System.Linq.Expressions.dll","lib/DNXCore50/System.Linq.Expressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Linq.Expressions.dll","ref/dotnet/System.Linq.Expressions.xml","ref/dotnet/zh-hant/System.Linq.Expressions.xml","ref/dotnet/de/System.Linq.Expressions.xml","ref/dotnet/fr/System.Linq.Expressions.xml","ref/dotnet/it/System.Linq.Expressions.xml","ref/dotnet/ja/System.Linq.Expressions.xml","ref/dotnet/ko/System.Linq.Expressions.xml","ref/dotnet/ru/System.Linq.Expressions.xml","ref/dotnet/zh-hans/System.Linq.Expressions.xml","ref/dotnet/es/System.Linq.Expressions.xml","runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp","[Content_Types].xml"]},"System.Linq.Parallel/4.0.0":{"sha512":"PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==","type":"Package","files":["_rels/.rels","System.Linq.Parallel.nuspec","lib/dotnet/System.Linq.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Linq.Parallel.dll","ref/dotnet/System.Linq.Parallel.xml","ref/dotnet/zh-hant/System.Linq.Parallel.xml","ref/dotnet/de/System.Linq.Parallel.xml","ref/dotnet/fr/System.Linq.Parallel.xml","ref/dotnet/it/System.Linq.Parallel.xml","ref/dotnet/ja/System.Linq.Parallel.xml","ref/dotnet/ko/System.Linq.Parallel.xml","ref/dotnet/ru/System.Linq.Parallel.xml","ref/dotnet/zh-hans/System.Linq.Parallel.xml","ref/dotnet/es/System.Linq.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Parallel.dll","ref/netcore50/System.Linq.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp","[Content_Types].xml"]},"System.Linq.Queryable/4.0.0":{"sha512":"DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==","type":"Package","files":["_rels/.rels","System.Linq.Queryable.nuspec","lib/dotnet/System.Linq.Queryable.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Queryable.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.Queryable.dll","ref/dotnet/System.Linq.Queryable.xml","ref/dotnet/zh-hant/System.Linq.Queryable.xml","ref/dotnet/de/System.Linq.Queryable.xml","ref/dotnet/fr/System.Linq.Queryable.xml","ref/dotnet/it/System.Linq.Queryable.xml","ref/dotnet/ja/System.Linq.Queryable.xml","ref/dotnet/ko/System.Linq.Queryable.xml","ref/dotnet/ru/System.Linq.Queryable.xml","ref/dotnet/zh-hans/System.Linq.Queryable.xml","ref/dotnet/es/System.Linq.Queryable.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Queryable.dll","ref/netcore50/System.Linq.Queryable.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp","[Content_Types].xml"]},"System.Net.Http/4.0.0":{"sha512":"mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==","type":"Package","files":["_rels/.rels","System.Net.Http.nuspec","lib/netcore50/System.Net.Http.dll","lib/DNXCore50/System.Net.Http.dll","lib/net45/_._","lib/win8/_._","lib/wpa81/_._","ref/dotnet/System.Net.Http.dll","ref/dotnet/System.Net.Http.xml","ref/dotnet/zh-hant/System.Net.Http.xml","ref/dotnet/de/System.Net.Http.xml","ref/dotnet/fr/System.Net.Http.xml","ref/dotnet/it/System.Net.Http.xml","ref/dotnet/ja/System.Net.Http.xml","ref/dotnet/ko/System.Net.Http.xml","ref/dotnet/ru/System.Net.Http.xml","ref/dotnet/zh-hans/System.Net.Http.xml","ref/dotnet/es/System.Net.Http.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.Http.dll","ref/netcore50/System.Net.Http.xml","ref/wpa81/_._","package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp","[Content_Types].xml"]},"System.Net.NetworkInformation/4.0.0":{"sha512":"D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==","type":"Package","files":["_rels/.rels","System.Net.NetworkInformation.nuspec","lib/netcore50/System.Net.NetworkInformation.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.NetworkInformation.dll","ref/dotnet/System.Net.NetworkInformation.xml","ref/dotnet/zh-hant/System.Net.NetworkInformation.xml","ref/dotnet/de/System.Net.NetworkInformation.xml","ref/dotnet/fr/System.Net.NetworkInformation.xml","ref/dotnet/it/System.Net.NetworkInformation.xml","ref/dotnet/ja/System.Net.NetworkInformation.xml","ref/dotnet/ko/System.Net.NetworkInformation.xml","ref/dotnet/ru/System.Net.NetworkInformation.xml","ref/dotnet/zh-hans/System.Net.NetworkInformation.xml","ref/dotnet/es/System.Net.NetworkInformation.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.NetworkInformation.dll","ref/netcore50/System.Net.NetworkInformation.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp","[Content_Types].xml"]},"System.Net.Primitives/4.0.10":{"sha512":"YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==","type":"Package","files":["_rels/.rels","System.Net.Primitives.nuspec","lib/netcore50/System.Net.Primitives.dll","lib/DNXCore50/System.Net.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.Primitives.dll","ref/dotnet/System.Net.Primitives.xml","ref/dotnet/zh-hant/System.Net.Primitives.xml","ref/dotnet/de/System.Net.Primitives.xml","ref/dotnet/fr/System.Net.Primitives.xml","ref/dotnet/it/System.Net.Primitives.xml","ref/dotnet/ja/System.Net.Primitives.xml","ref/dotnet/ko/System.Net.Primitives.xml","ref/dotnet/ru/System.Net.Primitives.xml","ref/dotnet/zh-hans/System.Net.Primitives.xml","ref/dotnet/es/System.Net.Primitives.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp","[Content_Types].xml"]},"System.Numerics.Vectors/4.1.0":{"sha512":"jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==","type":"Package","files":["_rels/.rels","System.Numerics.Vectors.nuspec","lib/dotnet/System.Numerics.Vectors.dll","lib/net46/System.Numerics.Vectors.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Numerics.Vectors.dll","ref/net46/System.Numerics.Vectors.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp","[Content_Types].xml"]},"System.ObjectModel/4.0.10":{"sha512":"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==","type":"Package","files":["_rels/.rels","System.ObjectModel.nuspec","lib/dotnet/System.ObjectModel.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ObjectModel.dll","ref/dotnet/System.ObjectModel.xml","ref/dotnet/zh-hant/System.ObjectModel.xml","ref/dotnet/de/System.ObjectModel.xml","ref/dotnet/fr/System.ObjectModel.xml","ref/dotnet/it/System.ObjectModel.xml","ref/dotnet/ja/System.ObjectModel.xml","ref/dotnet/ko/System.ObjectModel.xml","ref/dotnet/ru/System.ObjectModel.xml","ref/dotnet/zh-hans/System.ObjectModel.xml","ref/dotnet/es/System.ObjectModel.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp","[Content_Types].xml"]},"System.Private.Networking/4.0.0":{"sha512":"RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==","type":"Package","files":["_rels/.rels","System.Private.Networking.nuspec","lib/netcore50/System.Private.Networking.dll","lib/DNXCore50/System.Private.Networking.dll","ref/dnxcore50/_._","ref/netcore50/_._","package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp","[Content_Types].xml"]},"System.Private.Uri/4.0.0":{"sha512":"CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==","type":"Package","files":["_rels/.rels","System.Private.Uri.nuspec","lib/netcore50/System.Private.Uri.dll","lib/DNXCore50/System.Private.Uri.dll","ref/dnxcore50/_._","ref/netcore50/_._","runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll","package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp","[Content_Types].xml"]},"System.Reflection/4.0.10":{"sha512":"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==","type":"Package","files":["_rels/.rels","System.Reflection.nuspec","lib/netcore50/System.Reflection.dll","lib/DNXCore50/System.Reflection.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.dll","ref/dotnet/System.Reflection.xml","ref/dotnet/zh-hant/System.Reflection.xml","ref/dotnet/de/System.Reflection.xml","ref/dotnet/fr/System.Reflection.xml","ref/dotnet/it/System.Reflection.xml","ref/dotnet/ja/System.Reflection.xml","ref/dotnet/ko/System.Reflection.xml","ref/dotnet/ru/System.Reflection.xml","ref/dotnet/zh-hans/System.Reflection.xml","ref/dotnet/es/System.Reflection.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp","[Content_Types].xml"]},"System.Reflection.DispatchProxy/4.0.0":{"sha512":"Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==","type":"Package","files":["_rels/.rels","System.Reflection.DispatchProxy.nuspec","lib/net46/System.Reflection.DispatchProxy.dll","lib/DNXCore50/System.Reflection.DispatchProxy.dll","lib/netcore50/System.Reflection.DispatchProxy.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.DispatchProxy.dll","ref/dotnet/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml","ref/dotnet/de/System.Reflection.DispatchProxy.xml","ref/dotnet/fr/System.Reflection.DispatchProxy.xml","ref/dotnet/it/System.Reflection.DispatchProxy.xml","ref/dotnet/ja/System.Reflection.DispatchProxy.xml","ref/dotnet/ko/System.Reflection.DispatchProxy.xml","ref/dotnet/ru/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml","ref/dotnet/es/System.Reflection.DispatchProxy.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit/4.0.0":{"sha512":"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.nuspec","lib/DNXCore50/System.Reflection.Emit.dll","lib/netcore50/System.Reflection.Emit.dll","lib/MonoAndroid10/_._","lib/net45/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.Emit.dll","ref/dotnet/System.Reflection.Emit.xml","ref/dotnet/zh-hant/System.Reflection.Emit.xml","ref/dotnet/de/System.Reflection.Emit.xml","ref/dotnet/fr/System.Reflection.Emit.xml","ref/dotnet/it/System.Reflection.Emit.xml","ref/dotnet/ja/System.Reflection.Emit.xml","ref/dotnet/ko/System.Reflection.Emit.xml","ref/dotnet/ru/System.Reflection.Emit.xml","ref/dotnet/zh-hans/System.Reflection.Emit.xml","ref/dotnet/es/System.Reflection.Emit.xml","ref/MonoAndroid10/_._","ref/net45/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.ILGeneration/4.0.0":{"sha512":"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.ILGeneration.nuspec","lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll","lib/netcore50/System.Reflection.Emit.ILGeneration.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.ILGeneration.dll","ref/dotnet/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.Lightweight/4.0.0":{"sha512":"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.Lightweight.nuspec","lib/DNXCore50/System.Reflection.Emit.Lightweight.dll","lib/netcore50/System.Reflection.Emit.Lightweight.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.Lightweight.dll","ref/dotnet/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml","ref/dotnet/de/System.Reflection.Emit.Lightweight.xml","ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml","ref/dotnet/it/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml","ref/dotnet/es/System.Reflection.Emit.Lightweight.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp","[Content_Types].xml"]},"System.Reflection.Extensions/4.0.0":{"sha512":"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==","type":"Package","files":["_rels/.rels","System.Reflection.Extensions.nuspec","lib/netcore50/System.Reflection.Extensions.dll","lib/DNXCore50/System.Reflection.Extensions.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Extensions.dll","ref/dotnet/System.Reflection.Extensions.xml","ref/dotnet/zh-hant/System.Reflection.Extensions.xml","ref/dotnet/de/System.Reflection.Extensions.xml","ref/dotnet/fr/System.Reflection.Extensions.xml","ref/dotnet/it/System.Reflection.Extensions.xml","ref/dotnet/ja/System.Reflection.Extensions.xml","ref/dotnet/ko/System.Reflection.Extensions.xml","ref/dotnet/ru/System.Reflection.Extensions.xml","ref/dotnet/zh-hans/System.Reflection.Extensions.xml","ref/dotnet/es/System.Reflection.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Extensions.dll","ref/netcore50/System.Reflection.Extensions.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp","[Content_Types].xml"]},"System.Reflection.Metadata/1.0.22":{"sha512":"ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==","type":"Package","files":["_rels/.rels","System.Reflection.Metadata.nuspec","lib/dotnet/System.Reflection.Metadata.dll","lib/dotnet/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.dll","package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp","[Content_Types].xml"]},"System.Reflection.Primitives/4.0.0":{"sha512":"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==","type":"Package","files":["_rels/.rels","System.Reflection.Primitives.nuspec","lib/netcore50/System.Reflection.Primitives.dll","lib/DNXCore50/System.Reflection.Primitives.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Primitives.dll","ref/dotnet/System.Reflection.Primitives.xml","ref/dotnet/zh-hant/System.Reflection.Primitives.xml","ref/dotnet/de/System.Reflection.Primitives.xml","ref/dotnet/fr/System.Reflection.Primitives.xml","ref/dotnet/it/System.Reflection.Primitives.xml","ref/dotnet/ja/System.Reflection.Primitives.xml","ref/dotnet/ko/System.Reflection.Primitives.xml","ref/dotnet/ru/System.Reflection.Primitives.xml","ref/dotnet/zh-hans/System.Reflection.Primitives.xml","ref/dotnet/es/System.Reflection.Primitives.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Primitives.dll","ref/netcore50/System.Reflection.Primitives.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp","[Content_Types].xml"]},"System.Reflection.TypeExtensions/4.0.0":{"sha512":"YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==","type":"Package","files":["_rels/.rels","System.Reflection.TypeExtensions.nuspec","lib/netcore50/System.Reflection.TypeExtensions.dll","lib/DNXCore50/System.Reflection.TypeExtensions.dll","lib/net46/System.Reflection.TypeExtensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.TypeExtensions.dll","ref/dotnet/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml","ref/dotnet/de/System.Reflection.TypeExtensions.xml","ref/dotnet/fr/System.Reflection.TypeExtensions.xml","ref/dotnet/it/System.Reflection.TypeExtensions.xml","ref/dotnet/ja/System.Reflection.TypeExtensions.xml","ref/dotnet/ko/System.Reflection.TypeExtensions.xml","ref/dotnet/ru/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml","ref/dotnet/es/System.Reflection.TypeExtensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll","ref/net46/System.Reflection.TypeExtensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp","[Content_Types].xml"]},"System.Resources.ResourceManager/4.0.0":{"sha512":"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==","type":"Package","files":["_rels/.rels","System.Resources.ResourceManager.nuspec","lib/netcore50/System.Resources.ResourceManager.dll","lib/DNXCore50/System.Resources.ResourceManager.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Resources.ResourceManager.dll","ref/dotnet/System.Resources.ResourceManager.xml","ref/dotnet/zh-hant/System.Resources.ResourceManager.xml","ref/dotnet/de/System.Resources.ResourceManager.xml","ref/dotnet/fr/System.Resources.ResourceManager.xml","ref/dotnet/it/System.Resources.ResourceManager.xml","ref/dotnet/ja/System.Resources.ResourceManager.xml","ref/dotnet/ko/System.Resources.ResourceManager.xml","ref/dotnet/ru/System.Resources.ResourceManager.xml","ref/dotnet/zh-hans/System.Resources.ResourceManager.xml","ref/dotnet/es/System.Resources.ResourceManager.xml","runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Resources.ResourceManager.dll","ref/netcore50/System.Resources.ResourceManager.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp","[Content_Types].xml"]},"System.Runtime/4.0.20":{"sha512":"X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==","type":"Package","files":["_rels/.rels","System.Runtime.nuspec","lib/netcore50/System.Runtime.dll","lib/DNXCore50/System.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.dll","ref/dotnet/System.Runtime.xml","ref/dotnet/zh-hant/System.Runtime.xml","ref/dotnet/de/System.Runtime.xml","ref/dotnet/fr/System.Runtime.xml","ref/dotnet/it/System.Runtime.xml","ref/dotnet/ja/System.Runtime.xml","ref/dotnet/ko/System.Runtime.xml","ref/dotnet/ru/System.Runtime.xml","ref/dotnet/zh-hans/System.Runtime.xml","ref/dotnet/es/System.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp","[Content_Types].xml"]},"System.Runtime.Extensions/4.0.10":{"sha512":"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==","type":"Package","files":["_rels/.rels","System.Runtime.Extensions.nuspec","lib/netcore50/System.Runtime.Extensions.dll","lib/DNXCore50/System.Runtime.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Extensions.dll","ref/dotnet/System.Runtime.Extensions.xml","ref/dotnet/zh-hant/System.Runtime.Extensions.xml","ref/dotnet/de/System.Runtime.Extensions.xml","ref/dotnet/fr/System.Runtime.Extensions.xml","ref/dotnet/it/System.Runtime.Extensions.xml","ref/dotnet/ja/System.Runtime.Extensions.xml","ref/dotnet/ko/System.Runtime.Extensions.xml","ref/dotnet/ru/System.Runtime.Extensions.xml","ref/dotnet/zh-hans/System.Runtime.Extensions.xml","ref/dotnet/es/System.Runtime.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp","[Content_Types].xml"]},"System.Runtime.Handles/4.0.0":{"sha512":"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==","type":"Package","files":["_rels/.rels","System.Runtime.Handles.nuspec","lib/DNXCore50/System.Runtime.Handles.dll","lib/netcore50/System.Runtime.Handles.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Handles.dll","ref/dotnet/System.Runtime.Handles.xml","ref/dotnet/zh-hant/System.Runtime.Handles.xml","ref/dotnet/de/System.Runtime.Handles.xml","ref/dotnet/fr/System.Runtime.Handles.xml","ref/dotnet/it/System.Runtime.Handles.xml","ref/dotnet/ja/System.Runtime.Handles.xml","ref/dotnet/ko/System.Runtime.Handles.xml","ref/dotnet/ru/System.Runtime.Handles.xml","ref/dotnet/zh-hans/System.Runtime.Handles.xml","ref/dotnet/es/System.Runtime.Handles.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp","[Content_Types].xml"]},"System.Runtime.InteropServices/4.0.20":{"sha512":"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==","type":"Package","files":["_rels/.rels","System.Runtime.InteropServices.nuspec","lib/DNXCore50/System.Runtime.InteropServices.dll","lib/netcore50/System.Runtime.InteropServices.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.InteropServices.dll","ref/dotnet/System.Runtime.InteropServices.xml","ref/dotnet/zh-hant/System.Runtime.InteropServices.xml","ref/dotnet/de/System.Runtime.InteropServices.xml","ref/dotnet/fr/System.Runtime.InteropServices.xml","ref/dotnet/it/System.Runtime.InteropServices.xml","ref/dotnet/ja/System.Runtime.InteropServices.xml","ref/dotnet/ko/System.Runtime.InteropServices.xml","ref/dotnet/ru/System.Runtime.InteropServices.xml","ref/dotnet/zh-hans/System.Runtime.InteropServices.xml","ref/dotnet/es/System.Runtime.InteropServices.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp","[Content_Types].xml"]},"System.Runtime.Numerics/4.0.0":{"sha512":"aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==","type":"Package","files":["_rels/.rels","System.Runtime.Numerics.nuspec","lib/dotnet/System.Runtime.Numerics.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Runtime.Numerics.dll","lib/wpa81/_._","ref/dotnet/System.Runtime.Numerics.dll","ref/dotnet/System.Runtime.Numerics.xml","ref/dotnet/zh-hant/System.Runtime.Numerics.xml","ref/dotnet/de/System.Runtime.Numerics.xml","ref/dotnet/fr/System.Runtime.Numerics.xml","ref/dotnet/it/System.Runtime.Numerics.xml","ref/dotnet/ja/System.Runtime.Numerics.xml","ref/dotnet/ko/System.Runtime.Numerics.xml","ref/dotnet/ru/System.Runtime.Numerics.xml","ref/dotnet/zh-hans/System.Runtime.Numerics.xml","ref/dotnet/es/System.Runtime.Numerics.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Runtime.Numerics.dll","ref/netcore50/System.Runtime.Numerics.xml","ref/wpa81/_._","package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp","[Content_Types].xml"]},"System.Security.Claims/4.0.0":{"sha512":"94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==","type":"Package","files":["_rels/.rels","System.Security.Claims.nuspec","lib/dotnet/System.Security.Claims.dll","lib/net46/System.Security.Claims.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Security.Claims.dll","ref/dotnet/System.Security.Claims.xml","ref/dotnet/zh-hant/System.Security.Claims.xml","ref/dotnet/de/System.Security.Claims.xml","ref/dotnet/fr/System.Security.Claims.xml","ref/dotnet/it/System.Security.Claims.xml","ref/dotnet/ja/System.Security.Claims.xml","ref/dotnet/ko/System.Security.Claims.xml","ref/dotnet/ru/System.Security.Claims.xml","ref/dotnet/zh-hans/System.Security.Claims.xml","ref/dotnet/es/System.Security.Claims.xml","ref/net46/System.Security.Claims.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp","[Content_Types].xml"]},"System.Security.Principal/4.0.0":{"sha512":"FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==","type":"Package","files":["_rels/.rels","System.Security.Principal.nuspec","lib/dotnet/System.Security.Principal.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Security.Principal.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Security.Principal.dll","ref/dotnet/System.Security.Principal.xml","ref/dotnet/zh-hant/System.Security.Principal.xml","ref/dotnet/de/System.Security.Principal.xml","ref/dotnet/fr/System.Security.Principal.xml","ref/dotnet/it/System.Security.Principal.xml","ref/dotnet/ja/System.Security.Principal.xml","ref/dotnet/ko/System.Security.Principal.xml","ref/dotnet/ru/System.Security.Principal.xml","ref/dotnet/zh-hans/System.Security.Principal.xml","ref/dotnet/es/System.Security.Principal.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Security.Principal.dll","ref/netcore50/System.Security.Principal.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp","[Content_Types].xml"]},"System.Text.Encoding/4.0.10":{"sha512":"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==","type":"Package","files":["_rels/.rels","System.Text.Encoding.nuspec","lib/netcore50/System.Text.Encoding.dll","lib/DNXCore50/System.Text.Encoding.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.dll","ref/dotnet/System.Text.Encoding.xml","ref/dotnet/zh-hant/System.Text.Encoding.xml","ref/dotnet/de/System.Text.Encoding.xml","ref/dotnet/fr/System.Text.Encoding.xml","ref/dotnet/it/System.Text.Encoding.xml","ref/dotnet/ja/System.Text.Encoding.xml","ref/dotnet/ko/System.Text.Encoding.xml","ref/dotnet/ru/System.Text.Encoding.xml","ref/dotnet/zh-hans/System.Text.Encoding.xml","ref/dotnet/es/System.Text.Encoding.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp","[Content_Types].xml"]},"System.Text.Encoding.Extensions/4.0.10":{"sha512":"TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==","type":"Package","files":["_rels/.rels","System.Text.Encoding.Extensions.nuspec","lib/netcore50/System.Text.Encoding.Extensions.dll","lib/DNXCore50/System.Text.Encoding.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.Extensions.dll","ref/dotnet/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml","ref/dotnet/de/System.Text.Encoding.Extensions.xml","ref/dotnet/fr/System.Text.Encoding.Extensions.xml","ref/dotnet/it/System.Text.Encoding.Extensions.xml","ref/dotnet/ja/System.Text.Encoding.Extensions.xml","ref/dotnet/ko/System.Text.Encoding.Extensions.xml","ref/dotnet/ru/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml","ref/dotnet/es/System.Text.Encoding.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp","[Content_Types].xml"]},"System.Text.RegularExpressions/4.0.10":{"sha512":"0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==","type":"Package","files":["_rels/.rels","System.Text.RegularExpressions.nuspec","lib/dotnet/System.Text.RegularExpressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.RegularExpressions.dll","ref/dotnet/System.Text.RegularExpressions.xml","ref/dotnet/zh-hant/System.Text.RegularExpressions.xml","ref/dotnet/de/System.Text.RegularExpressions.xml","ref/dotnet/fr/System.Text.RegularExpressions.xml","ref/dotnet/it/System.Text.RegularExpressions.xml","ref/dotnet/ja/System.Text.RegularExpressions.xml","ref/dotnet/ko/System.Text.RegularExpressions.xml","ref/dotnet/ru/System.Text.RegularExpressions.xml","ref/dotnet/zh-hans/System.Text.RegularExpressions.xml","ref/dotnet/es/System.Text.RegularExpressions.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp","[Content_Types].xml"]},"System.Threading/4.0.10":{"sha512":"0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==","type":"Package","files":["_rels/.rels","System.Threading.nuspec","lib/DNXCore50/System.Threading.dll","lib/netcore50/System.Threading.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.dll","ref/dotnet/System.Threading.xml","ref/dotnet/zh-hant/System.Threading.xml","ref/dotnet/de/System.Threading.xml","ref/dotnet/fr/System.Threading.xml","ref/dotnet/it/System.Threading.xml","ref/dotnet/ja/System.Threading.xml","ref/dotnet/ko/System.Threading.xml","ref/dotnet/ru/System.Threading.xml","ref/dotnet/zh-hans/System.Threading.xml","ref/dotnet/es/System.Threading.xml","runtimes/win8-aot/lib/netcore50/System.Threading.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp","[Content_Types].xml"]},"System.Threading.Overlapped/4.0.0":{"sha512":"X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==","type":"Package","files":["_rels/.rels","System.Threading.Overlapped.nuspec","lib/netcore50/System.Threading.Overlapped.dll","lib/DNXCore50/System.Threading.Overlapped.dll","lib/net46/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.xml","ref/dotnet/zh-hant/System.Threading.Overlapped.xml","ref/dotnet/de/System.Threading.Overlapped.xml","ref/dotnet/fr/System.Threading.Overlapped.xml","ref/dotnet/it/System.Threading.Overlapped.xml","ref/dotnet/ja/System.Threading.Overlapped.xml","ref/dotnet/ko/System.Threading.Overlapped.xml","ref/dotnet/ru/System.Threading.Overlapped.xml","ref/dotnet/zh-hans/System.Threading.Overlapped.xml","ref/dotnet/es/System.Threading.Overlapped.xml","ref/net46/System.Threading.Overlapped.dll","package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks/4.0.10":{"sha512":"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.nuspec","lib/netcore50/System.Threading.Tasks.dll","lib/DNXCore50/System.Threading.Tasks.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.Tasks.dll","ref/dotnet/System.Threading.Tasks.xml","ref/dotnet/zh-hant/System.Threading.Tasks.xml","ref/dotnet/de/System.Threading.Tasks.xml","ref/dotnet/fr/System.Threading.Tasks.xml","ref/dotnet/it/System.Threading.Tasks.xml","ref/dotnet/ja/System.Threading.Tasks.xml","ref/dotnet/ko/System.Threading.Tasks.xml","ref/dotnet/ru/System.Threading.Tasks.xml","ref/dotnet/zh-hans/System.Threading.Tasks.xml","ref/dotnet/es/System.Threading.Tasks.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Dataflow/4.5.25":{"sha512":"Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Dataflow.nuspec","lib/dotnet/System.Threading.Tasks.Dataflow.dll","lib/dotnet/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll","package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Parallel/4.0.0":{"sha512":"GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Parallel.nuspec","lib/dotnet/System.Threading.Tasks.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Threading.Tasks.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Threading.Tasks.Parallel.dll","ref/dotnet/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml","ref/dotnet/de/System.Threading.Tasks.Parallel.xml","ref/dotnet/fr/System.Threading.Tasks.Parallel.xml","ref/dotnet/it/System.Threading.Tasks.Parallel.xml","ref/dotnet/ja/System.Threading.Tasks.Parallel.xml","ref/dotnet/ko/System.Threading.Tasks.Parallel.xml","ref/dotnet/ru/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml","ref/dotnet/es/System.Threading.Tasks.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Threading.Tasks.Parallel.dll","ref/netcore50/System.Threading.Tasks.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp","[Content_Types].xml"]},"System.Threading.Timer/4.0.0":{"sha512":"BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==","type":"Package","files":["_rels/.rels","System.Threading.Timer.nuspec","lib/netcore50/System.Threading.Timer.dll","lib/DNXCore50/System.Threading.Timer.dll","lib/net451/_._","lib/win81/_._","lib/wpa81/_._","ref/dotnet/System.Threading.Timer.dll","ref/dotnet/System.Threading.Timer.xml","ref/dotnet/zh-hant/System.Threading.Timer.xml","ref/dotnet/de/System.Threading.Timer.xml","ref/dotnet/fr/System.Threading.Timer.xml","ref/dotnet/it/System.Threading.Timer.xml","ref/dotnet/ja/System.Threading.Timer.xml","ref/dotnet/ko/System.Threading.Timer.xml","ref/dotnet/ru/System.Threading.Timer.xml","ref/dotnet/zh-hans/System.Threading.Timer.xml","ref/dotnet/es/System.Threading.Timer.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll","ref/net451/_._","ref/win81/_._","ref/netcore50/System.Threading.Timer.dll","ref/netcore50/System.Threading.Timer.xml","ref/wpa81/_._","package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp","[Content_Types].xml"]},"System.Xml.ReaderWriter/4.0.10":{"sha512":"VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==","type":"Package","files":["_rels/.rels","System.Xml.ReaderWriter.nuspec","lib/dotnet/System.Xml.ReaderWriter.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.ReaderWriter.dll","ref/dotnet/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml","ref/dotnet/de/System.Xml.ReaderWriter.xml","ref/dotnet/fr/System.Xml.ReaderWriter.xml","ref/dotnet/it/System.Xml.ReaderWriter.xml","ref/dotnet/ja/System.Xml.ReaderWriter.xml","ref/dotnet/ko/System.Xml.ReaderWriter.xml","ref/dotnet/ru/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml","ref/dotnet/es/System.Xml.ReaderWriter.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp","[Content_Types].xml"]},"System.Xml.XDocument/4.0.10":{"sha512":"+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==","type":"Package","files":["_rels/.rels","System.Xml.XDocument.nuspec","lib/dotnet/System.Xml.XDocument.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.XDocument.dll","ref/dotnet/System.Xml.XDocument.xml","ref/dotnet/zh-hant/System.Xml.XDocument.xml","ref/dotnet/de/System.Xml.XDocument.xml","ref/dotnet/fr/System.Xml.XDocument.xml","ref/dotnet/it/System.Xml.XDocument.xml","ref/dotnet/ja/System.Xml.XDocument.xml","ref/dotnet/ko/System.Xml.XDocument.xml","ref/dotnet/ru/System.Xml.XDocument.xml","ref/dotnet/zh-hans/System.Xml.XDocument.xml","ref/dotnet/es/System.Xml.XDocument.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp","[Content_Types].xml"]}},"projectFileDependencyGroups":{"":["Microsoft.NETCore >= 5.0.0","System.Console >= 4.0.0-beta-23412","Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123","Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0"],"DNXCore,Version=v5.0":[]}} + {"locked":false,"version":1,"targets":{"DNXCore,Version=v5.0":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.NetworkInformation/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.NetworkInformation.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x64":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"native":{"runtimes/win7-x64/native/CoreConsole.exe":{}}},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}},"native":{"runtimes/win7-x64/native/clretwrc.dll":{},"runtimes/win7-x64/native/coreclr.dll":{},"runtimes/win7-x64/native/dbgshim.dll":{},"runtimes/win7-x64/native/mscordaccore.dll":{},"runtimes/win7-x64/native/mscordbi.dll":{},"runtimes/win7-x64/native/mscorrc.debug.dll":{},"runtimes/win7-x64/native/mscorrc.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.clrcompression-x64/4.0.0":{"native":{"runtimes/win7-x64/native/clrcompression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}},"DNXCore,Version=v5.0/win7-x86":{"Microsoft.CSharp/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.0, )","System.Linq.Expressions":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.CSharp.dll":{}},"runtime":{"lib/dotnet/Microsoft.CSharp.dll":{}}},"Microsoft.NETCore/5.0.0":{"dependencies":{"Microsoft.CSharp":"[4.0.0, )","Microsoft.VisualBasic":"[10.0.0, )","System.AppContext":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Collections.Concurrent":"[4.0.10, )","System.Collections.Immutable":"[1.1.37, )","System.ComponentModel":"[4.0.0, )","System.ComponentModel.Annotations":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Diagnostics.Tools":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Dynamic.Runtime":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Globalization.Calendars":"[4.0.0, )","System.Globalization.Extensions":"[4.0.0, )","System.IO":"[4.0.10, )","System.IO.Compression":"[4.0.0, )","System.IO.Compression.ZipFile":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.UnmanagedMemoryStream":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )","System.Linq.Parallel":"[4.0.0, )","System.Linq.Queryable":"[4.0.0, )","System.Net.NetworkInformation":"[4.0.0, )","System.Net.Http":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Numerics.Vectors":"[4.1.0, )","System.ObjectModel":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Reflection.DispatchProxy":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection.Metadata":"[1.0.22, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Runtime.Handles":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.20, )","System.Runtime.Numerics":"[4.0.0, )","System.Security.Claims":"[4.0.0, )","System.Security.Principal":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Threading.Tasks.Dataflow":"[4.5.25, )","System.Threading.Tasks.Parallel":"[4.0.0, )","System.Threading.Timer":"[4.0.0, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Xml.XDocument":"[4.0.10, )","Microsoft.NETCore.Targets":"[1.0.0, )"}},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{},"Microsoft.NETCore.Platforms/1.0.0":{},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"dependencies":{"System.Collections":"[4.0.10, 4.0.10]","System.Diagnostics.Debug":"[4.0.10, 4.0.10]","System.Globalization":"[4.0.10, 4.0.10]","System.IO":"[4.0.10, 4.0.10]","System.ObjectModel":"[4.0.10, 4.0.10]","System.Reflection":"[4.0.10, 4.0.10]","System.Runtime.Extensions":"[4.0.10, 4.0.10]","System.Text.Encoding":"[4.0.10, 4.0.10]","System.Text.Encoding.Extensions":"[4.0.10, 4.0.10]","System.Threading":"[4.0.10, 4.0.10]","System.Threading.Tasks":"[4.0.10, 4.0.10]","System.Diagnostics.Contracts":"[4.0.0, 4.0.0]","System.Diagnostics.StackTrace":"[4.0.0, 4.0.0]","System.Diagnostics.Tools":"[4.0.0, 4.0.0]","System.Globalization.Calendars":"[4.0.0, 4.0.0]","System.Reflection.Extensions":"[4.0.0, 4.0.0]","System.Reflection.Primitives":"[4.0.0, 4.0.0]","System.Resources.ResourceManager":"[4.0.0, 4.0.0]","System.Runtime.Handles":"[4.0.0, 4.0.0]","System.Threading.Timer":"[4.0.0, 4.0.0]","System.Private.Uri":"[4.0.0, 4.0.0]","System.Diagnostics.Tracing":"[4.0.20, 4.0.20]","System.Runtime":"[4.0.20, 4.0.20]","System.Runtime.InteropServices":"[4.0.20, 4.0.20]"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll":{}}},"Microsoft.NETCore.Targets/1.0.0":{"dependencies":{"Microsoft.NETCore.Targets.DNXCore":"[4.9.0, )","Microsoft.NETCore.Platforms":"[1.0.0, )"}},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{},"Microsoft.VisualBasic/10.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Dynamic.Runtime":"[4.0.10, )","System.Linq.Expressions":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )","System.ObjectModel":"[4.0.10, )"},"compile":{"ref/dotnet/Microsoft.VisualBasic.dll":{}},"runtime":{"lib/dotnet/Microsoft.VisualBasic.dll":{}}},"Microsoft.Win32.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )"},"compile":{"ref/dotnet/Microsoft.Win32.Primitives.dll":{}},"runtime":{"lib/dotnet/Microsoft.Win32.Primitives.dll":{}}},"runtime.win7.System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/_._":{}},"runtime":{"runtimes/win7/lib/dotnet/System.Console.dll":{}}},"System.AppContext/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.AppContext.dll":{}},"runtime":{"lib/DNXCore50/System.AppContext.dll":{}}},"System.Collections/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Collections.dll":{}},"runtime":{"lib/DNXCore50/System.Collections.dll":{}}},"System.Collections.Concurrent/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.Concurrent.dll":{}},"runtime":{"lib/dotnet/System.Collections.Concurrent.dll":{}}},"System.Collections.Immutable/1.1.37":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"lib/dotnet/System.Collections.Immutable.dll":{}},"runtime":{"lib/dotnet/System.Collections.Immutable.dll":{}}},"System.Collections.NonGeneric/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Globalization":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Collections.NonGeneric.dll":{}},"runtime":{"lib/dotnet/System.Collections.NonGeneric.dll":{}}},"System.ComponentModel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.ComponentModel.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.dll":{}}},"System.ComponentModel.Annotations/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.ComponentModel":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.Annotations.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.Annotations.dll":{}}},"System.ComponentModel.EventBasedAsync/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Threading":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.10, )"},"compile":{"ref/dotnet/System.ComponentModel.EventBasedAsync.dll":{}},"runtime":{"lib/dotnet/System.ComponentModel.EventBasedAsync.dll":{}}},"System.Console/4.0.0-beta-23412":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )"},"compile":{"ref/dotnet/System.Console.dll":{}}},"System.Diagnostics.Contracts/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Contracts.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Contracts.dll":{}}},"System.Diagnostics.Debug/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Debug.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Debug.dll":{}}},"System.Diagnostics.StackTrace/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.StackTrace.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.StackTrace.dll":{}}},"System.Diagnostics.Tools/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tools.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tools.dll":{}}},"System.Diagnostics.Tracing/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Diagnostics.Tracing.dll":{}},"runtime":{"lib/DNXCore50/System.Diagnostics.Tracing.dll":{}}},"System.Dynamic.Runtime/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Linq.Expressions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Dynamic.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Dynamic.Runtime.dll":{}}},"System.Globalization/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.dll":{}}},"System.Globalization.Calendars/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Calendars.dll":{}},"runtime":{"lib/DNXCore50/System.Globalization.Calendars.dll":{}}},"System.Globalization.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )"},"compile":{"ref/dotnet/System.Globalization.Extensions.dll":{}},"runtime":{"lib/dotnet/System.Globalization.Extensions.dll":{}}},"System.IO/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.dll":{}},"runtime":{"lib/DNXCore50/System.IO.dll":{}}},"System.IO.Compression/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.IO":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )"},"compile":{"ref/dotnet/System.IO.Compression.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.dll":{}}},"System.IO.Compression.clrcompression-x86/4.0.0":{"native":{"runtimes/win7-x86/native/clrcompression.dll":{}}},"System.IO.Compression.ZipFile/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO.Compression":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.Compression.ZipFile.dll":{}},"runtime":{"lib/dotnet/System.IO.Compression.ZipFile.dll":{}}},"System.IO.FileSystem/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.FileSystem.dll":{}},"runtime":{"lib/DNXCore50/System.IO.FileSystem.dll":{}}},"System.IO.FileSystem.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.IO.FileSystem.Primitives.dll":{}},"runtime":{"lib/dotnet/System.IO.FileSystem.Primitives.dll":{}}},"System.IO.UnmanagedMemoryStream/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.IO.UnmanagedMemoryStream.dll":{}},"runtime":{"lib/dotnet/System.IO.UnmanagedMemoryStream.dll":{}}},"System.Linq/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.dll":{}},"runtime":{"lib/dotnet/System.Linq.dll":{}}},"System.Linq.Expressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.TypeExtensions":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Reflection.Emit":"[4.0.0, )","System.ObjectModel":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Linq.Expressions.dll":{}},"runtime":{"lib/DNXCore50/System.Linq.Expressions.dll":{}}},"System.Linq.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Threading":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Linq.Parallel.dll":{}}},"System.Linq.Queryable/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Linq.Expressions":"[4.0.10, )","System.Linq":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )"},"compile":{"ref/dotnet/System.Linq.Queryable.dll":{}},"runtime":{"lib/dotnet/System.Linq.Queryable.dll":{}}},"System.Net.Http/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.Compression":"[4.0.0, )","System.Net.Primitives":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Net.Http.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Http.dll":{}}},"System.Net.Primitives/4.0.10":{"dependencies":{"System.Private.Networking":"[4.0.0, )"},"compile":{"ref/dotnet/System.Net.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Net.Primitives.dll":{}}},"System.Numerics.Vectors/4.1.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Numerics.Vectors.dll":{}},"runtime":{"lib/dotnet/System.Numerics.Vectors.dll":{}}},"System.ObjectModel/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.ObjectModel.dll":{}},"runtime":{"lib/dotnet/System.ObjectModel.dll":{}}},"System.Private.Networking/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Runtime.InteropServices":"[4.0.20, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections.NonGeneric":"[4.0.0, )","Microsoft.Win32.Primitives":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.Threading.Overlapped":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.IO":"[4.0.10, )","System.Diagnostics.Debug":"[4.0.10, )","System.ComponentModel.EventBasedAsync":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )"},"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Networking.dll":{}}},"System.Private.Uri/4.0.0":{"compile":{"ref/dnxcore50/_._":{}},"runtime":{"lib/DNXCore50/System.Private.Uri.dll":{}}},"System.Reflection/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.dll":{}}},"System.Reflection.DispatchProxy/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Reflection":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Reflection.DispatchProxy.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.DispatchProxy.dll":{}}},"System.Reflection.Emit/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )","System.IO":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.dll":{}}},"System.Reflection.Emit.ILGeneration/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.ILGeneration.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll":{}}},"System.Reflection.Emit.Lightweight/4.0.0":{"dependencies":{"System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime":"[4.0.0, )","System.Reflection.Emit.ILGeneration":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Emit.Lightweight.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll":{}}},"System.Reflection.Extensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Extensions.dll":{}}},"System.Reflection.Metadata/1.0.22":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.IO":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Text.Encoding":"[4.0.0, )","System.Runtime.InteropServices":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Text.Encoding.Extensions":"[4.0.0, )","System.Reflection.Extensions":"[4.0.0, )","System.Collections.Immutable":"[1.1.37, )"},"compile":{"lib/dotnet/System.Reflection.Metadata.dll":{}},"runtime":{"lib/dotnet/System.Reflection.Metadata.dll":{}}},"System.Reflection.Primitives/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.Primitives.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.Primitives.dll":{}}},"System.Reflection.TypeExtensions/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )"},"compile":{"ref/dotnet/System.Reflection.TypeExtensions.dll":{}},"runtime":{"lib/DNXCore50/System.Reflection.TypeExtensions.dll":{}}},"System.Resources.ResourceManager/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Globalization":"[4.0.0, )"},"compile":{"ref/dotnet/System.Resources.ResourceManager.dll":{}},"runtime":{"lib/DNXCore50/System.Resources.ResourceManager.dll":{}}},"System.Runtime/4.0.20":{"dependencies":{"System.Private.Uri":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.dll":{}}},"System.Runtime.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )"},"compile":{"ref/dotnet/System.Runtime.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Extensions.dll":{}}},"System.Runtime.Handles/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.Handles.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.Handles.dll":{}}},"System.Runtime.InteropServices/4.0.20":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Reflection":"[4.0.0, )","System.Reflection.Primitives":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Runtime.InteropServices.dll":{}},"runtime":{"lib/DNXCore50/System.Runtime.InteropServices.dll":{}}},"System.Runtime.Numerics/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Runtime.Numerics.dll":{}},"runtime":{"lib/dotnet/System.Runtime.Numerics.dll":{}}},"System.Security.Claims/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Security.Principal":"[4.0.0, )","System.IO":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Globalization":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Claims.dll":{}},"runtime":{"lib/dotnet/System.Security.Claims.dll":{}}},"System.Security.Principal/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Security.Principal.dll":{}},"runtime":{"lib/dotnet/System.Security.Principal.dll":{}}},"System.Text.Encoding/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Text.Encoding.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.dll":{}}},"System.Text.Encoding.Extensions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Text.Encoding":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.Encoding.Extensions.dll":{}},"runtime":{"lib/DNXCore50/System.Text.Encoding.Extensions.dll":{}}},"System.Text.RegularExpressions/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Threading":"[4.0.10, )"},"compile":{"ref/dotnet/System.Text.RegularExpressions.dll":{}},"runtime":{"lib/dotnet/System.Text.RegularExpressions.dll":{}}},"System.Threading/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.dll":{}}},"System.Threading.Overlapped/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Runtime.Handles":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Overlapped.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Overlapped.dll":{}}},"System.Threading.Tasks/4.0.10":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Tasks.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Tasks.dll":{}}},"System.Threading.Tasks.Dataflow/4.5.25":{"dependencies":{"System.Runtime":"[4.0.0, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.0, )","System.Collections.Concurrent":"[4.0.0, )","System.Collections":"[4.0.0, )","System.Threading.Tasks":"[4.0.0, )","System.Dynamic.Runtime":"[4.0.0, )","System.Diagnostics.Tracing":"[4.0.0, )","System.Threading":"[4.0.0, )","System.Linq":"[4.0.0, )","System.Runtime.Extensions":"[4.0.0, )"},"compile":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Dataflow.dll":{}}},"System.Threading.Tasks.Parallel/4.0.0":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Collections.Concurrent":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Diagnostics.Tracing":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Threading.Tasks.Parallel.dll":{}},"runtime":{"lib/dotnet/System.Threading.Tasks.Parallel.dll":{}}},"System.Threading.Timer/4.0.0":{"dependencies":{"System.Runtime":"[4.0.0, )"},"compile":{"ref/dotnet/System.Threading.Timer.dll":{}},"runtime":{"lib/DNXCore50/System.Threading.Timer.dll":{}}},"System.Xml.ReaderWriter/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.Text.Encoding":"[4.0.10, )","System.IO":"[4.0.10, )","System.Threading.Tasks":"[4.0.10, )","System.Runtime.InteropServices":"[4.0.20, )","System.Resources.ResourceManager":"[4.0.0, )","System.IO.FileSystem":"[4.0.0, )","System.IO.FileSystem.Primitives":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Text.RegularExpressions":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Text.Encoding.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.ReaderWriter.dll":{}},"runtime":{"lib/dotnet/System.Xml.ReaderWriter.dll":{}}},"System.Xml.XDocument/4.0.10":{"dependencies":{"System.Runtime":"[4.0.20, )","System.IO":"[4.0.10, )","System.Xml.ReaderWriter":"[4.0.10, )","System.Resources.ResourceManager":"[4.0.0, )","System.Diagnostics.Debug":"[4.0.10, )","System.Collections":"[4.0.10, )","System.Globalization":"[4.0.10, )","System.Threading":"[4.0.10, )","System.Text.Encoding":"[4.0.10, )","System.Reflection":"[4.0.10, )","System.Runtime.Extensions":"[4.0.10, )"},"compile":{"ref/dotnet/System.Xml.XDocument.dll":{}},"runtime":{"lib/dotnet/System.Xml.XDocument.dll":{}}}}},"libraries":{"Microsoft.CSharp/4.0.0":{"sha512":"oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==","type":"Package","files":["_rels/.rels","Microsoft.CSharp.nuspec","lib/dotnet/Microsoft.CSharp.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.CSharp.dll","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.CSharp.dll","ref/dotnet/Microsoft.CSharp.xml","ref/dotnet/zh-hant/Microsoft.CSharp.xml","ref/dotnet/de/Microsoft.CSharp.xml","ref/dotnet/fr/Microsoft.CSharp.xml","ref/dotnet/it/Microsoft.CSharp.xml","ref/dotnet/ja/Microsoft.CSharp.xml","ref/dotnet/ko/Microsoft.CSharp.xml","ref/dotnet/ru/Microsoft.CSharp.xml","ref/dotnet/zh-hans/Microsoft.CSharp.xml","ref/dotnet/es/Microsoft.CSharp.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.CSharp.dll","ref/netcore50/Microsoft.CSharp.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore/5.0.0":{"sha512":"QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.nuspec","_._","package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123":{"sha512":"Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.ConsoleHost-x64.nuspec","runtimes/win7-x64/native/CoreConsole.exe","package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Platforms/1.0.0":{"sha512":"0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Platforms.nuspec","runtime.json","package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0":{"sha512":"DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec","runtimes/win7-x64/native/clretwrc.dll","runtimes/win7-x64/native/coreclr.dll","runtimes/win7-x64/native/dbgshim.dll","runtimes/win7-x64/native/mscordaccore.dll","runtimes/win7-x64/native/mscordbi.dll","runtimes/win7-x64/native/mscorrc.debug.dll","runtimes/win7-x64/native/mscorrc.dll","runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll","ref/dotnet/_._","package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets/1.0.0":{"sha512":"XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.nuspec","runtime.json","package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp","[Content_Types].xml"]},"Microsoft.NETCore.Targets.DNXCore/4.9.0":{"sha512":"32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==","type":"Package","files":["_rels/.rels","Microsoft.NETCore.Targets.DNXCore.nuspec","runtime.json","package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp","[Content_Types].xml"]},"Microsoft.VisualBasic/10.0.0":{"sha512":"5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==","type":"Package","files":["_rels/.rels","Microsoft.VisualBasic.nuspec","lib/dotnet/Microsoft.VisualBasic.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/Microsoft.VisualBasic.dll","lib/wpa81/_._","ref/dotnet/Microsoft.VisualBasic.dll","ref/dotnet/Microsoft.VisualBasic.xml","ref/dotnet/zh-hant/Microsoft.VisualBasic.xml","ref/dotnet/de/Microsoft.VisualBasic.xml","ref/dotnet/fr/Microsoft.VisualBasic.xml","ref/dotnet/it/Microsoft.VisualBasic.xml","ref/dotnet/ja/Microsoft.VisualBasic.xml","ref/dotnet/ko/Microsoft.VisualBasic.xml","ref/dotnet/ru/Microsoft.VisualBasic.xml","ref/dotnet/zh-hans/Microsoft.VisualBasic.xml","ref/dotnet/es/Microsoft.VisualBasic.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/Microsoft.VisualBasic.dll","ref/netcore50/Microsoft.VisualBasic.xml","ref/wpa81/_._","package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp","[Content_Types].xml"]},"Microsoft.Win32.Primitives/4.0.0":{"sha512":"CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==","type":"Package","files":["_rels/.rels","Microsoft.Win32.Primitives.nuspec","lib/dotnet/Microsoft.Win32.Primitives.dll","lib/net46/Microsoft.Win32.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/Microsoft.Win32.Primitives.dll","ref/dotnet/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml","ref/dotnet/de/Microsoft.Win32.Primitives.xml","ref/dotnet/fr/Microsoft.Win32.Primitives.xml","ref/dotnet/it/Microsoft.Win32.Primitives.xml","ref/dotnet/ja/Microsoft.Win32.Primitives.xml","ref/dotnet/ko/Microsoft.Win32.Primitives.xml","ref/dotnet/ru/Microsoft.Win32.Primitives.xml","ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml","ref/dotnet/es/Microsoft.Win32.Primitives.xml","ref/net46/Microsoft.Win32.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp","[Content_Types].xml"]},"runtime.win7.System.Console/4.0.0-beta-23412":{"sha512":"j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==","type":"Package","files":["_rels/.rels","runtime.win7.System.Console.nuspec","runtimes/win7/lib/dotnet/System.Console.dll","ref/dotnet/_._","package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp","[Content_Types].xml"]},"System.AppContext/4.0.0":{"sha512":"gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==","type":"Package","files":["_rels/.rels","System.AppContext.nuspec","lib/netcore50/System.AppContext.dll","lib/DNXCore50/System.AppContext.dll","lib/net46/System.AppContext.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.AppContext.dll","ref/dotnet/System.AppContext.xml","ref/dotnet/zh-hant/System.AppContext.xml","ref/dotnet/de/System.AppContext.xml","ref/dotnet/fr/System.AppContext.xml","ref/dotnet/it/System.AppContext.xml","ref/dotnet/ja/System.AppContext.xml","ref/dotnet/ko/System.AppContext.xml","ref/dotnet/ru/System.AppContext.xml","ref/dotnet/zh-hans/System.AppContext.xml","ref/dotnet/es/System.AppContext.xml","ref/net46/System.AppContext.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp","[Content_Types].xml"]},"System.Collections/4.0.10":{"sha512":"ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==","type":"Package","files":["_rels/.rels","System.Collections.nuspec","lib/netcore50/System.Collections.dll","lib/DNXCore50/System.Collections.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.dll","ref/dotnet/System.Collections.xml","ref/dotnet/zh-hant/System.Collections.xml","ref/dotnet/de/System.Collections.xml","ref/dotnet/fr/System.Collections.xml","ref/dotnet/it/System.Collections.xml","ref/dotnet/ja/System.Collections.xml","ref/dotnet/ko/System.Collections.xml","ref/dotnet/ru/System.Collections.xml","ref/dotnet/zh-hans/System.Collections.xml","ref/dotnet/es/System.Collections.xml","runtimes/win8-aot/lib/netcore50/System.Collections.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp","[Content_Types].xml"]},"System.Collections.Concurrent/4.0.10":{"sha512":"ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==","type":"Package","files":["_rels/.rels","System.Collections.Concurrent.nuspec","lib/dotnet/System.Collections.Concurrent.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.Concurrent.dll","ref/dotnet/System.Collections.Concurrent.xml","ref/dotnet/zh-hant/System.Collections.Concurrent.xml","ref/dotnet/de/System.Collections.Concurrent.xml","ref/dotnet/fr/System.Collections.Concurrent.xml","ref/dotnet/it/System.Collections.Concurrent.xml","ref/dotnet/ja/System.Collections.Concurrent.xml","ref/dotnet/ko/System.Collections.Concurrent.xml","ref/dotnet/ru/System.Collections.Concurrent.xml","ref/dotnet/zh-hans/System.Collections.Concurrent.xml","ref/dotnet/es/System.Collections.Concurrent.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp","[Content_Types].xml"]},"System.Collections.Immutable/1.1.37":{"sha512":"fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==","type":"Package","files":["_rels/.rels","System.Collections.Immutable.nuspec","lib/dotnet/System.Collections.Immutable.dll","lib/dotnet/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml","lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll","package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp","[Content_Types].xml"]},"System.Collections.NonGeneric/4.0.0":{"sha512":"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==","type":"Package","files":["_rels/.rels","System.Collections.NonGeneric.nuspec","lib/dotnet/System.Collections.NonGeneric.dll","lib/net46/System.Collections.NonGeneric.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Collections.NonGeneric.dll","ref/dotnet/System.Collections.NonGeneric.xml","ref/dotnet/zh-hant/System.Collections.NonGeneric.xml","ref/dotnet/de/System.Collections.NonGeneric.xml","ref/dotnet/fr/System.Collections.NonGeneric.xml","ref/dotnet/it/System.Collections.NonGeneric.xml","ref/dotnet/ja/System.Collections.NonGeneric.xml","ref/dotnet/ko/System.Collections.NonGeneric.xml","ref/dotnet/ru/System.Collections.NonGeneric.xml","ref/dotnet/zh-hans/System.Collections.NonGeneric.xml","ref/dotnet/es/System.Collections.NonGeneric.xml","ref/net46/System.Collections.NonGeneric.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp","[Content_Types].xml"]},"System.ComponentModel/4.0.0":{"sha512":"BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==","type":"Package","files":["_rels/.rels","System.ComponentModel.nuspec","lib/dotnet/System.ComponentModel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.ComponentModel.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.ComponentModel.dll","ref/dotnet/System.ComponentModel.xml","ref/dotnet/zh-hant/System.ComponentModel.xml","ref/dotnet/de/System.ComponentModel.xml","ref/dotnet/fr/System.ComponentModel.xml","ref/dotnet/it/System.ComponentModel.xml","ref/dotnet/ja/System.ComponentModel.xml","ref/dotnet/ko/System.ComponentModel.xml","ref/dotnet/ru/System.ComponentModel.xml","ref/dotnet/zh-hans/System.ComponentModel.xml","ref/dotnet/es/System.ComponentModel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.ComponentModel.dll","ref/netcore50/System.ComponentModel.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp","[Content_Types].xml"]},"System.ComponentModel.Annotations/4.0.10":{"sha512":"7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==","type":"Package","files":["_rels/.rels","System.ComponentModel.Annotations.nuspec","lib/dotnet/System.ComponentModel.Annotations.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.Annotations.dll","ref/dotnet/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml","ref/dotnet/de/System.ComponentModel.Annotations.xml","ref/dotnet/fr/System.ComponentModel.Annotations.xml","ref/dotnet/it/System.ComponentModel.Annotations.xml","ref/dotnet/ja/System.ComponentModel.Annotations.xml","ref/dotnet/ko/System.ComponentModel.Annotations.xml","ref/dotnet/ru/System.ComponentModel.Annotations.xml","ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml","ref/dotnet/es/System.ComponentModel.Annotations.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp","[Content_Types].xml"]},"System.ComponentModel.EventBasedAsync/4.0.10":{"sha512":"d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==","type":"Package","files":["_rels/.rels","System.ComponentModel.EventBasedAsync.nuspec","lib/dotnet/System.ComponentModel.EventBasedAsync.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ComponentModel.EventBasedAsync.dll","ref/dotnet/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml","ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp","[Content_Types].xml"]},"System.Console/4.0.0-beta-23412":{"sha512":"D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==","type":"Package","files":["_rels/.rels","System.Console.nuspec","lib/net46/System.Console.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Console.dll","ref/dotnet/System.Console.xml","ref/dotnet/zh-hant/System.Console.xml","ref/dotnet/de/System.Console.xml","ref/dotnet/fr/System.Console.xml","ref/dotnet/it/System.Console.xml","ref/dotnet/ja/System.Console.xml","ref/dotnet/ko/System.Console.xml","ref/dotnet/ru/System.Console.xml","ref/dotnet/zh-hans/System.Console.xml","ref/dotnet/es/System.Console.xml","ref/net46/System.Console.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Contracts/4.0.0":{"sha512":"lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==","type":"Package","files":["_rels/.rels","System.Diagnostics.Contracts.nuspec","lib/netcore50/System.Diagnostics.Contracts.dll","lib/DNXCore50/System.Diagnostics.Contracts.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Contracts.dll","ref/dotnet/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml","ref/dotnet/de/System.Diagnostics.Contracts.xml","ref/dotnet/fr/System.Diagnostics.Contracts.xml","ref/dotnet/it/System.Diagnostics.Contracts.xml","ref/dotnet/ja/System.Diagnostics.Contracts.xml","ref/dotnet/ko/System.Diagnostics.Contracts.xml","ref/dotnet/ru/System.Diagnostics.Contracts.xml","ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml","ref/dotnet/es/System.Diagnostics.Contracts.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Contracts.dll","ref/netcore50/System.Diagnostics.Contracts.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Debug/4.0.10":{"sha512":"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==","type":"Package","files":["_rels/.rels","System.Diagnostics.Debug.nuspec","lib/DNXCore50/System.Diagnostics.Debug.dll","lib/netcore50/System.Diagnostics.Debug.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Debug.dll","ref/dotnet/System.Diagnostics.Debug.xml","ref/dotnet/zh-hant/System.Diagnostics.Debug.xml","ref/dotnet/de/System.Diagnostics.Debug.xml","ref/dotnet/fr/System.Diagnostics.Debug.xml","ref/dotnet/it/System.Diagnostics.Debug.xml","ref/dotnet/ja/System.Diagnostics.Debug.xml","ref/dotnet/ko/System.Diagnostics.Debug.xml","ref/dotnet/ru/System.Diagnostics.Debug.xml","ref/dotnet/zh-hans/System.Diagnostics.Debug.xml","ref/dotnet/es/System.Diagnostics.Debug.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp","[Content_Types].xml"]},"System.Diagnostics.StackTrace/4.0.0":{"sha512":"PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==","type":"Package","files":["_rels/.rels","System.Diagnostics.StackTrace.nuspec","lib/DNXCore50/System.Diagnostics.StackTrace.dll","lib/netcore50/System.Diagnostics.StackTrace.dll","lib/net46/System.Diagnostics.StackTrace.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.StackTrace.dll","ref/dotnet/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml","ref/dotnet/de/System.Diagnostics.StackTrace.xml","ref/dotnet/fr/System.Diagnostics.StackTrace.xml","ref/dotnet/it/System.Diagnostics.StackTrace.xml","ref/dotnet/ja/System.Diagnostics.StackTrace.xml","ref/dotnet/ko/System.Diagnostics.StackTrace.xml","ref/dotnet/ru/System.Diagnostics.StackTrace.xml","ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml","ref/dotnet/es/System.Diagnostics.StackTrace.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll","ref/net46/System.Diagnostics.StackTrace.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tools/4.0.0":{"sha512":"uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tools.nuspec","lib/DNXCore50/System.Diagnostics.Tools.dll","lib/netcore50/System.Diagnostics.Tools.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Diagnostics.Tools.dll","ref/dotnet/System.Diagnostics.Tools.xml","ref/dotnet/zh-hant/System.Diagnostics.Tools.xml","ref/dotnet/de/System.Diagnostics.Tools.xml","ref/dotnet/fr/System.Diagnostics.Tools.xml","ref/dotnet/it/System.Diagnostics.Tools.xml","ref/dotnet/ja/System.Diagnostics.Tools.xml","ref/dotnet/ko/System.Diagnostics.Tools.xml","ref/dotnet/ru/System.Diagnostics.Tools.xml","ref/dotnet/zh-hans/System.Diagnostics.Tools.xml","ref/dotnet/es/System.Diagnostics.Tools.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Diagnostics.Tools.dll","ref/netcore50/System.Diagnostics.Tools.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp","[Content_Types].xml"]},"System.Diagnostics.Tracing/4.0.20":{"sha512":"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==","type":"Package","files":["_rels/.rels","System.Diagnostics.Tracing.nuspec","lib/netcore50/System.Diagnostics.Tracing.dll","lib/DNXCore50/System.Diagnostics.Tracing.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Diagnostics.Tracing.dll","ref/dotnet/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml","ref/dotnet/de/System.Diagnostics.Tracing.xml","ref/dotnet/fr/System.Diagnostics.Tracing.xml","ref/dotnet/it/System.Diagnostics.Tracing.xml","ref/dotnet/ja/System.Diagnostics.Tracing.xml","ref/dotnet/ko/System.Diagnostics.Tracing.xml","ref/dotnet/ru/System.Diagnostics.Tracing.xml","ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml","ref/dotnet/es/System.Diagnostics.Tracing.xml","runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp","[Content_Types].xml"]},"System.Dynamic.Runtime/4.0.10":{"sha512":"r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==","type":"Package","files":["_rels/.rels","System.Dynamic.Runtime.nuspec","lib/netcore50/System.Dynamic.Runtime.dll","lib/DNXCore50/System.Dynamic.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Dynamic.Runtime.dll","ref/dotnet/System.Dynamic.Runtime.xml","ref/dotnet/zh-hant/System.Dynamic.Runtime.xml","ref/dotnet/de/System.Dynamic.Runtime.xml","ref/dotnet/fr/System.Dynamic.Runtime.xml","ref/dotnet/it/System.Dynamic.Runtime.xml","ref/dotnet/ja/System.Dynamic.Runtime.xml","ref/dotnet/ko/System.Dynamic.Runtime.xml","ref/dotnet/ru/System.Dynamic.Runtime.xml","ref/dotnet/zh-hans/System.Dynamic.Runtime.xml","ref/dotnet/es/System.Dynamic.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp","[Content_Types].xml"]},"System.Globalization/4.0.10":{"sha512":"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==","type":"Package","files":["_rels/.rels","System.Globalization.nuspec","lib/netcore50/System.Globalization.dll","lib/DNXCore50/System.Globalization.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.dll","ref/dotnet/System.Globalization.xml","ref/dotnet/zh-hant/System.Globalization.xml","ref/dotnet/de/System.Globalization.xml","ref/dotnet/fr/System.Globalization.xml","ref/dotnet/it/System.Globalization.xml","ref/dotnet/ja/System.Globalization.xml","ref/dotnet/ko/System.Globalization.xml","ref/dotnet/ru/System.Globalization.xml","ref/dotnet/zh-hans/System.Globalization.xml","ref/dotnet/es/System.Globalization.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp","[Content_Types].xml"]},"System.Globalization.Calendars/4.0.0":{"sha512":"cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==","type":"Package","files":["_rels/.rels","System.Globalization.Calendars.nuspec","lib/netcore50/System.Globalization.Calendars.dll","lib/DNXCore50/System.Globalization.Calendars.dll","lib/net46/System.Globalization.Calendars.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Calendars.dll","ref/dotnet/System.Globalization.Calendars.xml","ref/dotnet/zh-hant/System.Globalization.Calendars.xml","ref/dotnet/de/System.Globalization.Calendars.xml","ref/dotnet/fr/System.Globalization.Calendars.xml","ref/dotnet/it/System.Globalization.Calendars.xml","ref/dotnet/ja/System.Globalization.Calendars.xml","ref/dotnet/ko/System.Globalization.Calendars.xml","ref/dotnet/ru/System.Globalization.Calendars.xml","ref/dotnet/zh-hans/System.Globalization.Calendars.xml","ref/dotnet/es/System.Globalization.Calendars.xml","runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll","ref/net46/System.Globalization.Calendars.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp","[Content_Types].xml"]},"System.Globalization.Extensions/4.0.0":{"sha512":"rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==","type":"Package","files":["_rels/.rels","System.Globalization.Extensions.nuspec","lib/dotnet/System.Globalization.Extensions.dll","lib/net46/System.Globalization.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Globalization.Extensions.dll","ref/dotnet/System.Globalization.Extensions.xml","ref/dotnet/zh-hant/System.Globalization.Extensions.xml","ref/dotnet/de/System.Globalization.Extensions.xml","ref/dotnet/fr/System.Globalization.Extensions.xml","ref/dotnet/it/System.Globalization.Extensions.xml","ref/dotnet/ja/System.Globalization.Extensions.xml","ref/dotnet/ko/System.Globalization.Extensions.xml","ref/dotnet/ru/System.Globalization.Extensions.xml","ref/dotnet/zh-hans/System.Globalization.Extensions.xml","ref/dotnet/es/System.Globalization.Extensions.xml","ref/net46/System.Globalization.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp","[Content_Types].xml"]},"System.IO/4.0.10":{"sha512":"kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==","type":"Package","files":["_rels/.rels","System.IO.nuspec","lib/netcore50/System.IO.dll","lib/DNXCore50/System.IO.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.dll","ref/dotnet/System.IO.xml","ref/dotnet/zh-hant/System.IO.xml","ref/dotnet/de/System.IO.xml","ref/dotnet/fr/System.IO.xml","ref/dotnet/it/System.IO.xml","ref/dotnet/ja/System.IO.xml","ref/dotnet/ko/System.IO.xml","ref/dotnet/ru/System.IO.xml","ref/dotnet/zh-hans/System.IO.xml","ref/dotnet/es/System.IO.xml","runtimes/win8-aot/lib/netcore50/System.IO.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp","[Content_Types].xml"]},"System.IO.Compression/4.0.0":{"sha512":"S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.nuspec","lib/dotnet/System.IO.Compression.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/netcore50/System.IO.Compression.dll","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.dll","ref/dotnet/System.IO.Compression.xml","ref/dotnet/zh-hant/System.IO.Compression.xml","ref/dotnet/de/System.IO.Compression.xml","ref/dotnet/fr/System.IO.Compression.xml","ref/dotnet/it/System.IO.Compression.xml","ref/dotnet/ja/System.IO.Compression.xml","ref/dotnet/ko/System.IO.Compression.xml","ref/dotnet/ru/System.IO.Compression.xml","ref/dotnet/zh-hans/System.IO.Compression.xml","ref/dotnet/es/System.IO.Compression.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.IO.Compression.dll","ref/netcore50/System.IO.Compression.xml","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.clrcompression-x64/4.0.0":{"sha512":"Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==","type":"Package","files":["_rels/.rels","System.IO.Compression.clrcompression-x64.nuspec","runtimes/win7-x64/native/clrcompression.dll","runtimes/win10-x64/native/ClrCompression.dll","package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp","[Content_Types].xml"]},"System.IO.Compression.clrcompression-x86/4.0.0":{"sha512":"GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==","type":"Package","files":["_rels/.rels","System.IO.Compression.clrcompression-x86.nuspec","runtimes/win7-x86/native/clrcompression.dll","runtimes/win10-x86/native/ClrCompression.dll","package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp","[Content_Types].xml"]},"System.IO.Compression.ZipFile/4.0.0":{"sha512":"pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==","type":"Package","files":["_rels/.rels","System.IO.Compression.ZipFile.nuspec","lib/dotnet/System.IO.Compression.ZipFile.dll","lib/net46/System.IO.Compression.ZipFile.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.Compression.ZipFile.dll","ref/dotnet/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml","ref/dotnet/de/System.IO.Compression.ZipFile.xml","ref/dotnet/fr/System.IO.Compression.ZipFile.xml","ref/dotnet/it/System.IO.Compression.ZipFile.xml","ref/dotnet/ja/System.IO.Compression.ZipFile.xml","ref/dotnet/ko/System.IO.Compression.ZipFile.xml","ref/dotnet/ru/System.IO.Compression.ZipFile.xml","ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml","ref/dotnet/es/System.IO.Compression.ZipFile.xml","ref/net46/System.IO.Compression.ZipFile.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem/4.0.0":{"sha512":"eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.nuspec","lib/DNXCore50/System.IO.FileSystem.dll","lib/netcore50/System.IO.FileSystem.dll","lib/net46/System.IO.FileSystem.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.dll","ref/dotnet/System.IO.FileSystem.xml","ref/dotnet/zh-hant/System.IO.FileSystem.xml","ref/dotnet/de/System.IO.FileSystem.xml","ref/dotnet/fr/System.IO.FileSystem.xml","ref/dotnet/it/System.IO.FileSystem.xml","ref/dotnet/ja/System.IO.FileSystem.xml","ref/dotnet/ko/System.IO.FileSystem.xml","ref/dotnet/ru/System.IO.FileSystem.xml","ref/dotnet/zh-hans/System.IO.FileSystem.xml","ref/dotnet/es/System.IO.FileSystem.xml","ref/net46/System.IO.FileSystem.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp","[Content_Types].xml"]},"System.IO.FileSystem.Primitives/4.0.0":{"sha512":"7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==","type":"Package","files":["_rels/.rels","System.IO.FileSystem.Primitives.nuspec","lib/dotnet/System.IO.FileSystem.Primitives.dll","lib/net46/System.IO.FileSystem.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.FileSystem.Primitives.dll","ref/dotnet/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml","ref/dotnet/de/System.IO.FileSystem.Primitives.xml","ref/dotnet/fr/System.IO.FileSystem.Primitives.xml","ref/dotnet/it/System.IO.FileSystem.Primitives.xml","ref/dotnet/ja/System.IO.FileSystem.Primitives.xml","ref/dotnet/ko/System.IO.FileSystem.Primitives.xml","ref/dotnet/ru/System.IO.FileSystem.Primitives.xml","ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml","ref/dotnet/es/System.IO.FileSystem.Primitives.xml","ref/net46/System.IO.FileSystem.Primitives.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp","[Content_Types].xml"]},"System.IO.UnmanagedMemoryStream/4.0.0":{"sha512":"i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==","type":"Package","files":["_rels/.rels","System.IO.UnmanagedMemoryStream.nuspec","lib/dotnet/System.IO.UnmanagedMemoryStream.dll","lib/net46/System.IO.UnmanagedMemoryStream.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.IO.UnmanagedMemoryStream.dll","ref/dotnet/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml","ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml","ref/net46/System.IO.UnmanagedMemoryStream.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp","[Content_Types].xml"]},"System.Linq/4.0.0":{"sha512":"r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==","type":"Package","files":["_rels/.rels","System.Linq.nuspec","lib/dotnet/System.Linq.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.dll","ref/dotnet/System.Linq.xml","ref/dotnet/zh-hant/System.Linq.xml","ref/dotnet/de/System.Linq.xml","ref/dotnet/fr/System.Linq.xml","ref/dotnet/it/System.Linq.xml","ref/dotnet/ja/System.Linq.xml","ref/dotnet/ko/System.Linq.xml","ref/dotnet/ru/System.Linq.xml","ref/dotnet/zh-hans/System.Linq.xml","ref/dotnet/es/System.Linq.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.dll","ref/netcore50/System.Linq.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp","[Content_Types].xml"]},"System.Linq.Expressions/4.0.10":{"sha512":"qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==","type":"Package","files":["_rels/.rels","System.Linq.Expressions.nuspec","lib/netcore50/System.Linq.Expressions.dll","lib/DNXCore50/System.Linq.Expressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Linq.Expressions.dll","ref/dotnet/System.Linq.Expressions.xml","ref/dotnet/zh-hant/System.Linq.Expressions.xml","ref/dotnet/de/System.Linq.Expressions.xml","ref/dotnet/fr/System.Linq.Expressions.xml","ref/dotnet/it/System.Linq.Expressions.xml","ref/dotnet/ja/System.Linq.Expressions.xml","ref/dotnet/ko/System.Linq.Expressions.xml","ref/dotnet/ru/System.Linq.Expressions.xml","ref/dotnet/zh-hans/System.Linq.Expressions.xml","ref/dotnet/es/System.Linq.Expressions.xml","runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp","[Content_Types].xml"]},"System.Linq.Parallel/4.0.0":{"sha512":"PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==","type":"Package","files":["_rels/.rels","System.Linq.Parallel.nuspec","lib/dotnet/System.Linq.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Linq.Parallel.dll","ref/dotnet/System.Linq.Parallel.xml","ref/dotnet/zh-hant/System.Linq.Parallel.xml","ref/dotnet/de/System.Linq.Parallel.xml","ref/dotnet/fr/System.Linq.Parallel.xml","ref/dotnet/it/System.Linq.Parallel.xml","ref/dotnet/ja/System.Linq.Parallel.xml","ref/dotnet/ko/System.Linq.Parallel.xml","ref/dotnet/ru/System.Linq.Parallel.xml","ref/dotnet/zh-hans/System.Linq.Parallel.xml","ref/dotnet/es/System.Linq.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Parallel.dll","ref/netcore50/System.Linq.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp","[Content_Types].xml"]},"System.Linq.Queryable/4.0.0":{"sha512":"DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==","type":"Package","files":["_rels/.rels","System.Linq.Queryable.nuspec","lib/dotnet/System.Linq.Queryable.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Linq.Queryable.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Linq.Queryable.dll","ref/dotnet/System.Linq.Queryable.xml","ref/dotnet/zh-hant/System.Linq.Queryable.xml","ref/dotnet/de/System.Linq.Queryable.xml","ref/dotnet/fr/System.Linq.Queryable.xml","ref/dotnet/it/System.Linq.Queryable.xml","ref/dotnet/ja/System.Linq.Queryable.xml","ref/dotnet/ko/System.Linq.Queryable.xml","ref/dotnet/ru/System.Linq.Queryable.xml","ref/dotnet/zh-hans/System.Linq.Queryable.xml","ref/dotnet/es/System.Linq.Queryable.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Linq.Queryable.dll","ref/netcore50/System.Linq.Queryable.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp","[Content_Types].xml"]},"System.Net.Http/4.0.0":{"sha512":"mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==","type":"Package","files":["_rels/.rels","System.Net.Http.nuspec","lib/netcore50/System.Net.Http.dll","lib/DNXCore50/System.Net.Http.dll","lib/net45/_._","lib/win8/_._","lib/wpa81/_._","ref/dotnet/System.Net.Http.dll","ref/dotnet/System.Net.Http.xml","ref/dotnet/zh-hant/System.Net.Http.xml","ref/dotnet/de/System.Net.Http.xml","ref/dotnet/fr/System.Net.Http.xml","ref/dotnet/it/System.Net.Http.xml","ref/dotnet/ja/System.Net.Http.xml","ref/dotnet/ko/System.Net.Http.xml","ref/dotnet/ru/System.Net.Http.xml","ref/dotnet/zh-hans/System.Net.Http.xml","ref/dotnet/es/System.Net.Http.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.Http.dll","ref/netcore50/System.Net.Http.xml","ref/wpa81/_._","package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp","[Content_Types].xml"]},"System.Net.NetworkInformation/4.0.0":{"sha512":"D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==","type":"Package","files":["_rels/.rels","System.Net.NetworkInformation.nuspec","lib/netcore50/System.Net.NetworkInformation.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.NetworkInformation.dll","ref/dotnet/System.Net.NetworkInformation.xml","ref/dotnet/zh-hant/System.Net.NetworkInformation.xml","ref/dotnet/de/System.Net.NetworkInformation.xml","ref/dotnet/fr/System.Net.NetworkInformation.xml","ref/dotnet/it/System.Net.NetworkInformation.xml","ref/dotnet/ja/System.Net.NetworkInformation.xml","ref/dotnet/ko/System.Net.NetworkInformation.xml","ref/dotnet/ru/System.Net.NetworkInformation.xml","ref/dotnet/zh-hans/System.Net.NetworkInformation.xml","ref/dotnet/es/System.Net.NetworkInformation.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Net.NetworkInformation.dll","ref/netcore50/System.Net.NetworkInformation.xml","ref/wp80/_._","ref/wpa81/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp","[Content_Types].xml"]},"System.Net.Primitives/4.0.10":{"sha512":"YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==","type":"Package","files":["_rels/.rels","System.Net.Primitives.nuspec","lib/netcore50/System.Net.Primitives.dll","lib/DNXCore50/System.Net.Primitives.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Net.Primitives.dll","ref/dotnet/System.Net.Primitives.xml","ref/dotnet/zh-hant/System.Net.Primitives.xml","ref/dotnet/de/System.Net.Primitives.xml","ref/dotnet/fr/System.Net.Primitives.xml","ref/dotnet/it/System.Net.Primitives.xml","ref/dotnet/ja/System.Net.Primitives.xml","ref/dotnet/ko/System.Net.Primitives.xml","ref/dotnet/ru/System.Net.Primitives.xml","ref/dotnet/zh-hans/System.Net.Primitives.xml","ref/dotnet/es/System.Net.Primitives.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp","[Content_Types].xml"]},"System.Numerics.Vectors/4.1.0":{"sha512":"jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==","type":"Package","files":["_rels/.rels","System.Numerics.Vectors.nuspec","lib/dotnet/System.Numerics.Vectors.dll","lib/net46/System.Numerics.Vectors.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Numerics.Vectors.dll","ref/net46/System.Numerics.Vectors.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp","[Content_Types].xml"]},"System.ObjectModel/4.0.10":{"sha512":"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==","type":"Package","files":["_rels/.rels","System.ObjectModel.nuspec","lib/dotnet/System.ObjectModel.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.ObjectModel.dll","ref/dotnet/System.ObjectModel.xml","ref/dotnet/zh-hant/System.ObjectModel.xml","ref/dotnet/de/System.ObjectModel.xml","ref/dotnet/fr/System.ObjectModel.xml","ref/dotnet/it/System.ObjectModel.xml","ref/dotnet/ja/System.ObjectModel.xml","ref/dotnet/ko/System.ObjectModel.xml","ref/dotnet/ru/System.ObjectModel.xml","ref/dotnet/zh-hans/System.ObjectModel.xml","ref/dotnet/es/System.ObjectModel.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp","[Content_Types].xml"]},"System.Private.Networking/4.0.0":{"sha512":"RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==","type":"Package","files":["_rels/.rels","System.Private.Networking.nuspec","lib/netcore50/System.Private.Networking.dll","lib/DNXCore50/System.Private.Networking.dll","ref/dnxcore50/_._","ref/netcore50/_._","package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp","[Content_Types].xml"]},"System.Private.Uri/4.0.0":{"sha512":"CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==","type":"Package","files":["_rels/.rels","System.Private.Uri.nuspec","lib/netcore50/System.Private.Uri.dll","lib/DNXCore50/System.Private.Uri.dll","ref/dnxcore50/_._","ref/netcore50/_._","runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll","package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp","[Content_Types].xml"]},"System.Reflection/4.0.10":{"sha512":"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==","type":"Package","files":["_rels/.rels","System.Reflection.nuspec","lib/netcore50/System.Reflection.dll","lib/DNXCore50/System.Reflection.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.dll","ref/dotnet/System.Reflection.xml","ref/dotnet/zh-hant/System.Reflection.xml","ref/dotnet/de/System.Reflection.xml","ref/dotnet/fr/System.Reflection.xml","ref/dotnet/it/System.Reflection.xml","ref/dotnet/ja/System.Reflection.xml","ref/dotnet/ko/System.Reflection.xml","ref/dotnet/ru/System.Reflection.xml","ref/dotnet/zh-hans/System.Reflection.xml","ref/dotnet/es/System.Reflection.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp","[Content_Types].xml"]},"System.Reflection.DispatchProxy/4.0.0":{"sha512":"Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==","type":"Package","files":["_rels/.rels","System.Reflection.DispatchProxy.nuspec","lib/net46/System.Reflection.DispatchProxy.dll","lib/DNXCore50/System.Reflection.DispatchProxy.dll","lib/netcore50/System.Reflection.DispatchProxy.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.DispatchProxy.dll","ref/dotnet/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml","ref/dotnet/de/System.Reflection.DispatchProxy.xml","ref/dotnet/fr/System.Reflection.DispatchProxy.xml","ref/dotnet/it/System.Reflection.DispatchProxy.xml","ref/dotnet/ja/System.Reflection.DispatchProxy.xml","ref/dotnet/ko/System.Reflection.DispatchProxy.xml","ref/dotnet/ru/System.Reflection.DispatchProxy.xml","ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml","ref/dotnet/es/System.Reflection.DispatchProxy.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","runtime.json","package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit/4.0.0":{"sha512":"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.nuspec","lib/DNXCore50/System.Reflection.Emit.dll","lib/netcore50/System.Reflection.Emit.dll","lib/MonoAndroid10/_._","lib/net45/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.Emit.dll","ref/dotnet/System.Reflection.Emit.xml","ref/dotnet/zh-hant/System.Reflection.Emit.xml","ref/dotnet/de/System.Reflection.Emit.xml","ref/dotnet/fr/System.Reflection.Emit.xml","ref/dotnet/it/System.Reflection.Emit.xml","ref/dotnet/ja/System.Reflection.Emit.xml","ref/dotnet/ko/System.Reflection.Emit.xml","ref/dotnet/ru/System.Reflection.Emit.xml","ref/dotnet/zh-hans/System.Reflection.Emit.xml","ref/dotnet/es/System.Reflection.Emit.xml","ref/MonoAndroid10/_._","ref/net45/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.ILGeneration/4.0.0":{"sha512":"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.ILGeneration.nuspec","lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll","lib/netcore50/System.Reflection.Emit.ILGeneration.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.ILGeneration.dll","ref/dotnet/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml","ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp","[Content_Types].xml"]},"System.Reflection.Emit.Lightweight/4.0.0":{"sha512":"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==","type":"Package","files":["_rels/.rels","System.Reflection.Emit.Lightweight.nuspec","lib/DNXCore50/System.Reflection.Emit.Lightweight.dll","lib/netcore50/System.Reflection.Emit.Lightweight.dll","lib/net45/_._","lib/wp80/_._","ref/dotnet/System.Reflection.Emit.Lightweight.dll","ref/dotnet/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml","ref/dotnet/de/System.Reflection.Emit.Lightweight.xml","ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml","ref/dotnet/it/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml","ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml","ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml","ref/dotnet/es/System.Reflection.Emit.Lightweight.xml","ref/net45/_._","ref/wp80/_._","package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp","[Content_Types].xml"]},"System.Reflection.Extensions/4.0.0":{"sha512":"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==","type":"Package","files":["_rels/.rels","System.Reflection.Extensions.nuspec","lib/netcore50/System.Reflection.Extensions.dll","lib/DNXCore50/System.Reflection.Extensions.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Extensions.dll","ref/dotnet/System.Reflection.Extensions.xml","ref/dotnet/zh-hant/System.Reflection.Extensions.xml","ref/dotnet/de/System.Reflection.Extensions.xml","ref/dotnet/fr/System.Reflection.Extensions.xml","ref/dotnet/it/System.Reflection.Extensions.xml","ref/dotnet/ja/System.Reflection.Extensions.xml","ref/dotnet/ko/System.Reflection.Extensions.xml","ref/dotnet/ru/System.Reflection.Extensions.xml","ref/dotnet/zh-hans/System.Reflection.Extensions.xml","ref/dotnet/es/System.Reflection.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Extensions.dll","ref/netcore50/System.Reflection.Extensions.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp","[Content_Types].xml"]},"System.Reflection.Metadata/1.0.22":{"sha512":"ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==","type":"Package","files":["_rels/.rels","System.Reflection.Metadata.nuspec","lib/dotnet/System.Reflection.Metadata.dll","lib/dotnet/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.xml","lib/portable-net45+win8/System.Reflection.Metadata.dll","package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp","[Content_Types].xml"]},"System.Reflection.Primitives/4.0.0":{"sha512":"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==","type":"Package","files":["_rels/.rels","System.Reflection.Primitives.nuspec","lib/netcore50/System.Reflection.Primitives.dll","lib/DNXCore50/System.Reflection.Primitives.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Reflection.Primitives.dll","ref/dotnet/System.Reflection.Primitives.xml","ref/dotnet/zh-hant/System.Reflection.Primitives.xml","ref/dotnet/de/System.Reflection.Primitives.xml","ref/dotnet/fr/System.Reflection.Primitives.xml","ref/dotnet/it/System.Reflection.Primitives.xml","ref/dotnet/ja/System.Reflection.Primitives.xml","ref/dotnet/ko/System.Reflection.Primitives.xml","ref/dotnet/ru/System.Reflection.Primitives.xml","ref/dotnet/zh-hans/System.Reflection.Primitives.xml","ref/dotnet/es/System.Reflection.Primitives.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Reflection.Primitives.dll","ref/netcore50/System.Reflection.Primitives.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp","[Content_Types].xml"]},"System.Reflection.TypeExtensions/4.0.0":{"sha512":"YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==","type":"Package","files":["_rels/.rels","System.Reflection.TypeExtensions.nuspec","lib/netcore50/System.Reflection.TypeExtensions.dll","lib/DNXCore50/System.Reflection.TypeExtensions.dll","lib/net46/System.Reflection.TypeExtensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Reflection.TypeExtensions.dll","ref/dotnet/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml","ref/dotnet/de/System.Reflection.TypeExtensions.xml","ref/dotnet/fr/System.Reflection.TypeExtensions.xml","ref/dotnet/it/System.Reflection.TypeExtensions.xml","ref/dotnet/ja/System.Reflection.TypeExtensions.xml","ref/dotnet/ko/System.Reflection.TypeExtensions.xml","ref/dotnet/ru/System.Reflection.TypeExtensions.xml","ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml","ref/dotnet/es/System.Reflection.TypeExtensions.xml","runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll","ref/net46/System.Reflection.TypeExtensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp","[Content_Types].xml"]},"System.Resources.ResourceManager/4.0.0":{"sha512":"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==","type":"Package","files":["_rels/.rels","System.Resources.ResourceManager.nuspec","lib/netcore50/System.Resources.ResourceManager.dll","lib/DNXCore50/System.Resources.ResourceManager.dll","lib/net45/_._","lib/win8/_._","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Resources.ResourceManager.dll","ref/dotnet/System.Resources.ResourceManager.xml","ref/dotnet/zh-hant/System.Resources.ResourceManager.xml","ref/dotnet/de/System.Resources.ResourceManager.xml","ref/dotnet/fr/System.Resources.ResourceManager.xml","ref/dotnet/it/System.Resources.ResourceManager.xml","ref/dotnet/ja/System.Resources.ResourceManager.xml","ref/dotnet/ko/System.Resources.ResourceManager.xml","ref/dotnet/ru/System.Resources.ResourceManager.xml","ref/dotnet/zh-hans/System.Resources.ResourceManager.xml","ref/dotnet/es/System.Resources.ResourceManager.xml","runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Resources.ResourceManager.dll","ref/netcore50/System.Resources.ResourceManager.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp","[Content_Types].xml"]},"System.Runtime/4.0.20":{"sha512":"X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==","type":"Package","files":["_rels/.rels","System.Runtime.nuspec","lib/netcore50/System.Runtime.dll","lib/DNXCore50/System.Runtime.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.dll","ref/dotnet/System.Runtime.xml","ref/dotnet/zh-hant/System.Runtime.xml","ref/dotnet/de/System.Runtime.xml","ref/dotnet/fr/System.Runtime.xml","ref/dotnet/it/System.Runtime.xml","ref/dotnet/ja/System.Runtime.xml","ref/dotnet/ko/System.Runtime.xml","ref/dotnet/ru/System.Runtime.xml","ref/dotnet/zh-hans/System.Runtime.xml","ref/dotnet/es/System.Runtime.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp","[Content_Types].xml"]},"System.Runtime.Extensions/4.0.10":{"sha512":"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==","type":"Package","files":["_rels/.rels","System.Runtime.Extensions.nuspec","lib/netcore50/System.Runtime.Extensions.dll","lib/DNXCore50/System.Runtime.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Extensions.dll","ref/dotnet/System.Runtime.Extensions.xml","ref/dotnet/zh-hant/System.Runtime.Extensions.xml","ref/dotnet/de/System.Runtime.Extensions.xml","ref/dotnet/fr/System.Runtime.Extensions.xml","ref/dotnet/it/System.Runtime.Extensions.xml","ref/dotnet/ja/System.Runtime.Extensions.xml","ref/dotnet/ko/System.Runtime.Extensions.xml","ref/dotnet/ru/System.Runtime.Extensions.xml","ref/dotnet/zh-hans/System.Runtime.Extensions.xml","ref/dotnet/es/System.Runtime.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp","[Content_Types].xml"]},"System.Runtime.Handles/4.0.0":{"sha512":"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==","type":"Package","files":["_rels/.rels","System.Runtime.Handles.nuspec","lib/DNXCore50/System.Runtime.Handles.dll","lib/netcore50/System.Runtime.Handles.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.Handles.dll","ref/dotnet/System.Runtime.Handles.xml","ref/dotnet/zh-hant/System.Runtime.Handles.xml","ref/dotnet/de/System.Runtime.Handles.xml","ref/dotnet/fr/System.Runtime.Handles.xml","ref/dotnet/it/System.Runtime.Handles.xml","ref/dotnet/ja/System.Runtime.Handles.xml","ref/dotnet/ko/System.Runtime.Handles.xml","ref/dotnet/ru/System.Runtime.Handles.xml","ref/dotnet/zh-hans/System.Runtime.Handles.xml","ref/dotnet/es/System.Runtime.Handles.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp","[Content_Types].xml"]},"System.Runtime.InteropServices/4.0.20":{"sha512":"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==","type":"Package","files":["_rels/.rels","System.Runtime.InteropServices.nuspec","lib/DNXCore50/System.Runtime.InteropServices.dll","lib/netcore50/System.Runtime.InteropServices.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Runtime.InteropServices.dll","ref/dotnet/System.Runtime.InteropServices.xml","ref/dotnet/zh-hant/System.Runtime.InteropServices.xml","ref/dotnet/de/System.Runtime.InteropServices.xml","ref/dotnet/fr/System.Runtime.InteropServices.xml","ref/dotnet/it/System.Runtime.InteropServices.xml","ref/dotnet/ja/System.Runtime.InteropServices.xml","ref/dotnet/ko/System.Runtime.InteropServices.xml","ref/dotnet/ru/System.Runtime.InteropServices.xml","ref/dotnet/zh-hans/System.Runtime.InteropServices.xml","ref/dotnet/es/System.Runtime.InteropServices.xml","runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp","[Content_Types].xml"]},"System.Runtime.Numerics/4.0.0":{"sha512":"aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==","type":"Package","files":["_rels/.rels","System.Runtime.Numerics.nuspec","lib/dotnet/System.Runtime.Numerics.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Runtime.Numerics.dll","lib/wpa81/_._","ref/dotnet/System.Runtime.Numerics.dll","ref/dotnet/System.Runtime.Numerics.xml","ref/dotnet/zh-hant/System.Runtime.Numerics.xml","ref/dotnet/de/System.Runtime.Numerics.xml","ref/dotnet/fr/System.Runtime.Numerics.xml","ref/dotnet/it/System.Runtime.Numerics.xml","ref/dotnet/ja/System.Runtime.Numerics.xml","ref/dotnet/ko/System.Runtime.Numerics.xml","ref/dotnet/ru/System.Runtime.Numerics.xml","ref/dotnet/zh-hans/System.Runtime.Numerics.xml","ref/dotnet/es/System.Runtime.Numerics.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Runtime.Numerics.dll","ref/netcore50/System.Runtime.Numerics.xml","ref/wpa81/_._","package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp","[Content_Types].xml"]},"System.Security.Claims/4.0.0":{"sha512":"94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==","type":"Package","files":["_rels/.rels","System.Security.Claims.nuspec","lib/dotnet/System.Security.Claims.dll","lib/net46/System.Security.Claims.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Security.Claims.dll","ref/dotnet/System.Security.Claims.xml","ref/dotnet/zh-hant/System.Security.Claims.xml","ref/dotnet/de/System.Security.Claims.xml","ref/dotnet/fr/System.Security.Claims.xml","ref/dotnet/it/System.Security.Claims.xml","ref/dotnet/ja/System.Security.Claims.xml","ref/dotnet/ko/System.Security.Claims.xml","ref/dotnet/ru/System.Security.Claims.xml","ref/dotnet/zh-hans/System.Security.Claims.xml","ref/dotnet/es/System.Security.Claims.xml","ref/net46/System.Security.Claims.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp","[Content_Types].xml"]},"System.Security.Principal/4.0.0":{"sha512":"FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==","type":"Package","files":["_rels/.rels","System.Security.Principal.nuspec","lib/dotnet/System.Security.Principal.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Security.Principal.dll","lib/wp80/_._","lib/wpa81/_._","ref/dotnet/System.Security.Principal.dll","ref/dotnet/System.Security.Principal.xml","ref/dotnet/zh-hant/System.Security.Principal.xml","ref/dotnet/de/System.Security.Principal.xml","ref/dotnet/fr/System.Security.Principal.xml","ref/dotnet/it/System.Security.Principal.xml","ref/dotnet/ja/System.Security.Principal.xml","ref/dotnet/ko/System.Security.Principal.xml","ref/dotnet/ru/System.Security.Principal.xml","ref/dotnet/zh-hans/System.Security.Principal.xml","ref/dotnet/es/System.Security.Principal.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Security.Principal.dll","ref/netcore50/System.Security.Principal.xml","ref/wp80/_._","ref/wpa81/_._","package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp","[Content_Types].xml"]},"System.Text.Encoding/4.0.10":{"sha512":"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==","type":"Package","files":["_rels/.rels","System.Text.Encoding.nuspec","lib/netcore50/System.Text.Encoding.dll","lib/DNXCore50/System.Text.Encoding.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.dll","ref/dotnet/System.Text.Encoding.xml","ref/dotnet/zh-hant/System.Text.Encoding.xml","ref/dotnet/de/System.Text.Encoding.xml","ref/dotnet/fr/System.Text.Encoding.xml","ref/dotnet/it/System.Text.Encoding.xml","ref/dotnet/ja/System.Text.Encoding.xml","ref/dotnet/ko/System.Text.Encoding.xml","ref/dotnet/ru/System.Text.Encoding.xml","ref/dotnet/zh-hans/System.Text.Encoding.xml","ref/dotnet/es/System.Text.Encoding.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp","[Content_Types].xml"]},"System.Text.Encoding.Extensions/4.0.10":{"sha512":"TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==","type":"Package","files":["_rels/.rels","System.Text.Encoding.Extensions.nuspec","lib/netcore50/System.Text.Encoding.Extensions.dll","lib/DNXCore50/System.Text.Encoding.Extensions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.Encoding.Extensions.dll","ref/dotnet/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml","ref/dotnet/de/System.Text.Encoding.Extensions.xml","ref/dotnet/fr/System.Text.Encoding.Extensions.xml","ref/dotnet/it/System.Text.Encoding.Extensions.xml","ref/dotnet/ja/System.Text.Encoding.Extensions.xml","ref/dotnet/ko/System.Text.Encoding.Extensions.xml","ref/dotnet/ru/System.Text.Encoding.Extensions.xml","ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml","ref/dotnet/es/System.Text.Encoding.Extensions.xml","runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp","[Content_Types].xml"]},"System.Text.RegularExpressions/4.0.10":{"sha512":"0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==","type":"Package","files":["_rels/.rels","System.Text.RegularExpressions.nuspec","lib/dotnet/System.Text.RegularExpressions.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Text.RegularExpressions.dll","ref/dotnet/System.Text.RegularExpressions.xml","ref/dotnet/zh-hant/System.Text.RegularExpressions.xml","ref/dotnet/de/System.Text.RegularExpressions.xml","ref/dotnet/fr/System.Text.RegularExpressions.xml","ref/dotnet/it/System.Text.RegularExpressions.xml","ref/dotnet/ja/System.Text.RegularExpressions.xml","ref/dotnet/ko/System.Text.RegularExpressions.xml","ref/dotnet/ru/System.Text.RegularExpressions.xml","ref/dotnet/zh-hans/System.Text.RegularExpressions.xml","ref/dotnet/es/System.Text.RegularExpressions.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp","[Content_Types].xml"]},"System.Threading/4.0.10":{"sha512":"0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==","type":"Package","files":["_rels/.rels","System.Threading.nuspec","lib/DNXCore50/System.Threading.dll","lib/netcore50/System.Threading.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.dll","ref/dotnet/System.Threading.xml","ref/dotnet/zh-hant/System.Threading.xml","ref/dotnet/de/System.Threading.xml","ref/dotnet/fr/System.Threading.xml","ref/dotnet/it/System.Threading.xml","ref/dotnet/ja/System.Threading.xml","ref/dotnet/ko/System.Threading.xml","ref/dotnet/ru/System.Threading.xml","ref/dotnet/zh-hans/System.Threading.xml","ref/dotnet/es/System.Threading.xml","runtimes/win8-aot/lib/netcore50/System.Threading.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp","[Content_Types].xml"]},"System.Threading.Overlapped/4.0.0":{"sha512":"X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==","type":"Package","files":["_rels/.rels","System.Threading.Overlapped.nuspec","lib/netcore50/System.Threading.Overlapped.dll","lib/DNXCore50/System.Threading.Overlapped.dll","lib/net46/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.dll","ref/dotnet/System.Threading.Overlapped.xml","ref/dotnet/zh-hant/System.Threading.Overlapped.xml","ref/dotnet/de/System.Threading.Overlapped.xml","ref/dotnet/fr/System.Threading.Overlapped.xml","ref/dotnet/it/System.Threading.Overlapped.xml","ref/dotnet/ja/System.Threading.Overlapped.xml","ref/dotnet/ko/System.Threading.Overlapped.xml","ref/dotnet/ru/System.Threading.Overlapped.xml","ref/dotnet/zh-hans/System.Threading.Overlapped.xml","ref/dotnet/es/System.Threading.Overlapped.xml","ref/net46/System.Threading.Overlapped.dll","package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks/4.0.10":{"sha512":"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.nuspec","lib/netcore50/System.Threading.Tasks.dll","lib/DNXCore50/System.Threading.Tasks.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Threading.Tasks.dll","ref/dotnet/System.Threading.Tasks.xml","ref/dotnet/zh-hant/System.Threading.Tasks.xml","ref/dotnet/de/System.Threading.Tasks.xml","ref/dotnet/fr/System.Threading.Tasks.xml","ref/dotnet/it/System.Threading.Tasks.xml","ref/dotnet/ja/System.Threading.Tasks.xml","ref/dotnet/ko/System.Threading.Tasks.xml","ref/dotnet/ru/System.Threading.Tasks.xml","ref/dotnet/zh-hans/System.Threading.Tasks.xml","ref/dotnet/es/System.Threading.Tasks.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Dataflow/4.5.25":{"sha512":"Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Dataflow.nuspec","lib/dotnet/System.Threading.Tasks.Dataflow.dll","lib/dotnet/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML","lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll","package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp","[Content_Types].xml"]},"System.Threading.Tasks.Parallel/4.0.0":{"sha512":"GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==","type":"Package","files":["_rels/.rels","System.Threading.Tasks.Parallel.nuspec","lib/dotnet/System.Threading.Tasks.Parallel.dll","lib/net45/_._","lib/win8/_._","lib/netcore50/System.Threading.Tasks.Parallel.dll","lib/wpa81/_._","ref/dotnet/System.Threading.Tasks.Parallel.dll","ref/dotnet/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml","ref/dotnet/de/System.Threading.Tasks.Parallel.xml","ref/dotnet/fr/System.Threading.Tasks.Parallel.xml","ref/dotnet/it/System.Threading.Tasks.Parallel.xml","ref/dotnet/ja/System.Threading.Tasks.Parallel.xml","ref/dotnet/ko/System.Threading.Tasks.Parallel.xml","ref/dotnet/ru/System.Threading.Tasks.Parallel.xml","ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml","ref/dotnet/es/System.Threading.Tasks.Parallel.xml","ref/net45/_._","ref/win8/_._","ref/netcore50/System.Threading.Tasks.Parallel.dll","ref/netcore50/System.Threading.Tasks.Parallel.xml","ref/wpa81/_._","package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp","[Content_Types].xml"]},"System.Threading.Timer/4.0.0":{"sha512":"BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==","type":"Package","files":["_rels/.rels","System.Threading.Timer.nuspec","lib/netcore50/System.Threading.Timer.dll","lib/DNXCore50/System.Threading.Timer.dll","lib/net451/_._","lib/win81/_._","lib/wpa81/_._","ref/dotnet/System.Threading.Timer.dll","ref/dotnet/System.Threading.Timer.xml","ref/dotnet/zh-hant/System.Threading.Timer.xml","ref/dotnet/de/System.Threading.Timer.xml","ref/dotnet/fr/System.Threading.Timer.xml","ref/dotnet/it/System.Threading.Timer.xml","ref/dotnet/ja/System.Threading.Timer.xml","ref/dotnet/ko/System.Threading.Timer.xml","ref/dotnet/ru/System.Threading.Timer.xml","ref/dotnet/zh-hans/System.Threading.Timer.xml","ref/dotnet/es/System.Threading.Timer.xml","runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll","ref/net451/_._","ref/win81/_._","ref/netcore50/System.Threading.Timer.dll","ref/netcore50/System.Threading.Timer.xml","ref/wpa81/_._","package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp","[Content_Types].xml"]},"System.Xml.ReaderWriter/4.0.10":{"sha512":"VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==","type":"Package","files":["_rels/.rels","System.Xml.ReaderWriter.nuspec","lib/dotnet/System.Xml.ReaderWriter.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.ReaderWriter.dll","ref/dotnet/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml","ref/dotnet/de/System.Xml.ReaderWriter.xml","ref/dotnet/fr/System.Xml.ReaderWriter.xml","ref/dotnet/it/System.Xml.ReaderWriter.xml","ref/dotnet/ja/System.Xml.ReaderWriter.xml","ref/dotnet/ko/System.Xml.ReaderWriter.xml","ref/dotnet/ru/System.Xml.ReaderWriter.xml","ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml","ref/dotnet/es/System.Xml.ReaderWriter.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp","[Content_Types].xml"]},"System.Xml.XDocument/4.0.10":{"sha512":"+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==","type":"Package","files":["_rels/.rels","System.Xml.XDocument.nuspec","lib/dotnet/System.Xml.XDocument.dll","lib/MonoAndroid10/_._","lib/MonoTouch10/_._","lib/net46/_._","lib/xamarinios10/_._","lib/xamarinmac20/_._","ref/dotnet/System.Xml.XDocument.dll","ref/dotnet/System.Xml.XDocument.xml","ref/dotnet/zh-hant/System.Xml.XDocument.xml","ref/dotnet/de/System.Xml.XDocument.xml","ref/dotnet/fr/System.Xml.XDocument.xml","ref/dotnet/it/System.Xml.XDocument.xml","ref/dotnet/ja/System.Xml.XDocument.xml","ref/dotnet/ko/System.Xml.XDocument.xml","ref/dotnet/ru/System.Xml.XDocument.xml","ref/dotnet/zh-hans/System.Xml.XDocument.xml","ref/dotnet/es/System.Xml.XDocument.xml","ref/MonoAndroid10/_._","ref/MonoTouch10/_._","ref/net46/_._","ref/xamarinios10/_._","ref/xamarinmac20/_._","package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp","[Content_Types].xml"]}},"projectFileDependencyGroups":{"":["Microsoft.NETCore >= 5.0.0","System.Console >= 4.0.0-beta-23412","Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123","Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0"],"DNXCore,Version=v5.0":[]}} {"age":30,"first":"John","last":"Smith","phoneNumbers":["425-000-1212","425-000-1213"],"address":{"street":"1MicrosoftWay","city":"Redmond","zip":98052},"IDs":[425,-70,9223372036854775000],"arrayWithObjects":["text",14,[],null,false,{},{"time":24},["1","2","3"]],"boolean":false,"null":null,"objectName":{"group":{"array":[false],"field":"simple","anotherFieldNum":5,"anotherFieldBool":true,"lastField":null}},"emptyObject":{}} @@ -217,7 +217,7 @@ tiline\"another\" String\\"],"str":"\"\""} ] - { "locked": false, "version": 1, "targets": { "DNXCore,Version=v5.0": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.NetworkInformation/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.NetworkInformation.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x64": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "native": { "runtimes/win7-x64/native/CoreConsole.exe": {} } }, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} }, "native": { "runtimes/win7-x64/native/clretwrc.dll": {}, "runtimes/win7-x64/native/coreclr.dll": {}, "runtimes/win7-x64/native/dbgshim.dll": {}, "runtimes/win7-x64/native/mscordaccore.dll": {}, "runtimes/win7-x64/native/mscordbi.dll": {}, "runtimes/win7-x64/native/mscorrc.debug.dll": {}, "runtimes/win7-x64/native/mscorrc.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.Native-x64/4.0.0": { "native": { "runtimes/win7-x64/native/System.IO.Compression.Native.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x86": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.Native-x86/4.0.0": { "native": { "runtimes/win7-x86/native/System.IO.Compression.Native.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } } }, "libraries": { "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.CSharp.nuspec", "lib/dotnet/Microsoft.CSharp.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.CSharp.dll", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.CSharp.dll", "ref/dotnet/Microsoft.CSharp.xml", "ref/dotnet/zh-hant/Microsoft.CSharp.xml", "ref/dotnet/de/Microsoft.CSharp.xml", "ref/dotnet/fr/Microsoft.CSharp.xml", "ref/dotnet/it/Microsoft.CSharp.xml", "ref/dotnet/ja/Microsoft.CSharp.xml", "ref/dotnet/ko/Microsoft.CSharp.xml", "ref/dotnet/ru/Microsoft.CSharp.xml", "ref/dotnet/zh-hans/Microsoft.CSharp.xml", "ref/dotnet/es/Microsoft.CSharp.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.CSharp.dll", "ref/netcore50/Microsoft.CSharp.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.nuspec", "_._", "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "sha512": "Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.ConsoleHost-x64.nuspec", "runtimes/win7-x64/native/CoreConsole.exe", "package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Platforms.nuspec", "runtime.json", "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", "runtimes/win7-x64/native/clretwrc.dll", "runtimes/win7-x64/native/coreclr.dll", "runtimes/win7-x64/native/dbgshim.dll", "runtimes/win7-x64/native/mscordaccore.dll", "runtimes/win7-x64/native/mscordbi.dll", "runtimes/win7-x64/native/mscorrc.debug.dll", "runtimes/win7-x64/native/mscorrc.dll", "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.nuspec", "runtime.json", "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": { "sha512": "32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.DNXCore.nuspec", "runtime.json", "package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp", "[Content_Types].xml" ] }, "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.VisualBasic.nuspec", "lib/dotnet/Microsoft.VisualBasic.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.VisualBasic.dll", "lib/wpa81/_._", "ref/dotnet/Microsoft.VisualBasic.dll", "ref/dotnet/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", "ref/dotnet/de/Microsoft.VisualBasic.xml", "ref/dotnet/fr/Microsoft.VisualBasic.xml", "ref/dotnet/it/Microsoft.VisualBasic.xml", "ref/dotnet/ja/Microsoft.VisualBasic.xml", "ref/dotnet/ko/Microsoft.VisualBasic.xml", "ref/dotnet/ru/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", "ref/dotnet/es/Microsoft.VisualBasic.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.VisualBasic.dll", "ref/netcore50/Microsoft.VisualBasic.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", "[Content_Types].xml" ] }, "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.Win32.Primitives.nuspec", "lib/dotnet/Microsoft.Win32.Primitives.dll", "lib/net46/Microsoft.Win32.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.Win32.Primitives.dll", "ref/dotnet/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", "ref/dotnet/de/Microsoft.Win32.Primitives.xml", "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", "ref/dotnet/it/Microsoft.Win32.Primitives.xml", "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", "ref/dotnet/es/Microsoft.Win32.Primitives.xml", "ref/net46/Microsoft.Win32.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", "[Content_Types].xml" ] }, "runtime.win7.System.Console/4.0.0-beta-23412": { "sha512": "j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==", "type": "Package", "files": [ "_rels/.rels", "runtime.win7.System.Console.nuspec", "runtimes/win7/lib/dotnet/System.Console.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp", "[Content_Types].xml" ] }, "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "Package", "files": [ "_rels/.rels", "System.AppContext.nuspec", "lib/netcore50/System.AppContext.dll", "lib/DNXCore50/System.AppContext.dll", "lib/net46/System.AppContext.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.AppContext.dll", "ref/dotnet/System.AppContext.xml", "ref/dotnet/zh-hant/System.AppContext.xml", "ref/dotnet/de/System.AppContext.xml", "ref/dotnet/fr/System.AppContext.xml", "ref/dotnet/it/System.AppContext.xml", "ref/dotnet/ja/System.AppContext.xml", "ref/dotnet/ko/System.AppContext.xml", "ref/dotnet/ru/System.AppContext.xml", "ref/dotnet/zh-hans/System.AppContext.xml", "ref/dotnet/es/System.AppContext.xml", "ref/net46/System.AppContext.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", "[Content_Types].xml" ] }, "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.nuspec", "lib/netcore50/System.Collections.dll", "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.dll", "ref/dotnet/System.Collections.xml", "ref/dotnet/zh-hant/System.Collections.xml", "ref/dotnet/de/System.Collections.xml", "ref/dotnet/fr/System.Collections.xml", "ref/dotnet/it/System.Collections.xml", "ref/dotnet/ja/System.Collections.xml", "ref/dotnet/ko/System.Collections.xml", "ref/dotnet/ru/System.Collections.xml", "ref/dotnet/zh-hans/System.Collections.xml", "ref/dotnet/es/System.Collections.xml", "runtimes/win8-aot/lib/netcore50/System.Collections.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Concurrent.nuspec", "lib/dotnet/System.Collections.Concurrent.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.Concurrent.dll", "ref/dotnet/System.Collections.Concurrent.xml", "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", "ref/dotnet/de/System.Collections.Concurrent.xml", "ref/dotnet/fr/System.Collections.Concurrent.xml", "ref/dotnet/it/System.Collections.Concurrent.xml", "ref/dotnet/ja/System.Collections.Concurrent.xml", "ref/dotnet/ko/System.Collections.Concurrent.xml", "ref/dotnet/ru/System.Collections.Concurrent.xml", "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", "ref/dotnet/es/System.Collections.Concurrent.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", "[Content_Types].xml" ] }, "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.NonGeneric.nuspec", "lib/dotnet/System.Collections.NonGeneric.dll", "lib/net46/System.Collections.NonGeneric.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.NonGeneric.dll", "ref/dotnet/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", "ref/dotnet/de/System.Collections.NonGeneric.xml", "ref/dotnet/fr/System.Collections.NonGeneric.xml", "ref/dotnet/it/System.Collections.NonGeneric.xml", "ref/dotnet/ja/System.Collections.NonGeneric.xml", "ref/dotnet/ko/System.Collections.NonGeneric.xml", "ref/dotnet/ru/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", "ref/dotnet/es/System.Collections.NonGeneric.xml", "ref/net46/System.Collections.NonGeneric.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.nuspec", "lib/dotnet/System.ComponentModel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.ComponentModel.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.ComponentModel.dll", "ref/dotnet/System.ComponentModel.xml", "ref/dotnet/zh-hant/System.ComponentModel.xml", "ref/dotnet/de/System.ComponentModel.xml", "ref/dotnet/fr/System.ComponentModel.xml", "ref/dotnet/it/System.ComponentModel.xml", "ref/dotnet/ja/System.ComponentModel.xml", "ref/dotnet/ko/System.ComponentModel.xml", "ref/dotnet/ru/System.ComponentModel.xml", "ref/dotnet/zh-hans/System.ComponentModel.xml", "ref/dotnet/es/System.ComponentModel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.ComponentModel.dll", "ref/netcore50/System.ComponentModel.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.Annotations.nuspec", "lib/dotnet/System.ComponentModel.Annotations.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.Annotations.dll", "ref/dotnet/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", "ref/dotnet/de/System.ComponentModel.Annotations.xml", "ref/dotnet/fr/System.ComponentModel.Annotations.xml", "ref/dotnet/it/System.ComponentModel.Annotations.xml", "ref/dotnet/ja/System.ComponentModel.Annotations.xml", "ref/dotnet/ko/System.ComponentModel.Annotations.xml", "ref/dotnet/ru/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", "ref/dotnet/es/System.ComponentModel.Annotations.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.EventBasedAsync.nuspec", "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", "[Content_Types].xml" ] }, "System.Console/4.0.0-beta-23412": { "sha512": "D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==", "type": "Package", "files": [ "_rels/.rels", "System.Console.nuspec", "lib/net46/System.Console.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Console.dll", "ref/dotnet/System.Console.xml", "ref/dotnet/zh-hant/System.Console.xml", "ref/dotnet/de/System.Console.xml", "ref/dotnet/fr/System.Console.xml", "ref/dotnet/it/System.Console.xml", "ref/dotnet/ja/System.Console.xml", "ref/dotnet/ko/System.Console.xml", "ref/dotnet/ru/System.Console.xml", "ref/dotnet/zh-hans/System.Console.xml", "ref/dotnet/es/System.Console.xml", "ref/net46/System.Console.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Contracts.nuspec", "lib/netcore50/System.Diagnostics.Contracts.dll", "lib/DNXCore50/System.Diagnostics.Contracts.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Contracts.dll", "ref/dotnet/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", "ref/dotnet/de/System.Diagnostics.Contracts.xml", "ref/dotnet/fr/System.Diagnostics.Contracts.xml", "ref/dotnet/it/System.Diagnostics.Contracts.xml", "ref/dotnet/ja/System.Diagnostics.Contracts.xml", "ref/dotnet/ko/System.Diagnostics.Contracts.xml", "ref/dotnet/ru/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", "ref/dotnet/es/System.Diagnostics.Contracts.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Contracts.dll", "ref/netcore50/System.Diagnostics.Contracts.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Debug.nuspec", "lib/DNXCore50/System.Diagnostics.Debug.dll", "lib/netcore50/System.Diagnostics.Debug.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Debug.dll", "ref/dotnet/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", "ref/dotnet/de/System.Diagnostics.Debug.xml", "ref/dotnet/fr/System.Diagnostics.Debug.xml", "ref/dotnet/it/System.Diagnostics.Debug.xml", "ref/dotnet/ja/System.Diagnostics.Debug.xml", "ref/dotnet/ko/System.Diagnostics.Debug.xml", "ref/dotnet/ru/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", "ref/dotnet/es/System.Diagnostics.Debug.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.StackTrace.nuspec", "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/netcore50/System.Diagnostics.StackTrace.dll", "lib/net46/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.StackTrace.dll", "ref/dotnet/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", "ref/dotnet/de/System.Diagnostics.StackTrace.xml", "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", "ref/dotnet/it/System.Diagnostics.StackTrace.xml", "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", "ref/dotnet/es/System.Diagnostics.StackTrace.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", "ref/net46/System.Diagnostics.StackTrace.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tools.nuspec", "lib/DNXCore50/System.Diagnostics.Tools.dll", "lib/netcore50/System.Diagnostics.Tools.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Tools.dll", "ref/dotnet/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", "ref/dotnet/de/System.Diagnostics.Tools.xml", "ref/dotnet/fr/System.Diagnostics.Tools.xml", "ref/dotnet/it/System.Diagnostics.Tools.xml", "ref/dotnet/ja/System.Diagnostics.Tools.xml", "ref/dotnet/ko/System.Diagnostics.Tools.xml", "ref/dotnet/ru/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", "ref/dotnet/es/System.Diagnostics.Tools.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Tools.dll", "ref/netcore50/System.Diagnostics.Tools.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tracing.nuspec", "lib/netcore50/System.Diagnostics.Tracing.dll", "lib/DNXCore50/System.Diagnostics.Tracing.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Tracing.dll", "ref/dotnet/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", "ref/dotnet/de/System.Diagnostics.Tracing.xml", "ref/dotnet/fr/System.Diagnostics.Tracing.xml", "ref/dotnet/it/System.Diagnostics.Tracing.xml", "ref/dotnet/ja/System.Diagnostics.Tracing.xml", "ref/dotnet/ko/System.Diagnostics.Tracing.xml", "ref/dotnet/ru/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", "ref/dotnet/es/System.Diagnostics.Tracing.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", "[Content_Types].xml" ] }, "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "Package", "files": [ "_rels/.rels", "System.Dynamic.Runtime.nuspec", "lib/netcore50/System.Dynamic.Runtime.dll", "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Dynamic.Runtime.dll", "ref/dotnet/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", "ref/dotnet/de/System.Dynamic.Runtime.xml", "ref/dotnet/fr/System.Dynamic.Runtime.xml", "ref/dotnet/it/System.Dynamic.Runtime.xml", "ref/dotnet/ja/System.Dynamic.Runtime.xml", "ref/dotnet/ko/System.Dynamic.Runtime.xml", "ref/dotnet/ru/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", "ref/dotnet/es/System.Dynamic.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", "[Content_Types].xml" ] }, "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.nuspec", "lib/netcore50/System.Globalization.dll", "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.dll", "ref/dotnet/System.Globalization.xml", "ref/dotnet/zh-hant/System.Globalization.xml", "ref/dotnet/de/System.Globalization.xml", "ref/dotnet/fr/System.Globalization.xml", "ref/dotnet/it/System.Globalization.xml", "ref/dotnet/ja/System.Globalization.xml", "ref/dotnet/ko/System.Globalization.xml", "ref/dotnet/ru/System.Globalization.xml", "ref/dotnet/zh-hans/System.Globalization.xml", "ref/dotnet/es/System.Globalization.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Calendars.nuspec", "lib/netcore50/System.Globalization.Calendars.dll", "lib/DNXCore50/System.Globalization.Calendars.dll", "lib/net46/System.Globalization.Calendars.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Calendars.dll", "ref/dotnet/System.Globalization.Calendars.xml", "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", "ref/dotnet/de/System.Globalization.Calendars.xml", "ref/dotnet/fr/System.Globalization.Calendars.xml", "ref/dotnet/it/System.Globalization.Calendars.xml", "ref/dotnet/ja/System.Globalization.Calendars.xml", "ref/dotnet/ko/System.Globalization.Calendars.xml", "ref/dotnet/ru/System.Globalization.Calendars.xml", "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", "ref/dotnet/es/System.Globalization.Calendars.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", "ref/net46/System.Globalization.Calendars.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Extensions.nuspec", "lib/dotnet/System.Globalization.Extensions.dll", "lib/net46/System.Globalization.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Extensions.dll", "ref/dotnet/System.Globalization.Extensions.xml", "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", "ref/dotnet/de/System.Globalization.Extensions.xml", "ref/dotnet/fr/System.Globalization.Extensions.xml", "ref/dotnet/it/System.Globalization.Extensions.xml", "ref/dotnet/ja/System.Globalization.Extensions.xml", "ref/dotnet/ko/System.Globalization.Extensions.xml", "ref/dotnet/ru/System.Globalization.Extensions.xml", "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", "ref/dotnet/es/System.Globalization.Extensions.xml", "ref/net46/System.Globalization.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", "[Content_Types].xml" ] }, "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.nuspec", "lib/netcore50/System.IO.dll", "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.dll", "ref/dotnet/System.IO.xml", "ref/dotnet/zh-hant/System.IO.xml", "ref/dotnet/de/System.IO.xml", "ref/dotnet/fr/System.IO.xml", "ref/dotnet/it/System.IO.xml", "ref/dotnet/ja/System.IO.xml", "ref/dotnet/ko/System.IO.xml", "ref/dotnet/ru/System.IO.xml", "ref/dotnet/zh-hans/System.IO.xml", "ref/dotnet/es/System.IO.xml", "runtimes/win8-aot/lib/netcore50/System.IO.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.nuspec", "lib/dotnet/System.IO.Compression.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.IO.Compression.dll", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.dll", "ref/dotnet/System.IO.Compression.xml", "ref/dotnet/zh-hant/System.IO.Compression.xml", "ref/dotnet/de/System.IO.Compression.xml", "ref/dotnet/fr/System.IO.Compression.xml", "ref/dotnet/it/System.IO.Compression.xml", "ref/dotnet/ja/System.IO.Compression.xml", "ref/dotnet/ko/System.IO.Compression.xml", "ref/dotnet/ru/System.IO.Compression.xml", "ref/dotnet/zh-hans/System.IO.Compression.xml", "ref/dotnet/es/System.IO.Compression.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.IO.Compression.dll", "ref/netcore50/System.IO.Compression.xml", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.Native-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.Native-x64.nuspec", "runtimes/win7-x64/native/System.IO.Compression.Native.dll", "runtimes/win10-x64/native/System.IO.Compression.Native.dll", "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.Native-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.Native-x86.nuspec", "runtimes/win7-x86/native/System.IO.Compression.Native.dll", "runtimes/win10-x86/native/System.IO.Compression.Native.dll", "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.ZipFile.nuspec", "lib/dotnet/System.IO.Compression.ZipFile.dll", "lib/net46/System.IO.Compression.ZipFile.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.ZipFile.dll", "ref/dotnet/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", "ref/dotnet/de/System.IO.Compression.ZipFile.xml", "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", "ref/dotnet/it/System.IO.Compression.ZipFile.xml", "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", "ref/dotnet/es/System.IO.Compression.ZipFile.xml", "ref/net46/System.IO.Compression.ZipFile.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.nuspec", "lib/DNXCore50/System.IO.FileSystem.dll", "lib/netcore50/System.IO.FileSystem.dll", "lib/net46/System.IO.FileSystem.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.dll", "ref/dotnet/System.IO.FileSystem.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.xml", "ref/dotnet/de/System.IO.FileSystem.xml", "ref/dotnet/fr/System.IO.FileSystem.xml", "ref/dotnet/it/System.IO.FileSystem.xml", "ref/dotnet/ja/System.IO.FileSystem.xml", "ref/dotnet/ko/System.IO.FileSystem.xml", "ref/dotnet/ru/System.IO.FileSystem.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.xml", "ref/dotnet/es/System.IO.FileSystem.xml", "ref/net46/System.IO.FileSystem.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.Primitives.nuspec", "lib/dotnet/System.IO.FileSystem.Primitives.dll", "lib/net46/System.IO.FileSystem.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.Primitives.dll", "ref/dotnet/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", "[Content_Types].xml" ] }, "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.UnmanagedMemoryStream.nuspec", "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", "lib/net46/System.IO.UnmanagedMemoryStream.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", "ref/net46/System.IO.UnmanagedMemoryStream.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", "[Content_Types].xml" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.dll", "ref/dotnet/System.Linq.xml", "ref/dotnet/zh-hant/System.Linq.xml", "ref/dotnet/de/System.Linq.xml", "ref/dotnet/fr/System.Linq.xml", "ref/dotnet/it/System.Linq.xml", "ref/dotnet/ja/System.Linq.xml", "ref/dotnet/ko/System.Linq.xml", "ref/dotnet/ru/System.Linq.xml", "ref/dotnet/zh-hans/System.Linq.xml", "ref/dotnet/es/System.Linq.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Expressions.nuspec", "lib/netcore50/System.Linq.Expressions.dll", "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Linq.Expressions.dll", "ref/dotnet/System.Linq.Expressions.xml", "ref/dotnet/zh-hant/System.Linq.Expressions.xml", "ref/dotnet/de/System.Linq.Expressions.xml", "ref/dotnet/fr/System.Linq.Expressions.xml", "ref/dotnet/it/System.Linq.Expressions.xml", "ref/dotnet/ja/System.Linq.Expressions.xml", "ref/dotnet/ko/System.Linq.Expressions.xml", "ref/dotnet/ru/System.Linq.Expressions.xml", "ref/dotnet/zh-hans/System.Linq.Expressions.xml", "ref/dotnet/es/System.Linq.Expressions.xml", "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Parallel.nuspec", "lib/dotnet/System.Linq.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Linq.Parallel.dll", "ref/dotnet/System.Linq.Parallel.xml", "ref/dotnet/zh-hant/System.Linq.Parallel.xml", "ref/dotnet/de/System.Linq.Parallel.xml", "ref/dotnet/fr/System.Linq.Parallel.xml", "ref/dotnet/it/System.Linq.Parallel.xml", "ref/dotnet/ja/System.Linq.Parallel.xml", "ref/dotnet/ko/System.Linq.Parallel.xml", "ref/dotnet/ru/System.Linq.Parallel.xml", "ref/dotnet/zh-hans/System.Linq.Parallel.xml", "ref/dotnet/es/System.Linq.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Parallel.dll", "ref/netcore50/System.Linq.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Queryable.nuspec", "lib/dotnet/System.Linq.Queryable.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Queryable.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.Queryable.dll", "ref/dotnet/System.Linq.Queryable.xml", "ref/dotnet/zh-hant/System.Linq.Queryable.xml", "ref/dotnet/de/System.Linq.Queryable.xml", "ref/dotnet/fr/System.Linq.Queryable.xml", "ref/dotnet/it/System.Linq.Queryable.xml", "ref/dotnet/ja/System.Linq.Queryable.xml", "ref/dotnet/ko/System.Linq.Queryable.xml", "ref/dotnet/ru/System.Linq.Queryable.xml", "ref/dotnet/zh-hans/System.Linq.Queryable.xml", "ref/dotnet/es/System.Linq.Queryable.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Queryable.dll", "ref/netcore50/System.Linq.Queryable.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", "[Content_Types].xml" ] }, "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Http.nuspec", "lib/netcore50/System.Net.Http.dll", "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", "lib/win8/_._", "lib/wpa81/_._", "ref/dotnet/System.Net.Http.dll", "ref/dotnet/System.Net.Http.xml", "ref/dotnet/zh-hant/System.Net.Http.xml", "ref/dotnet/de/System.Net.Http.xml", "ref/dotnet/fr/System.Net.Http.xml", "ref/dotnet/it/System.Net.Http.xml", "ref/dotnet/ja/System.Net.Http.xml", "ref/dotnet/ko/System.Net.Http.xml", "ref/dotnet/ru/System.Net.Http.xml", "ref/dotnet/zh-hans/System.Net.Http.xml", "ref/dotnet/es/System.Net.Http.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", "[Content_Types].xml" ] }, "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "Package", "files": [ "_rels/.rels", "System.Net.NetworkInformation.nuspec", "lib/netcore50/System.Net.NetworkInformation.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.NetworkInformation.dll", "ref/dotnet/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", "ref/dotnet/de/System.Net.NetworkInformation.xml", "ref/dotnet/fr/System.Net.NetworkInformation.xml", "ref/dotnet/it/System.Net.NetworkInformation.xml", "ref/dotnet/ja/System.Net.NetworkInformation.xml", "ref/dotnet/ko/System.Net.NetworkInformation.xml", "ref/dotnet/ru/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", "ref/dotnet/es/System.Net.NetworkInformation.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.NetworkInformation.dll", "ref/netcore50/System.Net.NetworkInformation.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", "[Content_Types].xml" ] }, "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Primitives.nuspec", "lib/netcore50/System.Net.Primitives.dll", "lib/DNXCore50/System.Net.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.Primitives.dll", "ref/dotnet/System.Net.Primitives.xml", "ref/dotnet/zh-hant/System.Net.Primitives.xml", "ref/dotnet/de/System.Net.Primitives.xml", "ref/dotnet/fr/System.Net.Primitives.xml", "ref/dotnet/it/System.Net.Primitives.xml", "ref/dotnet/ja/System.Net.Primitives.xml", "ref/dotnet/ko/System.Net.Primitives.xml", "ref/dotnet/ru/System.Net.Primitives.xml", "ref/dotnet/zh-hans/System.Net.Primitives.xml", "ref/dotnet/es/System.Net.Primitives.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", "[Content_Types].xml" ] }, "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "Package", "files": [ "_rels/.rels", "System.Numerics.Vectors.nuspec", "lib/dotnet/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", "[Content_Types].xml" ] }, "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "Package", "files": [ "_rels/.rels", "System.ObjectModel.nuspec", "lib/dotnet/System.ObjectModel.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ObjectModel.dll", "ref/dotnet/System.ObjectModel.xml", "ref/dotnet/zh-hant/System.ObjectModel.xml", "ref/dotnet/de/System.ObjectModel.xml", "ref/dotnet/fr/System.ObjectModel.xml", "ref/dotnet/it/System.ObjectModel.xml", "ref/dotnet/ja/System.ObjectModel.xml", "ref/dotnet/ko/System.ObjectModel.xml", "ref/dotnet/ru/System.ObjectModel.xml", "ref/dotnet/zh-hans/System.ObjectModel.xml", "ref/dotnet/es/System.ObjectModel.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", "[Content_Types].xml" ] }, "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Networking.nuspec", "lib/netcore50/System.Private.Networking.dll", "lib/DNXCore50/System.Private.Networking.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", "[Content_Types].xml" ] }, "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Uri.nuspec", "lib/netcore50/System.Private.Uri.dll", "lib/DNXCore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", "[Content_Types].xml" ] }, "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.nuspec", "lib/netcore50/System.Reflection.dll", "lib/DNXCore50/System.Reflection.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.dll", "ref/dotnet/System.Reflection.xml", "ref/dotnet/zh-hant/System.Reflection.xml", "ref/dotnet/de/System.Reflection.xml", "ref/dotnet/fr/System.Reflection.xml", "ref/dotnet/it/System.Reflection.xml", "ref/dotnet/ja/System.Reflection.xml", "ref/dotnet/ko/System.Reflection.xml", "ref/dotnet/ru/System.Reflection.xml", "ref/dotnet/zh-hans/System.Reflection.xml", "ref/dotnet/es/System.Reflection.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.DispatchProxy.nuspec", "lib/net46/System.Reflection.DispatchProxy.dll", "lib/DNXCore50/System.Reflection.DispatchProxy.dll", "lib/netcore50/System.Reflection.DispatchProxy.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.DispatchProxy.dll", "ref/dotnet/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", "ref/dotnet/de/System.Reflection.DispatchProxy.xml", "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", "ref/dotnet/it/System.Reflection.DispatchProxy.xml", "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", "ref/dotnet/es/System.Reflection.DispatchProxy.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.nuspec", "lib/DNXCore50/System.Reflection.Emit.dll", "lib/netcore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", "lib/net45/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.Emit.dll", "ref/dotnet/System.Reflection.Emit.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.xml", "ref/dotnet/de/System.Reflection.Emit.xml", "ref/dotnet/fr/System.Reflection.Emit.xml", "ref/dotnet/it/System.Reflection.Emit.xml", "ref/dotnet/ja/System.Reflection.Emit.xml", "ref/dotnet/ko/System.Reflection.Emit.xml", "ref/dotnet/ru/System.Reflection.Emit.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.xml", "ref/dotnet/es/System.Reflection.Emit.xml", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.ILGeneration.nuspec", "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.Lightweight.nuspec", "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.Lightweight.dll", "ref/dotnet/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Extensions.nuspec", "lib/netcore50/System.Reflection.Extensions.dll", "lib/DNXCore50/System.Reflection.Extensions.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Extensions.dll", "ref/dotnet/System.Reflection.Extensions.xml", "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", "ref/dotnet/de/System.Reflection.Extensions.xml", "ref/dotnet/fr/System.Reflection.Extensions.xml", "ref/dotnet/it/System.Reflection.Extensions.xml", "ref/dotnet/ja/System.Reflection.Extensions.xml", "ref/dotnet/ko/System.Reflection.Extensions.xml", "ref/dotnet/ru/System.Reflection.Extensions.xml", "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", "ref/dotnet/es/System.Reflection.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Extensions.dll", "ref/netcore50/System.Reflection.Extensions.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Metadata.nuspec", "lib/dotnet/System.Reflection.Metadata.dll", "lib/dotnet/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.dll", "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Primitives.nuspec", "lib/netcore50/System.Reflection.Primitives.dll", "lib/DNXCore50/System.Reflection.Primitives.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Primitives.dll", "ref/dotnet/System.Reflection.Primitives.xml", "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", "ref/dotnet/de/System.Reflection.Primitives.xml", "ref/dotnet/fr/System.Reflection.Primitives.xml", "ref/dotnet/it/System.Reflection.Primitives.xml", "ref/dotnet/ja/System.Reflection.Primitives.xml", "ref/dotnet/ko/System.Reflection.Primitives.xml", "ref/dotnet/ru/System.Reflection.Primitives.xml", "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", "ref/dotnet/es/System.Reflection.Primitives.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Primitives.dll", "ref/netcore50/System.Reflection.Primitives.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.TypeExtensions.nuspec", "lib/netcore50/System.Reflection.TypeExtensions.dll", "lib/DNXCore50/System.Reflection.TypeExtensions.dll", "lib/net46/System.Reflection.TypeExtensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.TypeExtensions.dll", "ref/dotnet/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", "ref/dotnet/de/System.Reflection.TypeExtensions.xml", "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", "ref/dotnet/it/System.Reflection.TypeExtensions.xml", "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", "ref/dotnet/es/System.Reflection.TypeExtensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", "ref/net46/System.Reflection.TypeExtensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", "[Content_Types].xml" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "Package", "files": [ "_rels/.rels", "System.Resources.ResourceManager.nuspec", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Resources.ResourceManager.dll", "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", "ref/dotnet/de/System.Resources.ResourceManager.xml", "ref/dotnet/fr/System.Resources.ResourceManager.xml", "ref/dotnet/it/System.Resources.ResourceManager.xml", "ref/dotnet/ja/System.Resources.ResourceManager.xml", "ref/dotnet/ko/System.Resources.ResourceManager.xml", "ref/dotnet/ru/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet/es/System.Resources.ResourceManager.xml", "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Resources.ResourceManager.dll", "ref/netcore50/System.Resources.ResourceManager.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", "[Content_Types].xml" ] }, "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.nuspec", "lib/netcore50/System.Runtime.dll", "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.dll", "ref/dotnet/System.Runtime.xml", "ref/dotnet/zh-hant/System.Runtime.xml", "ref/dotnet/de/System.Runtime.xml", "ref/dotnet/fr/System.Runtime.xml", "ref/dotnet/it/System.Runtime.xml", "ref/dotnet/ja/System.Runtime.xml", "ref/dotnet/ko/System.Runtime.xml", "ref/dotnet/ru/System.Runtime.xml", "ref/dotnet/zh-hans/System.Runtime.xml", "ref/dotnet/es/System.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Extensions.nuspec", "lib/netcore50/System.Runtime.Extensions.dll", "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Extensions.dll", "ref/dotnet/System.Runtime.Extensions.xml", "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", "ref/dotnet/de/System.Runtime.Extensions.xml", "ref/dotnet/fr/System.Runtime.Extensions.xml", "ref/dotnet/it/System.Runtime.Extensions.xml", "ref/dotnet/ja/System.Runtime.Extensions.xml", "ref/dotnet/ko/System.Runtime.Extensions.xml", "ref/dotnet/ru/System.Runtime.Extensions.xml", "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", "ref/dotnet/es/System.Runtime.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Handles.nuspec", "lib/DNXCore50/System.Runtime.Handles.dll", "lib/netcore50/System.Runtime.Handles.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Handles.dll", "ref/dotnet/System.Runtime.Handles.xml", "ref/dotnet/zh-hant/System.Runtime.Handles.xml", "ref/dotnet/de/System.Runtime.Handles.xml", "ref/dotnet/fr/System.Runtime.Handles.xml", "ref/dotnet/it/System.Runtime.Handles.xml", "ref/dotnet/ja/System.Runtime.Handles.xml", "ref/dotnet/ko/System.Runtime.Handles.xml", "ref/dotnet/ru/System.Runtime.Handles.xml", "ref/dotnet/zh-hans/System.Runtime.Handles.xml", "ref/dotnet/es/System.Runtime.Handles.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.InteropServices.nuspec", "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/netcore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.InteropServices.dll", "ref/dotnet/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", "ref/dotnet/de/System.Runtime.InteropServices.xml", "ref/dotnet/fr/System.Runtime.InteropServices.xml", "ref/dotnet/it/System.Runtime.InteropServices.xml", "ref/dotnet/ja/System.Runtime.InteropServices.xml", "ref/dotnet/ko/System.Runtime.InteropServices.xml", "ref/dotnet/ru/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", "ref/dotnet/es/System.Runtime.InteropServices.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Numerics.nuspec", "lib/dotnet/System.Runtime.Numerics.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Runtime.Numerics.dll", "lib/wpa81/_._", "ref/dotnet/System.Runtime.Numerics.dll", "ref/dotnet/System.Runtime.Numerics.xml", "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", "ref/dotnet/de/System.Runtime.Numerics.xml", "ref/dotnet/fr/System.Runtime.Numerics.xml", "ref/dotnet/it/System.Runtime.Numerics.xml", "ref/dotnet/ja/System.Runtime.Numerics.xml", "ref/dotnet/ko/System.Runtime.Numerics.xml", "ref/dotnet/ru/System.Runtime.Numerics.xml", "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", "ref/dotnet/es/System.Runtime.Numerics.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Runtime.Numerics.dll", "ref/netcore50/System.Runtime.Numerics.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", "[Content_Types].xml" ] }, "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Claims.nuspec", "lib/dotnet/System.Security.Claims.dll", "lib/net46/System.Security.Claims.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Security.Claims.dll", "ref/dotnet/System.Security.Claims.xml", "ref/dotnet/zh-hant/System.Security.Claims.xml", "ref/dotnet/de/System.Security.Claims.xml", "ref/dotnet/fr/System.Security.Claims.xml", "ref/dotnet/it/System.Security.Claims.xml", "ref/dotnet/ja/System.Security.Claims.xml", "ref/dotnet/ko/System.Security.Claims.xml", "ref/dotnet/ru/System.Security.Claims.xml", "ref/dotnet/zh-hans/System.Security.Claims.xml", "ref/dotnet/es/System.Security.Claims.xml", "ref/net46/System.Security.Claims.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", "[Content_Types].xml" ] }, "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Principal.nuspec", "lib/dotnet/System.Security.Principal.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Security.Principal.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Security.Principal.dll", "ref/dotnet/System.Security.Principal.xml", "ref/dotnet/zh-hant/System.Security.Principal.xml", "ref/dotnet/de/System.Security.Principal.xml", "ref/dotnet/fr/System.Security.Principal.xml", "ref/dotnet/it/System.Security.Principal.xml", "ref/dotnet/ja/System.Security.Principal.xml", "ref/dotnet/ko/System.Security.Principal.xml", "ref/dotnet/ru/System.Security.Principal.xml", "ref/dotnet/zh-hans/System.Security.Principal.xml", "ref/dotnet/es/System.Security.Principal.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Security.Principal.dll", "ref/netcore50/System.Security.Principal.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.nuspec", "lib/netcore50/System.Text.Encoding.dll", "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.dll", "ref/dotnet/System.Text.Encoding.xml", "ref/dotnet/zh-hant/System.Text.Encoding.xml", "ref/dotnet/de/System.Text.Encoding.xml", "ref/dotnet/fr/System.Text.Encoding.xml", "ref/dotnet/it/System.Text.Encoding.xml", "ref/dotnet/ja/System.Text.Encoding.xml", "ref/dotnet/ko/System.Text.Encoding.xml", "ref/dotnet/ru/System.Text.Encoding.xml", "ref/dotnet/zh-hans/System.Text.Encoding.xml", "ref/dotnet/es/System.Text.Encoding.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.Extensions.nuspec", "lib/netcore50/System.Text.Encoding.Extensions.dll", "lib/DNXCore50/System.Text.Encoding.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.Extensions.dll", "ref/dotnet/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", "ref/dotnet/de/System.Text.Encoding.Extensions.xml", "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", "ref/dotnet/it/System.Text.Encoding.Extensions.xml", "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", "ref/dotnet/es/System.Text.Encoding.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", "[Content_Types].xml" ] }, "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "Package", "files": [ "_rels/.rels", "System.Text.RegularExpressions.nuspec", "lib/dotnet/System.Text.RegularExpressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.RegularExpressions.dll", "ref/dotnet/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", "ref/dotnet/de/System.Text.RegularExpressions.xml", "ref/dotnet/fr/System.Text.RegularExpressions.xml", "ref/dotnet/it/System.Text.RegularExpressions.xml", "ref/dotnet/ja/System.Text.RegularExpressions.xml", "ref/dotnet/ko/System.Text.RegularExpressions.xml", "ref/dotnet/ru/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", "ref/dotnet/es/System.Text.RegularExpressions.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", "[Content_Types].xml" ] }, "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.nuspec", "lib/DNXCore50/System.Threading.dll", "lib/netcore50/System.Threading.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.dll", "ref/dotnet/System.Threading.xml", "ref/dotnet/zh-hant/System.Threading.xml", "ref/dotnet/de/System.Threading.xml", "ref/dotnet/fr/System.Threading.xml", "ref/dotnet/it/System.Threading.xml", "ref/dotnet/ja/System.Threading.xml", "ref/dotnet/ko/System.Threading.xml", "ref/dotnet/ru/System.Threading.xml", "ref/dotnet/zh-hans/System.Threading.xml", "ref/dotnet/es/System.Threading.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Overlapped.nuspec", "lib/netcore50/System.Threading.Overlapped.dll", "lib/DNXCore50/System.Threading.Overlapped.dll", "lib/net46/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.xml", "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", "ref/dotnet/de/System.Threading.Overlapped.xml", "ref/dotnet/fr/System.Threading.Overlapped.xml", "ref/dotnet/it/System.Threading.Overlapped.xml", "ref/dotnet/ja/System.Threading.Overlapped.xml", "ref/dotnet/ko/System.Threading.Overlapped.xml", "ref/dotnet/ru/System.Threading.Overlapped.xml", "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", "ref/dotnet/es/System.Threading.Overlapped.xml", "ref/net46/System.Threading.Overlapped.dll", "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.nuspec", "lib/netcore50/System.Threading.Tasks.dll", "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.Tasks.dll", "ref/dotnet/System.Threading.Tasks.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.xml", "ref/dotnet/de/System.Threading.Tasks.xml", "ref/dotnet/fr/System.Threading.Tasks.xml", "ref/dotnet/it/System.Threading.Tasks.xml", "ref/dotnet/ja/System.Threading.Tasks.xml", "ref/dotnet/ko/System.Threading.Tasks.xml", "ref/dotnet/ru/System.Threading.Tasks.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.xml", "ref/dotnet/es/System.Threading.Tasks.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Dataflow.nuspec", "lib/dotnet/System.Threading.Tasks.Dataflow.dll", "lib/dotnet/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Parallel.nuspec", "lib/dotnet/System.Threading.Tasks.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Threading.Tasks.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Threading.Tasks.Parallel.dll", "ref/dotnet/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Threading.Tasks.Parallel.dll", "ref/netcore50/System.Threading.Tasks.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Timer.nuspec", "lib/netcore50/System.Threading.Timer.dll", "lib/DNXCore50/System.Threading.Timer.dll", "lib/net451/_._", "lib/win81/_._", "lib/wpa81/_._", "ref/dotnet/System.Threading.Timer.dll", "ref/dotnet/System.Threading.Timer.xml", "ref/dotnet/zh-hant/System.Threading.Timer.xml", "ref/dotnet/de/System.Threading.Timer.xml", "ref/dotnet/fr/System.Threading.Timer.xml", "ref/dotnet/it/System.Threading.Timer.xml", "ref/dotnet/ja/System.Threading.Timer.xml", "ref/dotnet/ko/System.Threading.Timer.xml", "ref/dotnet/ru/System.Threading.Timer.xml", "ref/dotnet/zh-hans/System.Threading.Timer.xml", "ref/dotnet/es/System.Threading.Timer.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", "ref/net451/_._", "ref/win81/_._", "ref/netcore50/System.Threading.Timer.dll", "ref/netcore50/System.Threading.Timer.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", "[Content_Types].xml" ] }, "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.ReaderWriter.nuspec", "lib/dotnet/System.Xml.ReaderWriter.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.ReaderWriter.dll", "ref/dotnet/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", "ref/dotnet/de/System.Xml.ReaderWriter.xml", "ref/dotnet/fr/System.Xml.ReaderWriter.xml", "ref/dotnet/it/System.Xml.ReaderWriter.xml", "ref/dotnet/ja/System.Xml.ReaderWriter.xml", "ref/dotnet/ko/System.Xml.ReaderWriter.xml", "ref/dotnet/ru/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", "ref/dotnet/es/System.Xml.ReaderWriter.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", "[Content_Types].xml" ] }, "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.XDocument.nuspec", "lib/dotnet/System.Xml.XDocument.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.XDocument.dll", "ref/dotnet/System.Xml.XDocument.xml", "ref/dotnet/zh-hant/System.Xml.XDocument.xml", "ref/dotnet/de/System.Xml.XDocument.xml", "ref/dotnet/fr/System.Xml.XDocument.xml", "ref/dotnet/it/System.Xml.XDocument.xml", "ref/dotnet/ja/System.Xml.XDocument.xml", "ref/dotnet/ko/System.Xml.XDocument.xml", "ref/dotnet/ru/System.Xml.XDocument.xml", "ref/dotnet/zh-hans/System.Xml.XDocument.xml", "ref/dotnet/es/System.Xml.XDocument.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", "[Content_Types].xml" ] } }, "projectFileDependencyGroups": { "": [ "Microsoft.NETCore >= 5.0.0", "System.Console >= 4.0.0-beta-23412", "Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123", "Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0" ], "DNXCore,Version=v5.0": [] }} + { "locked": false, "version": 1, "targets": { "DNXCore,Version=v5.0": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.NetworkInformation/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.NetworkInformation.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x64": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "native": { "runtimes/win7-x64/native/CoreConsole.exe": {} } }, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} }, "native": { "runtimes/win7-x64/native/clretwrc.dll": {}, "runtimes/win7-x64/native/coreclr.dll": {}, "runtimes/win7-x64/native/dbgshim.dll": {}, "runtimes/win7-x64/native/mscordaccore.dll": {}, "runtimes/win7-x64/native/mscordbi.dll": {}, "runtimes/win7-x64/native/mscorrc.debug.dll": {}, "runtimes/win7-x64/native/mscorrc.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.clrcompression-x64/4.0.0": { "native": { "runtimes/win7-x64/native/clrcompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } }, "DNXCore,Version=v5.0/win7-x86": { "Microsoft.CSharp/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Linq.Expressions": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.CSharp.dll": {} }, "runtime": { "lib/dotnet/Microsoft.CSharp.dll": {} } }, "Microsoft.NETCore/5.0.0": { "dependencies": { "Microsoft.CSharp": "[4.0.0, )", "Microsoft.VisualBasic": "[10.0.0, )", "System.AppContext": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Collections.Immutable": "[1.1.37, )", "System.ComponentModel": "[4.0.0, )", "System.ComponentModel.Annotations": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Diagnostics.Tools": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Globalization.Calendars": "[4.0.0, )", "System.Globalization.Extensions": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.IO.Compression": "[4.0.0, )", "System.IO.Compression.ZipFile": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.UnmanagedMemoryStream": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq.Parallel": "[4.0.0, )", "System.Linq.Queryable": "[4.0.0, )", "System.Net.NetworkInformation": "[4.0.0, )", "System.Net.Http": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Numerics.Vectors": "[4.1.0, )", "System.ObjectModel": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Reflection.DispatchProxy": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection.Metadata": "[1.0.22, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Runtime.Handles": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Runtime.Numerics": "[4.0.0, )", "System.Security.Claims": "[4.0.0, )", "System.Security.Principal": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Threading.Tasks.Dataflow": "[4.5.25, )", "System.Threading.Tasks.Parallel": "[4.0.0, )", "System.Threading.Timer": "[4.0.0, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Xml.XDocument": "[4.0.10, )", "Microsoft.NETCore.Targets": "[1.0.0, )" } }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": {}, "Microsoft.NETCore.Platforms/1.0.0": {}, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "dependencies": { "System.Collections": "[4.0.10, 4.0.10]", "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", "System.Globalization": "[4.0.10, 4.0.10]", "System.IO": "[4.0.10, 4.0.10]", "System.ObjectModel": "[4.0.10, 4.0.10]", "System.Reflection": "[4.0.10, 4.0.10]", "System.Runtime.Extensions": "[4.0.10, 4.0.10]", "System.Text.Encoding": "[4.0.10, 4.0.10]", "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", "System.Threading": "[4.0.10, 4.0.10]", "System.Threading.Tasks": "[4.0.10, 4.0.10]", "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", "System.Globalization.Calendars": "[4.0.0, 4.0.0]", "System.Reflection.Extensions": "[4.0.0, 4.0.0]", "System.Reflection.Primitives": "[4.0.0, 4.0.0]", "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", "System.Runtime.Handles": "[4.0.0, 4.0.0]", "System.Threading.Timer": "[4.0.0, 4.0.0]", "System.Private.Uri": "[4.0.0, 4.0.0]", "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", "System.Runtime": "[4.0.20, 4.0.20]", "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} } }, "Microsoft.NETCore.Targets/1.0.0": { "dependencies": { "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", "Microsoft.NETCore.Platforms": "[1.0.0, )" } }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, "Microsoft.VisualBasic/10.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Dynamic.Runtime": "[4.0.10, )", "System.Linq.Expressions": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.ObjectModel": "[4.0.10, )" }, "compile": { "ref/dotnet/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/dotnet/Microsoft.VisualBasic.dll": {} } }, "Microsoft.Win32.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )" }, "compile": { "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} } }, "runtime.win7.System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/_._": {} }, "runtime": { "runtimes/win7/lib/dotnet/System.Console.dll": {} } }, "System.AppContext/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/DNXCore50/System.AppContext.dll": {} } }, "System.Collections/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/DNXCore50/System.Collections.dll": {} } }, "System.Collections.Concurrent/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} } }, "System.Collections.Immutable/1.1.37": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Globalization": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} } }, "System.ComponentModel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.ComponentModel.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.dll": {} } }, "System.ComponentModel.Annotations/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.ComponentModel": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} } }, "System.ComponentModel.EventBasedAsync/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Threading": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} } }, "System.Console/4.0.0-beta-23412": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Console.dll": {} } }, "System.Diagnostics.Contracts/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} } }, "System.Diagnostics.Debug/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Debug.dll": {} } }, "System.Diagnostics.StackTrace/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} } }, "System.Diagnostics.Tools/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.Tracing/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Linq.Expressions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Dynamic.Runtime.dll": {} } }, "System.Globalization/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.dll": {} } }, "System.Globalization.Calendars/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/DNXCore50/System.Globalization.Calendars.dll": {} } }, "System.Globalization.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} } }, "System.IO/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.dll": {} } }, "System.IO.Compression/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )" }, "compile": { "ref/dotnet/System.IO.Compression.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.dll": {} } }, "System.IO.Compression.clrcompression-x86/4.0.0": { "native": { "runtimes/win7-x86/native/clrcompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO.Compression": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} } }, "System.IO.FileSystem/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/DNXCore50/System.IO.FileSystem.dll": {} } }, "System.IO.FileSystem.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} } }, "System.IO.UnmanagedMemoryStream/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} } }, "System.Linq/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.dll": {} }, "runtime": { "lib/dotnet/System.Linq.dll": {} } }, "System.Linq.Expressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.TypeExtensions": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Reflection.Emit": "[4.0.0, )", "System.ObjectModel": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/DNXCore50/System.Linq.Expressions.dll": {} } }, "System.Linq.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Threading": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Parallel.dll": {} } }, "System.Linq.Queryable/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Linq.Expressions": "[4.0.10, )", "System.Linq": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Linq.Queryable.dll": {} }, "runtime": { "lib/dotnet/System.Linq.Queryable.dll": {} } }, "System.Net.Http/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.Compression": "[4.0.0, )", "System.Net.Primitives": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Net.Http.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Http.dll": {} } }, "System.Net.Primitives/4.0.10": { "dependencies": { "System.Private.Networking": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Net.Primitives.dll": {} } }, "System.Numerics.Vectors/4.1.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Numerics.Vectors.dll": {} }, "runtime": { "lib/dotnet/System.Numerics.Vectors.dll": {} } }, "System.ObjectModel/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} } }, "System.Private.Networking/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections.NonGeneric": "[4.0.0, )", "Microsoft.Win32.Primitives": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.Threading.Overlapped": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.ComponentModel.EventBasedAsync": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )" }, "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Networking.dll": {} } }, "System.Private.Uri/4.0.0": { "compile": { "ref/dnxcore50/_._": {} }, "runtime": { "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.dll": {} } }, "System.Reflection.DispatchProxy/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Reflection": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} } }, "System.Reflection.Emit/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.dll": {} } }, "System.Reflection.Emit.ILGeneration/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} } }, "System.Reflection.Emit.Lightweight/4.0.0": { "dependencies": { "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime": "[4.0.0, )", "System.Reflection.Emit.ILGeneration": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} } }, "System.Reflection.Extensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Extensions.dll": {} } }, "System.Reflection.Metadata/1.0.22": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Text.Encoding": "[4.0.0, )", "System.Runtime.InteropServices": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Text.Encoding.Extensions": "[4.0.0, )", "System.Reflection.Extensions": "[4.0.0, )", "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} } }, "System.Resources.ResourceManager/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Globalization": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, "System.Runtime/4.0.20": { "dependencies": { "System.Private.Uri": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )" }, "compile": { "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Extensions.dll": {} } }, "System.Runtime.Handles/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.Handles.dll": {} } }, "System.Runtime.InteropServices/4.0.20": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Reflection": "[4.0.0, )", "System.Reflection.Primitives": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.InteropServices.dll": {} } }, "System.Runtime.Numerics/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Numerics.dll": {} } }, "System.Security.Claims/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Security.Principal": "[4.0.0, )", "System.IO": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Globalization": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} } }, "System.Security.Principal/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Security.Principal.dll": {} }, "runtime": { "lib/dotnet/System.Security.Principal.dll": {} } }, "System.Text.Encoding/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.dll": {} } }, "System.Text.Encoding.Extensions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Text.Encoding": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} } }, "System.Text.RegularExpressions/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Threading": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} } }, "System.Threading/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.dll": {} } }, "System.Threading.Overlapped/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Runtime.Handles": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Overlapped.dll": {} } }, "System.Threading.Tasks/4.0.10": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Tasks.dll": {} } }, "System.Threading.Tasks.Dataflow/4.5.25": { "dependencies": { "System.Runtime": "[4.0.0, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.0, )", "System.Collections.Concurrent": "[4.0.0, )", "System.Collections": "[4.0.0, )", "System.Threading.Tasks": "[4.0.0, )", "System.Dynamic.Runtime": "[4.0.0, )", "System.Diagnostics.Tracing": "[4.0.0, )", "System.Threading": "[4.0.0, )", "System.Linq": "[4.0.0, )", "System.Runtime.Extensions": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Collections.Concurrent": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Diagnostics.Tracing": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} } }, "System.Threading.Timer/4.0.0": { "dependencies": { "System.Runtime": "[4.0.0, )" }, "compile": { "ref/dotnet/System.Threading.Timer.dll": {} }, "runtime": { "lib/DNXCore50/System.Threading.Timer.dll": {} } }, "System.Xml.ReaderWriter/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.Text.Encoding": "[4.0.10, )", "System.IO": "[4.0.10, )", "System.Threading.Tasks": "[4.0.10, )", "System.Runtime.InteropServices": "[4.0.20, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.IO.FileSystem": "[4.0.0, )", "System.IO.FileSystem.Primitives": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Text.RegularExpressions": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Text.Encoding.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} } }, "System.Xml.XDocument/4.0.10": { "dependencies": { "System.Runtime": "[4.0.20, )", "System.IO": "[4.0.10, )", "System.Xml.ReaderWriter": "[4.0.10, )", "System.Resources.ResourceManager": "[4.0.0, )", "System.Diagnostics.Debug": "[4.0.10, )", "System.Collections": "[4.0.10, )", "System.Globalization": "[4.0.10, )", "System.Threading": "[4.0.10, )", "System.Text.Encoding": "[4.0.10, )", "System.Reflection": "[4.0.10, )", "System.Runtime.Extensions": "[4.0.10, )" }, "compile": { "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} } } } }, "libraries": { "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.CSharp.nuspec", "lib/dotnet/Microsoft.CSharp.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.CSharp.dll", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.CSharp.dll", "ref/dotnet/Microsoft.CSharp.xml", "ref/dotnet/zh-hant/Microsoft.CSharp.xml", "ref/dotnet/de/Microsoft.CSharp.xml", "ref/dotnet/fr/Microsoft.CSharp.xml", "ref/dotnet/it/Microsoft.CSharp.xml", "ref/dotnet/ja/Microsoft.CSharp.xml", "ref/dotnet/ko/Microsoft.CSharp.xml", "ref/dotnet/ru/Microsoft.CSharp.xml", "ref/dotnet/zh-hans/Microsoft.CSharp.xml", "ref/dotnet/es/Microsoft.CSharp.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.CSharp.dll", "ref/netcore50/Microsoft.CSharp.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.nuspec", "_._", "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.ConsoleHost-x64/1.0.0-beta-23123": { "sha512": "Bq6Sqh09U0QHr5ChANjNohF00IPYkSNOQdTISYFNEzol7tMmuQZGP5uYmyLcDYM+yQjP46D6uAm5oafcYppp9g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.ConsoleHost-x64.nuspec", "runtimes/win7-x64/native/CoreConsole.exe", "package/services/metadata/core-properties/d400f5bab3104fb6a2725630c83a005c.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Platforms.nuspec", "runtime.json", "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", "runtimes/win7-x64/native/clretwrc.dll", "runtimes/win7-x64/native/coreclr.dll", "runtimes/win7-x64/native/dbgshim.dll", "runtimes/win7-x64/native/mscordaccore.dll", "runtimes/win7-x64/native/mscordbi.dll", "runtimes/win7-x64/native/mscorrc.debug.dll", "runtimes/win7-x64/native/mscorrc.dll", "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.nuspec", "runtime.json", "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", "[Content_Types].xml" ] }, "Microsoft.NETCore.Targets.DNXCore/4.9.0": { "sha512": "32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.NETCore.Targets.DNXCore.nuspec", "runtime.json", "package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp", "[Content_Types].xml" ] }, "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.VisualBasic.nuspec", "lib/dotnet/Microsoft.VisualBasic.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/Microsoft.VisualBasic.dll", "lib/wpa81/_._", "ref/dotnet/Microsoft.VisualBasic.dll", "ref/dotnet/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", "ref/dotnet/de/Microsoft.VisualBasic.xml", "ref/dotnet/fr/Microsoft.VisualBasic.xml", "ref/dotnet/it/Microsoft.VisualBasic.xml", "ref/dotnet/ja/Microsoft.VisualBasic.xml", "ref/dotnet/ko/Microsoft.VisualBasic.xml", "ref/dotnet/ru/Microsoft.VisualBasic.xml", "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", "ref/dotnet/es/Microsoft.VisualBasic.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/Microsoft.VisualBasic.dll", "ref/netcore50/Microsoft.VisualBasic.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", "[Content_Types].xml" ] }, "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "Package", "files": [ "_rels/.rels", "Microsoft.Win32.Primitives.nuspec", "lib/dotnet/Microsoft.Win32.Primitives.dll", "lib/net46/Microsoft.Win32.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/Microsoft.Win32.Primitives.dll", "ref/dotnet/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", "ref/dotnet/de/Microsoft.Win32.Primitives.xml", "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", "ref/dotnet/it/Microsoft.Win32.Primitives.xml", "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", "ref/dotnet/es/Microsoft.Win32.Primitives.xml", "ref/net46/Microsoft.Win32.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", "[Content_Types].xml" ] }, "runtime.win7.System.Console/4.0.0-beta-23412": { "sha512": "j85DtZB6e9eE8V6hVGqU3hgL8dtxwyhyK3vL1EjfemRoL0yx4fcq4rZWH3lTRYeVLawhafIfHIX7GmuTmymumg==", "type": "Package", "files": [ "_rels/.rels", "runtime.win7.System.Console.nuspec", "runtimes/win7/lib/dotnet/System.Console.dll", "ref/dotnet/_._", "package/services/metadata/core-properties/1c6f215c91c54c408f839ca2ce1e0edf.psmdcp", "[Content_Types].xml" ] }, "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "Package", "files": [ "_rels/.rels", "System.AppContext.nuspec", "lib/netcore50/System.AppContext.dll", "lib/DNXCore50/System.AppContext.dll", "lib/net46/System.AppContext.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.AppContext.dll", "ref/dotnet/System.AppContext.xml", "ref/dotnet/zh-hant/System.AppContext.xml", "ref/dotnet/de/System.AppContext.xml", "ref/dotnet/fr/System.AppContext.xml", "ref/dotnet/it/System.AppContext.xml", "ref/dotnet/ja/System.AppContext.xml", "ref/dotnet/ko/System.AppContext.xml", "ref/dotnet/ru/System.AppContext.xml", "ref/dotnet/zh-hans/System.AppContext.xml", "ref/dotnet/es/System.AppContext.xml", "ref/net46/System.AppContext.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", "[Content_Types].xml" ] }, "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.nuspec", "lib/netcore50/System.Collections.dll", "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.dll", "ref/dotnet/System.Collections.xml", "ref/dotnet/zh-hant/System.Collections.xml", "ref/dotnet/de/System.Collections.xml", "ref/dotnet/fr/System.Collections.xml", "ref/dotnet/it/System.Collections.xml", "ref/dotnet/ja/System.Collections.xml", "ref/dotnet/ko/System.Collections.xml", "ref/dotnet/ru/System.Collections.xml", "ref/dotnet/zh-hans/System.Collections.xml", "ref/dotnet/es/System.Collections.xml", "runtimes/win8-aot/lib/netcore50/System.Collections.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Concurrent.nuspec", "lib/dotnet/System.Collections.Concurrent.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.Concurrent.dll", "ref/dotnet/System.Collections.Concurrent.xml", "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", "ref/dotnet/de/System.Collections.Concurrent.xml", "ref/dotnet/fr/System.Collections.Concurrent.xml", "ref/dotnet/it/System.Collections.Concurrent.xml", "ref/dotnet/ja/System.Collections.Concurrent.xml", "ref/dotnet/ko/System.Collections.Concurrent.xml", "ref/dotnet/ru/System.Collections.Concurrent.xml", "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", "ref/dotnet/es/System.Collections.Concurrent.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", "[Content_Types].xml" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", "[Content_Types].xml" ] }, "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "Package", "files": [ "_rels/.rels", "System.Collections.NonGeneric.nuspec", "lib/dotnet/System.Collections.NonGeneric.dll", "lib/net46/System.Collections.NonGeneric.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Collections.NonGeneric.dll", "ref/dotnet/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", "ref/dotnet/de/System.Collections.NonGeneric.xml", "ref/dotnet/fr/System.Collections.NonGeneric.xml", "ref/dotnet/it/System.Collections.NonGeneric.xml", "ref/dotnet/ja/System.Collections.NonGeneric.xml", "ref/dotnet/ko/System.Collections.NonGeneric.xml", "ref/dotnet/ru/System.Collections.NonGeneric.xml", "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", "ref/dotnet/es/System.Collections.NonGeneric.xml", "ref/net46/System.Collections.NonGeneric.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.nuspec", "lib/dotnet/System.ComponentModel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.ComponentModel.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.ComponentModel.dll", "ref/dotnet/System.ComponentModel.xml", "ref/dotnet/zh-hant/System.ComponentModel.xml", "ref/dotnet/de/System.ComponentModel.xml", "ref/dotnet/fr/System.ComponentModel.xml", "ref/dotnet/it/System.ComponentModel.xml", "ref/dotnet/ja/System.ComponentModel.xml", "ref/dotnet/ko/System.ComponentModel.xml", "ref/dotnet/ru/System.ComponentModel.xml", "ref/dotnet/zh-hans/System.ComponentModel.xml", "ref/dotnet/es/System.ComponentModel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.ComponentModel.dll", "ref/netcore50/System.ComponentModel.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.Annotations.nuspec", "lib/dotnet/System.ComponentModel.Annotations.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.Annotations.dll", "ref/dotnet/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", "ref/dotnet/de/System.ComponentModel.Annotations.xml", "ref/dotnet/fr/System.ComponentModel.Annotations.xml", "ref/dotnet/it/System.ComponentModel.Annotations.xml", "ref/dotnet/ja/System.ComponentModel.Annotations.xml", "ref/dotnet/ko/System.ComponentModel.Annotations.xml", "ref/dotnet/ru/System.ComponentModel.Annotations.xml", "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", "ref/dotnet/es/System.ComponentModel.Annotations.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", "[Content_Types].xml" ] }, "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "Package", "files": [ "_rels/.rels", "System.ComponentModel.EventBasedAsync.nuspec", "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", "[Content_Types].xml" ] }, "System.Console/4.0.0-beta-23412": { "sha512": "D/Pk2kfWvaleX6Fj/YOelUieW1uOD+oS0gesfvjqA6cIolxJJZ1fBRBdXsI7LeTIEc4tGRle08/gKJNkZcDPtA==", "type": "Package", "files": [ "_rels/.rels", "System.Console.nuspec", "lib/net46/System.Console.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Console.dll", "ref/dotnet/System.Console.xml", "ref/dotnet/zh-hant/System.Console.xml", "ref/dotnet/de/System.Console.xml", "ref/dotnet/fr/System.Console.xml", "ref/dotnet/it/System.Console.xml", "ref/dotnet/ja/System.Console.xml", "ref/dotnet/ko/System.Console.xml", "ref/dotnet/ru/System.Console.xml", "ref/dotnet/zh-hans/System.Console.xml", "ref/dotnet/es/System.Console.xml", "ref/net46/System.Console.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/045d008a96934ba5ba07bb5d63e725b3.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Contracts.nuspec", "lib/netcore50/System.Diagnostics.Contracts.dll", "lib/DNXCore50/System.Diagnostics.Contracts.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Contracts.dll", "ref/dotnet/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", "ref/dotnet/de/System.Diagnostics.Contracts.xml", "ref/dotnet/fr/System.Diagnostics.Contracts.xml", "ref/dotnet/it/System.Diagnostics.Contracts.xml", "ref/dotnet/ja/System.Diagnostics.Contracts.xml", "ref/dotnet/ko/System.Diagnostics.Contracts.xml", "ref/dotnet/ru/System.Diagnostics.Contracts.xml", "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", "ref/dotnet/es/System.Diagnostics.Contracts.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Contracts.dll", "ref/netcore50/System.Diagnostics.Contracts.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Debug.nuspec", "lib/DNXCore50/System.Diagnostics.Debug.dll", "lib/netcore50/System.Diagnostics.Debug.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Debug.dll", "ref/dotnet/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", "ref/dotnet/de/System.Diagnostics.Debug.xml", "ref/dotnet/fr/System.Diagnostics.Debug.xml", "ref/dotnet/it/System.Diagnostics.Debug.xml", "ref/dotnet/ja/System.Diagnostics.Debug.xml", "ref/dotnet/ko/System.Diagnostics.Debug.xml", "ref/dotnet/ru/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", "ref/dotnet/es/System.Diagnostics.Debug.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.StackTrace.nuspec", "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/netcore50/System.Diagnostics.StackTrace.dll", "lib/net46/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.StackTrace.dll", "ref/dotnet/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", "ref/dotnet/de/System.Diagnostics.StackTrace.xml", "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", "ref/dotnet/it/System.Diagnostics.StackTrace.xml", "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", "ref/dotnet/es/System.Diagnostics.StackTrace.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", "ref/net46/System.Diagnostics.StackTrace.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tools.nuspec", "lib/DNXCore50/System.Diagnostics.Tools.dll", "lib/netcore50/System.Diagnostics.Tools.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Diagnostics.Tools.dll", "ref/dotnet/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", "ref/dotnet/de/System.Diagnostics.Tools.xml", "ref/dotnet/fr/System.Diagnostics.Tools.xml", "ref/dotnet/it/System.Diagnostics.Tools.xml", "ref/dotnet/ja/System.Diagnostics.Tools.xml", "ref/dotnet/ko/System.Diagnostics.Tools.xml", "ref/dotnet/ru/System.Diagnostics.Tools.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", "ref/dotnet/es/System.Diagnostics.Tools.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Diagnostics.Tools.dll", "ref/netcore50/System.Diagnostics.Tools.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", "[Content_Types].xml" ] }, "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "Package", "files": [ "_rels/.rels", "System.Diagnostics.Tracing.nuspec", "lib/netcore50/System.Diagnostics.Tracing.dll", "lib/DNXCore50/System.Diagnostics.Tracing.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Diagnostics.Tracing.dll", "ref/dotnet/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", "ref/dotnet/de/System.Diagnostics.Tracing.xml", "ref/dotnet/fr/System.Diagnostics.Tracing.xml", "ref/dotnet/it/System.Diagnostics.Tracing.xml", "ref/dotnet/ja/System.Diagnostics.Tracing.xml", "ref/dotnet/ko/System.Diagnostics.Tracing.xml", "ref/dotnet/ru/System.Diagnostics.Tracing.xml", "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", "ref/dotnet/es/System.Diagnostics.Tracing.xml", "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", "[Content_Types].xml" ] }, "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "Package", "files": [ "_rels/.rels", "System.Dynamic.Runtime.nuspec", "lib/netcore50/System.Dynamic.Runtime.dll", "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Dynamic.Runtime.dll", "ref/dotnet/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", "ref/dotnet/de/System.Dynamic.Runtime.xml", "ref/dotnet/fr/System.Dynamic.Runtime.xml", "ref/dotnet/it/System.Dynamic.Runtime.xml", "ref/dotnet/ja/System.Dynamic.Runtime.xml", "ref/dotnet/ko/System.Dynamic.Runtime.xml", "ref/dotnet/ru/System.Dynamic.Runtime.xml", "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", "ref/dotnet/es/System.Dynamic.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", "[Content_Types].xml" ] }, "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.nuspec", "lib/netcore50/System.Globalization.dll", "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.dll", "ref/dotnet/System.Globalization.xml", "ref/dotnet/zh-hant/System.Globalization.xml", "ref/dotnet/de/System.Globalization.xml", "ref/dotnet/fr/System.Globalization.xml", "ref/dotnet/it/System.Globalization.xml", "ref/dotnet/ja/System.Globalization.xml", "ref/dotnet/ko/System.Globalization.xml", "ref/dotnet/ru/System.Globalization.xml", "ref/dotnet/zh-hans/System.Globalization.xml", "ref/dotnet/es/System.Globalization.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Calendars.nuspec", "lib/netcore50/System.Globalization.Calendars.dll", "lib/DNXCore50/System.Globalization.Calendars.dll", "lib/net46/System.Globalization.Calendars.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Calendars.dll", "ref/dotnet/System.Globalization.Calendars.xml", "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", "ref/dotnet/de/System.Globalization.Calendars.xml", "ref/dotnet/fr/System.Globalization.Calendars.xml", "ref/dotnet/it/System.Globalization.Calendars.xml", "ref/dotnet/ja/System.Globalization.Calendars.xml", "ref/dotnet/ko/System.Globalization.Calendars.xml", "ref/dotnet/ru/System.Globalization.Calendars.xml", "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", "ref/dotnet/es/System.Globalization.Calendars.xml", "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", "ref/net46/System.Globalization.Calendars.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", "[Content_Types].xml" ] }, "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "Package", "files": [ "_rels/.rels", "System.Globalization.Extensions.nuspec", "lib/dotnet/System.Globalization.Extensions.dll", "lib/net46/System.Globalization.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Globalization.Extensions.dll", "ref/dotnet/System.Globalization.Extensions.xml", "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", "ref/dotnet/de/System.Globalization.Extensions.xml", "ref/dotnet/fr/System.Globalization.Extensions.xml", "ref/dotnet/it/System.Globalization.Extensions.xml", "ref/dotnet/ja/System.Globalization.Extensions.xml", "ref/dotnet/ko/System.Globalization.Extensions.xml", "ref/dotnet/ru/System.Globalization.Extensions.xml", "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", "ref/dotnet/es/System.Globalization.Extensions.xml", "ref/net46/System.Globalization.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", "[Content_Types].xml" ] }, "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.nuspec", "lib/netcore50/System.IO.dll", "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.dll", "ref/dotnet/System.IO.xml", "ref/dotnet/zh-hant/System.IO.xml", "ref/dotnet/de/System.IO.xml", "ref/dotnet/fr/System.IO.xml", "ref/dotnet/it/System.IO.xml", "ref/dotnet/ja/System.IO.xml", "ref/dotnet/ko/System.IO.xml", "ref/dotnet/ru/System.IO.xml", "ref/dotnet/zh-hans/System.IO.xml", "ref/dotnet/es/System.IO.xml", "runtimes/win8-aot/lib/netcore50/System.IO.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.nuspec", "lib/dotnet/System.IO.Compression.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.IO.Compression.dll", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.dll", "ref/dotnet/System.IO.Compression.xml", "ref/dotnet/zh-hant/System.IO.Compression.xml", "ref/dotnet/de/System.IO.Compression.xml", "ref/dotnet/fr/System.IO.Compression.xml", "ref/dotnet/it/System.IO.Compression.xml", "ref/dotnet/ja/System.IO.Compression.xml", "ref/dotnet/ko/System.IO.Compression.xml", "ref/dotnet/ru/System.IO.Compression.xml", "ref/dotnet/zh-hans/System.IO.Compression.xml", "ref/dotnet/es/System.IO.Compression.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.IO.Compression.dll", "ref/netcore50/System.IO.Compression.xml", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.clrcompression-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.clrcompression-x64.nuspec", "runtimes/win7-x64/native/clrcompression.dll", "runtimes/win10-x64/native/ClrCompression.dll", "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.clrcompression-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.clrcompression-x86.nuspec", "runtimes/win7-x86/native/clrcompression.dll", "runtimes/win10-x86/native/ClrCompression.dll", "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", "[Content_Types].xml" ] }, "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "Package", "files": [ "_rels/.rels", "System.IO.Compression.ZipFile.nuspec", "lib/dotnet/System.IO.Compression.ZipFile.dll", "lib/net46/System.IO.Compression.ZipFile.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.Compression.ZipFile.dll", "ref/dotnet/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", "ref/dotnet/de/System.IO.Compression.ZipFile.xml", "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", "ref/dotnet/it/System.IO.Compression.ZipFile.xml", "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", "ref/dotnet/es/System.IO.Compression.ZipFile.xml", "ref/net46/System.IO.Compression.ZipFile.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.nuspec", "lib/DNXCore50/System.IO.FileSystem.dll", "lib/netcore50/System.IO.FileSystem.dll", "lib/net46/System.IO.FileSystem.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.dll", "ref/dotnet/System.IO.FileSystem.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.xml", "ref/dotnet/de/System.IO.FileSystem.xml", "ref/dotnet/fr/System.IO.FileSystem.xml", "ref/dotnet/it/System.IO.FileSystem.xml", "ref/dotnet/ja/System.IO.FileSystem.xml", "ref/dotnet/ko/System.IO.FileSystem.xml", "ref/dotnet/ru/System.IO.FileSystem.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.xml", "ref/dotnet/es/System.IO.FileSystem.xml", "ref/net46/System.IO.FileSystem.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", "[Content_Types].xml" ] }, "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "Package", "files": [ "_rels/.rels", "System.IO.FileSystem.Primitives.nuspec", "lib/dotnet/System.IO.FileSystem.Primitives.dll", "lib/net46/System.IO.FileSystem.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.FileSystem.Primitives.dll", "ref/dotnet/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", "[Content_Types].xml" ] }, "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "Package", "files": [ "_rels/.rels", "System.IO.UnmanagedMemoryStream.nuspec", "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", "lib/net46/System.IO.UnmanagedMemoryStream.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", "ref/net46/System.IO.UnmanagedMemoryStream.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", "[Content_Types].xml" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.dll", "ref/dotnet/System.Linq.xml", "ref/dotnet/zh-hant/System.Linq.xml", "ref/dotnet/de/System.Linq.xml", "ref/dotnet/fr/System.Linq.xml", "ref/dotnet/it/System.Linq.xml", "ref/dotnet/ja/System.Linq.xml", "ref/dotnet/ko/System.Linq.xml", "ref/dotnet/ru/System.Linq.xml", "ref/dotnet/zh-hans/System.Linq.xml", "ref/dotnet/es/System.Linq.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.dll", "ref/netcore50/System.Linq.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Expressions.nuspec", "lib/netcore50/System.Linq.Expressions.dll", "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Linq.Expressions.dll", "ref/dotnet/System.Linq.Expressions.xml", "ref/dotnet/zh-hant/System.Linq.Expressions.xml", "ref/dotnet/de/System.Linq.Expressions.xml", "ref/dotnet/fr/System.Linq.Expressions.xml", "ref/dotnet/it/System.Linq.Expressions.xml", "ref/dotnet/ja/System.Linq.Expressions.xml", "ref/dotnet/ko/System.Linq.Expressions.xml", "ref/dotnet/ru/System.Linq.Expressions.xml", "ref/dotnet/zh-hans/System.Linq.Expressions.xml", "ref/dotnet/es/System.Linq.Expressions.xml", "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Parallel.nuspec", "lib/dotnet/System.Linq.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Linq.Parallel.dll", "ref/dotnet/System.Linq.Parallel.xml", "ref/dotnet/zh-hant/System.Linq.Parallel.xml", "ref/dotnet/de/System.Linq.Parallel.xml", "ref/dotnet/fr/System.Linq.Parallel.xml", "ref/dotnet/it/System.Linq.Parallel.xml", "ref/dotnet/ja/System.Linq.Parallel.xml", "ref/dotnet/ko/System.Linq.Parallel.xml", "ref/dotnet/ru/System.Linq.Parallel.xml", "ref/dotnet/zh-hans/System.Linq.Parallel.xml", "ref/dotnet/es/System.Linq.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Parallel.dll", "ref/netcore50/System.Linq.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", "[Content_Types].xml" ] }, "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "Package", "files": [ "_rels/.rels", "System.Linq.Queryable.nuspec", "lib/dotnet/System.Linq.Queryable.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Linq.Queryable.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Linq.Queryable.dll", "ref/dotnet/System.Linq.Queryable.xml", "ref/dotnet/zh-hant/System.Linq.Queryable.xml", "ref/dotnet/de/System.Linq.Queryable.xml", "ref/dotnet/fr/System.Linq.Queryable.xml", "ref/dotnet/it/System.Linq.Queryable.xml", "ref/dotnet/ja/System.Linq.Queryable.xml", "ref/dotnet/ko/System.Linq.Queryable.xml", "ref/dotnet/ru/System.Linq.Queryable.xml", "ref/dotnet/zh-hans/System.Linq.Queryable.xml", "ref/dotnet/es/System.Linq.Queryable.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Linq.Queryable.dll", "ref/netcore50/System.Linq.Queryable.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", "[Content_Types].xml" ] }, "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Http.nuspec", "lib/netcore50/System.Net.Http.dll", "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", "lib/win8/_._", "lib/wpa81/_._", "ref/dotnet/System.Net.Http.dll", "ref/dotnet/System.Net.Http.xml", "ref/dotnet/zh-hant/System.Net.Http.xml", "ref/dotnet/de/System.Net.Http.xml", "ref/dotnet/fr/System.Net.Http.xml", "ref/dotnet/it/System.Net.Http.xml", "ref/dotnet/ja/System.Net.Http.xml", "ref/dotnet/ko/System.Net.Http.xml", "ref/dotnet/ru/System.Net.Http.xml", "ref/dotnet/zh-hans/System.Net.Http.xml", "ref/dotnet/es/System.Net.Http.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", "[Content_Types].xml" ] }, "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "Package", "files": [ "_rels/.rels", "System.Net.NetworkInformation.nuspec", "lib/netcore50/System.Net.NetworkInformation.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.NetworkInformation.dll", "ref/dotnet/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", "ref/dotnet/de/System.Net.NetworkInformation.xml", "ref/dotnet/fr/System.Net.NetworkInformation.xml", "ref/dotnet/it/System.Net.NetworkInformation.xml", "ref/dotnet/ja/System.Net.NetworkInformation.xml", "ref/dotnet/ko/System.Net.NetworkInformation.xml", "ref/dotnet/ru/System.Net.NetworkInformation.xml", "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", "ref/dotnet/es/System.Net.NetworkInformation.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Net.NetworkInformation.dll", "ref/netcore50/System.Net.NetworkInformation.xml", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", "[Content_Types].xml" ] }, "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "Package", "files": [ "_rels/.rels", "System.Net.Primitives.nuspec", "lib/netcore50/System.Net.Primitives.dll", "lib/DNXCore50/System.Net.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Net.Primitives.dll", "ref/dotnet/System.Net.Primitives.xml", "ref/dotnet/zh-hant/System.Net.Primitives.xml", "ref/dotnet/de/System.Net.Primitives.xml", "ref/dotnet/fr/System.Net.Primitives.xml", "ref/dotnet/it/System.Net.Primitives.xml", "ref/dotnet/ja/System.Net.Primitives.xml", "ref/dotnet/ko/System.Net.Primitives.xml", "ref/dotnet/ru/System.Net.Primitives.xml", "ref/dotnet/zh-hans/System.Net.Primitives.xml", "ref/dotnet/es/System.Net.Primitives.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", "[Content_Types].xml" ] }, "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "Package", "files": [ "_rels/.rels", "System.Numerics.Vectors.nuspec", "lib/dotnet/System.Numerics.Vectors.dll", "lib/net46/System.Numerics.Vectors.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", "[Content_Types].xml" ] }, "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "Package", "files": [ "_rels/.rels", "System.ObjectModel.nuspec", "lib/dotnet/System.ObjectModel.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.ObjectModel.dll", "ref/dotnet/System.ObjectModel.xml", "ref/dotnet/zh-hant/System.ObjectModel.xml", "ref/dotnet/de/System.ObjectModel.xml", "ref/dotnet/fr/System.ObjectModel.xml", "ref/dotnet/it/System.ObjectModel.xml", "ref/dotnet/ja/System.ObjectModel.xml", "ref/dotnet/ko/System.ObjectModel.xml", "ref/dotnet/ru/System.ObjectModel.xml", "ref/dotnet/zh-hans/System.ObjectModel.xml", "ref/dotnet/es/System.ObjectModel.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", "[Content_Types].xml" ] }, "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Networking.nuspec", "lib/netcore50/System.Private.Networking.dll", "lib/DNXCore50/System.Private.Networking.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", "[Content_Types].xml" ] }, "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "Package", "files": [ "_rels/.rels", "System.Private.Uri.nuspec", "lib/netcore50/System.Private.Uri.dll", "lib/DNXCore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", "[Content_Types].xml" ] }, "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.nuspec", "lib/netcore50/System.Reflection.dll", "lib/DNXCore50/System.Reflection.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.dll", "ref/dotnet/System.Reflection.xml", "ref/dotnet/zh-hant/System.Reflection.xml", "ref/dotnet/de/System.Reflection.xml", "ref/dotnet/fr/System.Reflection.xml", "ref/dotnet/it/System.Reflection.xml", "ref/dotnet/ja/System.Reflection.xml", "ref/dotnet/ko/System.Reflection.xml", "ref/dotnet/ru/System.Reflection.xml", "ref/dotnet/zh-hans/System.Reflection.xml", "ref/dotnet/es/System.Reflection.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.DispatchProxy.nuspec", "lib/net46/System.Reflection.DispatchProxy.dll", "lib/DNXCore50/System.Reflection.DispatchProxy.dll", "lib/netcore50/System.Reflection.DispatchProxy.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.DispatchProxy.dll", "ref/dotnet/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", "ref/dotnet/de/System.Reflection.DispatchProxy.xml", "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", "ref/dotnet/it/System.Reflection.DispatchProxy.xml", "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", "ref/dotnet/es/System.Reflection.DispatchProxy.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.nuspec", "lib/DNXCore50/System.Reflection.Emit.dll", "lib/netcore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", "lib/net45/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.Emit.dll", "ref/dotnet/System.Reflection.Emit.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.xml", "ref/dotnet/de/System.Reflection.Emit.xml", "ref/dotnet/fr/System.Reflection.Emit.xml", "ref/dotnet/it/System.Reflection.Emit.xml", "ref/dotnet/ja/System.Reflection.Emit.xml", "ref/dotnet/ko/System.Reflection.Emit.xml", "ref/dotnet/ru/System.Reflection.Emit.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.xml", "ref/dotnet/es/System.Reflection.Emit.xml", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.ILGeneration.nuspec", "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Emit.Lightweight.nuspec", "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", "lib/wp80/_._", "ref/dotnet/System.Reflection.Emit.Lightweight.dll", "ref/dotnet/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", "ref/net45/_._", "ref/wp80/_._", "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Extensions.nuspec", "lib/netcore50/System.Reflection.Extensions.dll", "lib/DNXCore50/System.Reflection.Extensions.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Extensions.dll", "ref/dotnet/System.Reflection.Extensions.xml", "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", "ref/dotnet/de/System.Reflection.Extensions.xml", "ref/dotnet/fr/System.Reflection.Extensions.xml", "ref/dotnet/it/System.Reflection.Extensions.xml", "ref/dotnet/ja/System.Reflection.Extensions.xml", "ref/dotnet/ko/System.Reflection.Extensions.xml", "ref/dotnet/ru/System.Reflection.Extensions.xml", "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", "ref/dotnet/es/System.Reflection.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Extensions.dll", "ref/netcore50/System.Reflection.Extensions.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Metadata.nuspec", "lib/dotnet/System.Reflection.Metadata.dll", "lib/dotnet/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.dll", "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.Primitives.nuspec", "lib/netcore50/System.Reflection.Primitives.dll", "lib/DNXCore50/System.Reflection.Primitives.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Reflection.Primitives.dll", "ref/dotnet/System.Reflection.Primitives.xml", "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", "ref/dotnet/de/System.Reflection.Primitives.xml", "ref/dotnet/fr/System.Reflection.Primitives.xml", "ref/dotnet/it/System.Reflection.Primitives.xml", "ref/dotnet/ja/System.Reflection.Primitives.xml", "ref/dotnet/ko/System.Reflection.Primitives.xml", "ref/dotnet/ru/System.Reflection.Primitives.xml", "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", "ref/dotnet/es/System.Reflection.Primitives.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Reflection.Primitives.dll", "ref/netcore50/System.Reflection.Primitives.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", "[Content_Types].xml" ] }, "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "Package", "files": [ "_rels/.rels", "System.Reflection.TypeExtensions.nuspec", "lib/netcore50/System.Reflection.TypeExtensions.dll", "lib/DNXCore50/System.Reflection.TypeExtensions.dll", "lib/net46/System.Reflection.TypeExtensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Reflection.TypeExtensions.dll", "ref/dotnet/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", "ref/dotnet/de/System.Reflection.TypeExtensions.xml", "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", "ref/dotnet/it/System.Reflection.TypeExtensions.xml", "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", "ref/dotnet/es/System.Reflection.TypeExtensions.xml", "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", "ref/net46/System.Reflection.TypeExtensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", "[Content_Types].xml" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "Package", "files": [ "_rels/.rels", "System.Resources.ResourceManager.nuspec", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Resources.ResourceManager.dll", "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", "ref/dotnet/de/System.Resources.ResourceManager.xml", "ref/dotnet/fr/System.Resources.ResourceManager.xml", "ref/dotnet/it/System.Resources.ResourceManager.xml", "ref/dotnet/ja/System.Resources.ResourceManager.xml", "ref/dotnet/ko/System.Resources.ResourceManager.xml", "ref/dotnet/ru/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet/es/System.Resources.ResourceManager.xml", "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Resources.ResourceManager.dll", "ref/netcore50/System.Resources.ResourceManager.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", "[Content_Types].xml" ] }, "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.nuspec", "lib/netcore50/System.Runtime.dll", "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.dll", "ref/dotnet/System.Runtime.xml", "ref/dotnet/zh-hant/System.Runtime.xml", "ref/dotnet/de/System.Runtime.xml", "ref/dotnet/fr/System.Runtime.xml", "ref/dotnet/it/System.Runtime.xml", "ref/dotnet/ja/System.Runtime.xml", "ref/dotnet/ko/System.Runtime.xml", "ref/dotnet/ru/System.Runtime.xml", "ref/dotnet/zh-hans/System.Runtime.xml", "ref/dotnet/es/System.Runtime.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Extensions.nuspec", "lib/netcore50/System.Runtime.Extensions.dll", "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Extensions.dll", "ref/dotnet/System.Runtime.Extensions.xml", "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", "ref/dotnet/de/System.Runtime.Extensions.xml", "ref/dotnet/fr/System.Runtime.Extensions.xml", "ref/dotnet/it/System.Runtime.Extensions.xml", "ref/dotnet/ja/System.Runtime.Extensions.xml", "ref/dotnet/ko/System.Runtime.Extensions.xml", "ref/dotnet/ru/System.Runtime.Extensions.xml", "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", "ref/dotnet/es/System.Runtime.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Handles.nuspec", "lib/DNXCore50/System.Runtime.Handles.dll", "lib/netcore50/System.Runtime.Handles.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.Handles.dll", "ref/dotnet/System.Runtime.Handles.xml", "ref/dotnet/zh-hant/System.Runtime.Handles.xml", "ref/dotnet/de/System.Runtime.Handles.xml", "ref/dotnet/fr/System.Runtime.Handles.xml", "ref/dotnet/it/System.Runtime.Handles.xml", "ref/dotnet/ja/System.Runtime.Handles.xml", "ref/dotnet/ko/System.Runtime.Handles.xml", "ref/dotnet/ru/System.Runtime.Handles.xml", "ref/dotnet/zh-hans/System.Runtime.Handles.xml", "ref/dotnet/es/System.Runtime.Handles.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.InteropServices.nuspec", "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/netcore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Runtime.InteropServices.dll", "ref/dotnet/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", "ref/dotnet/de/System.Runtime.InteropServices.xml", "ref/dotnet/fr/System.Runtime.InteropServices.xml", "ref/dotnet/it/System.Runtime.InteropServices.xml", "ref/dotnet/ja/System.Runtime.InteropServices.xml", "ref/dotnet/ko/System.Runtime.InteropServices.xml", "ref/dotnet/ru/System.Runtime.InteropServices.xml", "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", "ref/dotnet/es/System.Runtime.InteropServices.xml", "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", "[Content_Types].xml" ] }, "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "Package", "files": [ "_rels/.rels", "System.Runtime.Numerics.nuspec", "lib/dotnet/System.Runtime.Numerics.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Runtime.Numerics.dll", "lib/wpa81/_._", "ref/dotnet/System.Runtime.Numerics.dll", "ref/dotnet/System.Runtime.Numerics.xml", "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", "ref/dotnet/de/System.Runtime.Numerics.xml", "ref/dotnet/fr/System.Runtime.Numerics.xml", "ref/dotnet/it/System.Runtime.Numerics.xml", "ref/dotnet/ja/System.Runtime.Numerics.xml", "ref/dotnet/ko/System.Runtime.Numerics.xml", "ref/dotnet/ru/System.Runtime.Numerics.xml", "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", "ref/dotnet/es/System.Runtime.Numerics.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Runtime.Numerics.dll", "ref/netcore50/System.Runtime.Numerics.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", "[Content_Types].xml" ] }, "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Claims.nuspec", "lib/dotnet/System.Security.Claims.dll", "lib/net46/System.Security.Claims.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Security.Claims.dll", "ref/dotnet/System.Security.Claims.xml", "ref/dotnet/zh-hant/System.Security.Claims.xml", "ref/dotnet/de/System.Security.Claims.xml", "ref/dotnet/fr/System.Security.Claims.xml", "ref/dotnet/it/System.Security.Claims.xml", "ref/dotnet/ja/System.Security.Claims.xml", "ref/dotnet/ko/System.Security.Claims.xml", "ref/dotnet/ru/System.Security.Claims.xml", "ref/dotnet/zh-hans/System.Security.Claims.xml", "ref/dotnet/es/System.Security.Claims.xml", "ref/net46/System.Security.Claims.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", "[Content_Types].xml" ] }, "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "Package", "files": [ "_rels/.rels", "System.Security.Principal.nuspec", "lib/dotnet/System.Security.Principal.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Security.Principal.dll", "lib/wp80/_._", "lib/wpa81/_._", "ref/dotnet/System.Security.Principal.dll", "ref/dotnet/System.Security.Principal.xml", "ref/dotnet/zh-hant/System.Security.Principal.xml", "ref/dotnet/de/System.Security.Principal.xml", "ref/dotnet/fr/System.Security.Principal.xml", "ref/dotnet/it/System.Security.Principal.xml", "ref/dotnet/ja/System.Security.Principal.xml", "ref/dotnet/ko/System.Security.Principal.xml", "ref/dotnet/ru/System.Security.Principal.xml", "ref/dotnet/zh-hans/System.Security.Principal.xml", "ref/dotnet/es/System.Security.Principal.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Security.Principal.dll", "ref/netcore50/System.Security.Principal.xml", "ref/wp80/_._", "ref/wpa81/_._", "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.nuspec", "lib/netcore50/System.Text.Encoding.dll", "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.dll", "ref/dotnet/System.Text.Encoding.xml", "ref/dotnet/zh-hant/System.Text.Encoding.xml", "ref/dotnet/de/System.Text.Encoding.xml", "ref/dotnet/fr/System.Text.Encoding.xml", "ref/dotnet/it/System.Text.Encoding.xml", "ref/dotnet/ja/System.Text.Encoding.xml", "ref/dotnet/ko/System.Text.Encoding.xml", "ref/dotnet/ru/System.Text.Encoding.xml", "ref/dotnet/zh-hans/System.Text.Encoding.xml", "ref/dotnet/es/System.Text.Encoding.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", "[Content_Types].xml" ] }, "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "Package", "files": [ "_rels/.rels", "System.Text.Encoding.Extensions.nuspec", "lib/netcore50/System.Text.Encoding.Extensions.dll", "lib/DNXCore50/System.Text.Encoding.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.Encoding.Extensions.dll", "ref/dotnet/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", "ref/dotnet/de/System.Text.Encoding.Extensions.xml", "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", "ref/dotnet/it/System.Text.Encoding.Extensions.xml", "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", "ref/dotnet/es/System.Text.Encoding.Extensions.xml", "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", "[Content_Types].xml" ] }, "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "Package", "files": [ "_rels/.rels", "System.Text.RegularExpressions.nuspec", "lib/dotnet/System.Text.RegularExpressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Text.RegularExpressions.dll", "ref/dotnet/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", "ref/dotnet/de/System.Text.RegularExpressions.xml", "ref/dotnet/fr/System.Text.RegularExpressions.xml", "ref/dotnet/it/System.Text.RegularExpressions.xml", "ref/dotnet/ja/System.Text.RegularExpressions.xml", "ref/dotnet/ko/System.Text.RegularExpressions.xml", "ref/dotnet/ru/System.Text.RegularExpressions.xml", "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", "ref/dotnet/es/System.Text.RegularExpressions.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", "[Content_Types].xml" ] }, "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.nuspec", "lib/DNXCore50/System.Threading.dll", "lib/netcore50/System.Threading.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.dll", "ref/dotnet/System.Threading.xml", "ref/dotnet/zh-hant/System.Threading.xml", "ref/dotnet/de/System.Threading.xml", "ref/dotnet/fr/System.Threading.xml", "ref/dotnet/it/System.Threading.xml", "ref/dotnet/ja/System.Threading.xml", "ref/dotnet/ko/System.Threading.xml", "ref/dotnet/ru/System.Threading.xml", "ref/dotnet/zh-hans/System.Threading.xml", "ref/dotnet/es/System.Threading.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Overlapped.nuspec", "lib/netcore50/System.Threading.Overlapped.dll", "lib/DNXCore50/System.Threading.Overlapped.dll", "lib/net46/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.dll", "ref/dotnet/System.Threading.Overlapped.xml", "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", "ref/dotnet/de/System.Threading.Overlapped.xml", "ref/dotnet/fr/System.Threading.Overlapped.xml", "ref/dotnet/it/System.Threading.Overlapped.xml", "ref/dotnet/ja/System.Threading.Overlapped.xml", "ref/dotnet/ko/System.Threading.Overlapped.xml", "ref/dotnet/ru/System.Threading.Overlapped.xml", "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", "ref/dotnet/es/System.Threading.Overlapped.xml", "ref/net46/System.Threading.Overlapped.dll", "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.nuspec", "lib/netcore50/System.Threading.Tasks.dll", "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Threading.Tasks.dll", "ref/dotnet/System.Threading.Tasks.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.xml", "ref/dotnet/de/System.Threading.Tasks.xml", "ref/dotnet/fr/System.Threading.Tasks.xml", "ref/dotnet/it/System.Threading.Tasks.xml", "ref/dotnet/ja/System.Threading.Tasks.xml", "ref/dotnet/ko/System.Threading.Tasks.xml", "ref/dotnet/ru/System.Threading.Tasks.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.xml", "ref/dotnet/es/System.Threading.Tasks.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Dataflow.nuspec", "lib/dotnet/System.Threading.Tasks.Dataflow.dll", "lib/dotnet/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Tasks.Parallel.nuspec", "lib/dotnet/System.Threading.Tasks.Parallel.dll", "lib/net45/_._", "lib/win8/_._", "lib/netcore50/System.Threading.Tasks.Parallel.dll", "lib/wpa81/_._", "ref/dotnet/System.Threading.Tasks.Parallel.dll", "ref/dotnet/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", "ref/net45/_._", "ref/win8/_._", "ref/netcore50/System.Threading.Tasks.Parallel.dll", "ref/netcore50/System.Threading.Tasks.Parallel.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", "[Content_Types].xml" ] }, "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "Package", "files": [ "_rels/.rels", "System.Threading.Timer.nuspec", "lib/netcore50/System.Threading.Timer.dll", "lib/DNXCore50/System.Threading.Timer.dll", "lib/net451/_._", "lib/win81/_._", "lib/wpa81/_._", "ref/dotnet/System.Threading.Timer.dll", "ref/dotnet/System.Threading.Timer.xml", "ref/dotnet/zh-hant/System.Threading.Timer.xml", "ref/dotnet/de/System.Threading.Timer.xml", "ref/dotnet/fr/System.Threading.Timer.xml", "ref/dotnet/it/System.Threading.Timer.xml", "ref/dotnet/ja/System.Threading.Timer.xml", "ref/dotnet/ko/System.Threading.Timer.xml", "ref/dotnet/ru/System.Threading.Timer.xml", "ref/dotnet/zh-hans/System.Threading.Timer.xml", "ref/dotnet/es/System.Threading.Timer.xml", "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", "ref/net451/_._", "ref/win81/_._", "ref/netcore50/System.Threading.Timer.dll", "ref/netcore50/System.Threading.Timer.xml", "ref/wpa81/_._", "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", "[Content_Types].xml" ] }, "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.ReaderWriter.nuspec", "lib/dotnet/System.Xml.ReaderWriter.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.ReaderWriter.dll", "ref/dotnet/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", "ref/dotnet/de/System.Xml.ReaderWriter.xml", "ref/dotnet/fr/System.Xml.ReaderWriter.xml", "ref/dotnet/it/System.Xml.ReaderWriter.xml", "ref/dotnet/ja/System.Xml.ReaderWriter.xml", "ref/dotnet/ko/System.Xml.ReaderWriter.xml", "ref/dotnet/ru/System.Xml.ReaderWriter.xml", "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", "ref/dotnet/es/System.Xml.ReaderWriter.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", "[Content_Types].xml" ] }, "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "Package", "files": [ "_rels/.rels", "System.Xml.XDocument.nuspec", "lib/dotnet/System.Xml.XDocument.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "ref/dotnet/System.Xml.XDocument.dll", "ref/dotnet/System.Xml.XDocument.xml", "ref/dotnet/zh-hant/System.Xml.XDocument.xml", "ref/dotnet/de/System.Xml.XDocument.xml", "ref/dotnet/fr/System.Xml.XDocument.xml", "ref/dotnet/it/System.Xml.XDocument.xml", "ref/dotnet/ja/System.Xml.XDocument.xml", "ref/dotnet/ko/System.Xml.XDocument.xml", "ref/dotnet/ru/System.Xml.XDocument.xml", "ref/dotnet/zh-hans/System.Xml.XDocument.xml", "ref/dotnet/es/System.Xml.XDocument.xml", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", "[Content_Types].xml" ] } }, "projectFileDependencyGroups": { "": [ "Microsoft.NETCore >= 5.0.0", "System.Console >= 4.0.0-beta-23412", "Microsoft.NETCore.ConsoleHost-x64 >= 1.0.0-beta-23123", "Microsoft.NETCore.Runtime.CoreCLR-x64 >= 1.0.0" ], "DNXCore,Version=v5.0": [] }} [ @@ -20287,4 +20287,4 @@ tiline\"another\" String\\"],"str":"\"\""} {"customers":[{"id":-6444715464212907024,"email":"Donald_Robel8@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T11:09:51.4336179+01:00","updated_at":"2020-09-16T00:38:54.0476046+01:00","first_name":"Claud","last_name":"Schamberger","orders_count":828600420,"state":"Florida","total_spent":"Investment Account","last_order_id":-6250163298268487517,"note":"Innovative","verified_email":false,"multipass_identifier":"Sierra Leone","tax_exempt":true,"tags":"Center","last_order_name":"Architect","default_address":{"first_name":"Paolo","address1":"Guillermo Harbors","phone":"Fresh","city":"New Consuelo","zip":"Cambridgeshire","province":null,"country":"Luxembourg","last_name":"Kohler","address2":null,"company":"interface","latitude":0.76308054,"longitude":0.90856695,"name":"Multi-tiered","country_code":"HK","province_code":"models"},"addresses":[{"first_name":"Camylle","address1":"Minnesota","phone":"scalable","city":"Lake Afton","zip":"Kwacha","province":"invoice","country":"Tonga","last_name":"Bahringer","address2":"Arizona","company":"deliverables","latitude":0.53062123,"longitude":0.0345649,"name":"transition","country_code":"SZ","province_code":"Borders"},{"first_name":"Coby","address1":"Handmade Metal Soap","phone":"grey","city":"East Gisselleland","zip":"calculating","province":"Open-architected","country":"Zimbabwe","last_name":"Hilll","address2":"secured line","company":"Agent","latitude":0.29925257,"longitude":0.67247564,"name":"Congolese Franc","country_code":"DJ","province_code":"European Unit of Account 9(E.U.A.-9)"},{"first_name":"Benton","address1":"overriding","phone":"Rubber","city":"Dewitttown","zip":"Assistant","province":"revolutionary","country":"Saint Helena","last_name":"Kautzer","address2":"HDD","company":"application","latitude":0.2472279,"longitude":0.13901316,"name":"Associate","country_code":"BV","province_code":"navigating"},{"first_name":"Paolo","address1":"Guillermo Harbors","phone":"Fresh","city":"New Consuelo","zip":"Cambridgeshire","province":null,"country":"Luxembourg","last_name":"Kohler","address2":null,"company":"interface","latitude":0.76308054,"longitude":0.90856695,"name":"Multi-tiered","country_code":"HK","province_code":"models"}]},{"id":1067378027289123743,"email":"Joanna_Gottlieb@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T00:29:39.9028795+01:00","updated_at":"2020-09-15T15:42:49.6581201+01:00","first_name":"Nickolas","last_name":"Bashirian","orders_count":-1196081909,"state":"Hawaii","total_spent":"THX","last_order_id":8034293186304090002,"note":"primary","verified_email":true,"multipass_identifier":"Savings Account","tax_exempt":true,"tags":"Intranet","last_order_name":"Fantastic Frozen Chicken","default_address":{"first_name":"Maye","address1":"Tate Alley","phone":"Corporate","city":"Hellerborough","zip":"Croatia","province":null,"country":"Turkey","last_name":"Murazik","address2":null,"company":"Games \u0026 Sports","latitude":0.1190542,"longitude":0.7401329,"name":"calculate","country_code":"GY","province_code":"Clothing"},"addresses":[{"first_name":"Serena","address1":"Incredible Concrete Ball","phone":"Vision-oriented","city":"Lake Mozelle","zip":"override","province":"Qatari Rial","country":"Ireland","last_name":"Schumm","address2":"Berkshire","company":"synthesizing","latitude":0.46275967,"longitude":0.5390696,"name":"Isle","country_code":"BZ","province_code":"Grove"},{"first_name":"Lloyd","address1":"Intelligent Steel Cheese","phone":"Intelligent","city":"Cordiechester","zip":"transmitting","province":"Brand","country":"Guatemala","last_name":"Koelpin","address2":"Steel","company":"Toys, Games \u0026 Outdoors","latitude":0.65764135,"longitude":0.94055426,"name":"Strategist","country_code":"MY","province_code":"monitor"},{"first_name":"Norris","address1":"logistical","phone":"Officer","city":"New Dean","zip":"exploit","province":"RAM","country":"Barbados","last_name":"Grady","address2":"neural-net","company":"Realigned","latitude":0.067042194,"longitude":0.984979,"name":"flexibility","country_code":"PM","province_code":"firewall"},{"first_name":"Maye","address1":"Tate Alley","phone":"Corporate","city":"Hellerborough","zip":"Croatia","province":null,"country":"Turkey","last_name":"Murazik","address2":null,"company":"Games \u0026 Sports","latitude":0.1190542,"longitude":0.7401329,"name":"calculate","country_code":"GY","province_code":"Clothing"}]},{"id":-8425342665932514640,"email":"Ethel_White75@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T09:29:11.5803254+01:00","updated_at":"2020-09-16T00:10:35.6218625+01:00","first_name":"Carleton","last_name":"Nolan","orders_count":-1075174329,"state":"Oklahoma","total_spent":"back up","last_order_id":-2380531027015800547,"note":"hard drive","verified_email":false,"multipass_identifier":"India","tax_exempt":true,"tags":"hybrid","last_order_name":"Avon","default_address":{"first_name":"Evalyn","address1":"Kassulke Shores","phone":"overriding","city":"Jaceyburgh","zip":"Handcrafted Concrete Chicken","province":"Alaska","country":"Democratic People\u0027s Republic of Korea","last_name":"Ankunding","address2":null,"company":"Turnpike","latitude":0.40271956,"longitude":0.23823602,"name":"Shoals","country_code":"BV","province_code":"Distributed"},"addresses":[{"first_name":"Phyllis","address1":"Practical","phone":"wireless","city":"Nataliashire","zip":"Integrated","province":"Awesome Soft Mouse","country":"Ireland","last_name":"Paucek","address2":"Generic Wooden Towels","company":"indexing","latitude":0.29858905,"longitude":0.4285656,"name":"local","country_code":"GQ","province_code":"Dynamic"},{"first_name":"Addison","address1":"connect","phone":"networks","city":"East Leone","zip":"Director","province":"Well","country":"Reunion","last_name":"Emmerich","address2":"deliverables","company":"moratorium","latitude":0.8038754,"longitude":0.120811924,"name":"Investment Account","country_code":"SH","province_code":"Buckinghamshire"},{"first_name":"Lamar","address1":"port","phone":"Re-engineered","city":"Robertaburgh","zip":"Refined","province":"Rapids","country":"Christmas Island","last_name":"Zulauf","address2":"homogeneous","company":"bluetooth","latitude":0.6864373,"longitude":0.2766055,"name":"gold","country_code":"LB","province_code":"North Dakota"},{"first_name":"Evalyn","address1":"Kassulke Shores","phone":"overriding","city":"Jaceyburgh","zip":"Handcrafted Concrete Chicken","province":"Alaska","country":"Democratic People\u0027s Republic of Korea","last_name":"Ankunding","address2":null,"company":"Turnpike","latitude":0.40271956,"longitude":0.23823602,"name":"Shoals","country_code":"BV","province_code":"Distributed"}]},{"id":5191328669604682282,"email":"Roosevelt_Dare74@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T18:49:54.2128859+01:00","updated_at":"2020-09-15T21:40:03.9957882+01:00","first_name":"Lillie","last_name":"Hayes","orders_count":1495984373,"state":"Colorado","total_spent":"Rubber","last_order_id":1705310774191516799,"note":"Functionality","verified_email":false,"multipass_identifier":"mesh","tax_exempt":true,"tags":"Credit Card Account","last_order_name":"calculate","default_address":{"first_name":"Ivory","address1":"Dixie Mount","phone":"leverage","city":"Lake Amostown","zip":"Delaware","province":null,"country":"Brunei Darussalam","last_name":"Gibson","address2":null,"company":"mint green","latitude":0.5004098,"longitude":0.1621479,"name":"Syrian Arab Republic","country_code":"MZ","province_code":"New Hampshire"},"addresses":[{"first_name":"Adah","address1":"Assimilated","phone":"Clothing \u0026 Books","city":"Luettgenbury","zip":"initiatives","province":"e-business","country":"Cuba","last_name":"Weissnat","address2":"Serbian Dinar","company":"bypassing","latitude":0.34963647,"longitude":0.99259675,"name":"Guinea-Bissau","country_code":"CR","province_code":"attitude"},{"first_name":"Riley","address1":"Gorgeous Wooden Computer","phone":"Intranet","city":"South Fredrick","zip":"proactive","province":"channels","country":"Bahamas","last_name":"Cummings","address2":"Louisiana","company":"Grocery \u0026 Home","latitude":0.038570676,"longitude":0.2162873,"name":"Small","country_code":"RU","province_code":"Yemeni Rial"},{"first_name":"Adolphus","address1":"Cotton","phone":"Web","city":"West Caitlynborough","zip":"Cape Verde Escudo","province":"Awesome Rubber Tuna","country":"Belgium","last_name":"Gutmann","address2":"national","company":"disintermediate","latitude":0.045502957,"longitude":0.4608651,"name":"paradigm","country_code":"BY","province_code":"Fantastic Frozen Mouse"},{"first_name":"Ivory","address1":"Dixie Mount","phone":"leverage","city":"Lake Amostown","zip":"Delaware","province":null,"country":"Brunei Darussalam","last_name":"Gibson","address2":null,"company":"mint green","latitude":0.5004098,"longitude":0.1621479,"name":"Syrian Arab Republic","country_code":"MZ","province_code":"New Hampshire"}]},{"id":5387826627533786459,"email":"Karla_Mills@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T17:16:54.5241265+01:00","updated_at":"2020-09-16T07:06:47.6564567+01:00","first_name":"Myrtice","last_name":"Sanford","orders_count":-1881347090,"state":"Arizona","total_spent":"New Mexico","last_order_id":-8927554978794051404,"note":"evolve","verified_email":true,"multipass_identifier":"Gourde","tax_exempt":true,"tags":"Chief","last_order_name":"Kwanza","default_address":{"first_name":"Edward","address1":"Garfield Glens","phone":"Incredible Soft Mouse","city":"West Priscillashire","zip":"Vista","province":"Hawaii","country":"Jersey","last_name":"Cronin","address2":null,"company":"black","latitude":0.23169407,"longitude":0.25228536,"name":"Devolved","country_code":"GM","province_code":"compressing"},"addresses":[{"first_name":"Eldridge","address1":"Berkshire","phone":"implement","city":"Lake Tiamouth","zip":"Turnpike","province":"Center","country":"United Kingdom","last_name":"Rath","address2":"Venezuela","company":"Lesotho","latitude":0.12459579,"longitude":0.70055014,"name":"Unbranded Soft Chair","country_code":"KR","province_code":"front-end"},{"first_name":"Viva","address1":"Integration","phone":"Accountability","city":"New Addie","zip":"Awesome","province":"portals","country":"Saint Vincent and the Grenadines","last_name":"Kuhic","address2":"Avon","company":"Pakistan","latitude":0.9999907,"longitude":0.027689833,"name":"Vista","country_code":"BQ","province_code":"Grocery \u0026 Industrial"},{"first_name":"Odessa","address1":"withdrawal","phone":"Program","city":"West Evastad","zip":"Rhode Island","province":"sensor","country":"Equatorial Guinea","last_name":"Mante","address2":"Configuration","company":"Rubber","latitude":0.9786745,"longitude":0.07797922,"name":"SDD","country_code":"IE","province_code":"Hills"},{"first_name":"Edward","address1":"Garfield Glens","phone":"Incredible Soft Mouse","city":"West Priscillashire","zip":"Vista","province":"Hawaii","country":"Jersey","last_name":"Cronin","address2":null,"company":"black","latitude":0.23169407,"longitude":0.25228536,"name":"Devolved","country_code":"GM","province_code":"compressing"}]},{"id":-4650548899026830108,"email":"Guadalupe78@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T04:12:53.699174+01:00","updated_at":"2020-09-16T00:13:04.6294543+01:00","first_name":"Rashawn","last_name":"Waelchi","orders_count":-1606463071,"state":"South Carolina","total_spent":"navigate","last_order_id":8680640366848749138,"note":"radical","verified_email":true,"multipass_identifier":"integrate","tax_exempt":false,"tags":"Personal Loan Account","last_order_name":"Berkshire","default_address":{"first_name":"Keira","address1":"Braun Squares","phone":"Plastic","city":"New Kaitlynfurt","zip":"Open-architected","province":null,"country":"Azerbaijan","last_name":"Mohr","address2":null,"company":"bus","latitude":0.023017664,"longitude":0.40950555,"name":"circuit","country_code":"NE","province_code":"Metrics"},"addresses":[{"first_name":"Laron","address1":"El Salvador Colon","phone":"indigo","city":"Jamelborough","zip":"enhance","province":"Nebraska","country":"Reunion","last_name":"Mosciski","address2":"Buckinghamshire","company":"visionary","latitude":0.88458955,"longitude":0.6842276,"name":"digital","country_code":"BQ","province_code":"Intelligent Frozen Bacon"},{"first_name":"Ozella","address1":"Village","phone":"plug-and-play","city":"Kautzerburgh","zip":"protocol","province":"Balanced","country":"Monaco","last_name":"Heaney","address2":"FTP","company":"Wooden","latitude":0.7116171,"longitude":0.5989839,"name":"Nakfa","country_code":"MH","province_code":"North Korean Won"},{"first_name":"Zola","address1":"Bedfordshire","phone":"Louisiana","city":"West Aurore","zip":"Metal","province":"US Dollar","country":"Greece","last_name":"Reichert","address2":"Berkshire","company":"quantifying","latitude":0.32416353,"longitude":0.72842544,"name":"grid-enabled","country_code":"AE","province_code":"payment"},{"first_name":"Keira","address1":"Braun Squares","phone":"Plastic","city":"New Kaitlynfurt","zip":"Open-architected","province":null,"country":"Azerbaijan","last_name":"Mohr","address2":null,"company":"bus","latitude":0.023017664,"longitude":0.40950555,"name":"circuit","country_code":"NE","province_code":"Metrics"}]},{"id":478079986830731092,"email":"Sherry44@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T15:23:26.2561244+01:00","updated_at":"2020-09-16T04:03:56.1051805+01:00","first_name":"Cicero","last_name":"Morissette","orders_count":918323568,"state":"Kentucky","total_spent":"Networked","last_order_id":1707942936310171984,"note":"payment","verified_email":true,"multipass_identifier":"Senior","tax_exempt":true,"tags":"USB","last_order_name":"Baby, Games \u0026 Home","default_address":{"first_name":"Mireya","address1":"Aleen Ports","phone":"Associate","city":"West Queenie","zip":"Corners","province":null,"country":"Mozambique","last_name":"Zieme","address2":null,"company":"Berkshire","latitude":0.45527536,"longitude":0.36662376,"name":"Drive","country_code":"JP","province_code":"out-of-the-box"},"addresses":[{"first_name":"Marcelina","address1":"Garden \u0026 Health","phone":"Brazil","city":"Erlington","zip":"microchip","province":"Hawaii","country":"Bangladesh","last_name":"Bogisich","address2":"vortals","company":"Sleek Fresh Towels","latitude":0.80090076,"longitude":0.18601455,"name":"fuchsia","country_code":"BB","province_code":"Fantastic"},{"first_name":"Rosella","address1":"neural","phone":"Music","city":"East Arnoland","zip":"Rubber","province":"Money Market Account","country":"Brunei Darussalam","last_name":"O\u0027Conner","address2":"Alabama","company":"synergize","latitude":0.4861614,"longitude":0.6491813,"name":"hack","country_code":"KE","province_code":"contingency"},{"first_name":"Annette","address1":"pink","phone":"Operations","city":"Antonettaton","zip":"Robust","province":"sensor","country":"Jersey","last_name":"Erdman","address2":"calculate","company":"calculate","latitude":0.46730122,"longitude":0.21026371,"name":"Producer","country_code":"SI","province_code":"users"},{"first_name":"Mireya","address1":"Aleen Ports","phone":"Associate","city":"West Queenie","zip":"Corners","province":null,"country":"Mozambique","last_name":"Zieme","address2":null,"company":"Berkshire","latitude":0.45527536,"longitude":0.36662376,"name":"Drive","country_code":"JP","province_code":"out-of-the-box"}]},{"id":2672558326191861827,"email":"Charles.Zboncak92@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T06:48:21.7539732+01:00","updated_at":"2020-09-15T16:25:52.8881219+01:00","first_name":"Timmy","last_name":"Feil","orders_count":969390481,"state":"Florida","total_spent":"Squares","last_order_id":4715943306601998408,"note":"high-level","verified_email":false,"multipass_identifier":"process improvement","tax_exempt":false,"tags":"deposit","last_order_name":"Rubber","default_address":{"first_name":"Carrie","address1":"Jeramy Throughway","phone":"Assurance","city":"Gibsonview","zip":"synthesizing","province":"Colorado","country":"Swaziland","last_name":"Kilback","address2":null,"company":"Gorgeous Plastic Gloves","latitude":0.11702666,"longitude":0.10429706,"name":"Cook Islands","country_code":"GS","province_code":"Stand-alone"},"addresses":[{"first_name":"Aiyana","address1":"Gorgeous","phone":"Lead","city":"Stammport","zip":"Handmade Granite Cheese","province":"Mills","country":"Switzerland","last_name":"Donnelly","address2":"Proactive","company":"array","latitude":0.23611428,"longitude":0.124483414,"name":"Rubber","country_code":"CZ","province_code":"Spurs"},{"first_name":"Katelyn","address1":"Cambridgeshire","phone":"applications","city":"Kelsieland","zip":"programming","province":"compressing","country":"Ireland","last_name":"Pfannerstill","address2":"matrix","company":"Technician","latitude":0.72225523,"longitude":0.35374406,"name":"Divide","country_code":"SZ","province_code":"panel"},{"first_name":"Lea","address1":"Estates","phone":"efficient","city":"East Ginaville","zip":"firmware","province":"Unbranded Soft Fish","country":"Botswana","last_name":"DuBuque","address2":"Lithuanian Litas","company":"grey","latitude":0.5143434,"longitude":0.02533377,"name":"bi-directional","country_code":"VE","province_code":"Solutions"},{"first_name":"Carrie","address1":"Jeramy Throughway","phone":"Assurance","city":"Gibsonview","zip":"synthesizing","province":"Colorado","country":"Swaziland","last_name":"Kilback","address2":null,"company":"Gorgeous Plastic Gloves","latitude":0.11702666,"longitude":0.10429706,"name":"Cook Islands","country_code":"GS","province_code":"Stand-alone"}]},{"id":2749411904086582414,"email":"Stephanie.Armstrong76@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T17:55:41.4762761+01:00","updated_at":"2020-09-16T01:16:02.6507235+01:00","first_name":"Mina","last_name":"Haley","orders_count":-578415174,"state":"Georgia","total_spent":"lime","last_order_id":1615125385875568476,"note":"empower","verified_email":false,"multipass_identifier":"encryption","tax_exempt":true,"tags":"grey","last_order_name":"Quality","default_address":{"first_name":"Xavier","address1":"Aubree Light","phone":"Berkshire","city":"East Rosalee","zip":"Berkshire","province":null,"country":"Tanzania","last_name":"Gaylord","address2":null,"company":"HTTP","latitude":0.3943896,"longitude":0.24977398,"name":"GB","country_code":"DJ","province_code":"New Taiwan Dollar"},"addresses":[{"first_name":"Bryon","address1":"blue","phone":"generating","city":"Riceville","zip":"Berkshire","province":"monitor","country":"Nigeria","last_name":"Shanahan","address2":"Kazakhstan","company":"Gorgeous Plastic Bike","latitude":0.23367849,"longitude":0.16926381,"name":"Clothing \u0026 Toys","country_code":"GM","province_code":"Product"},{"first_name":"Marisol","address1":"Steel","phone":"indigo","city":"Jewellland","zip":"Regional","province":"system","country":"Papua New Guinea","last_name":"Steuber","address2":"SSL","company":"Togo","latitude":0.86858267,"longitude":0.49076435,"name":"seize","country_code":"NG","province_code":"Metal"},{"first_name":"Freddy","address1":"schemas","phone":"Row","city":"North Gilbertofurt","zip":"XML","province":"Pound Sterling","country":"Colombia","last_name":"Wolff","address2":"Swiss Franc","company":"Soft","latitude":0.6497201,"longitude":0.9164595,"name":"Gorgeous","country_code":"IQ","province_code":"withdrawal"},{"first_name":"Xavier","address1":"Aubree Light","phone":"Berkshire","city":"East Rosalee","zip":"Berkshire","province":null,"country":"Tanzania","last_name":"Gaylord","address2":null,"company":"HTTP","latitude":0.3943896,"longitude":0.24977398,"name":"GB","country_code":"DJ","province_code":"New Taiwan Dollar"}]},{"id":-330502110152773020,"email":"Roxanne_Robel@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T04:40:48.5633918+01:00","updated_at":"2020-09-16T02:55:04.4007528+01:00","first_name":"Mandy","last_name":"Bins","orders_count":-156231637,"state":"Wisconsin","total_spent":"Global","last_order_id":6245539929180941238,"note":"Sleek Plastic Tuna","verified_email":false,"multipass_identifier":"online","tax_exempt":false,"tags":"Investor","last_order_name":"Lead","default_address":{"first_name":"Sydni","address1":"Waelchi Manors","phone":"Unbranded","city":"Hermannland","zip":"Oklahoma","province":null,"country":"Guyana","last_name":"Davis","address2":null,"company":"Brand","latitude":0.9088058,"longitude":0.2707896,"name":"Lao People\u0027s Democratic Republic","country_code":"BY","province_code":"Home Loan Account"},"addresses":[{"first_name":"Earlene","address1":"Handcrafted","phone":"Intelligent Metal Chips","city":"Emilyberg","zip":"Ergonomic Granite Mouse","province":"Centralized","country":"Sierra Leone","last_name":"Mosciski","address2":"International","company":"paradigms","latitude":0.18850005,"longitude":0.00061416486,"name":"Comoros","country_code":"MQ","province_code":"Grocery"},{"first_name":"Okey","address1":"Ergonomic Steel Table","phone":"Fantastic Granite Chair","city":"Sabrynafurt","zip":"circuit","province":"Senior","country":"Equatorial Guinea","last_name":"Runte","address2":"Rustic Plastic Cheese","company":"Kyrgyz Republic","latitude":0.07994146,"longitude":0.8019357,"name":"Gorgeous","country_code":"CF","province_code":"copy"},{"first_name":"Bernardo","address1":"United States Minor Outlying Islands","phone":"24/7","city":"North Collinport","zip":"Facilitator","province":"Director","country":"Slovenia","last_name":"Lowe","address2":"Technician","company":"Borders","latitude":0.6678292,"longitude":0.11937749,"name":"Run","country_code":"CG","province_code":"e-enable"},{"first_name":"Sydni","address1":"Waelchi Manors","phone":"Unbranded","city":"Hermannland","zip":"Oklahoma","province":null,"country":"Guyana","last_name":"Davis","address2":null,"company":"Brand","latitude":0.9088058,"longitude":0.2707896,"name":"Lao People\u0027s Democratic Republic","country_code":"BY","province_code":"Home Loan Account"}]},{"id":7709038199044566913,"email":"Samuel_Runolfsson94@hotmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:19:10.0505917+01:00","updated_at":"2020-09-16T03:22:41.7480277+01:00","first_name":"Tevin","last_name":"Kuhlman","orders_count":1515984176,"state":"Ohio","total_spent":"Handmade","last_order_id":774068843583377495,"note":"Savings Account","verified_email":true,"multipass_identifier":"Practical Concrete Tuna","tax_exempt":false,"tags":"bypass","last_order_name":"Coves","default_address":{"first_name":"Taylor","address1":"Domenico Stream","phone":"XSS","city":"East Randyport","zip":"Cotton","province":null,"country":"Nepal","last_name":"Bins","address2":null,"company":"Personal Loan Account","latitude":0.3900756,"longitude":0.2645045,"name":"bypassing","country_code":"TO","province_code":"conglomeration"},"addresses":[{"first_name":"Stone","address1":"Ville","phone":"South Dakota","city":"Isommouth","zip":"Colombian Peso","province":"robust","country":"Afghanistan","last_name":"Bins","address2":"Balanced","company":"CSS","latitude":0.558404,"longitude":0.8861784,"name":"invoice","country_code":"RE","province_code":"matrix"},{"first_name":"Stephanie","address1":"object-oriented","phone":"wireless","city":"Langoshbury","zip":"enhance","province":"bypass","country":"Serbia","last_name":"Mohr","address2":"Directives","company":"Generic","latitude":0.6187562,"longitude":0.16153108,"name":"e-markets","country_code":"AQ","province_code":"Licensed"},{"first_name":"Ruth","address1":"SSL","phone":"Fantastic Soft Mouse","city":"Waelchibury","zip":"Assurance","province":"Practical Wooden Bike","country":"Netherlands","last_name":"Jacobson","address2":"bypassing","company":"virtual","latitude":0.54499876,"longitude":0.73072785,"name":"Administrator","country_code":"CD","province_code":"Security"},{"first_name":"Taylor","address1":"Domenico Stream","phone":"XSS","city":"East Randyport","zip":"Cotton","province":null,"country":"Nepal","last_name":"Bins","address2":null,"company":"Personal Loan Account","latitude":0.3900756,"longitude":0.2645045,"name":"bypassing","country_code":"TO","province_code":"conglomeration"}]},{"id":-1350232410188029192,"email":"Noel.Lebsack@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T06:29:44.0653207+01:00","updated_at":"2020-09-16T00:46:52.38226+01:00","first_name":"Eusebio","last_name":"Murphy","orders_count":1830283453,"state":"Mississippi","total_spent":"PCI","last_order_id":767462453734609909,"note":"lavender","verified_email":true,"multipass_identifier":"magnetic","tax_exempt":false,"tags":"Interactions","last_order_name":"non-volatile","default_address":{"first_name":"Maximilian","address1":"Elissa Road","phone":"Frozen","city":"Lake Janiyaside","zip":"teal","province":"Vermont","country":"Niger","last_name":"Harvey","address2":null,"company":"Beauty, Kids \u0026 Clothing","latitude":0.33954582,"longitude":0.32256073,"name":"initiative","country_code":"IO","province_code":"SCSI"},"addresses":[{"first_name":"Raymond","address1":"Buckinghamshire","phone":"robust","city":"Raynorton","zip":"value-added","province":"Handcrafted Rubber Chicken","country":"Gabon","last_name":"Leannon","address2":"Saudi Arabia","company":"connect","latitude":0.5508708,"longitude":0.6495972,"name":"middleware","country_code":"EH","province_code":"Locks"},{"first_name":"Syble","address1":"Metrics","phone":"Macedonia","city":"Keeblerburgh","zip":"compressing","province":"embrace","country":"Guernsey","last_name":"Wilderman","address2":"Kids \u0026 Shoes","company":"back-end","latitude":0.09943722,"longitude":0.5558206,"name":"whiteboard","country_code":"RO","province_code":"COM"},{"first_name":"Evans","address1":"knowledge base","phone":"holistic","city":"Eudoraside","zip":"Bedfordshire","province":"Agent","country":"Togo","last_name":"Heathcote","address2":"Diverse","company":"Facilitator","latitude":0.63907444,"longitude":0.4193961,"name":"transmit","country_code":"KI","province_code":"New Mexico"},{"first_name":"Maximilian","address1":"Elissa Road","phone":"Frozen","city":"Lake Janiyaside","zip":"teal","province":"Vermont","country":"Niger","last_name":"Harvey","address2":null,"company":"Beauty, Kids \u0026 Clothing","latitude":0.33954582,"longitude":0.32256073,"name":"initiative","country_code":"IO","province_code":"SCSI"}]},{"id":-5157553390370596823,"email":"Keith.Runolfsson@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T03:07:34.3146192+01:00","updated_at":"2020-09-15T15:05:33.0805532+01:00","first_name":"Pietro","last_name":"Feest","orders_count":-809297418,"state":"Kentucky","total_spent":"Credit Card Account","last_order_id":6425679928629993468,"note":"Books","verified_email":true,"multipass_identifier":"protocol","tax_exempt":true,"tags":"XSS","last_order_name":"Sports","default_address":{"first_name":"Winfield","address1":"Pouros Loaf","phone":"bandwidth","city":"North Doyle","zip":"Beauty","province":null,"country":"United Kingdom","last_name":"Bauch","address2":"Garnet Locks","company":"panel","latitude":0.6938083,"longitude":0.6647738,"name":"Isle","country_code":"AE","province_code":"Home Loan Account"},"addresses":[{"first_name":"Demetris","address1":"Plastic","phone":"capability","city":"North Bradybury","zip":"Kentucky","province":"Dynamic","country":"Mali","last_name":"Dibbert","address2":"reboot","company":"infrastructures","latitude":0.53106934,"longitude":0.5643099,"name":"Cuban Peso Convertible","country_code":"IL","province_code":"copying"},{"first_name":"Dejon","address1":"multi-tasking","phone":"Applications","city":"Hermannville","zip":"Incredible Frozen Car","province":"input","country":"Haiti","last_name":"Wiegand","address2":"withdrawal","company":"Solutions","latitude":0.8751561,"longitude":0.91147727,"name":"Incredible","country_code":"CF","province_code":"Refined Granite Chair"},{"first_name":"Deron","address1":"Fantastic Granite Pizza","phone":"Borders","city":"Port Shawna","zip":"Cambodia","province":"card","country":"Djibouti","last_name":"Murphy","address2":"Chilean Peso","company":"override","latitude":0.24803144,"longitude":0.7046462,"name":"Principal","country_code":"TG","province_code":"copy"},{"first_name":"Winfield","address1":"Pouros Loaf","phone":"bandwidth","city":"North Doyle","zip":"Beauty","province":null,"country":"United Kingdom","last_name":"Bauch","address2":"Garnet Locks","company":"panel","latitude":0.6938083,"longitude":0.6647738,"name":"Isle","country_code":"AE","province_code":"Home Loan Account"}]},{"id":-6270238052728741096,"email":"Ted3@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T23:41:15.0810922+01:00","updated_at":"2020-09-16T03:51:05.2283317+01:00","first_name":"Jaylan","last_name":"Kling","orders_count":478274400,"state":"Nebraska","total_spent":"back-end","last_order_id":732773660726050582,"note":"program","verified_email":true,"multipass_identifier":"GB","tax_exempt":true,"tags":"initiatives","last_order_name":"green","default_address":{"first_name":"Veronica","address1":"Ulises Valleys","phone":"azure","city":"South Maude","zip":"intuitive","province":"California","country":"Mauritania","last_name":"Boehm","address2":null,"company":"AGP","latitude":0.47725978,"longitude":0.19087262,"name":"input","country_code":"ST","province_code":"Practical Wooden Chicken"},"addresses":[{"first_name":"Durward","address1":"incentivize","phone":"Guinea","city":"Celiamouth","zip":"Rest","province":"Meadow","country":"South Georgia and the South Sandwich Islands","last_name":"Mitchell","address2":"Delaware","company":"Computers","latitude":0.8631475,"longitude":0.88620377,"name":"Security","country_code":"UA","province_code":"Stream"},{"first_name":"Camden","address1":"Handcrafted Granite Pizza","phone":"collaborative","city":"South Angus","zip":"transmitter","province":"metrics","country":"Mauritius","last_name":"Bernier","address2":"hybrid","company":"Total","latitude":0.57475597,"longitude":0.5012689,"name":"XML","country_code":"BE","province_code":"Investment Account"},{"first_name":"Kenyon","address1":"compress","phone":"orange","city":"Lake Colby","zip":"database","province":"back-end","country":"Cuba","last_name":"Dibbert","address2":"value-added","company":"index","latitude":0.829793,"longitude":0.12210045,"name":"Streamlined","country_code":"GF","province_code":"payment"},{"first_name":"Veronica","address1":"Ulises Valleys","phone":"azure","city":"South Maude","zip":"intuitive","province":"California","country":"Mauritania","last_name":"Boehm","address2":null,"company":"AGP","latitude":0.47725978,"longitude":0.19087262,"name":"input","country_code":"ST","province_code":"Practical Wooden Chicken"}]},{"id":3949949538409780998,"email":"Raymond.Zieme@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T09:20:51.7041802+01:00","updated_at":"2020-09-15T14:06:15.2855134+01:00","first_name":"Connor","last_name":"Herzog","orders_count":-1195218835,"state":"Oklahoma","total_spent":"Ohio","last_order_id":-1870272814475983411,"note":"card","verified_email":true,"multipass_identifier":"revolutionize","tax_exempt":false,"tags":"Tasty Plastic Table","last_order_name":"Money Market Account","default_address":{"first_name":"Grady","address1":"Bayer Mount","phone":"Computers \u0026 Games","city":"Lake Maybellechester","zip":"generate","province":null,"country":"Saudi Arabia","last_name":"Murphy","address2":null,"company":"Garden","latitude":0.014394206,"longitude":0.6697355,"name":"web services","country_code":"GA","province_code":"fault-tolerant"},"addresses":[{"first_name":"Seth","address1":"Nakfa","phone":"Virgin Islands, British","city":"West Louieport","zip":"bypass","province":"Cambridgeshire","country":"Slovenia","last_name":"O\u0027Keefe","address2":"violet","company":"Checking Account","latitude":0.8933042,"longitude":0.80155015,"name":"Fantastic Granite Tuna","country_code":"KM","province_code":"Generic"},{"first_name":"Miles","address1":"Ville","phone":"interface","city":"Donnellhaven","zip":"Optimization","province":"Movies","country":"Seychelles","last_name":"Goyette","address2":"Business-focused","company":"Small Rubber Chips","latitude":0.88800234,"longitude":0.83051187,"name":"relationships","country_code":"TD","province_code":"Intranet"},{"first_name":"Lillian","address1":"Developer","phone":"platforms","city":"Skyefort","zip":"maroon","province":"transmitter","country":"Poland","last_name":"Schoen","address2":"US Dollar","company":"Implementation","latitude":0.83833003,"longitude":0.85982823,"name":"enable","country_code":"BO","province_code":"Place"},{"first_name":"Grady","address1":"Bayer Mount","phone":"Computers \u0026 Games","city":"Lake Maybellechester","zip":"generate","province":null,"country":"Saudi Arabia","last_name":"Murphy","address2":null,"company":"Garden","latitude":0.014394206,"longitude":0.6697355,"name":"web services","country_code":"GA","province_code":"fault-tolerant"}]},{"id":-8245197899069761189,"email":"Lloyd_Fadel@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T06:26:00.4220701+01:00","updated_at":"2020-09-15T21:32:51.0681222+01:00","first_name":"Felicity","last_name":"Kozey","orders_count":2053326905,"state":"Virginia","total_spent":"Way","last_order_id":-8786516378805859226,"note":"Georgia","verified_email":false,"multipass_identifier":"generate","tax_exempt":true,"tags":"National","last_order_name":"calculating","default_address":{"first_name":"Matt","address1":"Schmeler Branch","phone":"USB","city":"Bridiemouth","zip":"maximize","province":null,"country":"Benin","last_name":"Paucek","address2":null,"company":"Ghana","latitude":0.7278752,"longitude":0.92420185,"name":"backing up","country_code":"GR","province_code":"Bedfordshire"},"addresses":[{"first_name":"Maximo","address1":"deliver","phone":"Home Loan Account","city":"Reynoldshire","zip":"online","province":"sky blue","country":"Tajikistan","last_name":"Hane","address2":"e-markets","company":"matrix","latitude":0.6353469,"longitude":0.7375188,"name":"International","country_code":"DZ","province_code":"THX"},{"first_name":"Arianna","address1":"Saudi Riyal","phone":"archive","city":"West Kennachester","zip":"Cambridgeshire","province":"bypassing","country":"Vietnam","last_name":"Lindgren","address2":"Assistant","company":"circuit","latitude":0.7374935,"longitude":0.98784304,"name":"UIC-Franc","country_code":"IR","province_code":"project"},{"first_name":"Queen","address1":"SDR","phone":"Maryland","city":"Port Ruthhaven","zip":"withdrawal","province":"Lead","country":"Ireland","last_name":"Reinger","address2":"driver","company":"Credit Card Account","latitude":0.89237654,"longitude":0.676159,"name":"Madagascar","country_code":"GF","province_code":"Unbranded Steel Towels"},{"first_name":"Matt","address1":"Schmeler Branch","phone":"USB","city":"Bridiemouth","zip":"maximize","province":null,"country":"Benin","last_name":"Paucek","address2":null,"company":"Ghana","latitude":0.7278752,"longitude":0.92420185,"name":"backing up","country_code":"GR","province_code":"Bedfordshire"}]},{"id":5411901611456186762,"email":"Cedric93@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T02:05:56.9631643+01:00","updated_at":"2020-09-16T01:47:52.1827812+01:00","first_name":"Marilie","last_name":"Yundt","orders_count":938905497,"state":"Maine","total_spent":"back-end","last_order_id":2782554998494152813,"note":"quantify","verified_email":true,"multipass_identifier":"JBOD","tax_exempt":false,"tags":"Re-engineered","last_order_name":"Mayotte","default_address":{"first_name":"Nya","address1":"Annamae Station","phone":"Licensed","city":"North Jazminborough","zip":"Lodge","province":"Massachusetts","country":"Kyrgyz Republic","last_name":"Nader","address2":null,"company":"Som","latitude":0.42387116,"longitude":0.7461869,"name":"withdrawal","country_code":"VA","province_code":"Pike"},"addresses":[{"first_name":"Asia","address1":"compress","phone":"reboot","city":"Baileefurt","zip":"mobile","province":"Philippines","country":"Madagascar","last_name":"Labadie","address2":"enhance","company":"mesh","latitude":0.7180965,"longitude":0.049737636,"name":"compress","country_code":"SR","province_code":"Licensed Frozen Keyboard"},{"first_name":"Delmer","address1":"Dynamic","phone":"quantify","city":"Karleyside","zip":"Maine","province":"Senior","country":"Mongolia","last_name":"Bartoletti","address2":"backing up","company":"homogeneous","latitude":0.051172674,"longitude":0.8083431,"name":"deposit","country_code":"LA","province_code":"Gardens"},{"first_name":"Myles","address1":"haptic","phone":"mobile","city":"Port Jerryfurt","zip":"gold","province":"5th generation","country":"Azerbaijan","last_name":"Block","address2":"Lilangeni","company":"National","latitude":0.37165424,"longitude":0.98772514,"name":"SQL","country_code":"BZ","province_code":"copying"},{"first_name":"Nya","address1":"Annamae Station","phone":"Licensed","city":"North Jazminborough","zip":"Lodge","province":"Massachusetts","country":"Kyrgyz Republic","last_name":"Nader","address2":null,"company":"Som","latitude":0.42387116,"longitude":0.7461869,"name":"withdrawal","country_code":"VA","province_code":"Pike"}]},{"id":7200797272515057270,"email":"Lucy_Waters47@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T20:35:45.9023248+01:00","updated_at":"2020-09-16T01:03:38.7204013+01:00","first_name":"Anais","last_name":"Lockman","orders_count":-950400261,"state":"Hawaii","total_spent":"SMS","last_order_id":-4369357295537494698,"note":"Re-engineered","verified_email":true,"multipass_identifier":"multi-byte","tax_exempt":true,"tags":"Roads","last_order_name":"HTTP","default_address":{"first_name":"Damaris","address1":"Barrows River","phone":"system-worthy","city":"East Chetton","zip":"1080p","province":null,"country":"Belize","last_name":"Wolff","address2":null,"company":"compress","latitude":0.6406222,"longitude":0.9157587,"name":"payment","country_code":"TK","province_code":"bandwidth-monitored"},"addresses":[{"first_name":"Cathrine","address1":"International","phone":"Cloned","city":"Spinkafort","zip":"Electronics, Kids \u0026 Kids","province":"Pula","country":"Niue","last_name":"Bernhard","address2":"evolve","company":"program","latitude":0.34469342,"longitude":0.8002931,"name":"disintermediate","country_code":"NC","province_code":"Tactics"},{"first_name":"Freida","address1":"generate","phone":"Home Loan Account","city":"Macyland","zip":"array","province":"Fresh","country":"Moldova","last_name":"Hegmann","address2":"Plastic","company":"digital","latitude":0.11493664,"longitude":0.45161587,"name":"vortals","country_code":"NR","province_code":"analyzer"},{"first_name":"Edward","address1":"Awesome Soft Bacon","phone":"executive","city":"Jamieberg","zip":"New Hampshire","province":"application","country":"Finland","last_name":"Legros","address2":"Refined","company":"invoice","latitude":0.11343644,"longitude":0.48020223,"name":"Glen","country_code":"PA","province_code":"Avon"},{"first_name":"Damaris","address1":"Barrows River","phone":"system-worthy","city":"East Chetton","zip":"1080p","province":null,"country":"Belize","last_name":"Wolff","address2":null,"company":"compress","latitude":0.6406222,"longitude":0.9157587,"name":"payment","country_code":"TK","province_code":"bandwidth-monitored"}]},{"id":-5012977197617731154,"email":"Violet_Pagac@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T10:28:51.8248997+01:00","updated_at":"2020-09-15T14:15:03.6136767+01:00","first_name":"Russel","last_name":"Murphy","orders_count":-1237005816,"state":"Connecticut","total_spent":"transmitting","last_order_id":5777484254289822412,"note":"interfaces","verified_email":false,"multipass_identifier":"Coordinator","tax_exempt":false,"tags":"Forward","last_order_name":"Alaska","default_address":{"first_name":"Geovany","address1":"Mann Causeway","phone":"green","city":"Garrymouth","zip":"Roads","province":null,"country":"United Kingdom","last_name":"Blanda","address2":null,"company":"Fantastic Plastic Hat","latitude":0.7286596,"longitude":0.5114789,"name":"Wooden","country_code":"KG","province_code":"orchid"},"addresses":[{"first_name":"Junior","address1":"North Dakota","phone":"full-range","city":"Kuhlmanfort","zip":"Personal Loan Account","province":"matrix","country":"Cayman Islands","last_name":"Torphy","address2":"clicks-and-mortar","company":"open-source","latitude":0.3481649,"longitude":0.4490005,"name":"supply-chains","country_code":"TL","province_code":"Shoal"},{"first_name":"Devin","address1":"Brunei Dollar","phone":"Belarus","city":"Lake Murlbury","zip":"Facilitator","province":"THX","country":"Chile","last_name":"Legros","address2":"index","company":"Usability","latitude":0.58157414,"longitude":0.9123596,"name":"SAS","country_code":"BV","province_code":"enable"},{"first_name":"Angus","address1":"Idaho","phone":"Program","city":"Watsonview","zip":"New Jersey","province":"local area network","country":"France","last_name":"Cummings","address2":"Missouri","company":"Fantastic Plastic Salad","latitude":0.6837216,"longitude":0.2357027,"name":"Row","country_code":"UZ","province_code":"Solomon Islands"},{"first_name":"Geovany","address1":"Mann Causeway","phone":"green","city":"Garrymouth","zip":"Roads","province":null,"country":"United Kingdom","last_name":"Blanda","address2":null,"company":"Fantastic Plastic Hat","latitude":0.7286596,"longitude":0.5114789,"name":"Wooden","country_code":"KG","province_code":"orchid"}]},{"id":1071871722723999049,"email":"Elvira_Gleason46@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T02:06:43.2489246+01:00","updated_at":"2020-09-15T13:35:54.0974557+01:00","first_name":"Allie","last_name":"Nitzsche","orders_count":-1939334131,"state":"Kentucky","total_spent":"Unbranded Frozen Tuna","last_order_id":-1842536886328097277,"note":"Ohio","verified_email":false,"multipass_identifier":"dynamic","tax_exempt":true,"tags":"Greece","last_order_name":"transmit","default_address":{"first_name":"Yesenia","address1":"Roderick Expressway","phone":"Bedfordshire","city":"West Phyllisport","zip":"program","province":"New Hampshire","country":"Romania","last_name":"Oberbrunner","address2":null,"company":"Functionality","latitude":0.6871647,"longitude":0.55859303,"name":"European Monetary Unit (E.M.U.-6)","country_code":"BQ","province_code":"Cambridgeshire"},"addresses":[{"first_name":"Issac","address1":"deliverables","phone":"Avon","city":"North Brian","zip":"South Dakota","province":"deposit","country":"Mozambique","last_name":"Kuphal","address2":"Green","company":"throughput","latitude":0.04258345,"longitude":0.42839578,"name":"transmit","country_code":"NP","province_code":"connect"},{"first_name":"Marc","address1":"Small","phone":"backing up","city":"Lake Camillaberg","zip":"Cyprus","province":"Licensed","country":"Pakistan","last_name":"Schneider","address2":"Plains","company":"Fantastic Wooden Pizza","latitude":0.46160424,"longitude":0.7948651,"name":"grow","country_code":"PG","province_code":"Track"},{"first_name":"Garrick","address1":"Granite","phone":"neural","city":"Jedchester","zip":"deposit","province":"Ridge","country":"Ethiopia","last_name":"Sporer","address2":"functionalities","company":"flexibility","latitude":0.35568455,"longitude":0.8517735,"name":"Ergonomic Granite Computer","country_code":"GP","province_code":"innovative"},{"first_name":"Yesenia","address1":"Roderick Expressway","phone":"Bedfordshire","city":"West Phyllisport","zip":"program","province":"New Hampshire","country":"Romania","last_name":"Oberbrunner","address2":null,"company":"Functionality","latitude":0.6871647,"longitude":0.55859303,"name":"European Monetary Unit (E.M.U.-6)","country_code":"BQ","province_code":"Cambridgeshire"}]},{"id":6430892541461015590,"email":"Geraldine97@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T16:03:17.6596864+01:00","updated_at":"2020-09-16T01:29:51.3329471+01:00","first_name":"Gia","last_name":"Hyatt","orders_count":-1889685072,"state":"Michigan","total_spent":"Fresh","last_order_id":-6330339866591866527,"note":"Industrial","verified_email":false,"multipass_identifier":"Brooks","tax_exempt":true,"tags":"Sleek Cotton Pants","last_order_name":"deposit","default_address":{"first_name":"Dayton","address1":"Horacio River","phone":"XML","city":"Brycenberg","zip":"override","province":null,"country":"Virgin Islands, U.S.","last_name":"Wilderman","address2":"Devan Creek","company":"payment","latitude":0.5550434,"longitude":0.06514018,"name":"Awesome Frozen Chair","country_code":"AW","province_code":"innovate"},"addresses":[{"first_name":"Domingo","address1":"Rubber","phone":"regional","city":"North Leoport","zip":"Progressive","province":"Soft","country":"Sweden","last_name":"Kozey","address2":"Gorgeous Plastic Car","company":"Optimized","latitude":0.031266097,"longitude":0.08466371,"name":"evolve","country_code":"SX","province_code":"Japan"},{"first_name":"Gladyce","address1":"AGP","phone":"Plastic","city":"Greenton","zip":"withdrawal","province":"programming","country":"Norfolk Island","last_name":"Konopelski","address2":"Identity","company":"tan","latitude":0.03560356,"longitude":0.67937356,"name":"Cote d\u0027Ivoire","country_code":"MN","province_code":"incentivize"},{"first_name":"Germaine","address1":"cross-platform","phone":"cross-platform","city":"Kohlerborough","zip":"Home Loan Account","province":"Tasty Metal Mouse","country":"Serbia","last_name":"Parisian","address2":"bypass","company":"withdrawal","latitude":0.24809949,"longitude":0.26383966,"name":"Meadow","country_code":"DM","province_code":"Viaduct"},{"first_name":"Dayton","address1":"Horacio River","phone":"XML","city":"Brycenberg","zip":"override","province":null,"country":"Virgin Islands, U.S.","last_name":"Wilderman","address2":"Devan Creek","company":"payment","latitude":0.5550434,"longitude":0.06514018,"name":"Awesome Frozen Chair","country_code":"AW","province_code":"innovate"}]},{"id":-3784188239070913641,"email":"Gerald26@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T15:33:10.437416+01:00","updated_at":"2020-09-15T20:18:19.8117044+01:00","first_name":"Yazmin","last_name":"Tillman","orders_count":1382862444,"state":"Washington","total_spent":"withdrawal","last_order_id":5251259655438497085,"note":"input","verified_email":true,"multipass_identifier":"Wells","tax_exempt":true,"tags":"Guinea-Bissau","last_order_name":"Multi-layered","default_address":{"first_name":"Gaylord","address1":"George Harbors","phone":"Extension","city":"New Vitamouth","zip":"Metal","province":null,"country":"Trinidad and Tobago","last_name":"McGlynn","address2":null,"company":"reboot","latitude":0.32212314,"longitude":0.23543558,"name":"Awesome Soft Gloves","country_code":"SZ","province_code":"Small Cotton Chips"},"addresses":[{"first_name":"Andreanne","address1":"Agent","phone":"Saint Pierre and Miquelon","city":"East Margueriteton","zip":"Bahamas","province":"envisioneer","country":"United States Minor Outlying Islands","last_name":"Weber","address2":"virtual","company":"Money Market Account","latitude":0.30954537,"longitude":0.47787765,"name":"Georgia","country_code":"BE","province_code":"Intelligent"},{"first_name":"Lottie","address1":"Hong Kong Dollar","phone":"Utah","city":"Justenshire","zip":"Advanced","province":"European Unit of Account 9(E.U.A.-9)","country":"Dominican Republic","last_name":"Crona","address2":"Pines","company":"web-readiness","latitude":0.21121119,"longitude":0.7158595,"name":"Strategist","country_code":"CY","province_code":"Lead"},{"first_name":"Dominic","address1":"convergence","phone":"synthesizing","city":"Ziemannberg","zip":"fuchsia","province":"Tennessee","country":"French Polynesia","last_name":"Gerlach","address2":"flexibility","company":"Rustic Granite Ball","latitude":0.23848832,"longitude":0.73305905,"name":"holistic","country_code":"BD","province_code":"invoice"},{"first_name":"Gaylord","address1":"George Harbors","phone":"Extension","city":"New Vitamouth","zip":"Metal","province":null,"country":"Trinidad and Tobago","last_name":"McGlynn","address2":null,"company":"reboot","latitude":0.32212314,"longitude":0.23543558,"name":"Awesome Soft Gloves","country_code":"SZ","province_code":"Small Cotton Chips"}]},{"id":-5311807536015260712,"email":"Roderick_Schultz71@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:22:28.9976957+01:00","updated_at":"2020-09-15T20:54:59.281092+01:00","first_name":"Lauren","last_name":"Rutherford","orders_count":1372893677,"state":"Missouri","total_spent":"Money Market Account","last_order_id":7471107138268253125,"note":"Music, Garden \u0026 Movies","verified_email":false,"multipass_identifier":"definition","tax_exempt":true,"tags":"impactful","last_order_name":"Guyana Dollar","default_address":{"first_name":"Joe","address1":"Green Vista","phone":"streamline","city":"Uptonside","zip":"Camp","province":null,"country":"Canada","last_name":"Little","address2":null,"company":"Bermudian Dollar (customarily known as Bermuda Dollar)","latitude":0.30303708,"longitude":0.22646515,"name":"withdrawal","country_code":"LI","province_code":"Via"},"addresses":[{"first_name":"Tremaine","address1":"Savings Account","phone":"Circles","city":"Oscarhaven","zip":"communities","province":"Cambridgeshire","country":"Estonia","last_name":"Braun","address2":"Lakes","company":"azure","latitude":0.79599774,"longitude":0.21298389,"name":"Distributed","country_code":"ET","province_code":"functionalities"},{"first_name":"Amparo","address1":"sensor","phone":"South Carolina","city":"Framitown","zip":"visualize","province":"viral","country":"Qatar","last_name":"Adams","address2":"tan","company":"View","latitude":0.4708028,"longitude":0.95616883,"name":"Tasty Cotton Towels","country_code":"GF","province_code":"bypass"},{"first_name":"Florida","address1":"black","phone":"Product","city":"Desireeshire","zip":"Ergonomic Wooden Ball","province":"grey","country":"Swaziland","last_name":"Medhurst","address2":"Infrastructure","company":"Cape Verde Escudo","latitude":0.8378451,"longitude":0.37397474,"name":"Iowa","country_code":"GT","province_code":"Refined Wooden Sausages"},{"first_name":"Joe","address1":"Green Vista","phone":"streamline","city":"Uptonside","zip":"Camp","province":null,"country":"Canada","last_name":"Little","address2":null,"company":"Bermudian Dollar (customarily known as Bermuda Dollar)","latitude":0.30303708,"longitude":0.22646515,"name":"withdrawal","country_code":"LI","province_code":"Via"}]},{"id":7923300442365911901,"email":"Sonya.Daugherty67@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T02:29:41.9585251+01:00","updated_at":"2020-09-15T23:31:11.0699808+01:00","first_name":"Ella","last_name":"Larkin","orders_count":1017984325,"state":"Indiana","total_spent":"Internal","last_order_id":-6932853358217445957,"note":"Tactics","verified_email":false,"multipass_identifier":"Mobility","tax_exempt":false,"tags":"West Virginia","last_order_name":"ADP","default_address":{"first_name":"Hassan","address1":"McLaughlin Stream","phone":"Communications","city":"Aufderharstad","zip":"Garden","province":null,"country":"Nauru","last_name":"Jaskolski","address2":null,"company":"input","latitude":0.5846186,"longitude":0.38826293,"name":"Sleek","country_code":"BH","province_code":"Adaptive"},"addresses":[{"first_name":"Melyssa","address1":"Guam","phone":"Land","city":"New Kyleigh","zip":"PCI","province":"Credit Card Account","country":"Senegal","last_name":"Murphy","address2":"Valleys","company":"Visionary","latitude":0.29790324,"longitude":0.75631756,"name":"Convertible Marks","country_code":"CN","province_code":"Awesome Fresh Hat"},{"first_name":"Hillard","address1":"Switchable","phone":"system engine","city":"North Nikolas","zip":"primary","province":"Tools","country":"Eritrea","last_name":"Ondricka","address2":"cross-platform","company":"frictionless","latitude":0.29657546,"longitude":0.49687865,"name":"Generic Steel Ball","country_code":"KP","province_code":"Practical Rubber Tuna"},{"first_name":"Mervin","address1":"Pines","phone":"conglomeration","city":"Lake Dallin","zip":"quantify","province":"Unbranded Metal Soap","country":"Uzbekistan","last_name":"Jerde","address2":"driver","company":"Avon","latitude":0.45993042,"longitude":0.5225844,"name":"Electronics, Games \u0026 Automotive","country_code":"CY","province_code":"green"},{"first_name":"Hassan","address1":"McLaughlin Stream","phone":"Communications","city":"Aufderharstad","zip":"Garden","province":null,"country":"Nauru","last_name":"Jaskolski","address2":null,"company":"input","latitude":0.5846186,"longitude":0.38826293,"name":"Sleek","country_code":"BH","province_code":"Adaptive"}]},{"id":2632473516658701579,"email":"Kent49@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T11:14:20.2528968+01:00","updated_at":"2020-09-16T01:39:47.7817413+01:00","first_name":"Jesse","last_name":"Goyette","orders_count":-794906214,"state":"Wisconsin","total_spent":"Kids","last_order_id":3931058811944285162,"note":"Tasty Frozen Cheese","verified_email":true,"multipass_identifier":"Factors","tax_exempt":false,"tags":"pricing structure","last_order_name":"Generic Frozen Bike","default_address":{"first_name":"Wilford","address1":"Lourdes Camp","phone":"discrete","city":"Desmondborough","zip":"customer loyalty","province":null,"country":"Norway","last_name":"Predovic","address2":"Schaefer Knoll","company":"Unbranded","latitude":0.97121906,"longitude":0.43341923,"name":"maximize","country_code":"DE","province_code":"cross-platform"},"addresses":[{"first_name":"Ayden","address1":"SCSI","phone":"plum","city":"Dietrichshire","zip":"microchip","province":"Cuba","country":"Kazakhstan","last_name":"Yost","address2":"Turnpike","company":"Legacy","latitude":0.21919478,"longitude":0.061567016,"name":"Corporate","country_code":"BF","province_code":"brand"},{"first_name":"Melissa","address1":"whiteboard","phone":"Ergonomic","city":"South Ignatius","zip":"Investment Account","province":"CSS","country":"Costa Rica","last_name":"Gorczany","address2":"neural-net","company":"national","latitude":0.89497846,"longitude":0.3405301,"name":"Uzbekistan","country_code":"GU","province_code":"Gibraltar Pound"},{"first_name":"Ansel","address1":"calculate","phone":"payment","city":"West Larissa","zip":"deposit","province":"Facilitator","country":"Albania","last_name":"Connelly","address2":"Industrial","company":"lime","latitude":0.93411,"longitude":0.6889674,"name":"Handcrafted","country_code":"BQ","province_code":"Wooden"},{"first_name":"Wilford","address1":"Lourdes Camp","phone":"discrete","city":"Desmondborough","zip":"customer loyalty","province":null,"country":"Norway","last_name":"Predovic","address2":"Schaefer Knoll","company":"Unbranded","latitude":0.97121906,"longitude":0.43341923,"name":"maximize","country_code":"DE","province_code":"cross-platform"}]},{"id":-843641189187608879,"email":"Raymond.Larkin61@gmail.com","accepts_marketing":false,"created_at":"2020-09-15T14:09:17.0702411+01:00","updated_at":"2020-09-15T15:31:36.7329836+01:00","first_name":"Josue","last_name":"Stark","orders_count":98531735,"state":"Indiana","total_spent":"Automotive, Music \u0026 Shoes","last_order_id":-9049152761495165138,"note":"CSS","verified_email":true,"multipass_identifier":"Legacy","tax_exempt":false,"tags":"Trafficway","last_order_name":"TCP","default_address":{"first_name":"Macie","address1":"Lesly Prairie","phone":"transmitter","city":"South Bonnieside","zip":"Lead","province":null,"country":"Vanuatu","last_name":"Schamberger","address2":null,"company":"magenta","latitude":0.66105944,"longitude":0.34369344,"name":"payment","country_code":"AF","province_code":"parse"},"addresses":[{"first_name":"Louisa","address1":"Baby","phone":"Group","city":"Marcelborough","zip":"systematic","province":"supply-chains","country":"Thailand","last_name":"Quitzon","address2":"explicit","company":"Granite","latitude":0.5952899,"longitude":0.9349366,"name":"Investment Account","country_code":"DJ","province_code":"Egypt"},{"first_name":"Asa","address1":"Pakistan Rupee","phone":"Handmade Rubber Gloves","city":"Lake Ruthe","zip":"Unbranded Metal Ball","province":"paradigms","country":"Bangladesh","last_name":"Kunde","address2":"core","company":"IB","latitude":0.12850767,"longitude":0.7326846,"name":"Key","country_code":"LV","province_code":"Awesome Soft Chips"},{"first_name":"Tremayne","address1":"Incredible","phone":"Handmade","city":"Port Billville","zip":"Home Loan Account","province":"Refined Plastic Keyboard","country":"Poland","last_name":"Murphy","address2":"Won","company":"Nebraska","latitude":0.35156053,"longitude":0.49290586,"name":"alarm","country_code":"MK","province_code":"Wooden"},{"first_name":"Macie","address1":"Lesly Prairie","phone":"transmitter","city":"South Bonnieside","zip":"Lead","province":null,"country":"Vanuatu","last_name":"Schamberger","address2":null,"company":"magenta","latitude":0.66105944,"longitude":0.34369344,"name":"payment","country_code":"AF","province_code":"parse"}]},{"id":-828289429876332889,"email":"Ken.Bauch@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T06:31:44.6799109+01:00","updated_at":"2020-09-16T03:19:53.6718263+01:00","first_name":"Theresa","last_name":"Gorczany","orders_count":-571757668,"state":"Virginia","total_spent":"Illinois","last_order_id":-2750479641546807323,"note":"Fantastic Steel Ball","verified_email":true,"multipass_identifier":"overriding","tax_exempt":true,"tags":"PNG","last_order_name":"Internal","default_address":{"first_name":"Astrid","address1":"Runolfsson Trail","phone":"Chief","city":"Emersonside","zip":"AI","province":null,"country":"Saint Kitts and Nevis","last_name":"Hills","address2":null,"company":"Synergized","latitude":0.0737248,"longitude":0.07477021,"name":"Metrics","country_code":"KY","province_code":"Kids, Automotive \u0026 Clothing"},"addresses":[{"first_name":"Urban","address1":"Jersey","phone":"PNG","city":"Vickiefort","zip":"Awesome Concrete Pizza","province":"Automated","country":"Dominican Republic","last_name":"Feeney","address2":"Credit Card Account","company":"grow","latitude":0.56917495,"longitude":0.7485369,"name":"Indian Rupee","country_code":"MK","province_code":"Wooden"},{"first_name":"Leone","address1":"Granite","phone":"Rustic","city":"East Terranceside","zip":"purple","province":"olive","country":"New Caledonia","last_name":"Ruecker","address2":"Bedfordshire","company":"Fantastic","latitude":0.8945395,"longitude":0.5985837,"name":"District","country_code":"PN","province_code":"Practical Metal Cheese"},{"first_name":"Loma","address1":"virtual","phone":"Cambodia","city":"Kadinville","zip":"Implemented","province":"Sleek","country":"South Georgia and the South Sandwich Islands","last_name":"Hilpert","address2":"program","company":"navigating","latitude":0.7336069,"longitude":0.2629795,"name":"digital","country_code":"GI","province_code":"Kids, Computers \u0026 Garden"},{"first_name":"Astrid","address1":"Runolfsson Trail","phone":"Chief","city":"Emersonside","zip":"AI","province":null,"country":"Saint Kitts and Nevis","last_name":"Hills","address2":null,"company":"Synergized","latitude":0.0737248,"longitude":0.07477021,"name":"Metrics","country_code":"KY","province_code":"Kids, Automotive \u0026 Clothing"}]},{"id":-2069238798053464321,"email":"Kerry_Lindgren18@gmail.com","accepts_marketing":false,"created_at":"2020-09-16T07:28:17.0855267+01:00","updated_at":"2020-09-15T13:35:40.8954556+01:00","first_name":"Odessa","last_name":"Mraz","orders_count":901991648,"state":"Virginia","total_spent":"New Mexico","last_order_id":-7115833172864084101,"note":"Gorgeous Frozen Towels","verified_email":true,"multipass_identifier":"Licensed","tax_exempt":true,"tags":"Stravenue","last_order_name":"Legacy","default_address":{"first_name":"Cathy","address1":"Funk Union","phone":"Macao","city":"Feeneyfurt","zip":"Uganda Shilling","province":"North Carolina","country":"New Zealand","last_name":"Torp","address2":null,"company":"Mandatory","latitude":0.28973016,"longitude":0.7732056,"name":"Walk","country_code":"CA","province_code":"copying"},"addresses":[{"first_name":"Hilbert","address1":"generating","phone":"Borders","city":"West Elyse","zip":"Awesome Metal Ball","province":"Turks and Caicos Islands","country":"Guinea-Bissau","last_name":"O\u0027Hara","address2":"Singapore Dollar","company":"initiatives","latitude":0.7582756,"longitude":0.10346796,"name":"Electronics","country_code":"DJ","province_code":"User-centric"},{"first_name":"Elvie","address1":"Cook Islands","phone":"feed","city":"Christelleview","zip":"Light","province":"indexing","country":"Denmark","last_name":"Stoltenberg","address2":"Fantastic","company":"Licensed Cotton Bike","latitude":0.12395438,"longitude":0.43334723,"name":"Granite","country_code":"GD","province_code":"navigating"},{"first_name":"Janice","address1":"solid state","phone":"Director","city":"Lake Paolo","zip":"Small Granite Bacon","province":"Argentine Peso","country":"Isle of Man","last_name":"Boyer","address2":"Berkshire","company":"system","latitude":0.9972781,"longitude":0.08198454,"name":"Rustic Frozen Sausages","country_code":"NI","province_code":"Intelligent Cotton Fish"},{"first_name":"Cathy","address1":"Funk Union","phone":"Macao","city":"Feeneyfurt","zip":"Uganda Shilling","province":"North Carolina","country":"New Zealand","last_name":"Torp","address2":null,"company":"Mandatory","latitude":0.28973016,"longitude":0.7732056,"name":"Walk","country_code":"CA","province_code":"copying"}]},{"id":5099649964108887000,"email":"Chad.Daniel@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T05:35:24.6543238+01:00","updated_at":"2020-09-16T09:42:41.0528108+01:00","first_name":"Ethel","last_name":"Raynor","orders_count":-1323494348,"state":"Idaho","total_spent":"niches","last_order_id":-3537108313834293103,"note":"Jewelery","verified_email":true,"multipass_identifier":"Paradigm","tax_exempt":true,"tags":"Group","last_order_name":"Automotive, Computers \u0026 Baby","default_address":{"first_name":"Chaim","address1":"Pagac Bridge","phone":"Savings Account","city":"New Dominiqueburgh","zip":"Realigned","province":"Nebraska","country":"Haiti","last_name":"Quigley","address2":null,"company":"Small Fresh Pizza","latitude":0.9385953,"longitude":0.57356393,"name":"magnetic","country_code":"JE","province_code":"Borders"},"addresses":[{"first_name":"Eduardo","address1":"Crossroad","phone":"CSS","city":"East Rozellaberg","zip":"Tasty Rubber Computer","province":"Unbranded Frozen Shirt","country":"Greece","last_name":"Smitham","address2":"Island","company":"facilitate","latitude":0.84402335,"longitude":0.9166492,"name":"Technician","country_code":"LI","province_code":"impactful"},{"first_name":"Juanita","address1":"Direct","phone":"4th generation","city":"Everetteberg","zip":"connect","province":"Cambridgeshire","country":"Australia","last_name":"Quigley","address2":"Jamaican Dollar","company":"Functionality","latitude":0.37723646,"longitude":0.6046104,"name":"Borders","country_code":"TK","province_code":"Legacy"},{"first_name":"Abigail","address1":"e-markets","phone":"Maine","city":"Malindaberg","zip":"cyan","province":"Fresh","country":"Jordan","last_name":"Dooley","address2":"Frozen","company":"programming","latitude":0.43160385,"longitude":0.5098503,"name":"solid state","country_code":"SZ","province_code":"array"},{"first_name":"Chaim","address1":"Pagac Bridge","phone":"Savings Account","city":"New Dominiqueburgh","zip":"Realigned","province":"Nebraska","country":"Haiti","last_name":"Quigley","address2":null,"company":"Small Fresh Pizza","latitude":0.9385953,"longitude":0.57356393,"name":"magnetic","country_code":"JE","province_code":"Borders"}]},{"id":3796177459894646854,"email":"Christy84@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:14:46.0509226+01:00","updated_at":"2020-09-16T02:00:13.3418448+01:00","first_name":"Evert","last_name":"Fisher","orders_count":708929191,"state":"Alaska","total_spent":"Producer","last_order_id":-4677714421157799440,"note":"quantifying","verified_email":false,"multipass_identifier":"Infrastructure","tax_exempt":false,"tags":"red","last_order_name":"blue","default_address":{"first_name":"Chloe","address1":"Pagac Brook","phone":"Communications","city":"Lake Leonardohaven","zip":"Usability","province":null,"country":"Palestinian Territory","last_name":"Schamberger","address2":null,"company":"optical","latitude":0.4030111,"longitude":0.9246763,"name":"Granite","country_code":"RO","province_code":"synthesizing"},"addresses":[{"first_name":"Lester","address1":"Tasty","phone":"Fantastic Granite Car","city":"West Macy","zip":"Gorgeous Frozen Shirt","province":"France","country":"Monaco","last_name":"Kilback","address2":"solutions","company":"Fantastic Steel Pizza","latitude":0.9048519,"longitude":0.40821815,"name":"Home \u0026 Industrial","country_code":"CM","province_code":"withdrawal"},{"first_name":"Kareem","address1":"synergies","phone":"global","city":"South Paul","zip":"even-keeled","province":"Saint Lucia","country":"Peru","last_name":"Kerluke","address2":"Branding","company":"invoice","latitude":0.9829782,"longitude":0.23075224,"name":"deposit","country_code":"CO","province_code":"SCSI"},{"first_name":"Michale","address1":"TCP","phone":"Ohio","city":"North Jensenhaven","zip":"withdrawal","province":"success","country":"French Guiana","last_name":"Wiegand","address2":"back-end","company":"CSS","latitude":0.42148197,"longitude":0.3027598,"name":"Future","country_code":"CL","province_code":"Customer"},{"first_name":"Chloe","address1":"Pagac Brook","phone":"Communications","city":"Lake Leonardohaven","zip":"Usability","province":null,"country":"Palestinian Territory","last_name":"Schamberger","address2":null,"company":"optical","latitude":0.4030111,"longitude":0.9246763,"name":"Granite","country_code":"RO","province_code":"synthesizing"}]},{"id":-5361790321024949049,"email":"Christie22@yahoo.com","accepts_marketing":false,"created_at":"2020-09-16T00:38:30.2348116+01:00","updated_at":"2020-09-16T04:48:45.9624009+01:00","first_name":"Kelsie","last_name":"Kuhlman","orders_count":-1159838267,"state":"Texas","total_spent":"Israel","last_order_id":-4548993564041968599,"note":"Games \u0026 Garden","verified_email":false,"multipass_identifier":"withdrawal","tax_exempt":true,"tags":"Savings Account","last_order_name":"Soft","default_address":{"first_name":"Nickolas","address1":"Candice Radial","phone":"Wooden","city":"Yundtmouth","zip":"Refined","province":null,"country":"Burundi","last_name":"Haley","address2":null,"company":"Designer","latitude":0.21573353,"longitude":0.45975754,"name":"Concrete","country_code":"CW","province_code":"copy"},"addresses":[{"first_name":"Stone","address1":"Handcrafted Metal Gloves","phone":"mobile","city":"Huelsview","zip":"Summit","province":"Seamless","country":"Gambia","last_name":"Emard","address2":"Dynamic","company":"Optimization","latitude":0.87686396,"longitude":0.07466855,"name":"Rapids","country_code":"ID","province_code":"Developer"},{"first_name":"Cleo","address1":"iterate","phone":"Cross-platform","city":"West Caraburgh","zip":"Handcrafted","province":"Small","country":"Sweden","last_name":"Yost","address2":"transmitter","company":"deliver","latitude":0.93893665,"longitude":0.41050118,"name":"transmit","country_code":"BG","province_code":"Handmade Cotton Keyboard"},{"first_name":"Noemie","address1":"Malaysia","phone":"seamless","city":"Corbinton","zip":"Books","province":"lime","country":"Madagascar","last_name":"Upton","address2":"e-tailers","company":"whiteboard","latitude":0.11269718,"longitude":0.2191635,"name":"Canyon","country_code":"DM","province_code":"Consultant"},{"first_name":"Nickolas","address1":"Candice Radial","phone":"Wooden","city":"Yundtmouth","zip":"Refined","province":null,"country":"Burundi","last_name":"Haley","address2":null,"company":"Designer","latitude":0.21573353,"longitude":0.45975754,"name":"Concrete","country_code":"CW","province_code":"copy"}]},{"id":-1924847778520681537,"email":"Rex.Veum@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T08:17:02.3211338+01:00","updated_at":"2020-09-16T03:28:21.1299975+01:00","first_name":"Eladio","last_name":"Fritsch","orders_count":1941876277,"state":"New York","total_spent":"interface","last_order_id":-1677471947217109921,"note":"Sleek","verified_email":true,"multipass_identifier":"brand","tax_exempt":false,"tags":"Consultant","last_order_name":"reboot","default_address":{"first_name":"Jarrett","address1":"Lukas Locks","phone":"User-centric","city":"Crystelview","zip":"Borders","province":null,"country":"Tanzania","last_name":"Bernier","address2":null,"company":"Central","latitude":0.26685336,"longitude":0.39224827,"name":"SAS","country_code":"AF","province_code":"auxiliary"},"addresses":[{"first_name":"Lavon","address1":"Berkshire","phone":"invoice","city":"Port Rebecca","zip":"actuating","province":"Incredible Metal Chips","country":"Iceland","last_name":"McGlynn","address2":"Drive","company":"Bedfordshire","latitude":0.43653938,"longitude":0.20560262,"name":"Swedish Krona","country_code":"LU","province_code":"multimedia"},{"first_name":"Abraham","address1":"Mountain","phone":"database","city":"Port Jessechester","zip":"budgetary management","province":"drive","country":"Sri Lanka","last_name":"Quitzon","address2":"Granite","company":"Health","latitude":0.08104627,"longitude":0.45955744,"name":"SQL","country_code":"VN","province_code":"bandwidth-monitored"},{"first_name":"Germaine","address1":"hacking","phone":"program","city":"Dedrickmouth","zip":"Computers","province":"Inverse","country":"Tonga","last_name":"Schinner","address2":"hack","company":"Metal","latitude":0.57667977,"longitude":0.14906959,"name":"cutting-edge","country_code":"GH","province_code":"pixel"},{"first_name":"Jarrett","address1":"Lukas Locks","phone":"User-centric","city":"Crystelview","zip":"Borders","province":null,"country":"Tanzania","last_name":"Bernier","address2":null,"company":"Central","latitude":0.26685336,"longitude":0.39224827,"name":"SAS","country_code":"AF","province_code":"auxiliary"}]},{"id":-7310431724455310336,"email":"Jill.Stokes@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T00:18:37.89437+01:00","updated_at":"2020-09-16T11:04:01.1777063+01:00","first_name":"Vivianne","last_name":"Schuster","orders_count":2022538630,"state":"Nevada","total_spent":"Licensed Cotton Shirt","last_order_id":-1023824000870687159,"note":"withdrawal","verified_email":true,"multipass_identifier":"policy","tax_exempt":true,"tags":"Cotton","last_order_name":"Implemented","default_address":{"first_name":"Alvera","address1":"Darrel Groves","phone":"users","city":"Bayleemouth","zip":"Toys \u0026 Health","province":null,"country":"Gambia","last_name":"Bradtke","address2":null,"company":"Burg","latitude":0.51727635,"longitude":0.2037577,"name":"Configuration","country_code":"GI","province_code":"functionalities"},"addresses":[{"first_name":"Lawson","address1":"payment","phone":"Applications","city":"Ezraport","zip":"Strategist","province":"Guinea Franc","country":"Angola","last_name":"Thiel","address2":"fuchsia","company":"cross-media","latitude":0.25495335,"longitude":0.4412057,"name":"Generic Fresh Mouse","country_code":"NC","province_code":"orange"},{"first_name":"Filomena","address1":"Handmade Soft Ball","phone":"harness","city":"Terrychester","zip":"input","province":"Trail","country":"Rwanda","last_name":"Pollich","address2":"Ergonomic Metal Tuna","company":"Refined Cotton Pants","latitude":0.515323,"longitude":0.98324645,"name":"Supervisor","country_code":"DJ","province_code":"Fresh"},{"first_name":"Maud","address1":"Generic Plastic Sausages","phone":"Fantastic","city":"Juliettown","zip":"deposit","province":"Savings Account","country":"Kyrgyz Republic","last_name":"Hackett","address2":"International","company":"bypass","latitude":0.4480096,"longitude":0.64706725,"name":"Berkshire","country_code":"GS","province_code":"Investment Account"},{"first_name":"Alvera","address1":"Darrel Groves","phone":"users","city":"Bayleemouth","zip":"Toys \u0026 Health","province":null,"country":"Gambia","last_name":"Bradtke","address2":null,"company":"Burg","latitude":0.51727635,"longitude":0.2037577,"name":"Configuration","country_code":"GI","province_code":"functionalities"}]},{"id":3768587526275177067,"email":"Tina_Bayer@yahoo.com","accepts_marketing":true,"created_at":"2020-09-15T14:53:36.4485183+01:00","updated_at":"2020-09-16T01:17:42.5541514+01:00","first_name":"Eleazar","last_name":"Becker","orders_count":-571262242,"state":"South Dakota","total_spent":"override","last_order_id":-5917455804012564706,"note":"navigating","verified_email":false,"multipass_identifier":"Concrete","tax_exempt":false,"tags":"metrics","last_order_name":"Moldova","default_address":{"first_name":"Jaden","address1":"Carmelo Islands","phone":"Integration","city":"Rueckertown","zip":"Frozen","province":"Maine","country":"Eritrea","last_name":"Swaniawski","address2":null,"company":"Stravenue","latitude":0.051986124,"longitude":0.8222571,"name":"Fantastic Wooden Chicken","country_code":"TK","province_code":"Walks"},"addresses":[{"first_name":"Christine","address1":"Digitized","phone":"Berkshire","city":"West Destinyborough","zip":"Generic Granite Shoes","province":"technologies","country":"Niger","last_name":"Aufderhar","address2":"withdrawal","company":"synthesize","latitude":0.29560062,"longitude":0.5930182,"name":"copying","country_code":"MP","province_code":"Refined Frozen Hat"},{"first_name":"Maurice","address1":"Florida","phone":"world-class","city":"Andersonburgh","zip":"Direct","province":"tangible","country":"Cook Islands","last_name":"Nikolaus","address2":"Skyway","company":"Macedonia","latitude":0.8876562,"longitude":0.55399907,"name":"HTTP","country_code":"HU","province_code":"RSS"},{"first_name":"Savanna","address1":"visualize","phone":"Orchestrator","city":"East Tierra","zip":"impactful","province":"applications","country":"Kiribati","last_name":"Ledner","address2":"Program","company":"withdrawal","latitude":0.102364235,"longitude":0.87589484,"name":"sexy","country_code":"AO","province_code":"Money Market Account"},{"first_name":"Jaden","address1":"Carmelo Islands","phone":"Integration","city":"Rueckertown","zip":"Frozen","province":"Maine","country":"Eritrea","last_name":"Swaniawski","address2":null,"company":"Stravenue","latitude":0.051986124,"longitude":0.8222571,"name":"Fantastic Wooden Chicken","country_code":"TK","province_code":"Walks"}]},{"id":5696107002088476533,"email":"Wallace47@yahoo.com","accepts_marketing":true,"created_at":"2020-09-16T02:59:44.4461211+01:00","updated_at":"2020-09-15T16:13:51.4360778+01:00","first_name":"Marcelle","last_name":"Haley","orders_count":-48337088,"state":"Michigan","total_spent":"web-enabled","last_order_id":3156467300905518873,"note":"turquoise","verified_email":false,"multipass_identifier":"attitude","tax_exempt":true,"tags":"back-end","last_order_name":"Cocos (Keeling) Islands","default_address":{"first_name":"Gabriella","address1":"Welch Grove","phone":"deposit","city":"Gusikowskistad","zip":"withdrawal","province":"Montana","country":"Andorra","last_name":"Abernathy","address2":null,"company":"Forges","latitude":0.5415099,"longitude":0.14064807,"name":"Group","country_code":"YE","province_code":"intangible"},"addresses":[{"first_name":"Mustafa","address1":"Intelligent","phone":"Burundi","city":"Port Edmondview","zip":"open-source","province":"Multi-tiered","country":"Greece","last_name":"Klein","address2":"microchip","company":"navigate","latitude":0.25450388,"longitude":0.4146715,"name":"next-generation","country_code":"BM","province_code":"Refined Wooden Towels"},{"first_name":"Faustino","address1":"virtual","phone":"open-source","city":"New Tyresestad","zip":"asymmetric","province":"intuitive","country":"Zambia","last_name":"Cruickshank","address2":"RAM","company":"Berkshire","latitude":0.70334804,"longitude":0.71376073,"name":"expedite","country_code":"TZ","province_code":"withdrawal"},{"first_name":"Bennett","address1":"withdrawal","phone":"Saint Lucia","city":"New Kirsten","zip":"Gorgeous Frozen Fish","province":"clear-thinking","country":"French Guiana","last_name":"Schmidt","address2":"Neck","company":"Dynamic","latitude":0.47317863,"longitude":0.2737406,"name":"SMS","country_code":"GN","province_code":"Ghana"},{"first_name":"Gabriella","address1":"Welch Grove","phone":"deposit","city":"Gusikowskistad","zip":"withdrawal","province":"Montana","country":"Andorra","last_name":"Abernathy","address2":null,"company":"Forges","latitude":0.5415099,"longitude":0.14064807,"name":"Group","country_code":"YE","province_code":"intangible"}]},{"id":9092438034629892825,"email":"Jeffery41@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T19:50:57.4482143+01:00","updated_at":"2020-09-16T11:03:22.968531+01:00","first_name":"Stefan","last_name":"Gaylord","orders_count":1783914,"state":"Massachusetts","total_spent":"Buckinghamshire","last_order_id":-4270519240333180197,"note":"facilitate","verified_email":false,"multipass_identifier":"Hungary","tax_exempt":true,"tags":"software","last_order_name":"multi-byte","default_address":{"first_name":"Amina","address1":"Conroy Ford","phone":"compress","city":"North Paulfort","zip":"deposit","province":null,"country":"Macao","last_name":"Boehm","address2":null,"company":"Reunion","latitude":0.92123115,"longitude":0.984956,"name":"Togo","country_code":"JO","province_code":"user-centric"},"addresses":[{"first_name":"Sydni","address1":"Credit Card Account","phone":"Small Soft Mouse","city":"Collierborough","zip":"Credit Card Account","province":"transmitter","country":"Guinea","last_name":"Kuhic","address2":"real-time","company":"Rustic Wooden Soap","latitude":0.06729677,"longitude":0.48115617,"name":"online","country_code":"HT","province_code":"utilize"},{"first_name":"Tyshawn","address1":"payment","phone":"Buckinghamshire","city":"Danialmouth","zip":"copy","province":"Unbranded","country":"Timor-Leste","last_name":"Beatty","address2":"payment","company":"Dynamic","latitude":0.52899855,"longitude":0.14867774,"name":"transmitter","country_code":"LR","province_code":"quantifying"},{"first_name":"Maxine","address1":"Analyst","phone":"back up","city":"West Modesto","zip":"Berkshire","province":"Technician","country":"Sierra Leone","last_name":"Greenfelder","address2":"Producer","company":"compressing","latitude":0.8697944,"longitude":0.2640952,"name":"SDD","country_code":"US","province_code":"invoice"},{"first_name":"Amina","address1":"Conroy Ford","phone":"compress","city":"North Paulfort","zip":"deposit","province":null,"country":"Macao","last_name":"Boehm","address2":null,"company":"Reunion","latitude":0.92123115,"longitude":0.984956,"name":"Togo","country_code":"JO","province_code":"user-centric"}]},{"id":8740057485615167478,"email":"Kayla_Spinka@hotmail.com","accepts_marketing":true,"created_at":"2020-09-15T13:15:07.3611201+01:00","updated_at":"2020-09-16T09:05:22.1900421+01:00","first_name":"Myrtice","last_name":"Dickinson","orders_count":1504455241,"state":"Indiana","total_spent":"firewall","last_order_id":6166638596777879926,"note":"frame","verified_email":false,"multipass_identifier":"system engine","tax_exempt":true,"tags":"Liechtenstein","last_order_name":"Steel","default_address":{"first_name":"Lourdes","address1":"Dianna Tunnel","phone":"real-time","city":"Augustfurt","zip":"Checking Account","province":null,"country":"Netherlands","last_name":"Von","address2":"Reilly Ford","company":"invoice","latitude":0.49553168,"longitude":0.15320018,"name":"Hong Kong","country_code":"SZ","province_code":"Tools, Books \u0026 Jewelery"},"addresses":[{"first_name":"Verdie","address1":"PCI","phone":"Refined Wooden Bike","city":"Iketown","zip":"Leone","province":"extend","country":"Syrian Arab Republic","last_name":"Waelchi","address2":"Buckinghamshire","company":"Security","latitude":0.8812565,"longitude":0.53371376,"name":"primary","country_code":"AS","province_code":"Internal"},{"first_name":"Bettie","address1":"Cotton","phone":"Consultant","city":"Louieside","zip":"Intelligent","province":"Intranet","country":"El Salvador","last_name":"Hodkiewicz","address2":"Savings Account","company":"compress","latitude":0.6948807,"longitude":0.0068717734,"name":"Cambridgeshire","country_code":"SJ","province_code":"Central"},{"first_name":"Josefina","address1":"Divide","phone":"distributed","city":"East Precious","zip":"visionary","province":"Congo","country":"Bhutan","last_name":"Gerlach","address2":"Regional","company":"Gorgeous Soft Pizza","latitude":0.18195218,"longitude":0.026779516,"name":"deposit","country_code":"VA","province_code":"Corner"},{"first_name":"Lourdes","address1":"Dianna Tunnel","phone":"real-time","city":"Augustfurt","zip":"Checking Account","province":null,"country":"Netherlands","last_name":"Von","address2":"Reilly Ford","company":"invoice","latitude":0.49553168,"longitude":0.15320018,"name":"Hong Kong","country_code":"SZ","province_code":"Tools, Books \u0026 Jewelery"}]},{"id":2749923194173604824,"email":"Georgia20@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T09:56:57.8949292+01:00","updated_at":"2020-09-15T12:53:57.6042597+01:00","first_name":"Maximo","last_name":"Kassulke","orders_count":667582581,"state":"Utah","total_spent":"synthesize","last_order_id":-7875150809528552912,"note":"magenta","verified_email":false,"multipass_identifier":"Generic","tax_exempt":true,"tags":"granular","last_order_name":"action-items","default_address":{"first_name":"Margaretta","address1":"Aaron Road","phone":"optimal","city":"West Adelleland","zip":"Stream","province":null,"country":"Papua New Guinea","last_name":"Koelpin","address2":null,"company":"reboot","latitude":0.30552635,"longitude":0.14761214,"name":"Incredible","country_code":"TG","province_code":"Walks"},"addresses":[{"first_name":"Laisha","address1":"Checking Account","phone":"Idaho","city":"West Hermann","zip":"Dynamic","province":"channels","country":"Kyrgyz Republic","last_name":"Wisozk","address2":"sensor","company":"Consultant","latitude":0.8186869,"longitude":0.2535623,"name":"programming","country_code":"GU","province_code":"Berkshire"},{"first_name":"Zelma","address1":"RAM","phone":"Rustic Soft Keyboard","city":"Okunevaville","zip":"Handmade","province":"Handmade","country":"Nepal","last_name":"Marquardt","address2":"Forest","company":"Crest","latitude":0.78556156,"longitude":0.61967677,"name":"6th generation","country_code":"CA","province_code":"Refined Cotton Pants"},{"first_name":"Darrell","address1":"Cape","phone":"transmitting","city":"Heaneychester","zip":"extend","province":"extensible","country":"Togo","last_name":"White","address2":"China","company":"Sleek","latitude":0.85221297,"longitude":0.048935104,"name":"Unbranded Metal Shirt","country_code":"HM","province_code":"web-enabled"},{"first_name":"Margaretta","address1":"Aaron Road","phone":"optimal","city":"West Adelleland","zip":"Stream","province":null,"country":"Papua New Guinea","last_name":"Koelpin","address2":null,"company":"reboot","latitude":0.30552635,"longitude":0.14761214,"name":"Incredible","country_code":"TG","province_code":"Walks"}]},{"id":6864035621187613955,"email":"Eugene17@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T12:56:43.5943242+01:00","updated_at":"2020-09-16T10:46:34.2692417+01:00","first_name":"Claudine","last_name":"Wintheiser","orders_count":-1521062467,"state":"New Hampshire","total_spent":"bypassing","last_order_id":-5378157908821677299,"note":"Generic","verified_email":false,"multipass_identifier":"Cambridgeshire","tax_exempt":false,"tags":"Cambridgeshire","last_order_name":"magnetic","default_address":{"first_name":"Kailyn","address1":"Gerlach Junctions","phone":"invoice","city":"Port Franco","zip":"Trace","province":"Wisconsin","country":"Thailand","last_name":"Kessler","address2":null,"company":"Phased","latitude":0.8637785,"longitude":0.41584036,"name":"24/365","country_code":"SB","province_code":"Incredible"},"addresses":[{"first_name":"Joey","address1":"Soft","phone":"Armenian Dram","city":"Lake Carter","zip":"Rubber","province":"Outdoors, Tools \u0026 Books","country":"Guyana","last_name":"Ledner","address2":"withdrawal","company":"Glen","latitude":0.41273972,"longitude":0.015956486,"name":"Shoal","country_code":"CM","province_code":"Berkshire"},{"first_name":"Joan","address1":"turquoise","phone":"Public-key","city":"Bernieceburgh","zip":"quantifying","province":"Rubber","country":"Guatemala","last_name":"Bradtke","address2":"Curve","company":"Uganda Shilling","latitude":0.514776,"longitude":0.35285625,"name":"invoice","country_code":"BB","province_code":"Somali Shilling"},{"first_name":"Gertrude","address1":"Turkey","phone":"National","city":"Cassinside","zip":"SSL","province":"Auto Loan Account","country":"Chile","last_name":"Bechtelar","address2":"Tasty","company":"Gorgeous Steel Table","latitude":0.49450782,"longitude":0.89639515,"name":"Illinois","country_code":"DZ","province_code":"orange"},{"first_name":"Kailyn","address1":"Gerlach Junctions","phone":"invoice","city":"Port Franco","zip":"Trace","province":"Wisconsin","country":"Thailand","last_name":"Kessler","address2":null,"company":"Phased","latitude":0.8637785,"longitude":0.41584036,"name":"24/365","country_code":"SB","province_code":"Incredible"}]},{"id":1247582623046334484,"email":"David83@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T16:14:44.2187229+01:00","updated_at":"2020-09-15T19:27:54.4987045+01:00","first_name":"Katharina","last_name":"Thiel","orders_count":-1897276464,"state":"Connecticut","total_spent":"connecting","last_order_id":-792142701628521739,"note":"Djibouti","verified_email":true,"multipass_identifier":"Turkish Lira","tax_exempt":true,"tags":"mesh","last_order_name":"bypass","default_address":{"first_name":"Kristoffer","address1":"Roob Courts","phone":"Streets","city":"Mullerchester","zip":"THX","province":null,"country":"Brazil","last_name":"Crist","address2":null,"company":"intangible","latitude":0.07807616,"longitude":0.8256437,"name":"out-of-the-box","country_code":"UA","province_code":"circuit"},"addresses":[{"first_name":"Ivy","address1":"Awesome","phone":"seamless","city":"Haleyside","zip":"Utah","province":"Balboa","country":"Lithuania","last_name":"Bernier","address2":"Electronics, Toys \u0026 Movies","company":"Savings Account","latitude":0.26621893,"longitude":0.8373157,"name":"Brazilian Real","country_code":"BR","province_code":"Avon"},{"first_name":"Nayeli","address1":"Hollow","phone":"Streets","city":"Letaberg","zip":"Regional","province":"Bedfordshire","country":"Malaysia","last_name":"Yost","address2":"toolset","company":"internet solution","latitude":0.10351693,"longitude":0.600444,"name":"optical","country_code":"BY","province_code":"interfaces"},{"first_name":"Maryam","address1":"system","phone":"Engineer","city":"South Daphne","zip":"indexing","province":"payment","country":"Liberia","last_name":"Gusikowski","address2":"online","company":"Customizable","latitude":0.64539695,"longitude":0.7205236,"name":"Ergonomic Granite Bacon","country_code":"MA","province_code":"deposit"},{"first_name":"Kristoffer","address1":"Roob Courts","phone":"Streets","city":"Mullerchester","zip":"THX","province":null,"country":"Brazil","last_name":"Crist","address2":null,"company":"intangible","latitude":0.07807616,"longitude":0.8256437,"name":"out-of-the-box","country_code":"UA","province_code":"circuit"}]},{"id":7208163356179501113,"email":"Rosemarie.Torphy23@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T15:19:06.3399972+01:00","updated_at":"2020-09-16T10:54:10.0386182+01:00","first_name":"Mandy","last_name":"Mueller","orders_count":1741656955,"state":"North Dakota","total_spent":"Berkshire","last_order_id":-4424596905771572817,"note":"Incredible Plastic Shirt","verified_email":false,"multipass_identifier":"Indian Rupee","tax_exempt":true,"tags":"Utah","last_order_name":"Unbranded","default_address":{"first_name":"Karelle","address1":"Glen Court","phone":"Hawaii","city":"West Ricofort","zip":"redundant","province":null,"country":"Mongolia","last_name":"MacGyver","address2":null,"company":"methodologies","latitude":0.8411965,"longitude":0.56469905,"name":"distributed","country_code":"SX","province_code":"Up-sized"},"addresses":[{"first_name":"Paige","address1":"Designer","phone":"Internal","city":"East Dewayneshire","zip":"Garden","province":"Practical Granite Gloves","country":"Cocos (Keeling) Islands","last_name":"Hauck","address2":"customer loyalty","company":"Cape Verde Escudo","latitude":0.42719808,"longitude":0.29557475,"name":"compressing","country_code":"CL","province_code":"Quality"},{"first_name":"Sigurd","address1":"Tools","phone":"functionalities","city":"New Ryan","zip":"Avon","province":"Heights","country":"Micronesia","last_name":"O\u0027Keefe","address2":"Wooden","company":"Licensed Cotton Chips","latitude":0.3039254,"longitude":0.20464593,"name":"Intelligent","country_code":"GE","province_code":"redundant"},{"first_name":"Rafaela","address1":"Passage","phone":"array","city":"Parkerhaven","zip":"strategic","province":"Berkshire","country":"Suriname","last_name":"Willms","address2":"Regional","company":"end-to-end","latitude":0.42712578,"longitude":0.11728781,"name":"Internal","country_code":"GI","province_code":"invoice"},{"first_name":"Karelle","address1":"Glen Court","phone":"Hawaii","city":"West Ricofort","zip":"redundant","province":null,"country":"Mongolia","last_name":"MacGyver","address2":null,"company":"methodologies","latitude":0.8411965,"longitude":0.56469905,"name":"distributed","country_code":"SX","province_code":"Up-sized"}]},{"id":-6423839767071041534,"email":"Randolph14@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T00:07:51.6521019+01:00","updated_at":"2020-09-16T10:37:50.9416163+01:00","first_name":"Annabel","last_name":"Morissette","orders_count":-26815839,"state":"Indiana","total_spent":"bleeding-edge","last_order_id":1236240000959378264,"note":"Martinique","verified_email":false,"multipass_identifier":"Legacy","tax_exempt":true,"tags":"redundant","last_order_name":"Product","default_address":{"first_name":"Verner","address1":"Moore Club","phone":"French Guiana","city":"Juneside","zip":"Devolved","province":null,"country":"Timor-Leste","last_name":"Kuhn","address2":null,"company":"virtual","latitude":0.053026162,"longitude":0.050994813,"name":"Ford","country_code":"BN","province_code":"Wall"},"addresses":[{"first_name":"Hilda","address1":"Seychelles","phone":"bluetooth","city":"South Anahitown","zip":"withdrawal","province":"implementation","country":"Morocco","last_name":"Lind","address2":"Faroe Islands","company":"Crescent","latitude":0.47909948,"longitude":0.99057543,"name":"Mayotte","country_code":"YE","province_code":"Forward"},{"first_name":"Kian","address1":"Plastic","phone":"Unbranded","city":"East Zion","zip":"Consultant","province":"Personal Loan Account","country":"Morocco","last_name":"Turner","address2":"Horizontal","company":"deposit","latitude":0.5097637,"longitude":0.77225006,"name":"Bedfordshire","country_code":"QA","province_code":"payment"},{"first_name":"Godfrey","address1":"artificial intelligence","phone":"synergies","city":"North Jerelberg","zip":"Dynamic","province":"payment","country":"Myanmar","last_name":"Durgan","address2":"Avon","company":"Creek","latitude":0.027540864,"longitude":0.65964854,"name":"Rustic Concrete Pants","country_code":"QA","province_code":"Bedfordshire"},{"first_name":"Verner","address1":"Moore Club","phone":"French Guiana","city":"Juneside","zip":"Devolved","province":null,"country":"Timor-Leste","last_name":"Kuhn","address2":null,"company":"virtual","latitude":0.053026162,"longitude":0.050994813,"name":"Ford","country_code":"BN","province_code":"Wall"}]},{"id":-8801399033198916838,"email":"Tabitha.Gerhold90@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:12:57.872157+01:00","updated_at":"2020-09-16T01:17:16.3067455+01:00","first_name":"Peter","last_name":"Schneider","orders_count":-1065475505,"state":"Kentucky","total_spent":"Israel","last_order_id":2300450425441723905,"note":"frictionless","verified_email":true,"multipass_identifier":"enable","tax_exempt":false,"tags":"bypass","last_order_name":"hacking","default_address":{"first_name":"Haven","address1":"Schmitt Falls","phone":"Handcrafted","city":"South Katelynshire","zip":"Accountability","province":null,"country":"Reunion","last_name":"VonRueden","address2":null,"company":"Synergistic","latitude":0.22830227,"longitude":0.77561826,"name":"RAM","country_code":"VI","province_code":"copying"},"addresses":[{"first_name":"Abbie","address1":"Brunei Dollar","phone":"programming","city":"Cruickshankhaven","zip":"AI","province":"solid state","country":"Sudan","last_name":"Emmerich","address2":"encryption","company":"virtual","latitude":0.064124756,"longitude":0.044018667,"name":"Handmade Fresh Bacon","country_code":"AU","province_code":"open architecture"},{"first_name":"Israel","address1":"deposit","phone":"compress","city":"Lake Celinebury","zip":"Savings Account","province":"wireless","country":"Papua New Guinea","last_name":"Schneider","address2":"program","company":"one-to-one","latitude":0.91034186,"longitude":0.33877528,"name":"Data","country_code":"DE","province_code":"Rustic"},{"first_name":"Ruben","address1":"Cliffs","phone":"Canyon","city":"O\u0027Reillyton","zip":"Liberian Dollar","province":"Fantastic","country":"Yemen","last_name":"Orn","address2":"optical","company":"Kansas","latitude":0.52839875,"longitude":0.798142,"name":"hierarchy","country_code":"LR","province_code":"Outdoors, Outdoors \u0026 Books"},{"first_name":"Haven","address1":"Schmitt Falls","phone":"Handcrafted","city":"South Katelynshire","zip":"Accountability","province":null,"country":"Reunion","last_name":"VonRueden","address2":null,"company":"Synergistic","latitude":0.22830227,"longitude":0.77561826,"name":"RAM","country_code":"VI","province_code":"copying"}]},{"id":1547843572101158899,"email":"Greg33@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T05:44:42.8998002+01:00","updated_at":"2020-09-16T05:25:53.9517231+01:00","first_name":"Hiram","last_name":"Hodkiewicz","orders_count":1089602459,"state":"Oklahoma","total_spent":"Cambridgeshire","last_order_id":-2230682538566353045,"note":"PCI","verified_email":true,"multipass_identifier":"Multi-tiered","tax_exempt":false,"tags":"interactive","last_order_name":"card","default_address":{"first_name":"Jeff","address1":"Gerlach Mission","phone":"holistic","city":"Sierraville","zip":"scale","province":"Texas","country":"Colombia","last_name":"Ullrich","address2":null,"company":"capability","latitude":0.61058104,"longitude":0.87085545,"name":"Unbranded Cotton Shoes","country_code":"AT","province_code":"Finland"},"addresses":[{"first_name":"Lorenzo","address1":"Generic Steel Towels","phone":"Generic","city":"Marquiseton","zip":"Island","province":"robust","country":"Finland","last_name":"Beatty","address2":"Direct","company":"networks","latitude":0.36626396,"longitude":0.40937674,"name":"Developer","country_code":"GI","province_code":"withdrawal"},{"first_name":"Anne","address1":"Object-based","phone":"haptic","city":"South Amelieside","zip":"magnetic","province":"Field","country":"Palau","last_name":"Gaylord","address2":"global","company":"applications","latitude":0.6177121,"longitude":0.78331596,"name":"fuchsia","country_code":"ZW","province_code":"Accountability"},{"first_name":"Guido","address1":"Security","phone":"Tanzanian Shilling","city":"New Maymie","zip":"teal","province":"compelling","country":"Antigua and Barbuda","last_name":"Bosco","address2":"Agent","company":"infrastructures","latitude":0.2612324,"longitude":0.5388334,"name":"Savings Account","country_code":"NG","province_code":"killer"},{"first_name":"Jeff","address1":"Gerlach Mission","phone":"holistic","city":"Sierraville","zip":"scale","province":"Texas","country":"Colombia","last_name":"Ullrich","address2":null,"company":"capability","latitude":0.61058104,"longitude":0.87085545,"name":"Unbranded Cotton Shoes","country_code":"AT","province_code":"Finland"}]},{"id":3238250539185688888,"email":"Ernesto.Emard73@gmail.com","accepts_marketing":true,"created_at":"2020-09-16T07:39:54.0667274+01:00","updated_at":"2020-09-15T13:18:05.7834826+01:00","first_name":"Parker","last_name":"Jenkins","orders_count":-1192539106,"state":"Ohio","total_spent":"methodologies","last_order_id":1782822573004540831,"note":"Borders","verified_email":true,"multipass_identifier":"Squares","tax_exempt":false,"tags":"methodologies","last_order_name":"Camp","default_address":{"first_name":"Verla","address1":"Gibson Walks","phone":"Savings Account","city":"Fadelburgh","zip":"communities","province":"Maryland","country":"Heard Island and McDonald Islands","last_name":"Stroman","address2":null,"company":"Avon","latitude":0.7495766,"longitude":0.5488675,"name":"maroon","country_code":"FJ","province_code":"Communications"},"addresses":[{"first_name":"Darius","address1":"Handcrafted","phone":"Uganda","city":"Odessashire","zip":"Granite","province":"clear-thinking","country":"Turkmenistan","last_name":"Nikolaus","address2":"Extensions","company":"Re-contextualized","latitude":0.7190818,"longitude":0.15408249,"name":"Buckinghamshire","country_code":"AO","province_code":"Developer"},{"first_name":"Harvey","address1":"circuit","phone":"calculate","city":"Mertzfurt","zip":"Hawaii","province":"JSON","country":"Tunisia","last_name":"Lang","address2":"Bedfordshire","company":"pink","latitude":0.73431426,"longitude":0.41454747,"name":"white","country_code":"NO","province_code":"Customer"},{"first_name":"Beulah","address1":"EXE","phone":"Profit-focused","city":"Blandaland","zip":"Steel","province":"Metal","country":"South Africa","last_name":"Schowalter","address2":"Branding","company":"Sierra Leone","latitude":0.14722338,"longitude":0.20060048,"name":"Facilitator","country_code":"SD","province_code":"matrix"},{"first_name":"Verla","address1":"Gibson Walks","phone":"Savings Account","city":"Fadelburgh","zip":"communities","province":"Maryland","country":"Heard Island and McDonald Islands","last_name":"Stroman","address2":null,"company":"Avon","latitude":0.7495766,"longitude":0.5488675,"name":"maroon","country_code":"FJ","province_code":"Communications"}]},{"id":6232766473098399438,"email":"Colleen.DuBuque@hotmail.com","accepts_marketing":true,"created_at":"2020-09-16T10:17:14.7815918+01:00","updated_at":"2020-09-16T07:29:38.702093+01:00","first_name":"Hanna","last_name":"Hayes","orders_count":-1146586034,"state":"South Carolina","total_spent":"transmit","last_order_id":-6649128548656014505,"note":"Interactions","verified_email":false,"multipass_identifier":"Beauty","tax_exempt":true,"tags":"Tasty Plastic Table","last_order_name":"Operations","default_address":{"first_name":"Filomena","address1":"Clare Brooks","phone":"Fords","city":"Dareview","zip":"Djibouti Franc","province":null,"country":"Virgin Islands, U.S.","last_name":"Bauch","address2":null,"company":"Books \u0026 Tools","latitude":0.83176833,"longitude":0.67627746,"name":"harness","country_code":"PL","province_code":"Small Frozen Towels"},"addresses":[{"first_name":"Noemi","address1":"Savings Account","phone":"scalable","city":"Samantabury","zip":"withdrawal","province":"copying","country":"Rwanda","last_name":"Cronin","address2":"indexing","company":"Dynamic","latitude":0.9885551,"longitude":0.32967794,"name":"Concrete","country_code":"SL","province_code":"Bedfordshire"},{"first_name":"Andre","address1":"Generic","phone":"Handcrafted Wooden Car","city":"South Keyon","zip":"Representative","province":"Buckinghamshire","country":"Pitcairn Islands","last_name":"Russel","address2":"Gorgeous","company":"B2C","latitude":0.59049654,"longitude":0.19169967,"name":"Ergonomic","country_code":"TO","province_code":"Generic"},{"first_name":"Velda","address1":"Right-sized","phone":"Ramp","city":"Savannashire","zip":"incentivize","province":"Plastic","country":"Hungary","last_name":"Rice","address2":"interface","company":"Cross-group","latitude":0.658301,"longitude":0.4977541,"name":"national","country_code":"JM","province_code":"input"},{"first_name":"Filomena","address1":"Clare Brooks","phone":"Fords","city":"Dareview","zip":"Djibouti Franc","province":null,"country":"Virgin Islands, U.S.","last_name":"Bauch","address2":null,"company":"Books \u0026 Tools","latitude":0.83176833,"longitude":0.67627746,"name":"harness","country_code":"PL","province_code":"Small Frozen Towels"}]},{"id":-7587821637640828256,"email":"Gregg_Williamson12@gmail.com","accepts_marketing":true,"created_at":"2020-09-15T20:21:19.4154384+01:00","updated_at":"2020-09-15T13:21:42.185075+01:00","first_name":"Cydney","last_name":"Cole","orders_count":1967180061,"state":"Wyoming","total_spent":"client-driven","last_order_id":6657308855040927765,"note":"Unbranded Plastic Mouse","verified_email":true,"multipass_identifier":"quantifying","tax_exempt":true,"tags":"Rubber","last_order_name":"e-commerce","default_address":{"first_name":"Kassandra","address1":"Kirlin Landing","phone":"motivating","city":"South Jesus","zip":"Fields","province":null,"country":"Cape Verde","last_name":"Mertz","address2":null,"company":"Idaho","latitude":0.16705954,"longitude":0.43423963,"name":"Island","country_code":"AE","province_code":"array"},"addresses":[{"first_name":"Alta","address1":"Intelligent","phone":"Fiji","city":"East Celinemouth","zip":"compress","province":"compressing","country":"Western Sahara","last_name":"Kiehn","address2":"deliver","company":"Beauty \u0026 Music","latitude":0.11052986,"longitude":0.40010676,"name":"Louisiana","country_code":"TL","province_code":"primary"},{"first_name":"Lincoln","address1":"Tasty Concrete Ball","phone":"systemic","city":"Karianebury","zip":"extensible","province":"methodologies","country":"Saint Martin","last_name":"Mraz","address2":"Auto Loan Account","company":"Incredible Plastic Car","latitude":0.24122569,"longitude":0.27981958,"name":"Kids \u0026 Home","country_code":"ES","province_code":"Generic Cotton Shoes"},{"first_name":"Clemens","address1":"program","phone":"Cambridgeshire","city":"North Salvatore","zip":"channels","province":"Credit Card Account","country":"Iceland","last_name":"Gutkowski","address2":"Incredible","company":"regional","latitude":0.65334064,"longitude":0.82396543,"name":"Forks","country_code":"CL","province_code":"Lights"},{"first_name":"Kassandra","address1":"Kirlin Landing","phone":"motivating","city":"South Jesus","zip":"Fields","province":null,"country":"Cape Verde","last_name":"Mertz","address2":null,"company":"Idaho","latitude":0.16705954,"longitude":0.43423963,"name":"Island","country_code":"AE","province_code":"array"}]},{"id":1354556523134097541,"email":"Abel_Kuhn@hotmail.com","accepts_marketing":false,"created_at":"2020-09-16T01:22:29.6939564+01:00","updated_at":"2020-09-16T01:43:58.373402+01:00","first_name":"Christine","last_name":"Cruickshank","orders_count":994129996,"state":"Indiana","total_spent":"Place","last_order_id":7523852669582325986,"note":"solutions","verified_email":true,"multipass_identifier":"Right-sized","tax_exempt":true,"tags":"Vision-oriented","last_order_name":"yellow","default_address":{"first_name":"Sallie","address1":"Elliot Run","phone":"Savings Account","city":"Wardport","zip":"Enterprise-wide","province":null,"country":"Haiti","last_name":"Towne","address2":"Jett Summit","company":"Wisconsin","latitude":0.23545948,"longitude":0.07677648,"name":"connect","country_code":"VG","province_code":"Refined Fresh Car"},"addresses":[{"first_name":"Carmel","address1":"next-generation","phone":"e-services","city":"East Micaelaborough","zip":"Avon","province":"content","country":"France","last_name":"Rodriguez","address2":"payment","company":"Avon","latitude":0.17068386,"longitude":0.7623551,"name":"District","country_code":"FO","province_code":"Cote d\u0027Ivoire"},{"first_name":"Larissa","address1":"array","phone":"Lane","city":"Orlandochester","zip":"B2B","province":"Home Loan Account","country":"Mauritania","last_name":"Kunde","address2":"withdrawal","company":"platforms","latitude":0.17609566,"longitude":0.37443995,"name":"Sri Lanka Rupee","country_code":"UZ","province_code":"PNG"},{"first_name":"Lorna","address1":"Quality","phone":"West Virginia","city":"Edfort","zip":"Bedfordshire","province":"parsing","country":"Gabon","last_name":"Padberg","address2":"Fundamental","company":"black","latitude":0.054480758,"longitude":0.09094696,"name":"Port","country_code":"KE","province_code":"Macedonia"},{"first_name":"Sallie","address1":"Elliot Run","phone":"Savings Account","city":"Wardport","zip":"Enterprise-wide","province":null,"country":"Haiti","last_name":"Towne","address2":"Jett Summit","company":"Wisconsin","latitude":0.23545948,"longitude":0.07677648,"name":"connect","country_code":"VG","province_code":"Refined Fresh Car"}]},{"id":-2449526807620031104,"email":"Marianne77@hotmail.com","accepts_marketing":false,"created_at":"2020-09-15T23:39:04.1960221+01:00","updated_at":"2020-09-16T05:32:11.7270775+01:00","first_name":"Paolo","last_name":"Weissnat","orders_count":410308187,"state":"Idaho","total_spent":"pink","last_order_id":1607968106341299927,"note":"Cedi","verified_email":true,"multipass_identifier":"Strategist","tax_exempt":false,"tags":"Product","last_order_name":"Auto Loan Account","default_address":{"first_name":"Noemie","address1":"Daniela Island","phone":"Utah","city":"Quitzonchester","zip":"green","province":"Maine","country":"Macao","last_name":"Krajcik","address2":null,"company":"Camp","latitude":0.19113797,"longitude":0.2604634,"name":"Cuban Peso","country_code":"RS","province_code":"Fresh"},"addresses":[{"first_name":"Isidro","address1":"hack","phone":"Facilitator","city":"New Reaganfort","zip":"Money Market Account","province":"Washington","country":"Bouvet Island (Bouvetoya)","last_name":"Durgan","address2":"Zambian Kwacha","company":"Honduras","latitude":0.13473126,"longitude":0.45268753,"name":"aggregate","country_code":"SN","province_code":"Tasty Plastic Sausages"},{"first_name":"Jacinthe","address1":"Generic Granite Sausages","phone":"Skyway","city":"Graysonland","zip":"THX","province":"program","country":"Saudi Arabia","last_name":"Reichert","address2":"Borders","company":"Principal","latitude":0.404918,"longitude":0.0014944468,"name":"Bedfordshire","country_code":"VI","province_code":"multi-state"},{"first_name":"Martina","address1":"index","phone":"microchip","city":"Satterfieldton","zip":"Global","province":"Bulgaria","country":"Romania","last_name":"Mraz","address2":"Directives","company":"input","latitude":0.81193316,"longitude":0.42431313,"name":"reinvent","country_code":"CD","province_code":"indigo"},{"first_name":"Noemie","address1":"Daniela Island","phone":"Utah","city":"Quitzonchester","zip":"green","province":"Maine","country":"Macao","last_name":"Krajcik","address2":null,"company":"Camp","latitude":0.19113797,"longitude":0.2604634,"name":"Cuban Peso","country_code":"RS","province_code":"Fresh"}]},{"id":-5982379818179323914,"email":"Benny_Mills59@yahoo.com","accepts_marketing":false,"created_at":"2020-09-15T14:37:00.9488387+01:00","updated_at":"2020-09-16T03:20:32.0260099+01:00","first_name":"Wendell","last_name":"Okuneva","orders_count":-313677668,"state":"Ohio","total_spent":"deposit","last_order_id":-1316715370157687574,"note":"Specialist","verified_email":false,"multipass_identifier":"Buckinghamshire","tax_exempt":true,"tags":"navigate","last_order_name":"firewall","default_address":{"first_name":"Katrine","address1":"Funk Course","phone":"Associate","city":"Hazelburgh","zip":"Dynamic","province":null,"country":"Thailand","last_name":"Runolfsdottir","address2":null,"company":"Meadow","latitude":0.63775414,"longitude":0.9361916,"name":"New Israeli Sheqel","country_code":"GP","province_code":"azure"},"addresses":[{"first_name":"Katelin","address1":"Monitored","phone":"haptic","city":"Port Justusstad","zip":"Jewelery","province":"Steel","country":"Trinidad and Tobago","last_name":"Dibbert","address2":"Investment Account","company":"Sleek Plastic Fish","latitude":0.475761,"longitude":0.77784646,"name":"back up","country_code":"HU","province_code":"Research"},{"first_name":"Marcelo","address1":"cross-platform","phone":"support","city":"Port Carlee","zip":"Path","province":"Checking Account","country":"Guinea","last_name":"Rice","address2":"Movies, Shoes \u0026 Games","company":"quantify","latitude":0.5526047,"longitude":0.68786293,"name":"leverage","country_code":"EE","province_code":"Object-based"},{"first_name":"Meda","address1":"Mandatory","phone":"Toys \u0026 Outdoors","city":"Leuschkemouth","zip":"Incredible Wooden Mouse","province":"user-centric","country":"Brunei Darussalam","last_name":"Lowe","address2":"Orchestrator","company":"Fantastic","latitude":0.8447222,"longitude":0.41494846,"name":"Republic of Korea","country_code":"FO","province_code":"Administrator"},{"first_name":"Katrine","address1":"Funk Course","phone":"Associate","city":"Hazelburgh","zip":"Dynamic","province":null,"country":"Thailand","last_name":"Runolfsdottir","address2":null,"company":"Meadow","latitude":0.63775414,"longitude":0.9361916,"name":"New Israeli Sheqel","country_code":"GP","province_code":"azure"}]}]} - + \ No newline at end of file From 60d56ee47d31ebaa0827002cfee3c30f6891672a Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 18:13:43 -0800 Subject: [PATCH 06/11] move consts to src/Interop, remove `lib` prefix on Windows --- src/coreclr/vm/pinvokeoverride.cpp | 8 +++++++- .../Common/src/Interop/Interop.Libraries.cs | 6 ++++++ .../Common/src/Interop/Unix/Interop.Libraries.cs | 1 - .../src/Interop/Windows/Interop.Libraries.cs | 1 - .../src/System.IO.Compression.Brotli.csproj | 15 ++++----------- .../src/System.IO.Compression.csproj | 9 ++++----- src/mono/mono/metadata/native-library.c | 9 ++++++++- 7 files changed, 29 insertions(+), 20 deletions(-) diff --git a/src/coreclr/vm/pinvokeoverride.cpp b/src/coreclr/vm/pinvokeoverride.cpp index 07af650e3aa926..2f4f0924142aab 100644 --- a/src/coreclr/vm/pinvokeoverride.cpp +++ b/src/coreclr/vm/pinvokeoverride.cpp @@ -14,10 +14,16 @@ extern "C" const void* GlobalizationResolveDllImport(const char* name); static PInvokeOverrideFn* s_overrideImpl = nullptr; +#if defined(_WIN32) +#define GLOBALIZATION_DLL_NAME "System.Globalization.Native" +#else +#define GLOBALIZATION_DLL_NAME "libSystem.Globalization.Native" +#endif + // here we handle PInvokes whose implementation is always statically linked (even in .so/.dll case) static const void* DefaultResolveDllImport(const char* libraryName, const char* entrypointName) { - if (strcmp(libraryName, "libSystem.Globalization.Native") == 0) + if (strcmp(libraryName, GLOBALIZATION_DLL_NAME) == 0) { return GlobalizationResolveDllImport(entrypointName); } diff --git a/src/libraries/Common/src/Interop/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Interop.Libraries.cs index e57d5918ba350d..741bfb21c35941 100644 --- a/src/libraries/Common/src/Interop/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Interop.Libraries.cs @@ -5,6 +5,12 @@ internal static partial class Interop { internal static partial class Libraries { +#if TARGET_WINDOWS + internal const string GlobalizationNative = "System.Globalization.Native"; + internal const string CompressionNative = "System.IO.Compression.Native"; +#else internal const string GlobalizationNative = "libSystem.Globalization.Native"; + internal const string CompressionNative = "libSystem.IO.Compression.Native"; +#endif } } diff --git a/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs index 6a624e1ced4c64..f8dfc09263f470 100644 --- a/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs @@ -9,7 +9,6 @@ internal static partial class Libraries internal const string SystemNative = "libSystem.Native"; internal const string NetSecurityNative = "libSystem.Net.Security.Native"; internal const string CryptoNative = "libSystem.Security.Cryptography.Native.OpenSsl"; - internal const string CompressionNative = "libSystem.IO.Compression.Native"; internal const string IOPortsNative = "libSystem.IO.Ports.Native"; internal const string Libdl = "libdl"; internal const string HostPolicy = "libhostpolicy"; diff --git a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs index 2d2f6a991af390..a1b27fa9db4f6a 100644 --- a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs @@ -31,7 +31,6 @@ internal static partial class Libraries internal const string Wldap32 = "wldap32.dll"; internal const string Ws2_32 = "ws2_32.dll"; internal const string Wtsapi32 = "wtsapi32.dll"; - internal const string CompressionNative = "System.IO.Compression.Native"; internal const string MsQuic = "msquic.dll"; internal const string HostPolicy = "hostpolicy.dll"; } diff --git a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj index 3404630ffaf652..3697535f3bac65 100644 --- a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj +++ b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj @@ -3,10 +3,11 @@ true enable $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent) + $(DefineConstants);TARGET_WINDOWS - SR.IOCompressionBrotli_PlatformNotSupported + SR.IOCompressionBrotli_PlatformNotSupported @@ -22,16 +23,8 @@ Link="Common\System\Threading\Tasks\TaskToApm.cs" /> - - - - - - - - + diff --git a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj index df5985bcfdd8bb..a146607c3ea520 100644 --- a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj +++ b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj @@ -1,8 +1,9 @@ - + true $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser enable + $(DefineConstants);TARGET_WINDOWS @@ -36,20 +37,18 @@ + - - Date: Mon, 7 Dec 2020 18:20:12 -0800 Subject: [PATCH 07/11] Delete what used to be System.IO.Compression.clrcompression package --- src/libraries/pkg/descriptions.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/libraries/pkg/descriptions.json b/src/libraries/pkg/descriptions.json index 4b955199d64492..aebc57a6f7a1d5 100644 --- a/src/libraries/pkg/descriptions.json +++ b/src/libraries/pkg/descriptions.json @@ -1023,11 +1023,6 @@ "System.IO.Compression.ZipArchiveMode" ] }, - { - "Name": "System.IO.Compression.Native", - "Description": "Internal implementation package not meant for direct consumption. Please do not reference directly. Provides native implementation dll used for GZIP compression.", - "CommonTypes": [] - }, { "Name": "System.IO.Compression.ZipFile", "Description": "Provides classes that support the compression and decompression of streams using file system paths.", From aac9302da0bbff3554a9a6fa2ba8f13b059943c3 Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 18:21:32 -0800 Subject: [PATCH 08/11] Preserve old PlatformManifestFileEntry for clrcompression.dll --- .../pkg/sfx/Microsoft.NETCore.App/Directory.Build.props | 1 + 1 file changed, 1 insertion(+) diff --git a/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props b/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props index 8a4df134dae903..bf739ab1e4cf4b 100644 --- a/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props +++ b/src/installer/pkg/sfx/Microsoft.NETCore.App/Directory.Build.props @@ -176,6 +176,7 @@ + From cd3984592f8c867324f1182826ea13bde4e1f0fe Mon Sep 17 00:00:00 2001 From: vsadov Date: Mon, 7 Dec 2020 19:45:09 -0800 Subject: [PATCH 09/11] partially revert the src\Interop change --- .../Common/src/Interop/Interop.Libraries.cs | 16 ---------------- .../Common/src/Interop/Unix/Interop.Libraries.cs | 2 ++ .../src/Interop/Windows/Interop.Libraries.cs | 2 ++ .../src/System.IO.Compression.Brotli.csproj | 15 +++++++++++---- .../src/System.IO.Compression.csproj | 7 ++++--- 5 files changed, 19 insertions(+), 23 deletions(-) delete mode 100644 src/libraries/Common/src/Interop/Interop.Libraries.cs diff --git a/src/libraries/Common/src/Interop/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Interop.Libraries.cs deleted file mode 100644 index 741bfb21c35941..00000000000000 --- a/src/libraries/Common/src/Interop/Interop.Libraries.cs +++ /dev/null @@ -1,16 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. - -internal static partial class Interop -{ - internal static partial class Libraries - { -#if TARGET_WINDOWS - internal const string GlobalizationNative = "System.Globalization.Native"; - internal const string CompressionNative = "System.IO.Compression.Native"; -#else - internal const string GlobalizationNative = "libSystem.Globalization.Native"; - internal const string CompressionNative = "libSystem.IO.Compression.Native"; -#endif - } -} diff --git a/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs index f8dfc09263f470..bccd11e9a517cf 100644 --- a/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Unix/Interop.Libraries.cs @@ -9,6 +9,8 @@ internal static partial class Libraries internal const string SystemNative = "libSystem.Native"; internal const string NetSecurityNative = "libSystem.Net.Security.Native"; internal const string CryptoNative = "libSystem.Security.Cryptography.Native.OpenSsl"; + internal const string CompressionNative = "libSystem.IO.Compression.Native"; + internal const string GlobalizationNative = "libSystem.Globalization.Native"; internal const string IOPortsNative = "libSystem.IO.Ports.Native"; internal const string Libdl = "libdl"; internal const string HostPolicy = "libhostpolicy"; diff --git a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs index a1b27fa9db4f6a..fbddd07aaaf016 100644 --- a/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs +++ b/src/libraries/Common/src/Interop/Windows/Interop.Libraries.cs @@ -31,6 +31,8 @@ internal static partial class Libraries internal const string Wldap32 = "wldap32.dll"; internal const string Ws2_32 = "ws2_32.dll"; internal const string Wtsapi32 = "wtsapi32.dll"; + internal const string CompressionNative = "System.IO.Compression.Native"; + internal const string GlobalizationNative = "System.Globalization.Native"; internal const string MsQuic = "msquic.dll"; internal const string HostPolicy = "hostpolicy.dll"; } diff --git a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj index 3697535f3bac65..3404630ffaf652 100644 --- a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj +++ b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj @@ -3,11 +3,10 @@ true enable $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent) - $(DefineConstants);TARGET_WINDOWS - SR.IOCompressionBrotli_PlatformNotSupported + SR.IOCompressionBrotli_PlatformNotSupported @@ -23,8 +22,16 @@ Link="Common\System\Threading\Tasks\TaskToApm.cs" /> - + + + + + + + + diff --git a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj index a146607c3ea520..5e65ed510fc1ff 100644 --- a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj +++ b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj @@ -3,7 +3,6 @@ true $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser enable - $(DefineConstants);TARGET_WINDOWS @@ -37,18 +36,20 @@ - + + Date: Mon, 7 Dec 2020 20:06:41 -0800 Subject: [PATCH 10/11] Adjust projects for removal of `Interop\Interop.Libraries.cs` revert 1 --- .../src/System.Private.CoreLib.Shared.projitems | 3 --- .../src/System.Security.AccessControl.csproj | 2 +- .../src/System.Security.Principal.Windows.csproj | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems index 5e67e042260718..dafa471e67f9cc 100644 --- a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems +++ b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems @@ -1047,9 +1047,6 @@ - - Common\Interop\Interop.Libraries.cs - Common\Interop\Interop.Calendar.cs diff --git a/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj b/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj index 1273cc6c5d1c40..524801d2ed72cf 100644 --- a/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj +++ b/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj @@ -30,7 +30,7 @@ + Link="Common\Interop\Windows\Interop.Libraries.cs" /> + Link="Common\Interop\Windows\Interop.Libraries.cs" /> Date: Tue, 8 Dec 2020 13:02:27 -0800 Subject: [PATCH 11/11] Undo entire System.IO.Compression.csproj to get rid of an invisible edit. --- .../System.IO.Compression/src/System.IO.Compression.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj index 5e65ed510fc1ff..df5985bcfdd8bb 100644 --- a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj +++ b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj @@ -1,4 +1,4 @@ - + true $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser