From 4dd88069fe398323a7d8e53e34b716fa1424b2f5 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 27 Jun 2023 16:11:13 +0200 Subject: [PATCH 01/22] wip --- crates/rattler_conda_types/Cargo.toml | 5 + crates/rattler_conda_types/benches/parse.rs | 15 ++ crates/rattler_conda_types/src/version/mod.rs | 4 + .../rattler_conda_types/src/version/parse.rs | 186 +++++++++++++++++- 4 files changed, 209 insertions(+), 1 deletion(-) create mode 100644 crates/rattler_conda_types/benches/parse.rs diff --git a/crates/rattler_conda_types/Cargo.toml b/crates/rattler_conda_types/Cargo.toml index a43eba6f7..12fb55aec 100644 --- a/crates/rattler_conda_types/Cargo.toml +++ b/crates/rattler_conda_types/Cargo.toml @@ -41,3 +41,8 @@ tempfile = "3.6.0" rstest = "0.17.0" assert_matches = "1.5.0" hex-literal = "0.4.1" +criterion = { version = "0.4", features = ["html_reports"] } + +[[bench]] +name = "parse" +harness = false diff --git a/crates/rattler_conda_types/benches/parse.rs b/crates/rattler_conda_types/benches/parse.rs new file mode 100644 index 000000000..7aa27803f --- /dev/null +++ b/crates/rattler_conda_types/benches/parse.rs @@ -0,0 +1,15 @@ +use criterion::{black_box, criterion_group, criterion_main, Criterion}; +use rattler_conda_types::Version; +use std::str::FromStr; + +fn criterion_benchmark(c: &mut Criterion) { + c.bench_function("parse simple version", |b| { + b.iter(|| black_box("3.11.4").parse::()) + }); + c.bench_function("parse complex version", |b| { + b.iter(|| black_box("1!1.0b2.post345.dev456+3.2.20.rc3").parse::()) + }); +} + +criterion_group!(benches, criterion_benchmark); +criterion_main!(benches); diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index c2f64b19e..8348e6a84 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -629,6 +629,10 @@ impl Component { pub fn is_dev(&self) -> bool { matches!(self, Component::Dev) } + + pub fn is_numeric(&self) -> bool { + matches!(self, Component::Numeral(_)) + } } impl From for Component { diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index f54713677..d51c017e6 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,5 +1,13 @@ use super::{Component, Version}; -use crate::version::{LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET}; +use crate::version::{EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET}; +use nom::branch::alt; +use nom::bytes::complete::{tag_no_case, take_while1}; +use nom::character::complete::{alpha1, char, one_of, u64 as parse_u64}; +use nom::character::is_alphanumeric; +use nom::combinator::{cut, eof, map, opt, peek, value}; +use nom::error::{context, ContextError, ParseError}; +use nom::sequence::{pair, preceded, terminated}; +use nom::{IResult, Parser}; use smallvec::SmallVec; use std::{ convert::Into, @@ -79,6 +87,148 @@ pub enum ParseVersionErrorKind { TooManyComponentsInASegment, } +/// Parses the epoch part of a version. This is a number followed by `'!'` at the start of the +/// version string. +pub fn epoch_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i str, u64, E> { + terminated(parse_u64, char('!'))(input) +} + +/// Parses a single version [`Component`]. +fn component_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i str, Component, E> { + alt(( + // Parse a numeral + map(parse_u64, Component::Numeral), + // Parse special case components + value(Component::Post, tag_no_case("post")), + value(Component::Dev, tag_no_case("dev")), + // Parse an identifier + map(alpha1, |alpha: &'i str| { + Component::Iden(alpha.to_lowercase().into_boxed_str()) + }), + // Parse a `_` at the end of the string. + map(terminated(char('_'), eof), |_| { + Component::Iden(String::from("_").into_boxed_str()) + }), + ))(input) +} + +/// Parses a version segment from a list of components. +fn segment_parser<'i, 'c, E: ParseError<&'i str> + ContextError<&'i str>>( + components: &'c mut SmallVec<[Component; 3]>, +) -> impl Parser<&'i str, u16, E> + 'c { + move |input| { + // Parse the first component of the segment + let (input, first_component) = context("version component", component_parser)(input)?; + + // If the first component is not numeric we add a default component since each segment must + // always start with a number. + let mut segment_length = 0; + if !first_component.is_numeric() { + components.push(Component::default()); + segment_length += 1; + } + + // Add the first component + components.push(first_component); + segment_length += 1; + + // Loop until we can't find any more components + loop { + let (input, component) = match opt(component_parser)(input) { + Ok((i, o)) => (i, o), + Err(e) => { + // Remove any components that we may have added. + components.drain(components.len() - segment_length..); + return Err(e); + } + }; + match component { + Some(component) => { + components.push(component); + segment_length += 1; + } + None => { + break Ok((input, segment_length.try_into().unwrap())); + } + } + } + } +} + +pub fn version_parser<'i, E: ParseError<&'i str> + ContextError<&'i str>>( + input: &'i str, +) -> IResult<&'i str, Version, E> { + let mut components = SmallVec::default(); + let mut segment_lengths = SmallVec::default(); + let mut flags = 0u8; + + // Parse an optional epoch. + let (input, epoch) = context("epoch", opt(epoch_parser))(input)?; + if let Some(epoch) = epoch { + components.push(epoch.into()); + flags |= EPOCH_MASK; + } + + // Scan the input to find the version segments. + let (input, common_part) = recognize_segments(input)?; + let (rest, local_part) = opt(preceded( + char('+'), + context("local", cut(recognize_segments)), + ))(input)?; + + // Parse the first segment of the version. It must exists. + let (input, first_segment_length) = + context("segment", segment_parser(&mut components))(common_part)?; + segment_lengths.push(first_segment_length); + + // Parse the rest of the segments + let mut dash_or_underscore = None; + let input = loop { + // Determine the seperator that is allowed between segments. Initially any separator is + // allowed but if a `-` is encountered then `_` cannot be used anymore. + let allowed_seperators = match dash_or_underscore { + Some(char) => ['.', char, char], + None => ['.', '_', '-'], + }; + + // Parse a separator and another segment + let (rest, opt_segment) = opt(pair( + one_of(allowed_seperators.as_slice()), + cut(segment_parser(&mut components)), + ))(input)?; + let (separator, segment_length) = match opt_segment { + Some(next_segment) => next_segment, + None => break rest, + }; + + // Update allowed separator + match separator { + '-' => dash_or_underscore = Some('-'), + '_' => dash_or_underscore = Some('_'), + _ => {} + } + + segment_lengths.push(segment_length); + }; + + return Ok(( + rest, + Version { + norm: None, + flags, + components, + segment_lengths, + }, + )); + + /// A helper function to crudely recognize version segments. + fn recognize_segments<'i, E: ParseError<&'i str>>( + input: &'i str, + ) -> IResult<&'i str, &'i str, E> { + take_while1(|c: char| c.is_alphanumeric() || c == '_' || c == '-' || c == '.')(input) + } +} + /// Returns true if the specified char is a valid char for a version string. pub(crate) fn is_valid_char(c: char) -> bool { matches!(c, '.'|'+'|'!'|'_'|'0'..='9'|'a'..='z') @@ -265,3 +415,37 @@ impl FromStr for Version { }) } } + +#[cfg(test)] +mod test { + use crate::version::{parse::version_parser, Version}; + use nom::combinator::all_consuming; + use serde::Serialize; + use std::collections::BTreeMap; + + #[test] + fn test_parse() { + let versions = ["1!1.2a.3-rc1"]; + + #[derive(Serialize)] + #[serde(untagged)] + enum VersionOrError { + Version(Version), + Error(String), + } + + let mut index_map: BTreeMap = BTreeMap::default(); + for version in versions { + let version_or_error = match all_consuming(version_parser)(version) { + Ok((_, version)) => VersionOrError::Version(version), + Err(nom::Err::Error(e)) | Err(nom::Err::Failure(e)) => { + VersionOrError::Error(nom::error::convert_error(version, e)) + } + _ => unreachable!(), + }; + index_map.insert(version.to_owned(), version_or_error); + } + + insta::assert_yaml_snapshot!(index_map); + } +} From a1d61fd7af42439b2bf5d2a686b4a789c1f7ca2a Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 27 Jun 2023 20:35:33 +0200 Subject: [PATCH 02/22] wip --- .../rattler_conda_types/src/version/parse.rs | 81 ++++++++++++------- ...ypes__version__parse__test__parse.snap.new | 31 +++++++ 2 files changed, 82 insertions(+), 30 deletions(-) create mode 100644 crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index d51c017e6..431d5e460 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -5,7 +5,7 @@ use nom::bytes::complete::{tag_no_case, take_while1}; use nom::character::complete::{alpha1, char, one_of, u64 as parse_u64}; use nom::character::is_alphanumeric; use nom::combinator::{cut, eof, map, opt, peek, value}; -use nom::error::{context, ContextError, ParseError}; +use nom::error::{context, ContextError, ErrorKind, FromExternalError, ParseError}; use nom::sequence::{pair, preceded, terminated}; use nom::{IResult, Parser}; use smallvec::SmallVec; @@ -94,7 +94,12 @@ pub fn epoch_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i s } /// Parses a single version [`Component`]. -fn component_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i str, Component, E> { +fn component_parser< + 'i, + E: ParseError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, +>( + input: &'i str, +) -> IResult<&'i str, Component, E> { alt(( // Parse a numeral map(parse_u64, Component::Numeral), @@ -113,12 +118,26 @@ fn component_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i s } /// Parses a version segment from a list of components. -fn segment_parser<'i, 'c, E: ParseError<&'i str> + ContextError<&'i str>>( +fn segment_parser< + 'i, + 'c, + E: ParseError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, +>( components: &'c mut SmallVec<[Component; 3]>, ) -> impl Parser<&'i str, u16, E> + 'c { move |input| { // Parse the first component of the segment - let (input, first_component) = context("version component", component_parser)(input)?; + let (mut rest, first_component) = opt(component_parser)(input)?; + let first_component = match first_component { + Some(first_component) => first_component, + None => { + return Err(nom::Err::Error(E::from_external_error( + input, + ErrorKind::Fail, + ParseVersionErrorKind::EmptyVersionComponent, + ))) + } + }; // If the first component is not numeric we add a default component since each segment must // always start with a number. @@ -134,7 +153,7 @@ fn segment_parser<'i, 'c, E: ParseError<&'i str> + ContextError<&'i str>>( // Loop until we can't find any more components loop { - let (input, component) = match opt(component_parser)(input) { + let (remaining, component) = match opt(component_parser)(rest) { Ok((i, o)) => (i, o), Err(e) => { // Remove any components that we may have added. @@ -148,14 +167,18 @@ fn segment_parser<'i, 'c, E: ParseError<&'i str> + ContextError<&'i str>>( segment_length += 1; } None => { - break Ok((input, segment_length.try_into().unwrap())); + break Ok((remaining, segment_length.try_into().unwrap())); } } + rest = remaining; } } } -pub fn version_parser<'i, E: ParseError<&'i str> + ContextError<&'i str>>( +pub fn version_parser< + 'i, + E: ParseError<&'i str> + ContextError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, +>( input: &'i str, ) -> IResult<&'i str, Version, E> { let mut components = SmallVec::default(); @@ -170,45 +193,44 @@ pub fn version_parser<'i, E: ParseError<&'i str> + ContextError<&'i str>>( } // Scan the input to find the version segments. - let (input, common_part) = recognize_segments(input)?; + let (rest, mut common_part) = recognize_segments(input)?; let (rest, local_part) = opt(preceded( char('+'), context("local", cut(recognize_segments)), - ))(input)?; + ))(rest)?; // Parse the first segment of the version. It must exists. - let (input, first_segment_length) = + let (mut common_part, first_segment_length) = context("segment", segment_parser(&mut components))(common_part)?; segment_lengths.push(first_segment_length); // Parse the rest of the segments let mut dash_or_underscore = None; - let input = loop { - // Determine the seperator that is allowed between segments. Initially any separator is - // allowed but if a `-` is encountered then `_` cannot be used anymore. - let allowed_seperators = match dash_or_underscore { - Some(char) => ['.', char, char], - None => ['.', '_', '-'], - }; - + let common_part_remaining = loop { // Parse a separator and another segment - let (rest, opt_segment) = opt(pair( - one_of(allowed_seperators.as_slice()), - cut(segment_parser(&mut components)), - ))(input)?; + let (rest, opt_segment) = + opt(pair(one_of(".-_"), cut(segment_parser(&mut components))))(common_part)?; let (separator, segment_length) = match opt_segment { Some(next_segment) => next_segment, None => break rest, }; - // Update allowed separator - match separator { - '-' => dash_or_underscore = Some('-'), - '_' => dash_or_underscore = Some('_'), + // Make sure dashes and underscores are not mixed. + match (dash_or_underscore, separator) { + (None, '-') => dash_or_underscore = Some('-'), + (None, '_') => dash_or_underscore = Some('_'), + (Some('-'), '_') | (Some('-'), '-') => { + return Err(nom::Err::Error(E::from_external_error( + &common_part[..1], + ErrorKind::Fail, + ParseVersionErrorKind::InvalidCharacters, + ))) + } _ => {} } segment_lengths.push(segment_length); + common_part = rest; }; return Ok(( @@ -425,10 +447,9 @@ mod test { #[test] fn test_parse() { - let versions = ["1!1.2a.3-rc1"]; + let versions = ["1!1.2a.3-rc1", "1_", "1__", "1___"]; - #[derive(Serialize)] - #[serde(untagged)] + #[derive(Debug)] enum VersionOrError { Version(Version), Error(String), @@ -446,6 +467,6 @@ mod test { index_map.insert(version.to_owned(), version_or_error); } - insta::assert_yaml_snapshot!(index_map); + insta::assert_debug_snapshot!(index_map); } } diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new new file mode 100644 index 000000000..0f17448fd --- /dev/null +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new @@ -0,0 +1,31 @@ +--- +source: crates/rattler_conda_types/src/version/parse.rs +assertion_line: 470 +expression: index_map +--- +{ + "1!1.2a.3-rc1": Version( + Version { + norm: None, + version: "[[1], [1], [2, a], [3], [0, rc, 1]]", + local: "[]", + }, + ), + "1_": Version( + Version { + norm: None, + version: "[[0], [1, _]]", + local: "[]", + }, + ), + "1__": Version( + Version { + norm: None, + version: "[[0], [1], [0, _]]", + local: "[]", + }, + ), + "1___": Error( + "0: at line 1, in Fail:\n1___\n ^\n\n", + ), +} From 772864800d240b948409052064145c0c1a8b06ff Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 29 Jun 2023 08:19:50 +0200 Subject: [PATCH 03/22] wip --- crates/rattler_conda_types/Cargo.toml | 2 +- .../rattler_conda_types/src/version/parse.rs | 301 +++++++++++++----- ...da_types__version__parse__test__parse.snap | 22 ++ ...ypes__version__parse__test__parse.snap.new | 31 -- 4 files changed, 236 insertions(+), 120 deletions(-) create mode 100644 crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap delete mode 100644 crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new diff --git a/crates/rattler_conda_types/Cargo.toml b/crates/rattler_conda_types/Cargo.toml index 12fb55aec..6ae815414 100644 --- a/crates/rattler_conda_types/Cargo.toml +++ b/crates/rattler_conda_types/Cargo.toml @@ -35,7 +35,7 @@ glob = "0.3.1" [dev-dependencies] rand = "0.8.5" -insta = { version = "1.29.0", features = ["yaml", "redactions"] } +insta = { version = "1.29.0", features = ["yaml", "redactions", "toml"] } rattler_package_streaming = { path = "../rattler_package_streaming", default-features = false, features=["rustls-tls"] } tempfile = "3.6.0" rstest = "0.17.0" diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 431d5e460..3ff0ae9b2 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,12 +1,11 @@ use super::{Component, Version}; use crate::version::{EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET}; use nom::branch::alt; -use nom::bytes::complete::{tag_no_case, take_while1}; -use nom::character::complete::{alpha1, char, one_of, u64 as parse_u64}; -use nom::character::is_alphanumeric; -use nom::combinator::{cut, eof, map, opt, peek, value}; -use nom::error::{context, ContextError, ErrorKind, FromExternalError, ParseError}; -use nom::sequence::{pair, preceded, terminated}; +use nom::bytes::complete::{tag_no_case, take_while}; +use nom::character::complete::{alpha1, char, digit1, one_of}; +use nom::combinator::{cut, eof, map, opt, value}; +use nom::error::{ErrorKind, FromExternalError, ParseError}; +use nom::sequence::{preceded, terminated}; use nom::{IResult, Parser}; use smallvec::SmallVec; use std::{ @@ -18,6 +17,7 @@ use std::{ result::Result, str::FromStr, }; +use thiserror::Error; /// An error that occurred during parsing of a string to a version. #[derive(Debug, Clone, Eq, PartialEq)] @@ -48,6 +48,10 @@ impl Display for ParseVersionError { ParseVersionErrorKind::InvalidNumeral(e) => write!(f, "invalid numeral: {}", e), ParseVersionErrorKind::TooManySegments => write!(f, "too many segments"), ParseVersionErrorKind::TooManyComponentsInASegment => write!(f, "too many version components, a single version segment can at most contain {} components", (1<<16)-1), + ParseVersionErrorKind::ExpectedComponent => write!(f, "expected a version component"), + ParseVersionErrorKind::ExpectedSegmentSeparator => write!(f, "expected '.', '-', or '_'"), + ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores => write!(f, "cannot mix and match underscores and dashes"), + ParseVersionErrorKind::Nom(_) => write!(f, "parse error"), } } } @@ -65,44 +69,90 @@ impl ParseVersionError { } /// The type of parse error that occurred when parsing a version string. -#[derive(Debug, Eq, PartialEq, Clone)] +#[derive(Debug, Eq, PartialEq, Clone, Error)] pub enum ParseVersionErrorKind { /// The string was empty + #[error("empty string")] Empty, /// The string contained invalid characters + #[error("invalid characters")] InvalidCharacters, /// The epoch was not an integer value + #[error("epoch is not a number")] EpochMustBeInteger(ParseIntError), /// The string contained an invalid numeral + #[error("invalid number")] InvalidNumeral(ParseIntError), /// The string contained multiple epoch separators + #[error("string contains multiple epoch seperators ('!')")] DuplicateEpochSeparator, /// The string contained multiple local version separators + #[error("string contains multiple version seperators ('+')")] DuplicateLocalVersionSeparator, /// The string contained an empty version component + #[error("expected a version component e.g. `2` or `rc`")] EmptyVersionComponent, /// Too many segments. + #[error("the version string contains too many version segments")] TooManySegments, /// Too many segments. + #[error("there are too many components in a single segment")] TooManyComponentsInASegment, + /// Expected a version component + #[error("expected a version component e.g. `2` or `rc`")] + ExpectedComponent, + /// Expected a segment seperator + #[error("expected a '.', '-', or '_'")] + ExpectedSegmentSeparator, + /// Cannot mix and match dashes and underscores + #[error("cannot use both underscores and dashes as version segment seperators")] + CannotMixAndMatchDashesAndUnderscores, + /// Nom error + #[error("{0:?}")] + Nom(ErrorKind), +} + +impl<'i> ParseError<&'i str> for ParseVersionErrorKind { + fn from_error_kind(_: &'i str, kind: ErrorKind) -> Self { + ParseVersionErrorKind::Nom(kind) + } + + fn append(_: &'i str, _: ErrorKind, other: Self) -> Self { + other + } +} + +impl<'i> FromExternalError<&'i str, ParseVersionErrorKind> for ParseVersionErrorKind { + fn from_external_error(_: &'i str, _: ErrorKind, e: ParseVersionErrorKind) -> Self { + e + } } /// Parses the epoch part of a version. This is a number followed by `'!'` at the start of the /// version string. -pub fn epoch_parser<'i, E: ParseError<&'i str>>(input: &'i str) -> IResult<&'i str, u64, E> { - terminated(parse_u64, char('!'))(input) +pub fn epoch_parser(input: &str) -> IResult<&str, u64, ParseVersionErrorKind> { + let (rest, digits) = terminated(digit1, char('!'))(input)?; + let epoch = digits + .parse() + .map_err(|err| ParseVersionErrorKind::EpochMustBeInteger(err)) + .map_err(nom::Err::Failure)?; + Ok((rest, epoch)) +} + +/// Parses a numeral from the input, fails if the parsed digits cannot be represented by an `u64`. +fn numeral_parser<'i>(input: &'i str) -> IResult<&'i str, u64, ParseVersionErrorKind> { + let (rest, digits) = digit1(input)?; + match u64::from_str(digits) { + Ok(numeral) => Ok((rest, numeral)), + Err(e) => Err(nom::Err::Failure(ParseVersionErrorKind::InvalidNumeral(e))), + } } /// Parses a single version [`Component`]. -fn component_parser< - 'i, - E: ParseError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, ->( - input: &'i str, -) -> IResult<&'i str, Component, E> { +fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVersionErrorKind> { alt(( // Parse a numeral - map(parse_u64, Component::Numeral), + map(numeral_parser, Component::Numeral), // Parse special case components value(Component::Post, tag_no_case("post")), value(Component::Dev, tag_no_case("dev")), @@ -118,25 +168,17 @@ fn component_parser< } /// Parses a version segment from a list of components. -fn segment_parser< - 'i, - 'c, - E: ParseError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, ->( +fn segment_parser<'i, 'c>( components: &'c mut SmallVec<[Component; 3]>, -) -> impl Parser<&'i str, u16, E> + 'c { +) -> impl Parser<&'i str, u16, ParseVersionErrorKind> + 'c { move |input| { // Parse the first component of the segment - let (mut rest, first_component) = opt(component_parser)(input)?; - let first_component = match first_component { - Some(first_component) => first_component, - None => { - return Err(nom::Err::Error(E::from_external_error( - input, - ErrorKind::Fail, - ParseVersionErrorKind::EmptyVersionComponent, - ))) + let (mut rest, first_component) = match component_parser(input) { + Ok(result) => result, + Err(nom::Err::Error(_)) => { + return Err(nom::Err::Error(ParseVersionErrorKind::ExpectedComponent)) } + Err(e) => return Err(e), }; // If the first component is not numeric we add a default component since each segment must @@ -164,7 +206,14 @@ fn segment_parser< match component { Some(component) => { components.push(component); - segment_length += 1; + segment_length = match segment_length.checked_add(1) { + Some(length) => length, + None => { + return Err(nom::Err::Error( + ParseVersionErrorKind::TooManyComponentsInASegment, + )) + } + } } None => { break Ok((remaining, segment_length.try_into().unwrap())); @@ -175,64 +224,113 @@ fn segment_parser< } } -pub fn version_parser< - 'i, - E: ParseError<&'i str> + ContextError<&'i str> + FromExternalError<&'i str, ParseVersionErrorKind>, ->( +fn final_version_part_parser<'i>( + components: &mut SmallVec<[Component; 3]>, + segment_lengths: &mut SmallVec<[u16; 4]>, input: &'i str, -) -> IResult<&'i str, Version, E> { - let mut components = SmallVec::default(); - let mut segment_lengths = SmallVec::default(); - let mut flags = 0u8; - - // Parse an optional epoch. - let (input, epoch) = context("epoch", opt(epoch_parser))(input)?; - if let Some(epoch) = epoch { - components.push(epoch.into()); - flags |= EPOCH_MASK; - } - - // Scan the input to find the version segments. - let (rest, mut common_part) = recognize_segments(input)?; - let (rest, local_part) = opt(preceded( - char('+'), - context("local", cut(recognize_segments)), - ))(rest)?; + dash_or_underscore: Option, +) -> Result, nom::Err> { + let mut dash_or_underscore = dash_or_underscore; + let first_segment_idx = segment_lengths.len(); // Parse the first segment of the version. It must exists. - let (mut common_part, first_segment_length) = - context("segment", segment_parser(&mut components))(common_part)?; + let (mut input, first_segment_length) = segment_parser(components).parse(input)?; segment_lengths.push(first_segment_length); - - // Parse the rest of the segments - let mut dash_or_underscore = None; - let common_part_remaining = loop { - // Parse a separator and another segment - let (rest, opt_segment) = - opt(pair(one_of(".-_"), cut(segment_parser(&mut components))))(common_part)?; - let (separator, segment_length) = match opt_segment { - Some(next_segment) => next_segment, - None => break rest, + let result = loop { + // Parse either eof or a version segment separator. + let (rest, separator) = match alt((map(one_of("-._"), Some), value(None, eof)))(input) { + Ok((_, None)) => break Ok(dash_or_underscore), + Ok((rest, Some(separator))) => (rest, separator), + Err(nom::Err::Error(_)) => { + break Err(nom::Err::Error( + ParseVersionErrorKind::ExpectedSegmentSeparator, + )) + } + Err(e) => return Err(e), }; // Make sure dashes and underscores are not mixed. match (dash_or_underscore, separator) { - (None, '-') => dash_or_underscore = Some('-'), - (None, '_') => dash_or_underscore = Some('_'), - (Some('-'), '_') | (Some('-'), '-') => { - return Err(nom::Err::Error(E::from_external_error( - &common_part[..1], - ErrorKind::Fail, - ParseVersionErrorKind::InvalidCharacters, - ))) + (None, seperator) => dash_or_underscore = Some(seperator), + (Some('-'), '_') | (Some('_'), '-') => { + break Err(nom::Err::Error( + ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores, + )) } _ => {} } + // Parse the next segment. + let (rest, segment_length) = match segment_parser(components).parse(rest) { + Ok(result) => result, + Err(e) => break Err(e), + }; segment_lengths.push(segment_length); - common_part = rest; + + input = rest; }; + // If there was an error, revert the `segment_lengths` array. + if result.is_err() { + segment_lengths.drain(first_segment_idx..); + } + + result +} + +pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVersionErrorKind> { + let mut components = SmallVec::default(); + let mut segment_lengths = SmallVec::default(); + let mut flags = 0u8; + + // String must not be empty + if input.is_empty() { + return Err(nom::Err::Error(ParseVersionErrorKind::Empty)); + } + + // Parse an optional epoch. + let (input, epoch) = opt(epoch_parser)(input)?; + if let Some(epoch) = epoch { + components.push(epoch.into()); + flags |= EPOCH_MASK; + } + + // Scan the input to find the version segments. + let (rest, common_part) = recognize_segments(input)?; + let (rest, local_part) = opt(preceded(char('+'), cut(recognize_segments)))(rest)?; + + // Parse the common version part + let dash_or_underscore = + final_version_part_parser(&mut components, &mut segment_lengths, common_part, None)?; + + // Parse the local version part + if let Some(local_part) = local_part { + let first_local_segment_idx = segment_lengths.len(); + + // Check if there are not too many segments. + if first_local_segment_idx > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { + // There are too many segments to be able to encode the local segment parts into the + // special `flag` we store. The flags is 8 bits and the first bit is used to + // indicate if there is an epoch or not. The remaining 7 bits are used to indicate + // which segment is the first that belongs to the local version part. We can encode + // at most 127 positions so if there are more segments in the common version part, + // we cannot represent this version. + return Err(nom::Err::Error(ParseVersionErrorKind::TooManySegments)); + } + + // Encode that the local version segment starts at the given index. The unwrap is safe + // because we checked that it would fit above. + flags |= (u8::try_from(first_local_segment_idx).unwrap()) << LOCAL_VERSION_OFFSET; + + // Parse the segments + final_version_part_parser( + &mut components, + &mut segment_lengths, + local_part, + dash_or_underscore, + )?; + } + return Ok(( rest, Version { @@ -247,7 +345,16 @@ pub fn version_parser< fn recognize_segments<'i, E: ParseError<&'i str>>( input: &'i str, ) -> IResult<&'i str, &'i str, E> { - take_while1(|c: char| c.is_alphanumeric() || c == '_' || c == '-' || c == '.')(input) + take_while(|c: char| c.is_alphanumeric() || c == '_' || c == '-' || c == '.')(input) + } +} + +pub fn final_version_parser(input: &str) -> Result { + match version_parser(input) { + Ok(("", version)) => Ok(version), + Ok(_) => Err(ParseVersionErrorKind::ExpectedSegmentSeparator), + Err(nom::Err::Failure(e) | nom::Err::Error(e)) => Err(e), + Err(_) => unreachable!("not streaming, so no other error possible"), } } @@ -267,6 +374,8 @@ impl FromStr for Version { // Implementation taken from https://github.com/conda/conda/blob/0050c514887e6cbbc1774503915b45e8de12e405/conda/models/version.py#L47 fn from_str(s: &str) -> Result { + return final_version_parser(s).map_err(|kind| ParseVersionError::new(s, kind)); + // Version comparison is case-insensitive so normalize everything to lowercase let normalized = s.trim().to_lowercase(); @@ -440,16 +549,35 @@ impl FromStr for Version { #[cfg(test)] mod test { - use crate::version::{parse::version_parser, Version}; - use nom::combinator::all_consuming; + use crate::version::{parse::final_version_parser, Version}; use serde::Serialize; use std::collections::BTreeMap; #[test] fn test_parse() { - let versions = ["1!1.2a.3-rc1", "1_", "1__", "1___"]; - - #[derive(Debug)] + let versions = [ + "$", + ".", + "1!1.2a.3-rc1", + "1+", + "1+$", + "1+.", + "1+2", + "1-2-3", + "1-2-3_", + "1-2_3", + "1.0.1_", + "1.0.1post.za", + "1@2", + "1_", + "1_2_3", + "1_2_3_", + "1__", + "1___", + ]; + + #[derive(Serialize)] + #[serde(untagged)] enum VersionOrError { Version(Version), Error(String), @@ -457,16 +585,13 @@ mod test { let mut index_map: BTreeMap = BTreeMap::default(); for version in versions { - let version_or_error = match all_consuming(version_parser)(version) { - Ok((_, version)) => VersionOrError::Version(version), - Err(nom::Err::Error(e)) | Err(nom::Err::Failure(e)) => { - VersionOrError::Error(nom::error::convert_error(version, e)) - } - _ => unreachable!(), + let version_or_error = match final_version_parser(version) { + Ok(version) => VersionOrError::Version(version), + Err(e) => VersionOrError::Error(e.to_string()), }; index_map.insert(version.to_owned(), version_or_error); } - insta::assert_debug_snapshot!(index_map); + insta::assert_toml_snapshot!(index_map); } } diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap new file mode 100644 index 000000000..e3daf53d9 --- /dev/null +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -0,0 +1,22 @@ +--- +source: crates/rattler_conda_types/src/version/parse.rs +expression: index_map +--- +"$" = 'expected a version component e.g. `2` or `rc`' +"." = 'expected a version component e.g. `2` or `rc`' +"1!1.2a.3-rc1" = '1!1.2a.3.rc1' +"1+" = 'expected a version component e.g. `2` or `rc`' +"1+$" = 'expected a version component e.g. `2` or `rc`' +"1+." = 'expected a version component e.g. `2` or `rc`' +"1+2" = '1+2' +1-2-3 = '1.2.3' +1-2-3_ = '1.2.3_' +1-2_3 = 'cannot use both underscores and dashes as version segment seperators' +"1.0.1_" = '1.0.1_' +"1.0.1post.za" = '1.0.1post.za' +"1@2" = "expected a '.', '-', or '_'" +1_ = '1_' +1_2_3 = '1.2.3' +1_2_3_ = '1.2.3_' +1__ = '1._' +1___ = 'expected a version component e.g. `2` or `rc`' diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new deleted file mode 100644 index 0f17448fd..000000000 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap.new +++ /dev/null @@ -1,31 +0,0 @@ ---- -source: crates/rattler_conda_types/src/version/parse.rs -assertion_line: 470 -expression: index_map ---- -{ - "1!1.2a.3-rc1": Version( - Version { - norm: None, - version: "[[1], [1], [2, a], [3], [0, rc, 1]]", - local: "[]", - }, - ), - "1_": Version( - Version { - norm: None, - version: "[[0], [1, _]]", - local: "[]", - }, - ), - "1__": Version( - Version { - norm: None, - version: "[[0], [1], [0, _]]", - local: "[]", - }, - ), - "1___": Error( - "0: at line 1, in Fail:\n1___\n ^\n\n", - ), -} From d02d6a8403a88523ab2c0e5b23195b18fa450bab Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 29 Jun 2023 09:06:25 +0200 Subject: [PATCH 04/22] wip --- crates/rattler_conda_types/src/version/mod.rs | 60 ++++-- .../rattler_conda_types/src/version/parse.rs | 9 +- .../src/version/segment.rs | 178 ++++++++++++++++++ 3 files changed, 224 insertions(+), 23 deletions(-) create mode 100644 crates/rattler_conda_types/src/version/segment.rs diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 8348e6a84..a6388f1d1 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -10,12 +10,16 @@ use std::{ }; use itertools::{Either, EitherOrBoth, Itertools}; -use serde::{Deserialize, Serialize, Serializer}; +use serde::de::Error; +use serde::{Deserialize, Deserializer, Serialize, Serializer}; use smallvec::SmallVec; pub use parse::{ParseVersionError, ParseVersionErrorKind}; mod parse; +mod segment; + +use segment::Segment; /// Bitmask that should be applied to `Version::flags` to determine if the version contains an epoch. const EPOCH_MASK: u8 = 0b00000001; @@ -128,7 +132,7 @@ const LOCAL_VERSION_OFFSET: u8 = 1; /// this problem by appending an underscore to plain version numbers: /// /// 1.0.1_ < 1.0.1a => True # ensure correct ordering for openssl -#[derive(Clone, Eq, Deserialize)] +#[derive(Clone, Eq)] pub struct Version { /// A normed copy of the original version string trimmed and converted to lower case. /// Also dashes are replaced with underscores if the version string does not contain @@ -146,7 +150,7 @@ pub struct Version { /// [1, 2, 'g', 0, 'beta', 15, 0, 'rc'] components: SmallVec<[Component; 3]>, - /// The length of each individual segment. Segments group different components together. + /// Information on each individual segment. Segments group different components together. /// /// So for the version `1.2g.beta15.rc` this stores: /// @@ -157,7 +161,7 @@ pub struct Version { /// `beta15` consists of 3 components (`0`, `beta` and `15`). Segments must always start /// with a number. /// `rc` consists of 2 components (`0`, `rc`). Segments must always start with a number. - segment_lengths: SmallVec<[u16; 4]>, + segments: SmallVec<[Segment; 4]>, /// Flags to indicate edge cases /// The first bit indicates whether or not this version has an epoch. @@ -213,14 +217,15 @@ impl Version { ) -> impl Iterator + DoubleEndedIterator + ExactSizeIterator + '_ { let mut idx = if self.has_epoch() { 1 } else { 0 }; let version_segments = if let Some(local_index) = self.local_segment_index() { - &self.segment_lengths[..local_index] + &self.segments[..local_index] } else { - &self.segment_lengths[..] + &self.segments[..] }; - version_segments.iter().map(move |&count| { + version_segments.iter().map(move |&segment| { let start = idx; - let end = idx + count as usize; - idx += count as usize; + let len = segment.len() as usize; + let end = idx + len; + idx += len; &self.components[start..end] }) } @@ -271,12 +276,16 @@ impl Version { ) -> impl Iterator + DoubleEndedIterator + ExactSizeIterator + '_ { if let Some(start) = self.local_segment_index() { let mut idx = if self.has_epoch() { 1 } else { 0 }; - idx += self.segment_lengths[..start].iter().sum::() as usize; - let version_segments = &self.segment_lengths[start..]; - Either::Left(version_segments.iter().map(move |&count| { + idx += self.segments[..start] + .iter() + .map(|segment| segment.len()) + .sum::() as usize; + let version_segments = &self.segments[start..]; + Either::Left(version_segments.iter().map(move |segment| { let start = idx; - let end = idx + count as usize; - idx += count as usize; + let len = segment.len() as usize; + let end = idx + len; + idx += len; &self.components[start..end] })) } else { @@ -383,7 +392,7 @@ impl Version { } let mut components = SmallVec::<[Component; 3]>::default(); - let mut segment_lengths = SmallVec::<[u16; 4]>::default(); + let mut segments = SmallVec::<[u16; 4]>::default(); // Copy the epoch if self.has_epoch() { @@ -396,16 +405,16 @@ impl Version { .skip(start_segment_idx) .take(end_segment_idx - start_segment_idx) { - segment_lengths.push(segment_components.len() as _); + segments.push(segment_components.len() as _); for component in segment_components { components.push(component.clone()); } } // Copy the segments and components of the local version - let local_start_idx = segment_lengths.len(); + let local_start_idx = segments.len(); for segment_components in self.local_segments() { - segment_lengths.push(segment_components.len() as _); + segments.push(segment_components.len() as _); for component in segment_components { components.push(component.clone()); } @@ -419,7 +428,7 @@ impl Version { Some(Version { norm: None, components, - segment_lengths, + segments, flags, }) } @@ -747,6 +756,18 @@ impl Serialize for Version { } } +impl<'de> Deserialize<'de> for Version { + fn deserialize(deserializer: D) -> Result + where + D: Deserializer<'de>, + { + Cow::<'de, str>::deserialize()? + .as_ref() + .parse() + .map_err(|err| D::Error::custom(err)) + } +} + #[cfg(test)] mod test { use std::cmp::Ordering; @@ -755,6 +776,7 @@ mod test { use std::collections::hash_map::DefaultHasher; use std::hash::{Hash, Hasher}; + use crate::version::Segment; use rand::seq::SliceRandom; use super::Version; diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 3ff0ae9b2..29afebabb 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -18,6 +18,7 @@ use std::{ str::FromStr, }; use thiserror::Error; +use crate::version::segment::Segment; /// An error that occurred during parsing of a string to a version. #[derive(Debug, Clone, Eq, PartialEq)] @@ -280,7 +281,7 @@ fn final_version_part_parser<'i>( pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVersionErrorKind> { let mut components = SmallVec::default(); - let mut segment_lengths = SmallVec::default(); + let mut segments = SmallVec::default(); let mut flags = 0u8; // String must not be empty @@ -337,7 +338,7 @@ pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVers norm: None, flags, components, - segment_lengths, + segments, }, )); @@ -508,7 +509,7 @@ impl FromStr for Version { } // Add the segment information - segments.push(component_count); + segments.push(Segment::new(component_count)); } Ok(()) @@ -541,7 +542,7 @@ impl FromStr for Version { Ok(Self { norm: Some(lowered.into_boxed_str()), flags, - segment_lengths: segments, + segments, components, }) } diff --git a/crates/rattler_conda_types/src/version/segment.rs b/crates/rattler_conda_types/src/version/segment.rs new file mode 100644 index 000000000..b3b5fe8b3 --- /dev/null +++ b/crates/rattler_conda_types/src/version/segment.rs @@ -0,0 +1,178 @@ +use std::fmt; +use std::fmt::{Debug, Formatter}; + +/// Represents information about a segment in a version. E.g. the part between `.`, `-` or `_`. +/// +/// `SegmentInfo` encodes the number of components, the separator that exists before it and whether +/// or not the segment starts with an implicit default component. +#[derive(Copy, Clone, Eq, PartialEq)] +#[repr(transparent)] +pub struct Segment(u16); + +/// Bitmask used to encode segment length. +const COMPONENT_COUNT_MASK: u16 = (1 << 13) - 1; +const COMPONENT_COUNT_OFFSET: u16 = 0; + +/// Bitmask used to indicate +const SEGMENT_SEPARATOR_MASK: u16 = 0b11; +const SEGMENT_SEPARATOR_OFFSET: u16 = 13; + +/// Bitmask of a single bit that indicates whether the segment starts with an implicit 0. +const IMPLICIT_DEFAULT_ZERO_MASK: u16 = 0b1; +const IMPLICIT_DEFAULT_ZERO_OFFSET: u16 = 15; + +impl Segment { + /// Constructs a new `SegmentInfo`. Returns `None` if the number of components exceeds the + /// maximum number of components. + pub fn new(component_count: u16) -> Option { + // The number of components is too large. + if component_count > COMPONENT_COUNT_MASK { + return None; + } + + Some(Self( + (component_count & COMPONENT_COUNT_MASK) << COMPONENT_COUNT_OFFSET, + )) + } + + /// Returns the number of components in this segment + pub fn len(self) -> u16 { + (self.0 >> COMPONENT_COUNT_OFFSET) & COMPONENT_COUNT_MASK + } + + /// Sets whether the segment starts with an implicit default `Component`. This is the case when + /// a segment starts with a literal. + pub fn with_implicit_default(self, has_implicit_default: bool) -> Self { + Self(if has_implicit_default { + self.0 | ((1 & IMPLICIT_DEFAULT_ZERO_MASK) << IMPLICIT_DEFAULT_ZERO_OFFSET) + } else { + self.0 & !(IMPLICIT_DEFAULT_ZERO_MASK << IMPLICIT_DEFAULT_ZERO_OFFSET) + }) + } + + /// Returns true if the segment starts with an implicit default component. + pub fn has_implicit_default(self) -> bool { + self.0 >> IMPLICIT_DEFAULT_ZERO_OFFSET == IMPLICIT_DEFAULT_ZERO_MASK + } + + /// Set the separator that precedes this segment. Either `.`, `-` or `_`. Returns `None` if the + /// separator is not recognized. + pub fn with_separator(self, separator: Option) -> Option { + let state = self.0 & !(SEGMENT_SEPARATOR_MASK << SEGMENT_SEPARATOR_OFFSET); + Some(Self( + state + | (match separator { + Some('-') => 1, + Some('_') => 2, + Some('.') => 3, + None => 0, + _ => return None, + } << SEGMENT_SEPARATOR_OFFSET), + )) + } + + /// Returns the separator that precedes this segment or `None` if there is no separator. + pub fn separator(self) -> Option { + match (self.0 >> SEGMENT_SEPARATOR_OFFSET) & SEGMENT_SEPARATOR_MASK { + 0 => None, + 1 => Some('-'), + 2 => Some('_'), + 3 => Some('.'), + _ => unreachable!(), + } + } +} + +impl Debug for Segment { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + f.debug_struct("SegmentInfo") + .field("len", &self.len()) + .field("has_implicit_default", &self.has_implicit_default()) + .field("separator", &self.separator()) + .finish() + } +} + +#[cfg(test)] +mod test { + use super::Segment; + + #[test] + fn test_segment_info() { + assert_eq!(Segment::new(1).unwrap().len(), 1); + assert_eq!(Segment::new(42).unwrap().len(), 42); + assert_eq!(Segment::new(8191).unwrap().len(), 8191); + assert_eq!(Segment::new(8192), None); + + assert_eq!( + Segment::new(4096).unwrap().has_implicit_default(), + false + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_implicit_default(true) + .has_implicit_default(), + true + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_implicit_default(false) + .has_implicit_default(), + false + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_implicit_default(true) + .with_implicit_default(false) + .has_implicit_default(), + false + ); + + assert_eq!(Segment::new(4096).unwrap().separator(), None); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_separator(Some('-')) + .unwrap() + .separator(), + Some('-') + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_separator(Some('.')) + .unwrap() + .separator(), + Some('.') + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_separator(Some('_')) + .unwrap() + .separator(), + Some('_') + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_separator(Some('_')) + .unwrap() + .separator(), + Some('_') + ); + assert_eq!( + Segment::new(4096) + .unwrap() + .with_separator(Some('_')) + .unwrap() + .with_separator(None) + .unwrap() + .separator(), + None + ); + } +} From 551731d9ab8f6fa41816d7b6a67fe85ded1c7181 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 29 Jun 2023 16:41:17 +0200 Subject: [PATCH 05/22] wip --- ...lock__test__packages_for_platform.snap.new | 3559 +++++ ...conda_lock__test__read_conda_lock.snap.new | 13255 ++++++++++++++++ crates/rattler_conda_types/src/version/mod.rs | 309 +- .../rattler_conda_types/src/version/parse.rs | 94 +- .../src/version/segment.rs | 14 +- ...da_types__version__parse__test__parse.snap | 127 +- 6 files changed, 17192 insertions(+), 166 deletions(-) create mode 100644 crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new create mode 100644 crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new new file mode 100644 index 000000000..2edb7aac4 --- /dev/null +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new @@ -0,0 +1,3559 @@ +--- +source: crates/rattler_conda_types/src/conda_lock/mod.rs +assertion_line: 520 +expression: "conda_lock.packages_for_platform(Platform::Linux64).collect::>()" +--- +- name: _libgcc_mutex + version: "0.1" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2" + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + optional: false + category: main +- name: ca-certificates + version: 2022.12.7 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda" + hash: + md5: ff9f73d45c4a07d6f424495288a26080 + sha256: 8f6c81b0637771ae0ea73dc03a6d30bec3326ba3927f2a7b91931aa2d59b1789 + optional: false + category: main +- name: font-ttf-dejavu-sans-mono + version: "2.37" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2" + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + optional: false + category: main +- name: font-ttf-inconsolata + version: "3.000" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2" + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main +- name: font-ttf-source-code-pro + version: "2.038" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2" + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + optional: false + category: main +- name: font-ttf-ubuntu + version: "0.83" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2" + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + optional: false + category: main +- name: kernel-headers_linux-64 + version: 2.6.32 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2" + hash: + md5: 5dd5127afd710f91f6a75821bac0a4f0 + sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 + optional: false + category: main +- name: ld_impl_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hcc3a1bd_1.conda" + hash: + md5: 737be0d34c22d24432049ab7a3214de4 + sha256: 3e7f203e33ea497b6e468279cc5fdef7d556473c25e7466b35fd672940392469 + optional: false + category: main +- name: libgcc-devel_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" + hash: + md5: 9b7bdb0b42ce4e4670d32bfe0532b56a + sha256: 70b2c370cc616304f732eeb4014825390dbee044ecbc3875e968b0ea01bd7503 + optional: false + category: main +- name: libgfortran5 + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2" + hash: + md5: 164b4b1acaedc47ee7e658ae6b308ca3 + sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 + optional: false + category: main +- name: libstdcxx-devel_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" + hash: + md5: 8aee006c0662f551f3acef9a7077a5b9 + sha256: abfcbf3a0f770be88eefebf84ae3a901da9e933799c9eecf3e9b06f34b00a0a5 + optional: false + category: main +- name: libstdcxx-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2" + hash: + md5: 1030b1f38c129f2634eae026f704fe60 + sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 + optional: false + category: main +- name: nomkl + version: "1.0" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main +- name: python_abi + version: "3.9" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-3_cp39.conda" + hash: + md5: 0dd193187d54e585cac7eab942a8847e + sha256: 89e8c4436dd04d8b4a0c13c508e930be56973a480a9714171969de953bdafd3a + optional: false + category: main +- name: tzdata + version: 2022g + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main +- name: fonts-conda-forge + version: "1" + manager: conda + platform: linux-64 + dependencies: + font-ttf-dejavu-sans-mono: "*" + font-ttf-inconsolata: "*" + font-ttf-source-code-pro: "*" + font-ttf-ubuntu: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2" + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + optional: false + category: main +- name: libgfortran-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + libgfortran5: "==12.2.0 h337968e_19" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2" + hash: + md5: cd7a806282c16e1f2d39a7e80d3a3e0d + sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f + optional: false + category: main +- name: libgomp + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2" + hash: + md5: cedcee7c064c01c403f962c9e8d3c373 + sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e + optional: false + category: main +- name: sysroot_linux-64 + version: "2.12" + manager: conda + platform: linux-64 + dependencies: + kernel-headers_linux-64: "==2.6.32 he073ed8_15" + url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2" + hash: + md5: 66c192522eacf5bb763568b4e415d133 + sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff + optional: false + category: main +- name: _openmp_mutex + version: "4.5" + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + libgomp: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2" + hash: + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + optional: false + category: main +- name: binutils_impl_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + ld_impl_linux-64: "==2.39 hcc3a1bd_1" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-he00db2b_1.conda" + hash: + md5: 3d726e8b51a1f5bfd66892a2b7d9db2d + sha256: 69a7c32141475dab43de2f19b7a67c14596cbb357cdb5891ff866918f8f65a2e + optional: false + category: main +- name: fonts-conda-ecosystem + version: "1" + manager: conda + platform: linux-64 + dependencies: + fonts-conda-forge: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2" + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main +- name: binutils + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: ">=2.39,<2.40.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils-2.39-hdd6e379_1.conda" + hash: + md5: 1276c18b0a562739185dbf5bd14b57b2 + sha256: 8edbd5a01feaf22053d7c02e7d5066a3b35b265deee0a5ad3f69054289bbbd7e + optional: false + category: main +- name: binutils_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: 2.39.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2" + hash: + md5: b7d26ab37be17ea4c366a97138684bcb + sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e + optional: false + category: main +- name: libgcc-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + _openmp_mutex: ">=4.5" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2" + hash: + md5: e4c94f80aef025c17ab0828cd85ef535 + sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 + optional: false + category: main +- name: alsa-lib + version: 1.2.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2" + hash: + md5: be733e69048951df1e4b4b7bb8c7666f + sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + optional: false + category: main +- name: attr + version: 2.5.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2" + hash: + md5: d9c69a24ad678ffce24c6543a0176b00 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + optional: false + category: main +- name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2" + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + optional: false + category: main +- name: expat + version: 2.5.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2" + hash: + md5: c4fbad8d4bddeb3c085f18cbf97fbfad + sha256: b44db0b92ae926b3fbbcd57c179fceb64fa11a9f9d09082e03be58b74dcad832 + optional: false + category: main +- name: fftw + version: 3.3.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf0379b8_106.conda" + hash: + md5: d7407e695358f068a2a7f8295cde0567 + sha256: 8b735848df623fab555a6d7fc400636116d6ed5686ae0e50adb7df4c1c3a9cef + optional: false + category: main +- name: gettext + version: 0.21.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2" + hash: + md5: 14947d8770185e5153fdd04d4673ed37 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + optional: false + category: main +- name: graphite2 + version: 1.3.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2" + hash: + md5: 8c54672728e8ec6aa6db90cf2806d220 + sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 + optional: false + category: main +- name: gstreamer-orc + version: 0.4.33 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.33-h166bdaf_0.tar.bz2" + hash: + md5: 879c93426c9d0b84a9de4513fbce5f4f + sha256: c4fdbaaeb66eed280ef6875c6a4b6916ed168166277e9317fbe25b15d3758897 + optional: false + category: main +- name: icu + version: "70.1" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2" + hash: + md5: 87473a15119779e021c314249d4b4aed + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + optional: false + category: main +- name: jpeg + version: 9e + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda" + hash: + md5: c7a069243e1fbe9a556ed2ec030e6407 + sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b + optional: false + category: main +- name: keyutils + version: 1.6.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2" + hash: + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + optional: false + category: main +- name: lame + version: "3.100" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2" + hash: + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + optional: false + category: main +- name: lerc + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2" + hash: + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + optional: false + category: main +- name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 9194c9bf9428035a05352d031462eae4 + sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 + optional: false + category: main +- name: libdb + version: 6.2.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2" + hash: + md5: 3f3258d8f841fbac63b36b75bdac1afd + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + optional: false + category: main +- name: libdeflate + version: "1.17" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda" + hash: + md5: 5cc781fd91968b11a8a7fdbee0982676 + sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c + optional: false + category: main +- name: libffi + version: 3.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2" + hash: + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + optional: false + category: main +- name: libiconv + version: "1.17" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2" + hash: + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + optional: false + category: main +- name: libnsl + version: 2.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2" + hash: + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + optional: false + category: main +- name: libogg + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2" + hash: + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + optional: false + category: main +- name: libopenblas + version: 0.3.21 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2" + hash: + md5: 8c5963a49b6035c40646a763293fbb35 + sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 + optional: false + category: main +- name: libopus + version: 1.3.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2" + hash: + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + optional: false + category: main +- name: libsanitizer + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.3.0-h239ccf8_19.tar.bz2" + hash: + md5: d17fd55aed84ab6592c5419b6600501c + sha256: 5e53a50c9b5fd04790f4cc63aa74cd6172151246248438b9bc154392ebe0bd17 + optional: false + category: main +- name: libtool + version: 2.4.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda" + hash: + md5: f204c8ba400ec475452737094fb81d52 + sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1 + optional: false + category: main +- name: libudev1 + version: "252" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libudev1-252-h166bdaf_0.tar.bz2" + hash: + md5: 174243089ec111479298a5b7099b64b5 + sha256: e9ef9cb1d34a2f02f68c4778986f1f8be3015fec272523fd2dde3723c120f038 + optional: false + category: main +- name: libuuid + version: 2.32.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2" + hash: + md5: 772d69f030955d9646d3d0eaf21d859d + sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 + optional: false + category: main +- name: libwebp-base + version: 1.2.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2" + hash: + md5: ac2ccf7323d21f2994e4d1f5da664f37 + sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 + optional: false + category: main +- name: libzlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2" + hash: + md5: f3f9de449d32ca9b9c66a22863c96f41 + sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd + optional: false + category: main +- name: lz4-c + version: 1.9.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda" + hash: + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + optional: false + category: main +- name: mpg123 + version: 1.31.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.2-hcb278e6_0.conda" + hash: + md5: 08efb1e1813f1a151b7a945b972a049b + sha256: cc8cb2097e96d2420dd698951ab524b6c8268fa691d370020a0eae3e65197c04 + optional: false + category: main +- name: ncurses + version: "6.3" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2" + hash: + md5: 4acfc691e64342b9dae57cf2adc63238 + sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 + optional: false + category: main +- name: ninja + version: 1.11.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.0-h924138e_0.tar.bz2" + hash: + md5: 18c563c26253a21c1aa9d662e874b0cd + sha256: 1d3659abc4e3dfa9c8c03a664f6d0323503b75a4506fb9d28f28448be5540fc5 + optional: false + category: main +- name: nspr + version: "4.35" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda" + hash: + md5: da0ec11a6454ae19bff5b02ed881a2b1 + sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + optional: false + category: main +- name: openssl + version: 3.0.8 + manager: conda + platform: linux-64 + dependencies: + ca-certificates: "*" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.8-h0b41bf4_0.conda" + hash: + md5: e043403cd18faf815bf7705ab6c1e092 + sha256: cd981c5c18463bc7a164fcf45c5cf697d58852b780b4dfa5e83c18c1fda6d7cd + optional: false + category: main +- name: pixman + version: 0.40.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2" + hash: + md5: 660e72c82f2e75a6b3fe6a6e75c79f19 + sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 + optional: false + category: main +- name: pkg-config + version: 0.29.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2" + hash: + md5: fbef41ff6a4c8140c30057466a1cdd47 + sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c + optional: false + category: main +- name: pthread-stubs + version: "0.4" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2" + hash: + md5: 22dad4df6e8630e8dff2428f6f6a7036 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + optional: false + category: main +- name: xorg-kbproto + version: 1.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2" + hash: + md5: 4b230e8381279d76131116660f5a241a + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + optional: false + category: main +- name: xorg-libice + version: 1.0.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2" + hash: + md5: d6b0b50b49eccfe0be0373be628be0f3 + sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 + optional: false + category: main +- name: xorg-libxau + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2" + hash: + md5: bf6f803a544f26ebbdc3bfff272eb179 + sha256: 9e9b70c24527289ac7ae31925d1eb3b0c1e9a78cb7b8f58a3110cc8bbfe51c26 + optional: false + category: main +- name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2" + hash: + md5: be93aabceefa2fac576e971aef407908 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + optional: false + category: main +- name: xorg-renderproto + version: 0.11.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2" + hash: + md5: 06feff3d2634e3097ce2fe681474b534 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + optional: false + category: main +- name: xorg-xextproto + version: 7.3.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2" + hash: + md5: 1e15f6ad85a7d743a2ac68dae6c82b98 + sha256: d45c4d1c8372c546711eb3863c76d899d03a67c3edb3b5c2c46c9492814cbe03 + optional: false + category: main +- name: xorg-xproto + version: 7.0.31 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2" + hash: + md5: b4a4381d54784606820704f7b5f05a15 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + optional: false + category: main +- name: xz + version: 5.2.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2" + hash: + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + optional: false + category: main +- name: doxygen + version: 1.9.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libiconv: ">=1.16,<2.0.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.5-h583eb01_0.tar.bz2" + hash: + md5: a94d4fb8005f9d8d286e06bbb1bec448 + sha256: f8379387abdb1c51ec72165fbd7e2c54b83c40224ea9eed825a18895ab60273f + optional: false + category: main +- name: gcc_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: ">=2.39" + libgcc-devel_linux-64: "==11.3.0 h210ce93_19" + libgcc-ng: ">=11.3.0" + libgomp: ">=11.3.0" + libsanitizer: "==11.3.0 h239ccf8_19" + libstdcxx-ng: ">=11.3.0" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" + hash: + md5: 89ac16d36e66ccb9ca5d34c9217e5799 + sha256: 51c6e39148c9da4a9889d34f0daebdf961ca93f032b1e86f621a67ecff2bd915 + optional: false + category: main +- name: jack + version: 1.9.22 + manager: conda + platform: linux-64 + dependencies: + alsa-lib: ">=1.2.8,<1.2.9.0a0" + libdb: ">=6.2.32,<6.3.0a0" + libgcc-ng: ">=12" + libopus: ">=1.3.1,<2.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h11f4161_0.conda" + hash: + md5: 504fa9e712b99494a9cf4630e3ca7d78 + sha256: 9f173c6633f7ef049b05cd92a9fc028402972ddc44a56d5bb51d8879d73bbde7 + optional: false + category: main +- name: libblas + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: d9b7a8639171f6c6fa0a983edabcfe2b + sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 + optional: false + category: main +- name: libbrotlidec + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlicommon: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 4ae4d7795d33e02bd20f6b23d91caf82 + sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 + optional: false + category: main +- name: libbrotlienc + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlicommon: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 04bac51ba35ea023dc48af73c1c88c25 + sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be + optional: false + category: main +- name: libcap + version: "2.66" + manager: conda + platform: linux-64 + dependencies: + attr: ">=2.5.1,<2.6.0a0" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcap-2.66-ha37c62d_0.tar.bz2" + hash: + md5: 2d7665abd0997f1a6d4b7596bc27b657 + sha256: db113b0bacb45533ec6f5c13a548054af8bd0ca2f7583e8bc5989f17e1e1638b + optional: false + category: main +- name: libedit + version: 3.1.20191231 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + ncurses: ">=6.2,<7.0.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2" + hash: + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + optional: false + category: main +- name: libevent + version: 2.1.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + openssl: ">=3.0.0,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2" + hash: + md5: 4a049fc560e00e43151dc51368915fdd + sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a + optional: false + category: main +- name: libflac + version: 1.4.2 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libgcc-ng: ">=12" + libogg: ">=1.3.4,<1.4.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2" + hash: + md5: 7daf72d8e2a8e848e11d63ed6d1026e0 + sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 + optional: false + category: main +- name: libgpg-error + version: "1.46" + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda" + hash: + md5: 27e745f6f2e4b757e95dd7225fbe6bdb + sha256: a2e3df80a5713b4143f7d276a9354d78f2b2927b22831dc24c3246a82674aaba + optional: false + category: main +- name: libpng + version: 1.6.39 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda" + hash: + md5: e1c890aebdebbfbf87e2c917187b4416 + sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 + optional: false + category: main +- name: libsqlite + version: 3.40.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2" + hash: + md5: 2e5f9a37d487e1019fd4d8113adb2f9f + sha256: 6008a0b914bd1a3510a3dba38eada93aa0349ebca3a21e5fa276833c8205bf49 + optional: false + category: main +- name: libvorbis + version: 1.3.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libogg: ">=1.3.4,<1.4.0a0" + libstdcxx-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2" + hash: + md5: 309dec04b70a3cc0f1e84a4013683bc0 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + optional: false + category: main +- name: libxcb + version: "1.13" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2" + hash: + md5: b3653fdc58d03face9724f602218a904 + sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 + optional: false + category: main +- name: libxml2 + version: 2.10.3 + manager: conda + platform: linux-64 + dependencies: + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2" + hash: + md5: 3b933ea47ef8f330c4c068af25fcd6a8 + sha256: b30713fb4477ff4f722280d956593e7e7a2cb705b7444dcc278de447432b43b1 + optional: false + category: main +- name: mysql-common + version: 8.0.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-ha901b37_0.conda" + hash: + md5: 6a39818710235826181e104aada40c75 + sha256: d7da5c1cc47656394933146ab30f6f3433553e8265ea1a4254bce441ab678199 + optional: false + category: main +- name: openblas + version: 0.3.21 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libopenblas: "==0.3.21 pthreads_h78a6416_3" + url: "https://conda.anaconda.org/conda-forge/linux-64/openblas-0.3.21-pthreads_h320a7e8_3.tar.bz2" + hash: + md5: 29155b9196b9d78022f11d86733e25a7 + sha256: b9986da11c136f4171ce94df6fe5940b529f38b9f13f2746817913071aa51151 + optional: false + category: main +- name: pcre2 + version: "10.40" + manager: conda + platform: linux-64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2" + hash: + md5: 69e2c796349cd9b273890bee0febfe1b + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + optional: false + category: main +- name: readline + version: 8.1.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2" + hash: + md5: db2ebbe2943aae81ed051a6a9af8e0fa + sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 + optional: false + category: main +- name: tk + version: 8.6.12 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2" + hash: + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + optional: false + category: main +- name: xorg-libsm + version: 1.2.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libuuid: ">=2.32.1,<3.0a0" + xorg-libice: 1.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2" + hash: + md5: 9e856f78d5c80d5a78f61e72d1d473a3 + sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 + optional: false + category: main +- name: zlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: "==1.2.13 h166bdaf_4" + url: "https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2" + hash: + md5: 4b11e365c0275b808be78b30f904e295 + sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 + optional: false + category: main +- name: zstd + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda" + hash: + md5: 6b63daed8feeca47be78f323e793d555 + sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 + optional: false + category: main +- name: brotli-bin + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlidec: "==1.0.9 h166bdaf_8" + libbrotlienc: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: e5613f2bc717e9945840ff474419b8e4 + sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f + optional: false + category: main +- name: freetype + version: 2.12.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda" + hash: + md5: e1232042de76d24539a436d37597eb06 + sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f + optional: false + category: main +- name: gcc + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc-11.3.0-h02d0930_11.tar.bz2" + hash: + md5: 6037ebe5f1e3054519ce78b11eec9cd4 + sha256: 1946d6c3ea7e98231de51d506c978c00ae97c7b27379ab34a368218d014758c8 + optional: false + category: main +- name: gcc_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.3.0-he6f903b_11.tar.bz2" + hash: + md5: 25f76cb82e483ce96d118b9edffd12c9 + sha256: c0041b6f805b6b3c01bfb51232b606c9a50a8e0154d17bbf61af36d62c600f00 + optional: false + category: main +- name: gfortran_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: ">=11.3.0" + libgcc-ng: ">=4.9" + libgfortran5: ">=11.3.0" + libstdcxx-ng: ">=4.9" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-11.3.0-he34c6f7_19.tar.bz2" + hash: + md5: 3de873ee757f1a2e583416a3583f84c4 + sha256: 3263c7b7d4c9d0c0a25e92ca201b7c014c00257cecf08ac28953dfda43c93803 + optional: false + category: main +- name: gxx_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: "==11.3.0 hab1b70f_19" + libstdcxx-devel_linux-64: "==11.3.0 h210ce93_19" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" + hash: + md5: b73564a352e64bb5f2c9bfd3cd6dd127 + sha256: b86a4d15050c8ad5b8a4273c55f468847d891ceb08f3702408c3a0e921a5b5ea + optional: false + category: main +- name: krb5 + version: 1.20.1 + manager: conda + platform: linux-64 + dependencies: + keyutils: ">=1.6.1,<2.0a0" + libedit: ">=3.1.20191231,<4.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda" + hash: + md5: 89a41adce7106749573d883b2f657d78 + sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 + optional: false + category: main +- name: libcblas + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libblas: "==3.9.0 16_linux64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: 20bae26d0a1db73f758fc3754cab4719 + sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f + optional: false + category: main +- name: libgcrypt + version: 1.10.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libgpg-error: ">=1.44,<2.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2" + hash: + md5: f967fc95089cd247ceed56eda31de3a9 + sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a + optional: false + category: main +- name: libglib + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + pcre2: ">=10.40,<10.41.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2" + hash: + md5: ed5349aa96776e00b34eccecf4a948fe + sha256: 3cbad3d63cff2dd9ac1dc9cce54fd3d657f3aff53df41bfe5bae9d760562a5af + optional: false + category: main +- name: liblapack + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libblas: "==3.9.0 16_linux64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: 955d993f41f9354bf753d29864ea20ad + sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 + optional: false + category: main +- name: libllvm15 + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libxml2: ">=2.10.3,<2.11.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_0.conda" + hash: + md5: 70cbb0c2033665f2a7339bf0ec51a67f + sha256: 3fb9a9cfd2f5c79e8116c67f95d5a9b790ec66807ae0d8cebefc26fda9f836a7 + optional: false + category: main +- name: libsndfile + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + lame: ">=3.100,<3.101.0a0" + libflac: ">=1.4.2,<1.5.0a0" + libgcc-ng: ">=12" + libogg: ">=1.3.4,<1.4.0a0" + libopus: ">=1.3.1,<2.0a0" + libstdcxx-ng: ">=12" + libvorbis: ">=1.3.7,<1.4.0a0" + mpg123: ">=1.31.1,<1.32.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda" + hash: + md5: c648d19cd9c8625898d5d370414de7c7 + sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 + optional: false + category: main +- name: libtiff + version: 4.5.0 + manager: conda + platform: linux-64 + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libdeflate: ">=1.17,<1.18.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda" + hash: + md5: 2e648a34072eb39d7c4fc2a9981c5f0c + sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee + optional: false + category: main +- name: libxkbcommon + version: 1.0.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + libxml2: ">=2.9.10,<2.11.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.0.3-he3ba5ed_0.tar.bz2" + hash: + md5: f9dbabc7e01c459ed7a1d1d64b206e9b + sha256: 64d37e16c694714ca08a96f9864a35ba9ee38b8e222f8ee646e10976250d966d + optional: false + category: main +- name: mysql-libs + version: 8.0.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + mysql-common: "==8.0.32 ha901b37_0" + openssl: ">=3.0.7,<4.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hd7da12d_0.conda" + hash: + md5: b05d7ea8b76f1172d5fe4f30e03277ea + sha256: 903174761ce605d98410747e0072757da5278d57309148ef175af490aa791f38 + optional: false + category: main +- name: nss + version: "3.88" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libgcc-ng: ">=12" + libsqlite: ">=3.40.0,<4.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + nspr: ">=4.35,<5.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda" + hash: + md5: d7a81dfb99ad8fbb88872fb7ec646e6c + sha256: a589e916119db06742da1307c3438a5c733cf01006470158c7aae8f2859f6e90 + optional: false + category: main +- name: python + version: 3.9.16 + manager: conda + platform: linux-64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-64: ">=2.36.1" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/python-3.9.16-h2782a2a_0_cpython.conda" + hash: + md5: 95c9b7c96a7fd7342e0c9d0a917b8f78 + sha256: 00bcb28a294aa78bf9d2a2ecaae8cb887188eae710f9197d823d36fb8a5d9767 + optional: false + category: main +- name: xcb-util + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: 384e7fcb3cd162ba3e4aed4b687df566 + sha256: 292dee40f8390aea0e6a0abbf2f255f179c777326831ed9e1ad7db53665c8562 + optional: false + category: main +- name: xcb-util-keysyms + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: 637054603bb7594302e3bf83f0a99879 + sha256: 6a2c0f38b360a2fda57b2349d2cbeeb7583576a4914a3e4ce17977601ac87613 + optional: false + category: main +- name: xcb-util-renderutil + version: 0.3.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2" + hash: + md5: 732e22f1741bccea861f5668cf7342a7 + sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + optional: false + category: main +- name: xcb-util-wm + version: 0.4.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h166bdaf_0.tar.bz2" + hash: + md5: 0a8e20a8aef954390b9481a527421a8c + sha256: a76af35297f233982b58de1f55f1900d8a8ae44018a55d2a94f3084ab97d6c80 + optional: false + category: main +- name: xorg-libx11 + version: 1.7.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libxcb: 1.* + xorg-kbproto: "*" + xorg-xproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2" + hash: + md5: 12a61e640b8894504326aadafccbb790 + sha256: ec4641131e3afcb4b34614a5fa298efb34f54c2b2960bf9a73a8d202140d47c4 + optional: false + category: main +- name: alabaster + version: 0.7.13 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main +- name: appdirs + version: 1.4.4 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main +- name: attrs + version: 22.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main +- name: backcall + version: 0.2.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main +- name: backports + version: "1.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main +- name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py39hf3d152e_7.tar.bz2" + hash: + md5: b1a72c73acf3527aa5c1e2eed594fa25 + sha256: 1e9ca141550b6b515dec4ff32a7ca32948f6ac01e0fec207d8a14a7170b2973c + optional: false + category: main +- name: brotli + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + brotli-bin: "==1.0.9 h166bdaf_8" + libbrotlidec: "==1.0.9 h166bdaf_8" + libbrotlienc: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 2ff08978892a3e8b954397c461f18418 + sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 + optional: false + category: main +- name: c-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + binutils: "*" + gcc: "*" + gcc_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda" + hash: + md5: 69afb4e35be6366c2c1f9ed7f49bc3e6 + sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a + optional: false + category: main +- name: certifi + version: 2022.12.7 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main +- name: charset-normalizer + version: 2.1.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main +- name: click + version: 8.1.3 + manager: conda + platform: linux-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main +- name: colorama + version: 0.4.6 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main +- name: cycler + version: 0.11.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main +- name: cython + version: 0.29.33 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cython-0.29.33-py39h227be39_0.conda" + hash: + md5: 34bab6ef3e8cdf86fe78c46a984d3217 + sha256: 908715a56fe7633df894464c59c3799d88300772fc62011fa96593ce4ad92ef4 + optional: false + category: main +- name: dbus + version: 1.13.6 + manager: conda + platform: linux-64 + dependencies: + expat: ">=2.4.2,<3.0a0" + libgcc-ng: ">=9.4.0" + libglib: ">=2.70.2,<3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2" + hash: + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + optional: false + category: main +- name: decorator + version: 5.1.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main +- name: docutils + version: "0.19" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py39hf3d152e_1.tar.bz2" + hash: + md5: adb733ec2ee669f6d010758d054da60f + sha256: 826ae2374fc37a9bb29dd3c7783ba11ffa1e215660a60144e7f759c49686b1af + optional: false + category: main +- name: exceptiongroup + version: 1.1.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main +- name: execnet + version: 1.9.0 + manager: conda + platform: linux-64 + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main +- name: executing + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main +- name: fontconfig + version: 2.14.2 + manager: conda + platform: linux-64 + dependencies: + expat: ">=2.5.0,<3.0a0" + freetype: ">=2.12.1,<3.0a0" + libgcc-ng: ">=12" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda" + hash: + md5: 0f69b688f52ff6da70bccb7ff7001d1d + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + optional: false + category: main +- name: gfortran + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc: 11.3.0.* + gcc_impl_linux-64: 11.3.0.* + gfortran_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran-11.3.0-ha859ce3_11.tar.bz2" + hash: + md5: 9a6a0c6fc4d192fddc7347a0ca31a329 + sha256: 9ec8753064dc7379958788952346fc1f0caa18affe093cac62c8a8e267f5f38e + optional: false + category: main +- name: gfortran_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_linux-64: "==11.3.0 he6f903b_11" + gfortran_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-11.3.0-h3c55166_11.tar.bz2" + hash: + md5: f70b169eb69320d71f193758b7df67e8 + sha256: 7c3bc99fc0d32647681f9b8ce44f137f16ae5ec37f040b66506c6634c299f071 + optional: false + category: main +- name: glib-tools + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libglib: "==2.74.1 h606061b_1" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.74.1-h6239696_1.tar.bz2" + hash: + md5: 5f442e6bc9d89ba236eb25a25c5c2815 + sha256: 029533e2e1cb03a80ae07a0a1a6bdd76b524e8f551d82e832a4d846a77b615c9 + optional: false + category: main +- name: gxx + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc: 11.3.0.* + gxx_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx-11.3.0-h02d0930_11.tar.bz2" + hash: + md5: e47dd4b4e577f03bb6aab18f48be5419 + sha256: 3614201ab2f09f27429b7faea7dcd9e24e089a325bca878f76cdd0dca4676520 + optional: false + category: main +- name: gxx_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_linux-64: "==11.3.0 he6f903b_11" + gxx_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.3.0-hc203a17_11.tar.bz2" + hash: + md5: 15fbc9079f191d468403639a6515652c + sha256: 7be17e1fdb200e8b9afe8f4e88b3b821740be6024e433565abda94e5d021c9cb + optional: false + category: main +- name: idna + version: "3.4" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main +- name: imagesize + version: 1.4.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main +- name: iniconfig + version: 2.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main +- name: kiwisolver + version: 1.4.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2" + hash: + md5: 41679a052a8ce841c74df1ebc802e411 + sha256: eb28254cc7029e702d0059536d986b010221de62f9c8588a5a83e95a00b4e74d + optional: false + category: main +- name: lcms2 + version: "2.14" + manager: conda + platform: linux-64 + dependencies: + jpeg: ">=9e,<10a" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-hfd0df8a_1.conda" + hash: + md5: c2566c2ea5f153ddd6bf4acaf7547d97 + sha256: 632f191ac65bc673f8fcef9947e2c8431b0db6ca357ceebde3bdc4ed187af814 + optional: false + category: main +- name: libclang13 + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libllvm15: ">=15.0.7,<15.1.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h3e3d535_1.conda" + hash: + md5: a3a0f7a6f0885f5e1e0ec691566afb77 + sha256: e48481c37d02aefeddcfac20d48cf13b838c5f7b9018300fa7eac404d30f3d7f + optional: false + category: main +- name: libcups + version: 2.3.3 + manager: conda + platform: linux-64 + dependencies: + krb5: ">=1.20.1,<1.21.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda" + hash: + md5: c9f4416a34bc91e0eb029f912c68f81f + sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 + optional: false + category: main +- name: libpq + version: "15.2" + manager: conda + platform: linux-64 + dependencies: + krb5: ">=1.20.1,<1.21.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.0.8,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda" + hash: + md5: 4654b17eccaba55b8581d6b9c77f53cc + sha256: 5693c492ca0280e62edd114d91b7aa9c81fa60276b594f31d18a852636603f9e + optional: false + category: main +- name: libsystemd0 + version: "252" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libcap: ">=2.66,<2.67.0a0" + libgcc-ng: ">=12" + libgcrypt: ">=1.10.1,<2.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-252-h2a991cd_0.tar.bz2" + hash: + md5: 3c5ae9f61f663b3d5e1bf7f7da0c85f5 + sha256: a181e25a04207179da598a5a89747a026642341e193dca125620f5f4e268804a + optional: false + category: main +- name: markupsafe + version: 2.1.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py39h72bdee0_0.conda" + hash: + md5: 35514f5320206df9f4661c138c02e1c1 + sha256: da31fe95611393bb7dd3dee309a89328448570fd8a3205c2c55c03eb73688b61 + optional: false + category: main +- name: munkres + version: 1.1.4 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main +- name: mypy_extensions + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main +- name: numpy + version: 1.24.2 + manager: conda + platform: linux-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py39h7360e5f_0.conda" + hash: + md5: 757070dc7cc33003254888808cd34f1e + sha256: c0418aa18f4fd37d3ac786058bfa29cca0b5b8eca95a2e0ae2fdd13aefc81ad6 + optional: false + category: main +- name: openjpeg + version: 2.5.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda" + hash: + md5: 5ce6a42505c6e9e6151c54c3ec8d68ea + sha256: 3cbfb1fe9bb492dcb672f98f0ddc7b4e029f51f77101d9c301caa3acaea8cba2 + optional: false + category: main +- name: packaging + version: "23.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main +- name: parso + version: 0.8.3 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main +- name: pickleshare + version: 0.7.5 + manager: conda + platform: linux-64 + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main +- name: pluggy + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main +- name: ply + version: "3.11" + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2" + hash: + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + optional: false + category: main +- name: psutil + version: 5.9.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py39hb9d737c_0.tar.bz2" + hash: + md5: 12184951da572828fb986b06ffb63eed + sha256: 515cf2cfc0504eb5758fa9ddfabc1dcbd7182da7650828aac97c9eee35597c84 + optional: false + category: main +- name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main +- name: pure_eval + version: 0.2.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main +- name: pycodestyle + version: 2.7.0 + manager: conda + platform: linux-64 + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main +- name: pycparser + version: "2.21" + manager: conda + platform: linux-64 + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main +- name: pyparsing + version: 3.0.9 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main +- name: pysocks + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main +- name: pytz + version: 2022.7.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main +- name: setuptools + version: 59.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/setuptools-59.2.0-py39hf3d152e_0.tar.bz2" + hash: + md5: 37ef3543fa46bf5d587f23d72b88fbf7 + sha256: 7e74640590ebe3379bb33c0aed17efa8c305c016b85e987d1e864a40a29743aa + optional: false + category: main +- name: six + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main +- name: smmap + version: 3.0.5 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main +- name: snowballstemmer + version: 2.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main +- name: sortedcontainers + version: 2.4.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main +- name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main +- name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main +- name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main +- name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main +- name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main +- name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main +- name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main +- name: toml + version: 0.10.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main +- name: tomli + version: 2.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main +- name: tornado + version: "6.2" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py39hb9d737c_1.tar.bz2" + hash: + md5: 8a7d309b08cff6386fe384aa10dd3748 + sha256: 67c3eef0531caf75a81945844288f363cd3b7b029829bd91ed0994bf6b231f34 + optional: false + category: main +- name: traitlets + version: 5.9.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main +- name: typing_extensions + version: 4.4.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main +- name: unicodedata2 + version: 15.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py39hb9d737c_0.tar.bz2" + hash: + md5: 230d65004135bf312504a1bbcb0c7a08 + sha256: 03c2cf05d1f4f2b01fc1e3ced22d5f331f2f233e335c4a4cd11a31fea1fccc0c + optional: false + category: main +- name: wheel + version: 0.38.4 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main +- name: xcb-util-image + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + xcb-util: ">=0.4.0,<0.5.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: c9b568bd804cb2903c6be6f5f68182e4 + sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + optional: false + category: main +- name: xorg-libxext + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + xorg-libx11: ">=1.7.0,<2.0a0" + xorg-xextproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2" + hash: + md5: 536cc5db4d0a3ba0630541aec064b5e4 + sha256: cf47ccbf49d46189d7bdadeac1387c826be82deb92ce6badbb03baae4b67ed26 + optional: false + category: main +- name: xorg-libxrender + version: 0.9.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + xorg-libx11: ">=1.7.0,<2.0a0" + xorg-renderproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2" + hash: + md5: f59c1242cc1dd93e72c2ee2b360979eb + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + optional: false + category: main +- name: zipp + version: 3.13.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main +- name: asttokens + version: 2.2.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main +- name: babel + version: 2.11.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main +- name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: linux-64 + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main +- name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main +- name: cairo + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + fontconfig: ">=2.13.96,<3.0a0" + fonts-conda-ecosystem: "*" + freetype: ">=2.12.1,<3.0a0" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libglib: ">=2.72.1,<3.0a0" + libpng: ">=1.6.38,<1.7.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + pixman: ">=0.40.0,<1.0a0" + xorg-libice: "*" + xorg-libsm: "*" + xorg-libx11: "*" + xorg-libxext: "*" + xorg-libxrender: "*" + zlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2" + hash: + md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 + sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 + optional: false + category: main +- name: cffi + version: 1.15.1 + manager: conda + platform: linux-64 + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_3.conda" + hash: + md5: 20080319ef73fbad74dcd6d62f2a3ffe + sha256: 485a8f65c58c26c7d48bfea20ed1d6f1493f3329dd2c9c0a888a1c2b7c2365c5 + optional: false + category: main +- name: contourpy + version: 1.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py39h4b4f3f3_0.conda" + hash: + md5: c5387f3fb1f5b8b71e1c865fc55f4951 + sha256: 74a767b73686caf0bb1d1186cd62a54f01e03ad5432eaaf0a7babad7634c4067 + optional: false + category: main +- name: coverage + version: 7.1.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py39h72bdee0_0.conda" + hash: + md5: 915b100b564875cceb85cbeab61fd678 + sha256: 074f44d601cae7c972183e915e7ea53ea433c59a43cb0c8964bb4d897e514512 + optional: false + category: main +- name: cxx-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + c-compiler: "==1.5.2 h0b41bf4_0" + gxx: "*" + gxx_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda" + hash: + md5: 6b3b19e359824b97df7145c8c878c8be + sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc + optional: false + category: main +- name: fonttools + version: 4.38.0 + manager: conda + platform: linux-64 + dependencies: + brotli: "*" + libgcc-ng: ">=12" + munkres: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2" + hash: + md5: 3f2d104f2fefdd5e8a205dd3aacbf1d7 + sha256: 55dff2dd401ef1d6fc4a27cf8e74af899c609519d35eafff3b097d7fc1836d83 + optional: false + category: main +- name: fortran-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + binutils: "*" + c-compiler: "==1.5.2 h0b41bf4_0" + gfortran: "*" + gfortran_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.5.2-hdb1a99f_0.conda" + hash: + md5: 265323e1bd53709aeb739c9b1794b398 + sha256: 985733294fe9b3dc6f126ee95b4b934e097060ca0c12fe469812596a4763228e + optional: false + category: main +- name: gitdb + version: 4.0.10 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main +- name: glib + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + glib-tools: "==2.74.1 h6239696_1" + libgcc-ng: ">=12" + libglib: "==2.74.1 h606061b_1" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + python: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/glib-2.74.1-h6239696_1.tar.bz2" + hash: + md5: f3220a9e9d3abcbfca43419a219df7e4 + sha256: bc3f1d84e976a62ae8388e3b44f260d867beb7a307c18147048a8301a3c12e47 + optional: false + category: main +- name: hypothesis + version: 6.68.1 + manager: conda + platform: linux-64 + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main +- name: importlib-metadata + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main +- name: jedi + version: 0.18.2 + manager: conda + platform: linux-64 + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main +- name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-64 + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main +- name: libclang + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libclang13: "==15.0.7 default_h3e3d535_1" + libgcc-ng: ">=12" + libllvm15: ">=15.0.7,<15.1.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_had23c3d_1.conda" + hash: + md5: 36c65ed73b7c92589bd9562ef8a6023d + sha256: eba3ed760c72c992a04d86455556ecb90c0e1e3688defcac44b28a848d71651c + optional: false + category: main +- name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main +- name: meson + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main +- name: mypy + version: "0.981" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/linux-64/mypy-0.981-py39hb9d737c_0.tar.bz2" + hash: + md5: 726060f54d0a1ae07577a34dda31a868 + sha256: 0cbf2e4018d7694517268c258a7b53b73c4c3a57490352a0792e08b96d8b637f + optional: false + category: main +- name: pexpect + version: 4.8.0 + manager: conda + platform: linux-64 + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main +- name: pillow + version: 9.4.0 + manager: conda + platform: linux-64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py39h2320bf1_1.conda" + hash: + md5: d2f79132b9c8e416058a4cd84ef27b3d + sha256: 77348588ae7cc8034b63e8a71b6695ba22761e1c531678e724cf06a12be3d1e2 + optional: false + category: main +- name: pip + version: "23.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main +- name: pulseaudio + version: "16.1" + manager: conda + platform: linux-64 + dependencies: + alsa-lib: ">=1.2.8,<1.2.9.0a0" + dbus: ">=1.13.6,<2.0a0" + fftw: ">=3.3.10,<4.0a0" + gstreamer-orc: ">=0.4.33,<0.5.0a0" + jack: ">=1.9.21,<1.10.0a0" + libcap: ">=2.66,<2.67.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libsndfile: ">=1.2.0,<1.3.0a0" + libsystemd0: ">=252" + libtool: ">=2.4.7,<3.0a0" + libudev1: ">=252" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-16.1-ha8d29e2_1.conda" + hash: + md5: dbfc2a8d63a43a11acf4c704e1ef9d0c + sha256: aa2aa5b5e2430a3c3d8b24574e5e270c47026740cb706e9be31df81b0627afa6 + optional: false + category: main +- name: pygments + version: 2.14.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main +- name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: linux-64 + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main +- name: pytest + version: 7.2.1 + manager: conda + platform: linux-64 + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main +- name: python-dateutil + version: 2.8.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main +- name: sip + version: 6.7.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + packaging: "*" + ply: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + toml: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.7-py39h227be39_0.conda" + hash: + md5: 7d9a35091552af3655151f164ddd64a3 + sha256: cbd7ddbe101dfe7d7241c5334e08c56fd9000400a099a2144ba95f63f90b9b45 + optional: false + category: main +- name: typing-extensions + version: 4.4.0 + manager: conda + platform: linux-64 + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main +- name: brotlipy + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + cffi: ">=1.0.0" + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2" + hash: + md5: a639fdd9428d8b25f8326a3838d54045 + sha256: 293229afcd31e81626e5cfe0478be402b35d29b73aa421a49470645debda5019 + optional: false + category: main +- name: compilers + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + c-compiler: "==1.5.2 h0b41bf4_0" + cxx-compiler: "==1.5.2 hf52228f_0" + fortran-compiler: "==1.5.2 hdb1a99f_0" + url: "https://conda.anaconda.org/conda-forge/linux-64/compilers-1.5.2-ha770c72_0.conda" + hash: + md5: f95226244ee1c487cf53272f971323f4 + sha256: 8ca9a7581c9522fa299782e28ac1e196f67df72b2f01c1e6ed09a2d3a77ec310 + optional: false + category: main +- name: cryptography + version: 39.0.1 + manager: conda + platform: linux-64 + dependencies: + cffi: ">=1.12" + libgcc-ng: ">=12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cryptography-39.0.1-py39h079d5ae_0.conda" + hash: + md5: 3245013812dfbff6a22e57533ac6f69d + sha256: 4349d5416c718c331454b957e0a077500fb4fb9e8f3b7eadb8777a3842021818 + optional: false + category: main +- name: gitpython + version: 3.1.30 + manager: conda + platform: linux-64 + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main +- name: gstreamer + version: 1.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + gettext: ">=0.21.1,<1.0a0" + glib: ">=2.74.1,<3.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_0.conda" + hash: + md5: d764367398de61c0d5531dd912e6cc96 + sha256: ebf7839171f7ae6228c9650b13f551da9812486bbb6cd5e78985574b82dc6bbc + optional: false + category: main +- name: harfbuzz + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + cairo: ">=1.16.0,<2.0a0" + freetype: ">=2.12.1,<3.0a0" + graphite2: "*" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda" + hash: + md5: 448fe40d2fed88ccf4d9ded37cbb2b38 + sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 + optional: false + category: main +- name: matplotlib-base + version: 3.6.3 + manager: conda + platform: linux-64 + dependencies: + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.3-py39he190548_0.conda" + hash: + md5: 5ade95e6e99425e3e5916019dcd01e55 + sha256: 70a6cc23b22ea0afdf73605d344062983282e1b2e7c8f9d2b0d70bdf93ba771a + optional: false + category: main +- name: meson-python + version: 0.12.0 + manager: conda + platform: linux-64 + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main +- name: pandas + version: 1.5.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py39h2ad29b5_0.conda" + hash: + md5: 3ea96adbbc2a66fa45178102a9cfbecc + sha256: a71fb9584f2b58e260fa565d5f27af763f21ed2afeede79e7d848620691bd765 + optional: false + category: main +- name: pyqt5-sip + version: 12.11.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + packaging: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + sip: "*" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py39h227be39_3.conda" + hash: + md5: 9e381db00691e26bcf670c3586397be1 + sha256: aff0befab89f536c4540dba017543d1616862b2d51350cb6d2875c294bd1b199 + optional: false + category: main +- name: pytest-cov + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main +- name: pytest-xdist + version: 3.2.0 + manager: conda + platform: linux-64 + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main +- name: stack_data + version: 0.6.2 + manager: conda + platform: linux-64 + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main +- name: wcwidth + version: 0.2.6 + manager: conda + platform: linux-64 + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main +- name: gst-plugins-base + version: 1.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + alsa-lib: ">=1.2.8,<1.2.9.0a0" + gettext: ">=0.21.1,<1.0a0" + gstreamer: "==1.22.0 h25f0c4b_0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libopus: ">=1.3.1,<2.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libvorbis: ">=1.3.7,<1.4.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_0.conda" + hash: + md5: 81c20b15d2281a1ea48eac5b4eee8cfa + sha256: dfa2794ea19248f13a1eb067727c70d11e8bba228b82a4bee18ad6a26fdc99fe + optional: false + category: main +- name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main +- name: pyopenssl + version: 23.0.0 + manager: conda + platform: linux-64 + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main +- name: ipython + version: 8.10.0 + manager: conda + platform: linux-64 + dependencies: + __linux: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" + hash: + md5: 4703355103974293bbd8a32449b3ff28 + sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff + optional: false + category: main +- name: qt-main + version: 5.15.8 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + alsa-lib: ">=1.2.8,<1.2.9.0a0" + dbus: ">=1.13.6,<2.0a0" + expat: ">=2.5.0,<3.0a0" + fontconfig: ">=2.14.2,<3.0a0" + fonts-conda-ecosystem: "*" + freetype: ">=2.12.1,<3.0a0" + gst-plugins-base: ">=1.22.0,<1.23.0a0" + gstreamer: ">=1.22.0,<1.23.0a0" + harfbuzz: ">=6.0.0,<7.0a0" + icu: ">=70.1,<71.0a0" + jpeg: ">=9e,<10a" + krb5: ">=1.20.1,<1.21.0a0" + libclang: ">=15.0.7,<16.0a0" + libclang13: ">=15.0.7" + libcups: ">=2.3.3,<2.4.0a0" + libevent: ">=2.1.10,<2.1.11.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libpq: ">=15.1,<16.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libstdcxx-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + libxkbcommon: ">=1.0.3,<2.0a0" + libxml2: ">=2.10.3,<2.11.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + mysql-libs: ">=8.0.32,<8.1.0a0" + nspr: ">=4.35,<5.0a0" + nss: ">=3.82,<4.0a0" + openssl: ">=3.0.8,<4.0a0" + pulseaudio: ">=16.1,<16.2.0a0" + xcb-util: "*" + xcb-util-image: "*" + xcb-util-keysyms: "*" + xcb-util-renderutil: "*" + xcb-util-wm: "*" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda" + hash: + md5: 59c73debd9405771690ddbbad6c57b69 + sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 + optional: false + category: main +- name: urllib3 + version: 1.26.14 + manager: conda + platform: linux-64 + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main +- name: pyqt + version: 5.15.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + pyqt5-sip: "==12.11.0 py39h227be39_3" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + qt-main: ">=5.15.6,<5.16.0a0" + sip: ">=6.7.5,<6.8.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py39h5c7b992_3.conda" + hash: + md5: 19e30314fe824605750da905febb8ee6 + sha256: 1dfa1bff6d1334682790063c889198671b477a95c71a3d73ff656b4d88ea542b + optional: false + category: main +- name: requests + version: 2.28.2 + manager: conda + platform: linux-64 + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main +- name: matplotlib + version: 3.6.3 + manager: conda + platform: linux-64 + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + pyqt: ">=5" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.6.3-py39hf3d152e_0.conda" + hash: + md5: dbef5ffeeca5c5112cc3be8f03e6d1a5 + sha256: b1d70dba47ea0e901084fd4d32b506772063b38a99e1c39c1b0fef4c06e7deef + optional: false + category: main +- name: pooch + version: 1.6.0 + manager: conda + platform: linux-64 + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main +- name: sphinx + version: 5.3.0 + manager: conda + platform: linux-64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main +- name: breathe + version: 4.34.0 + manager: conda + platform: linux-64 + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main +- name: numpydoc + version: 1.4.0 + manager: conda + platform: linux-64 + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main +- name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: linux-64 + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main +- name: scipy + version: 1.10.0 + manager: conda + platform: linux-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py39h7360e5f_2.conda" + hash: + md5: fbee2ab3fe7729f2ff5c5699d58e40b9 + sha256: d9191b5aa96255c5e6a176a795e304e0806aa31366baa0101e6c242c474341d2 + optional: false + category: main +- name: sphinx-design + version: 0.3.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new new file mode 100644 index 000000000..72be6c432 --- /dev/null +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new @@ -0,0 +1,13255 @@ +--- +source: crates/rattler_conda_types/src/conda_lock/mod.rs +assertion_line: 499 +expression: conda_lock +--- +metadata: + content_hash: + linux-64: db07b15e6c03c3be1c2b06b6b6c916d625f68bba2d5911b013b31970eaa2e5c3 + linux-aarch64: 6f414a06801d6ece6fd70615551f34886e3f91d1d24b2ba0c9521c6df16ad782 + linux-ppc64le: f3318249d3f3c14c47ee460028c2564af69e10fb1dcbae2620f4c6f4be1f5535 + osx-64: b6acb46a28b7f967cae46043c24a68b7f4bc8850d9bd2f0c7ec53974e4288338 + osx-arm64: 3018a6a775139b008670c5fb8448fd825dc709503966f4aa74652bd64a9240e8 + channels: + - url: conda-forge + used_env_vars: [] + platforms: + - linux-64 + - linux-aarch64 + - linux-ppc64le + - osx-64 + - osx-arm64 + sources: + - /tmp/conda-lock.MczGj6QaAcBP/environment.yml + time_metadata: ~ + git_metadata: ~ + inputs_metadata: ~ + custom_metadata: ~ +package: + - name: _libgcc_mutex + version: "0.1" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2" + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + optional: false + category: main + - name: ca-certificates + version: 2022.12.7 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda" + hash: + md5: ff9f73d45c4a07d6f424495288a26080 + sha256: 8f6c81b0637771ae0ea73dc03a6d30bec3326ba3927f2a7b91931aa2d59b1789 + optional: false + category: main + - name: font-ttf-dejavu-sans-mono + version: "2.37" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2" + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + optional: false + category: main + - name: font-ttf-inconsolata + version: "3.000" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2" + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main + - name: font-ttf-source-code-pro + version: "2.038" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2" + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + optional: false + category: main + - name: font-ttf-ubuntu + version: "0.83" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2" + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + optional: false + category: main + - name: kernel-headers_linux-64 + version: 2.6.32 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2" + hash: + md5: 5dd5127afd710f91f6a75821bac0a4f0 + sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 + optional: false + category: main + - name: ld_impl_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hcc3a1bd_1.conda" + hash: + md5: 737be0d34c22d24432049ab7a3214de4 + sha256: 3e7f203e33ea497b6e468279cc5fdef7d556473c25e7466b35fd672940392469 + optional: false + category: main + - name: libgcc-devel_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" + hash: + md5: 9b7bdb0b42ce4e4670d32bfe0532b56a + sha256: 70b2c370cc616304f732eeb4014825390dbee044ecbc3875e968b0ea01bd7503 + optional: false + category: main + - name: libgfortran5 + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2" + hash: + md5: 164b4b1acaedc47ee7e658ae6b308ca3 + sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 + optional: false + category: main + - name: libstdcxx-devel_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" + hash: + md5: 8aee006c0662f551f3acef9a7077a5b9 + sha256: abfcbf3a0f770be88eefebf84ae3a901da9e933799c9eecf3e9b06f34b00a0a5 + optional: false + category: main + - name: libstdcxx-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2" + hash: + md5: 1030b1f38c129f2634eae026f704fe60 + sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 + optional: false + category: main + - name: nomkl + version: "1.0" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main + - name: python_abi + version: "3.9" + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-3_cp39.conda" + hash: + md5: 0dd193187d54e585cac7eab942a8847e + sha256: 89e8c4436dd04d8b4a0c13c508e930be56973a480a9714171969de953bdafd3a + optional: false + category: main + - name: tzdata + version: 2022g + manager: conda + platform: linux-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main + - name: fonts-conda-forge + version: "1" + manager: conda + platform: linux-64 + dependencies: + font-ttf-dejavu-sans-mono: "*" + font-ttf-inconsolata: "*" + font-ttf-source-code-pro: "*" + font-ttf-ubuntu: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2" + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + optional: false + category: main + - name: libgfortran-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + libgfortran5: "==12.2.0 h337968e_19" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2" + hash: + md5: cd7a806282c16e1f2d39a7e80d3a3e0d + sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f + optional: false + category: main + - name: libgomp + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2" + hash: + md5: cedcee7c064c01c403f962c9e8d3c373 + sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e + optional: false + category: main + - name: sysroot_linux-64 + version: "2.12" + manager: conda + platform: linux-64 + dependencies: + kernel-headers_linux-64: "==2.6.32 he073ed8_15" + url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2" + hash: + md5: 66c192522eacf5bb763568b4e415d133 + sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff + optional: false + category: main + - name: _openmp_mutex + version: "4.5" + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + libgomp: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2" + hash: + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + optional: false + category: main + - name: binutils_impl_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + ld_impl_linux-64: "==2.39 hcc3a1bd_1" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-he00db2b_1.conda" + hash: + md5: 3d726e8b51a1f5bfd66892a2b7d9db2d + sha256: 69a7c32141475dab43de2f19b7a67c14596cbb357cdb5891ff866918f8f65a2e + optional: false + category: main + - name: fonts-conda-ecosystem + version: "1" + manager: conda + platform: linux-64 + dependencies: + fonts-conda-forge: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2" + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + - name: binutils + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: ">=2.39,<2.40.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils-2.39-hdd6e379_1.conda" + hash: + md5: 1276c18b0a562739185dbf5bd14b57b2 + sha256: 8edbd5a01feaf22053d7c02e7d5066a3b35b265deee0a5ad3f69054289bbbd7e + optional: false + category: main + - name: binutils_linux-64 + version: "2.39" + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: 2.39.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2" + hash: + md5: b7d26ab37be17ea4c366a97138684bcb + sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e + optional: false + category: main + - name: libgcc-ng + version: 12.2.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + _openmp_mutex: ">=4.5" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2" + hash: + md5: e4c94f80aef025c17ab0828cd85ef535 + sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 + optional: false + category: main + - name: alsa-lib + version: 1.2.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2" + hash: + md5: be733e69048951df1e4b4b7bb8c7666f + sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + optional: false + category: main + - name: attr + version: 2.5.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2" + hash: + md5: d9c69a24ad678ffce24c6543a0176b00 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + optional: false + category: main + - name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2" + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + optional: false + category: main + - name: expat + version: 2.5.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2" + hash: + md5: c4fbad8d4bddeb3c085f18cbf97fbfad + sha256: b44db0b92ae926b3fbbcd57c179fceb64fa11a9f9d09082e03be58b74dcad832 + optional: false + category: main + - name: fftw + version: 3.3.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf0379b8_106.conda" + hash: + md5: d7407e695358f068a2a7f8295cde0567 + sha256: 8b735848df623fab555a6d7fc400636116d6ed5686ae0e50adb7df4c1c3a9cef + optional: false + category: main + - name: gettext + version: 0.21.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2" + hash: + md5: 14947d8770185e5153fdd04d4673ed37 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + optional: false + category: main + - name: graphite2 + version: 1.3.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2" + hash: + md5: 8c54672728e8ec6aa6db90cf2806d220 + sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 + optional: false + category: main + - name: gstreamer-orc + version: 0.4.33 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.33-h166bdaf_0.tar.bz2" + hash: + md5: 879c93426c9d0b84a9de4513fbce5f4f + sha256: c4fdbaaeb66eed280ef6875c6a4b6916ed168166277e9317fbe25b15d3758897 + optional: false + category: main + - name: icu + version: "70.1" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2" + hash: + md5: 87473a15119779e021c314249d4b4aed + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + optional: false + category: main + - name: jpeg + version: 9e + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda" + hash: + md5: c7a069243e1fbe9a556ed2ec030e6407 + sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b + optional: false + category: main + - name: keyutils + version: 1.6.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2" + hash: + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + optional: false + category: main + - name: lame + version: "3.100" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2" + hash: + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + optional: false + category: main + - name: lerc + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2" + hash: + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + optional: false + category: main + - name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 9194c9bf9428035a05352d031462eae4 + sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 + optional: false + category: main + - name: libdb + version: 6.2.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2" + hash: + md5: 3f3258d8f841fbac63b36b75bdac1afd + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + optional: false + category: main + - name: libdeflate + version: "1.17" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda" + hash: + md5: 5cc781fd91968b11a8a7fdbee0982676 + sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c + optional: false + category: main + - name: libffi + version: 3.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2" + hash: + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + optional: false + category: main + - name: libiconv + version: "1.17" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2" + hash: + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + optional: false + category: main + - name: libnsl + version: 2.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2" + hash: + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + optional: false + category: main + - name: libogg + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2" + hash: + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + optional: false + category: main + - name: libopenblas + version: 0.3.21 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2" + hash: + md5: 8c5963a49b6035c40646a763293fbb35 + sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 + optional: false + category: main + - name: libopus + version: 1.3.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2" + hash: + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + optional: false + category: main + - name: libsanitizer + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.3.0-h239ccf8_19.tar.bz2" + hash: + md5: d17fd55aed84ab6592c5419b6600501c + sha256: 5e53a50c9b5fd04790f4cc63aa74cd6172151246248438b9bc154392ebe0bd17 + optional: false + category: main + - name: libtool + version: 2.4.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda" + hash: + md5: f204c8ba400ec475452737094fb81d52 + sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1 + optional: false + category: main + - name: libudev1 + version: "252" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libudev1-252-h166bdaf_0.tar.bz2" + hash: + md5: 174243089ec111479298a5b7099b64b5 + sha256: e9ef9cb1d34a2f02f68c4778986f1f8be3015fec272523fd2dde3723c120f038 + optional: false + category: main + - name: libuuid + version: 2.32.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2" + hash: + md5: 772d69f030955d9646d3d0eaf21d859d + sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 + optional: false + category: main + - name: libwebp-base + version: 1.2.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2" + hash: + md5: ac2ccf7323d21f2994e4d1f5da664f37 + sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 + optional: false + category: main + - name: libzlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2" + hash: + md5: f3f9de449d32ca9b9c66a22863c96f41 + sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd + optional: false + category: main + - name: lz4-c + version: 1.9.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda" + hash: + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + optional: false + category: main + - name: mpg123 + version: 1.31.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.2-hcb278e6_0.conda" + hash: + md5: 08efb1e1813f1a151b7a945b972a049b + sha256: cc8cb2097e96d2420dd698951ab524b6c8268fa691d370020a0eae3e65197c04 + optional: false + category: main + - name: ncurses + version: "6.3" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2" + hash: + md5: 4acfc691e64342b9dae57cf2adc63238 + sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 + optional: false + category: main + - name: ninja + version: 1.11.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.0-h924138e_0.tar.bz2" + hash: + md5: 18c563c26253a21c1aa9d662e874b0cd + sha256: 1d3659abc4e3dfa9c8c03a664f6d0323503b75a4506fb9d28f28448be5540fc5 + optional: false + category: main + - name: nspr + version: "4.35" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda" + hash: + md5: da0ec11a6454ae19bff5b02ed881a2b1 + sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + optional: false + category: main + - name: openssl + version: 3.0.8 + manager: conda + platform: linux-64 + dependencies: + ca-certificates: "*" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.8-h0b41bf4_0.conda" + hash: + md5: e043403cd18faf815bf7705ab6c1e092 + sha256: cd981c5c18463bc7a164fcf45c5cf697d58852b780b4dfa5e83c18c1fda6d7cd + optional: false + category: main + - name: pixman + version: 0.40.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2" + hash: + md5: 660e72c82f2e75a6b3fe6a6e75c79f19 + sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 + optional: false + category: main + - name: pkg-config + version: 0.29.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2" + hash: + md5: fbef41ff6a4c8140c30057466a1cdd47 + sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c + optional: false + category: main + - name: pthread-stubs + version: "0.4" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2" + hash: + md5: 22dad4df6e8630e8dff2428f6f6a7036 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + optional: false + category: main + - name: xorg-kbproto + version: 1.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2" + hash: + md5: 4b230e8381279d76131116660f5a241a + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + optional: false + category: main + - name: xorg-libice + version: 1.0.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2" + hash: + md5: d6b0b50b49eccfe0be0373be628be0f3 + sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 + optional: false + category: main + - name: xorg-libxau + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2" + hash: + md5: bf6f803a544f26ebbdc3bfff272eb179 + sha256: 9e9b70c24527289ac7ae31925d1eb3b0c1e9a78cb7b8f58a3110cc8bbfe51c26 + optional: false + category: main + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2" + hash: + md5: be93aabceefa2fac576e971aef407908 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + optional: false + category: main + - name: xorg-renderproto + version: 0.11.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2" + hash: + md5: 06feff3d2634e3097ce2fe681474b534 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + optional: false + category: main + - name: xorg-xextproto + version: 7.3.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2" + hash: + md5: 1e15f6ad85a7d743a2ac68dae6c82b98 + sha256: d45c4d1c8372c546711eb3863c76d899d03a67c3edb3b5c2c46c9492814cbe03 + optional: false + category: main + - name: xorg-xproto + version: 7.0.31 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2" + hash: + md5: b4a4381d54784606820704f7b5f05a15 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + optional: false + category: main + - name: xz + version: 5.2.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2" + hash: + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + optional: false + category: main + - name: doxygen + version: 1.9.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libiconv: ">=1.16,<2.0.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.5-h583eb01_0.tar.bz2" + hash: + md5: a94d4fb8005f9d8d286e06bbb1bec448 + sha256: f8379387abdb1c51ec72165fbd7e2c54b83c40224ea9eed825a18895ab60273f + optional: false + category: main + - name: gcc_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_impl_linux-64: ">=2.39" + libgcc-devel_linux-64: "==11.3.0 h210ce93_19" + libgcc-ng: ">=11.3.0" + libgomp: ">=11.3.0" + libsanitizer: "==11.3.0 h239ccf8_19" + libstdcxx-ng: ">=11.3.0" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" + hash: + md5: 89ac16d36e66ccb9ca5d34c9217e5799 + sha256: 51c6e39148c9da4a9889d34f0daebdf961ca93f032b1e86f621a67ecff2bd915 + optional: false + category: main + - name: jack + version: 1.9.22 + manager: conda + platform: linux-64 + dependencies: + alsa-lib: ">=1.2.8,<1.2.9.0a0" + libdb: ">=6.2.32,<6.3.0a0" + libgcc-ng: ">=12" + libopus: ">=1.3.1,<2.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h11f4161_0.conda" + hash: + md5: 504fa9e712b99494a9cf4630e3ca7d78 + sha256: 9f173c6633f7ef049b05cd92a9fc028402972ddc44a56d5bb51d8879d73bbde7 + optional: false + category: main + - name: libblas + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: d9b7a8639171f6c6fa0a983edabcfe2b + sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 + optional: false + category: main + - name: libbrotlidec + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlicommon: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 4ae4d7795d33e02bd20f6b23d91caf82 + sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 + optional: false + category: main + - name: libbrotlienc + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlicommon: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 04bac51ba35ea023dc48af73c1c88c25 + sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be + optional: false + category: main + - name: libcap + version: "2.66" + manager: conda + platform: linux-64 + dependencies: + attr: ">=2.5.1,<2.6.0a0" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcap-2.66-ha37c62d_0.tar.bz2" + hash: + md5: 2d7665abd0997f1a6d4b7596bc27b657 + sha256: db113b0bacb45533ec6f5c13a548054af8bd0ca2f7583e8bc5989f17e1e1638b + optional: false + category: main + - name: libedit + version: 3.1.20191231 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + ncurses: ">=6.2,<7.0.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2" + hash: + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + optional: false + category: main + - name: libevent + version: 2.1.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + openssl: ">=3.0.0,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2" + hash: + md5: 4a049fc560e00e43151dc51368915fdd + sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a + optional: false + category: main + - name: libflac + version: 1.4.2 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libgcc-ng: ">=12" + libogg: ">=1.3.4,<1.4.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2" + hash: + md5: 7daf72d8e2a8e848e11d63ed6d1026e0 + sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 + optional: false + category: main + - name: libgpg-error + version: "1.46" + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda" + hash: + md5: 27e745f6f2e4b757e95dd7225fbe6bdb + sha256: a2e3df80a5713b4143f7d276a9354d78f2b2927b22831dc24c3246a82674aaba + optional: false + category: main + - name: libpng + version: 1.6.39 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda" + hash: + md5: e1c890aebdebbfbf87e2c917187b4416 + sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 + optional: false + category: main + - name: libsqlite + version: 3.40.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2" + hash: + md5: 2e5f9a37d487e1019fd4d8113adb2f9f + sha256: 6008a0b914bd1a3510a3dba38eada93aa0349ebca3a21e5fa276833c8205bf49 + optional: false + category: main + - name: libvorbis + version: 1.3.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libogg: ">=1.3.4,<1.4.0a0" + libstdcxx-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2" + hash: + md5: 309dec04b70a3cc0f1e84a4013683bc0 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + optional: false + category: main + - name: libxcb + version: "1.13" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2" + hash: + md5: b3653fdc58d03face9724f602218a904 + sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 + optional: false + category: main + - name: libxml2 + version: 2.10.3 + manager: conda + platform: linux-64 + dependencies: + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2" + hash: + md5: 3b933ea47ef8f330c4c068af25fcd6a8 + sha256: b30713fb4477ff4f722280d956593e7e7a2cb705b7444dcc278de447432b43b1 + optional: false + category: main + - name: mysql-common + version: 8.0.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-ha901b37_0.conda" + hash: + md5: 6a39818710235826181e104aada40c75 + sha256: d7da5c1cc47656394933146ab30f6f3433553e8265ea1a4254bce441ab678199 + optional: false + category: main + - name: openblas + version: 0.3.21 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libopenblas: "==0.3.21 pthreads_h78a6416_3" + url: "https://conda.anaconda.org/conda-forge/linux-64/openblas-0.3.21-pthreads_h320a7e8_3.tar.bz2" + hash: + md5: 29155b9196b9d78022f11d86733e25a7 + sha256: b9986da11c136f4171ce94df6fe5940b529f38b9f13f2746817913071aa51151 + optional: false + category: main + - name: pcre2 + version: "10.40" + manager: conda + platform: linux-64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2" + hash: + md5: 69e2c796349cd9b273890bee0febfe1b + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + optional: false + category: main + - name: readline + version: 8.1.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2" + hash: + md5: db2ebbe2943aae81ed051a6a9af8e0fa + sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 + optional: false + category: main + - name: tk + version: 8.6.12 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2" + hash: + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + optional: false + category: main + - name: xorg-libsm + version: 1.2.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libuuid: ">=2.32.1,<3.0a0" + xorg-libice: 1.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2" + hash: + md5: 9e856f78d5c80d5a78f61e72d1d473a3 + sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 + optional: false + category: main + - name: zlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libzlib: "==1.2.13 h166bdaf_4" + url: "https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2" + hash: + md5: 4b11e365c0275b808be78b30f904e295 + sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 + optional: false + category: main + - name: zstd + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda" + hash: + md5: 6b63daed8feeca47be78f323e793d555 + sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 + optional: false + category: main + - name: brotli-bin + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + libbrotlidec: "==1.0.9 h166bdaf_8" + libbrotlienc: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: e5613f2bc717e9945840ff474419b8e4 + sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f + optional: false + category: main + - name: freetype + version: 2.12.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda" + hash: + md5: e1232042de76d24539a436d37597eb06 + sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f + optional: false + category: main + - name: gcc + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc-11.3.0-h02d0930_11.tar.bz2" + hash: + md5: 6037ebe5f1e3054519ce78b11eec9cd4 + sha256: 1946d6c3ea7e98231de51d506c978c00ae97c7b27379ab34a368218d014758c8 + optional: false + category: main + - name: gcc_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.3.0-he6f903b_11.tar.bz2" + hash: + md5: 25f76cb82e483ce96d118b9edffd12c9 + sha256: c0041b6f805b6b3c01bfb51232b606c9a50a8e0154d17bbf61af36d62c600f00 + optional: false + category: main + - name: gfortran_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: ">=11.3.0" + libgcc-ng: ">=4.9" + libgfortran5: ">=11.3.0" + libstdcxx-ng: ">=4.9" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-11.3.0-he34c6f7_19.tar.bz2" + hash: + md5: 3de873ee757f1a2e583416a3583f84c4 + sha256: 3263c7b7d4c9d0c0a25e92ca201b7c014c00257cecf08ac28953dfda43c93803 + optional: false + category: main + - name: gxx_impl_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc_impl_linux-64: "==11.3.0 hab1b70f_19" + libstdcxx-devel_linux-64: "==11.3.0 h210ce93_19" + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" + hash: + md5: b73564a352e64bb5f2c9bfd3cd6dd127 + sha256: b86a4d15050c8ad5b8a4273c55f468847d891ceb08f3702408c3a0e921a5b5ea + optional: false + category: main + - name: krb5 + version: 1.20.1 + manager: conda + platform: linux-64 + dependencies: + keyutils: ">=1.6.1,<2.0a0" + libedit: ">=3.1.20191231,<4.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda" + hash: + md5: 89a41adce7106749573d883b2f657d78 + sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 + optional: false + category: main + - name: libcblas + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libblas: "==3.9.0 16_linux64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: 20bae26d0a1db73f758fc3754cab4719 + sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f + optional: false + category: main + - name: libgcrypt + version: 1.10.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=10.3.0" + libgpg-error: ">=1.44,<2.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2" + hash: + md5: f967fc95089cd247ceed56eda31de3a9 + sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a + optional: false + category: main + - name: libglib + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + pcre2: ">=10.40,<10.41.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2" + hash: + md5: ed5349aa96776e00b34eccecf4a948fe + sha256: 3cbad3d63cff2dd9ac1dc9cce54fd3d657f3aff53df41bfe5bae9d760562a5af + optional: false + category: main + - name: liblapack + version: 3.9.0 + manager: conda + platform: linux-64 + dependencies: + libblas: "==3.9.0 16_linux64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2" + hash: + md5: 955d993f41f9354bf753d29864ea20ad + sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 + optional: false + category: main + - name: libllvm15 + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libxml2: ">=2.10.3,<2.11.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_0.conda" + hash: + md5: 70cbb0c2033665f2a7339bf0ec51a67f + sha256: 3fb9a9cfd2f5c79e8116c67f95d5a9b790ec66807ae0d8cebefc26fda9f836a7 + optional: false + category: main + - name: libsndfile + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + lame: ">=3.100,<3.101.0a0" + libflac: ">=1.4.2,<1.5.0a0" + libgcc-ng: ">=12" + libogg: ">=1.3.4,<1.4.0a0" + libopus: ">=1.3.1,<2.0a0" + libstdcxx-ng: ">=12" + libvorbis: ">=1.3.7,<1.4.0a0" + mpg123: ">=1.31.1,<1.32.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda" + hash: + md5: c648d19cd9c8625898d5d370414de7c7 + sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 + optional: false + category: main + - name: libtiff + version: 4.5.0 + manager: conda + platform: linux-64 + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libdeflate: ">=1.17,<1.18.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda" + hash: + md5: 2e648a34072eb39d7c4fc2a9981c5f0c + sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee + optional: false + category: main + - name: libxkbcommon + version: 1.0.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + libxml2: ">=2.9.10,<2.11.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.0.3-he3ba5ed_0.tar.bz2" + hash: + md5: f9dbabc7e01c459ed7a1d1d64b206e9b + sha256: 64d37e16c694714ca08a96f9864a35ba9ee38b8e222f8ee646e10976250d966d + optional: false + category: main + - name: mysql-libs + version: 8.0.32 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + mysql-common: "==8.0.32 ha901b37_0" + openssl: ">=3.0.7,<4.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hd7da12d_0.conda" + hash: + md5: b05d7ea8b76f1172d5fe4f30e03277ea + sha256: 903174761ce605d98410747e0072757da5278d57309148ef175af490aa791f38 + optional: false + category: main + - name: nss + version: "3.88" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libgcc-ng: ">=12" + libsqlite: ">=3.40.0,<4.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + nspr: ">=4.35,<5.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda" + hash: + md5: d7a81dfb99ad8fbb88872fb7ec646e6c + sha256: a589e916119db06742da1307c3438a5c733cf01006470158c7aae8f2859f6e90 + optional: false + category: main + - name: python + version: 3.9.16 + manager: conda + platform: linux-64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-64: ">=2.36.1" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/python-3.9.16-h2782a2a_0_cpython.conda" + hash: + md5: 95c9b7c96a7fd7342e0c9d0a917b8f78 + sha256: 00bcb28a294aa78bf9d2a2ecaae8cb887188eae710f9197d823d36fb8a5d9767 + optional: false + category: main + - name: xcb-util + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: 384e7fcb3cd162ba3e4aed4b687df566 + sha256: 292dee40f8390aea0e6a0abbf2f255f179c777326831ed9e1ad7db53665c8562 + optional: false + category: main + - name: xcb-util-keysyms + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: 637054603bb7594302e3bf83f0a99879 + sha256: 6a2c0f38b360a2fda57b2349d2cbeeb7583576a4914a3e4ce17977601ac87613 + optional: false + category: main + - name: xcb-util-renderutil + version: 0.3.9 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2" + hash: + md5: 732e22f1741bccea861f5668cf7342a7 + sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + optional: false + category: main + - name: xcb-util-wm + version: 0.4.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h166bdaf_0.tar.bz2" + hash: + md5: 0a8e20a8aef954390b9481a527421a8c + sha256: a76af35297f233982b58de1f55f1900d8a8ae44018a55d2a94f3084ab97d6c80 + optional: false + category: main + - name: xorg-libx11 + version: 1.7.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + libxcb: 1.* + xorg-kbproto: "*" + xorg-xproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2" + hash: + md5: 12a61e640b8894504326aadafccbb790 + sha256: ec4641131e3afcb4b34614a5fa298efb34f54c2b2960bf9a73a8d202140d47c4 + optional: false + category: main + - name: alabaster + version: 0.7.13 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main + - name: appdirs + version: 1.4.4 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main + - name: attrs + version: 22.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main + - name: backcall + version: 0.2.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + - name: backports + version: "1.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + - name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py39hf3d152e_7.tar.bz2" + hash: + md5: b1a72c73acf3527aa5c1e2eed594fa25 + sha256: 1e9ca141550b6b515dec4ff32a7ca32948f6ac01e0fec207d8a14a7170b2973c + optional: false + category: main + - name: brotli + version: 1.0.9 + manager: conda + platform: linux-64 + dependencies: + brotli-bin: "==1.0.9 h166bdaf_8" + libbrotlidec: "==1.0.9 h166bdaf_8" + libbrotlienc: "==1.0.9 h166bdaf_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2" + hash: + md5: 2ff08978892a3e8b954397c461f18418 + sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 + optional: false + category: main + - name: c-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + binutils: "*" + gcc: "*" + gcc_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda" + hash: + md5: 69afb4e35be6366c2c1f9ed7f49bc3e6 + sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a + optional: false + category: main + - name: certifi + version: 2022.12.7 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main + - name: charset-normalizer + version: 2.1.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main + - name: click + version: 8.1.3 + manager: conda + platform: linux-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main + - name: colorama + version: 0.4.6 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + - name: cycler + version: 0.11.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + - name: cython + version: 0.29.33 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cython-0.29.33-py39h227be39_0.conda" + hash: + md5: 34bab6ef3e8cdf86fe78c46a984d3217 + sha256: 908715a56fe7633df894464c59c3799d88300772fc62011fa96593ce4ad92ef4 + optional: false + category: main + - name: dbus + version: 1.13.6 + manager: conda + platform: linux-64 + dependencies: + expat: ">=2.4.2,<3.0a0" + libgcc-ng: ">=9.4.0" + libglib: ">=2.70.2,<3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2" + hash: + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + optional: false + category: main + - name: decorator + version: 5.1.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + - name: docutils + version: "0.19" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py39hf3d152e_1.tar.bz2" + hash: + md5: adb733ec2ee669f6d010758d054da60f + sha256: 826ae2374fc37a9bb29dd3c7783ba11ffa1e215660a60144e7f759c49686b1af + optional: false + category: main + - name: exceptiongroup + version: 1.1.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main + - name: execnet + version: 1.9.0 + manager: conda + platform: linux-64 + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main + - name: executing + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + - name: fontconfig + version: 2.14.2 + manager: conda + platform: linux-64 + dependencies: + expat: ">=2.5.0,<3.0a0" + freetype: ">=2.12.1,<3.0a0" + libgcc-ng: ">=12" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda" + hash: + md5: 0f69b688f52ff6da70bccb7ff7001d1d + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + optional: false + category: main + - name: gfortran + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc: 11.3.0.* + gcc_impl_linux-64: 11.3.0.* + gfortran_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran-11.3.0-ha859ce3_11.tar.bz2" + hash: + md5: 9a6a0c6fc4d192fddc7347a0ca31a329 + sha256: 9ec8753064dc7379958788952346fc1f0caa18affe093cac62c8a8e267f5f38e + optional: false + category: main + - name: gfortran_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_linux-64: "==11.3.0 he6f903b_11" + gfortran_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-11.3.0-h3c55166_11.tar.bz2" + hash: + md5: f70b169eb69320d71f193758b7df67e8 + sha256: 7c3bc99fc0d32647681f9b8ce44f137f16ae5ec37f040b66506c6634c299f071 + optional: false + category: main + - name: glib-tools + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libglib: "==2.74.1 h606061b_1" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.74.1-h6239696_1.tar.bz2" + hash: + md5: 5f442e6bc9d89ba236eb25a25c5c2815 + sha256: 029533e2e1cb03a80ae07a0a1a6bdd76b524e8f551d82e832a4d846a77b615c9 + optional: false + category: main + - name: gxx + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + gcc: 11.3.0.* + gxx_impl_linux-64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx-11.3.0-h02d0930_11.tar.bz2" + hash: + md5: e47dd4b4e577f03bb6aab18f48be5419 + sha256: 3614201ab2f09f27429b7faea7dcd9e24e089a325bca878f76cdd0dca4676520 + optional: false + category: main + - name: gxx_linux-64 + version: 11.3.0 + manager: conda + platform: linux-64 + dependencies: + binutils_linux-64: "==2.39 h5fc0e48_11" + gcc_linux-64: "==11.3.0 he6f903b_11" + gxx_impl_linux-64: 11.3.0.* + sysroot_linux-64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.3.0-hc203a17_11.tar.bz2" + hash: + md5: 15fbc9079f191d468403639a6515652c + sha256: 7be17e1fdb200e8b9afe8f4e88b3b821740be6024e433565abda94e5d021c9cb + optional: false + category: main + - name: idna + version: "3.4" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + - name: imagesize + version: 1.4.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main + - name: iniconfig + version: 2.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + - name: kiwisolver + version: 1.4.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2" + hash: + md5: 41679a052a8ce841c74df1ebc802e411 + sha256: eb28254cc7029e702d0059536d986b010221de62f9c8588a5a83e95a00b4e74d + optional: false + category: main + - name: lcms2 + version: "2.14" + manager: conda + platform: linux-64 + dependencies: + jpeg: ">=9e,<10a" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-hfd0df8a_1.conda" + hash: + md5: c2566c2ea5f153ddd6bf4acaf7547d97 + sha256: 632f191ac65bc673f8fcef9947e2c8431b0db6ca357ceebde3bdc4ed187af814 + optional: false + category: main + - name: libclang13 + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libllvm15: ">=15.0.7,<15.1.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h3e3d535_1.conda" + hash: + md5: a3a0f7a6f0885f5e1e0ec691566afb77 + sha256: e48481c37d02aefeddcfac20d48cf13b838c5f7b9018300fa7eac404d30f3d7f + optional: false + category: main + - name: libcups + version: 2.3.3 + manager: conda + platform: linux-64 + dependencies: + krb5: ">=1.20.1,<1.21.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda" + hash: + md5: c9f4416a34bc91e0eb029f912c68f81f + sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 + optional: false + category: main + - name: libpq + version: "15.2" + manager: conda + platform: linux-64 + dependencies: + krb5: ">=1.20.1,<1.21.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.0.8,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda" + hash: + md5: 4654b17eccaba55b8581d6b9c77f53cc + sha256: 5693c492ca0280e62edd114d91b7aa9c81fa60276b594f31d18a852636603f9e + optional: false + category: main + - name: libsystemd0 + version: "252" + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + libcap: ">=2.66,<2.67.0a0" + libgcc-ng: ">=12" + libgcrypt: ">=1.10.1,<2.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-252-h2a991cd_0.tar.bz2" + hash: + md5: 3c5ae9f61f663b3d5e1bf7f7da0c85f5 + sha256: a181e25a04207179da598a5a89747a026642341e193dca125620f5f4e268804a + optional: false + category: main + - name: markupsafe + version: 2.1.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py39h72bdee0_0.conda" + hash: + md5: 35514f5320206df9f4661c138c02e1c1 + sha256: da31fe95611393bb7dd3dee309a89328448570fd8a3205c2c55c03eb73688b61 + optional: false + category: main + - name: munkres + version: 1.1.4 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + - name: numpy + version: 1.24.2 + manager: conda + platform: linux-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py39h7360e5f_0.conda" + hash: + md5: 757070dc7cc33003254888808cd34f1e + sha256: c0418aa18f4fd37d3ac786058bfa29cca0b5b8eca95a2e0ae2fdd13aefc81ad6 + optional: false + category: main + - name: openjpeg + version: 2.5.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda" + hash: + md5: 5ce6a42505c6e9e6151c54c3ec8d68ea + sha256: 3cbfb1fe9bb492dcb672f98f0ddc7b4e029f51f77101d9c301caa3acaea8cba2 + optional: false + category: main + - name: packaging + version: "23.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main + - name: parso + version: 0.8.3 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + - name: pickleshare + version: 0.7.5 + manager: conda + platform: linux-64 + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + - name: pluggy + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main + - name: ply + version: "3.11" + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2" + hash: + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + optional: false + category: main + - name: psutil + version: 5.9.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py39hb9d737c_0.tar.bz2" + hash: + md5: 12184951da572828fb986b06ffb63eed + sha256: 515cf2cfc0504eb5758fa9ddfabc1dcbd7182da7650828aac97c9eee35597c84 + optional: false + category: main + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + - name: pure_eval + version: 0.2.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + - name: pycodestyle + version: 2.7.0 + manager: conda + platform: linux-64 + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main + - name: pycparser + version: "2.21" + manager: conda + platform: linux-64 + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + - name: pyparsing + version: 3.0.9 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + - name: pysocks + version: 1.7.1 + manager: conda + platform: linux-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main + - name: pytz + version: 2022.7.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main + - name: setuptools + version: 59.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/setuptools-59.2.0-py39hf3d152e_0.tar.bz2" + hash: + md5: 37ef3543fa46bf5d587f23d72b88fbf7 + sha256: 7e74640590ebe3379bb33c0aed17efa8c305c016b85e987d1e864a40a29743aa + optional: false + category: main + - name: six + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + - name: smmap + version: 3.0.5 + manager: conda + platform: linux-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main + - name: sortedcontainers + version: 2.4.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main + - name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main + - name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main + - name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main + - name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main + - name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main + - name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main + - name: toml + version: 0.10.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + - name: tomli + version: 2.0.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + - name: tornado + version: "6.2" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py39hb9d737c_1.tar.bz2" + hash: + md5: 8a7d309b08cff6386fe384aa10dd3748 + sha256: 67c3eef0531caf75a81945844288f363cd3b7b029829bd91ed0994bf6b231f34 + optional: false + category: main + - name: traitlets + version: 5.9.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + - name: typing_extensions + version: 4.4.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main + - name: unicodedata2 + version: 15.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py39hb9d737c_0.tar.bz2" + hash: + md5: 230d65004135bf312504a1bbcb0c7a08 + sha256: 03c2cf05d1f4f2b01fc1e3ced22d5f331f2f233e335c4a4cd11a31fea1fccc0c + optional: false + category: main + - name: wheel + version: 0.38.4 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main + - name: xcb-util-image + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + xcb-util: ">=0.4.0,<0.5.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2" + hash: + md5: c9b568bd804cb2903c6be6f5f68182e4 + sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + optional: false + category: main + - name: xorg-libxext + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + xorg-libx11: ">=1.7.0,<2.0a0" + xorg-xextproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2" + hash: + md5: 536cc5db4d0a3ba0630541aec064b5e4 + sha256: cf47ccbf49d46189d7bdadeac1387c826be82deb92ce6badbb03baae4b67ed26 + optional: false + category: main + - name: xorg-libxrender + version: 0.9.10 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=9.3.0" + xorg-libx11: ">=1.7.0,<2.0a0" + xorg-renderproto: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2" + hash: + md5: f59c1242cc1dd93e72c2ee2b360979eb + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + optional: false + category: main + - name: zipp + version: 3.13.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main + - name: asttokens + version: 2.2.1 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main + - name: babel + version: 2.11.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main + - name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: linux-64 + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main + - name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main + - name: cairo + version: 1.16.0 + manager: conda + platform: linux-64 + dependencies: + fontconfig: ">=2.13.96,<3.0a0" + fonts-conda-ecosystem: "*" + freetype: ">=2.12.1,<3.0a0" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libglib: ">=2.72.1,<3.0a0" + libpng: ">=1.6.38,<1.7.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + pixman: ">=0.40.0,<1.0a0" + xorg-libice: "*" + xorg-libsm: "*" + xorg-libx11: "*" + xorg-libxext: "*" + xorg-libxrender: "*" + zlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2" + hash: + md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 + sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 + optional: false + category: main + - name: cffi + version: 1.15.1 + manager: conda + platform: linux-64 + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_3.conda" + hash: + md5: 20080319ef73fbad74dcd6d62f2a3ffe + sha256: 485a8f65c58c26c7d48bfea20ed1d6f1493f3329dd2c9c0a888a1c2b7c2365c5 + optional: false + category: main + - name: contourpy + version: 1.0.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py39h4b4f3f3_0.conda" + hash: + md5: c5387f3fb1f5b8b71e1c865fc55f4951 + sha256: 74a767b73686caf0bb1d1186cd62a54f01e03ad5432eaaf0a7babad7634c4067 + optional: false + category: main + - name: coverage + version: 7.1.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py39h72bdee0_0.conda" + hash: + md5: 915b100b564875cceb85cbeab61fd678 + sha256: 074f44d601cae7c972183e915e7ea53ea433c59a43cb0c8964bb4d897e514512 + optional: false + category: main + - name: cxx-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + c-compiler: "==1.5.2 h0b41bf4_0" + gxx: "*" + gxx_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda" + hash: + md5: 6b3b19e359824b97df7145c8c878c8be + sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc + optional: false + category: main + - name: fonttools + version: 4.38.0 + manager: conda + platform: linux-64 + dependencies: + brotli: "*" + libgcc-ng: ">=12" + munkres: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2" + hash: + md5: 3f2d104f2fefdd5e8a205dd3aacbf1d7 + sha256: 55dff2dd401ef1d6fc4a27cf8e74af899c609519d35eafff3b097d7fc1836d83 + optional: false + category: main + - name: fortran-compiler + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + binutils: "*" + c-compiler: "==1.5.2 h0b41bf4_0" + gfortran: "*" + gfortran_linux-64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.5.2-hdb1a99f_0.conda" + hash: + md5: 265323e1bd53709aeb739c9b1794b398 + sha256: 985733294fe9b3dc6f126ee95b4b934e097060ca0c12fe469812596a4763228e + optional: false + category: main + - name: gitdb + version: 4.0.10 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main + - name: glib + version: 2.74.1 + manager: conda + platform: linux-64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + glib-tools: "==2.74.1 h6239696_1" + libgcc-ng: ">=12" + libglib: "==2.74.1 h606061b_1" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + python: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/glib-2.74.1-h6239696_1.tar.bz2" + hash: + md5: f3220a9e9d3abcbfca43419a219df7e4 + sha256: bc3f1d84e976a62ae8388e3b44f260d867beb7a307c18147048a8301a3c12e47 + optional: false + category: main + - name: hypothesis + version: 6.68.1 + manager: conda + platform: linux-64 + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main + - name: importlib-metadata + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main + - name: jedi + version: 0.18.2 + manager: conda + platform: linux-64 + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main + - name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-64 + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + - name: libclang + version: 15.0.7 + manager: conda + platform: linux-64 + dependencies: + libclang13: "==15.0.7 default_h3e3d535_1" + libgcc-ng: ">=12" + libllvm15: ">=15.0.7,<15.1.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_had23c3d_1.conda" + hash: + md5: 36c65ed73b7c92589bd9562ef8a6023d + sha256: eba3ed760c72c992a04d86455556ecb90c0e1e3688defcac44b28a848d71651c + optional: false + category: main + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + - name: meson + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main + - name: mypy + version: "0.981" + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/linux-64/mypy-0.981-py39hb9d737c_0.tar.bz2" + hash: + md5: 726060f54d0a1ae07577a34dda31a868 + sha256: 0cbf2e4018d7694517268c258a7b53b73c4c3a57490352a0792e08b96d8b637f + optional: false + category: main + - name: pexpect + version: 4.8.0 + manager: conda + platform: linux-64 + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + - name: pillow + version: 9.4.0 + manager: conda + platform: linux-64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py39h2320bf1_1.conda" + hash: + md5: d2f79132b9c8e416058a4cd84ef27b3d + sha256: 77348588ae7cc8034b63e8a71b6695ba22761e1c531678e724cf06a12be3d1e2 + optional: false + category: main + - name: pip + version: "23.0" + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main + - name: pulseaudio + version: "16.1" + manager: conda + platform: linux-64 + dependencies: + alsa-lib: ">=1.2.8,<1.2.9.0a0" + dbus: ">=1.13.6,<2.0a0" + fftw: ">=3.3.10,<4.0a0" + gstreamer-orc: ">=0.4.33,<0.5.0a0" + jack: ">=1.9.21,<1.10.0a0" + libcap: ">=2.66,<2.67.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libsndfile: ">=1.2.0,<1.3.0a0" + libsystemd0: ">=252" + libtool: ">=2.4.7,<3.0a0" + libudev1: ">=252" + openssl: ">=3.0.7,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-16.1-ha8d29e2_1.conda" + hash: + md5: dbfc2a8d63a43a11acf4c704e1ef9d0c + sha256: aa2aa5b5e2430a3c3d8b24574e5e270c47026740cb706e9be31df81b0627afa6 + optional: false + category: main + - name: pygments + version: 2.14.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main + - name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: linux-64 + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main + - name: pytest + version: 7.2.1 + manager: conda + platform: linux-64 + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + - name: sip + version: 6.7.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + packaging: "*" + ply: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + toml: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.7-py39h227be39_0.conda" + hash: + md5: 7d9a35091552af3655151f164ddd64a3 + sha256: cbd7ddbe101dfe7d7241c5334e08c56fd9000400a099a2144ba95f63f90b9b45 + optional: false + category: main + - name: typing-extensions + version: 4.4.0 + manager: conda + platform: linux-64 + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main + - name: brotlipy + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + cffi: ">=1.0.0" + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2" + hash: + md5: a639fdd9428d8b25f8326a3838d54045 + sha256: 293229afcd31e81626e5cfe0478be402b35d29b73aa421a49470645debda5019 + optional: false + category: main + - name: compilers + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + c-compiler: "==1.5.2 h0b41bf4_0" + cxx-compiler: "==1.5.2 hf52228f_0" + fortran-compiler: "==1.5.2 hdb1a99f_0" + url: "https://conda.anaconda.org/conda-forge/linux-64/compilers-1.5.2-ha770c72_0.conda" + hash: + md5: f95226244ee1c487cf53272f971323f4 + sha256: 8ca9a7581c9522fa299782e28ac1e196f67df72b2f01c1e6ed09a2d3a77ec310 + optional: false + category: main + - name: cryptography + version: 39.0.1 + manager: conda + platform: linux-64 + dependencies: + cffi: ">=1.12" + libgcc-ng: ">=12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/cryptography-39.0.1-py39h079d5ae_0.conda" + hash: + md5: 3245013812dfbff6a22e57533ac6f69d + sha256: 4349d5416c718c331454b957e0a077500fb4fb9e8f3b7eadb8777a3842021818 + optional: false + category: main + - name: gitpython + version: 3.1.30 + manager: conda + platform: linux-64 + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main + - name: gstreamer + version: 1.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + gettext: ">=0.21.1,<1.0a0" + glib: ">=2.74.1,<3.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_0.conda" + hash: + md5: d764367398de61c0d5531dd912e6cc96 + sha256: ebf7839171f7ae6228c9650b13f551da9812486bbb6cd5e78985574b82dc6bbc + optional: false + category: main + - name: harfbuzz + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + cairo: ">=1.16.0,<2.0a0" + freetype: ">=2.12.1,<3.0a0" + graphite2: "*" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda" + hash: + md5: 448fe40d2fed88ccf4d9ded37cbb2b38 + sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 + optional: false + category: main + - name: matplotlib-base + version: 3.6.3 + manager: conda + platform: linux-64 + dependencies: + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.3-py39he190548_0.conda" + hash: + md5: 5ade95e6e99425e3e5916019dcd01e55 + sha256: 70a6cc23b22ea0afdf73605d344062983282e1b2e7c8f9d2b0d70bdf93ba771a + optional: false + category: main + - name: meson-python + version: 0.12.0 + manager: conda + platform: linux-64 + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main + - name: pandas + version: 1.5.3 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py39h2ad29b5_0.conda" + hash: + md5: 3ea96adbbc2a66fa45178102a9cfbecc + sha256: a71fb9584f2b58e260fa565d5f27af763f21ed2afeede79e7d848620691bd765 + optional: false + category: main + - name: pyqt5-sip + version: 12.11.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + packaging: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + sip: "*" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py39h227be39_3.conda" + hash: + md5: 9e381db00691e26bcf670c3586397be1 + sha256: aff0befab89f536c4540dba017543d1616862b2d51350cb6d2875c294bd1b199 + optional: false + category: main + - name: pytest-cov + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main + - name: pytest-xdist + version: 3.2.0 + manager: conda + platform: linux-64 + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main + - name: stack_data + version: 0.6.2 + manager: conda + platform: linux-64 + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + - name: wcwidth + version: 0.2.6 + manager: conda + platform: linux-64 + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + - name: gst-plugins-base + version: 1.22.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + alsa-lib: ">=1.2.8,<1.2.9.0a0" + gettext: ">=0.21.1,<1.0a0" + gstreamer: "==1.22.0 h25f0c4b_0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libopus: ">=1.3.1,<2.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libvorbis: ">=1.3.7,<1.4.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_0.conda" + hash: + md5: 81c20b15d2281a1ea48eac5b4eee8cfa + sha256: dfa2794ea19248f13a1eb067727c70d11e8bba228b82a4bee18ad6a26fdc99fe + optional: false + category: main + - name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main + - name: pyopenssl + version: 23.0.0 + manager: conda + platform: linux-64 + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main + - name: ipython + version: 8.10.0 + manager: conda + platform: linux-64 + dependencies: + __linux: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" + hash: + md5: 4703355103974293bbd8a32449b3ff28 + sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff + optional: false + category: main + - name: qt-main + version: 5.15.8 + manager: conda + platform: linux-64 + dependencies: + __glibc: ">=2.17,<3.0.a0" + alsa-lib: ">=1.2.8,<1.2.9.0a0" + dbus: ">=1.13.6,<2.0a0" + expat: ">=2.5.0,<3.0a0" + fontconfig: ">=2.14.2,<3.0a0" + fonts-conda-ecosystem: "*" + freetype: ">=2.12.1,<3.0a0" + gst-plugins-base: ">=1.22.0,<1.23.0a0" + gstreamer: ">=1.22.0,<1.23.0a0" + harfbuzz: ">=6.0.0,<7.0a0" + icu: ">=70.1,<71.0a0" + jpeg: ">=9e,<10a" + krb5: ">=1.20.1,<1.21.0a0" + libclang: ">=15.0.7,<16.0a0" + libclang13: ">=15.0.7" + libcups: ">=2.3.3,<2.4.0a0" + libevent: ">=2.1.10,<2.1.11.0a0" + libgcc-ng: ">=12" + libglib: ">=2.74.1,<3.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libpq: ">=15.1,<16.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libstdcxx-ng: ">=12" + libxcb: ">=1.13,<1.14.0a0" + libxkbcommon: ">=1.0.3,<2.0a0" + libxml2: ">=2.10.3,<2.11.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + mysql-libs: ">=8.0.32,<8.1.0a0" + nspr: ">=4.35,<5.0a0" + nss: ">=3.82,<4.0a0" + openssl: ">=3.0.8,<4.0a0" + pulseaudio: ">=16.1,<16.2.0a0" + xcb-util: "*" + xcb-util-image: "*" + xcb-util-keysyms: "*" + xcb-util-renderutil: "*" + xcb-util-wm: "*" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda" + hash: + md5: 59c73debd9405771690ddbbad6c57b69 + sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 + optional: false + category: main + - name: urllib3 + version: 1.26.14 + manager: conda + platform: linux-64 + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main + - name: pyqt + version: 5.15.7 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + pyqt5-sip: "==12.11.0 py39h227be39_3" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + qt-main: ">=5.15.6,<5.16.0a0" + sip: ">=6.7.5,<6.8.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py39h5c7b992_3.conda" + hash: + md5: 19e30314fe824605750da905febb8ee6 + sha256: 1dfa1bff6d1334682790063c889198671b477a95c71a3d73ff656b4d88ea542b + optional: false + category: main + - name: requests + version: 2.28.2 + manager: conda + platform: linux-64 + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main + - name: matplotlib + version: 3.6.3 + manager: conda + platform: linux-64 + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + pyqt: ">=5" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.6.3-py39hf3d152e_0.conda" + hash: + md5: dbef5ffeeca5c5112cc3be8f03e6d1a5 + sha256: b1d70dba47ea0e901084fd4d32b506772063b38a99e1c39c1b0fef4c06e7deef + optional: false + category: main + - name: pooch + version: 1.6.0 + manager: conda + platform: linux-64 + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main + - name: sphinx + version: 5.3.0 + manager: conda + platform: linux-64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main + - name: breathe + version: 4.34.0 + manager: conda + platform: linux-64 + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main + - name: numpydoc + version: 1.4.0 + manager: conda + platform: linux-64 + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main + - name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: linux-64 + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main + - name: scipy + version: 1.10.0 + manager: conda + platform: linux-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py39h7360e5f_2.conda" + hash: + md5: fbee2ab3fe7729f2ff5c5699d58e40b9 + sha256: d9191b5aa96255c5e6a176a795e304e0806aa31366baa0101e6c242c474341d2 + optional: false + category: main + - name: sphinx-design + version: 0.3.0 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + - name: ca-certificates + version: 2022.12.7 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2022.12.7-h4fd8a4c_0.conda" + hash: + md5: 2450fbcaf65634e0d071e47e2b8487b4 + sha256: bb4e6340d55775738a5867a16071658c294d46cceff7f652f65d8dc6a495a578 + optional: false + category: main + - name: kernel-headers_linux-aarch64 + version: 4.18.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h5b4a56d_13.tar.bz2" + hash: + md5: a9385e5b11a076c40d75915986f498d7 + sha256: 14e227d98193550f9da275e58e27de104ab569849f1ce16b810fae4d7b351d49 + optional: false + category: main + - name: ld_impl_linux-aarch64 + version: "2.39" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.39-h16cd69b_1.conda" + hash: + md5: 9daf385ebefaea92087d3a315e398964 + sha256: aae71464a25bc5f32db5211621798a0725fc910a6a2a19a6161dbfcb0a7b1e35 + optional: false + category: main + - name: libgcc-devel_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-devel_linux-aarch64-11.3.0-h02014c4_19.tar.bz2" + hash: + md5: dde2aeef8efee13089f2fbb2bdb4879e + sha256: 40f1288935150ab0b524c030d852aa67826db379ff61350c817006b9ce1b2b97 + optional: false + category: main + - name: libgfortran5 + version: 12.2.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-12.2.0-hf695500_19.tar.bz2" + hash: + md5: bc890809e1f807b51bf04dfbee70ddf5 + sha256: e0496081c3a26c578abd0e292317c80159ebfbd5bb1ecca446894b9adf39abd7 + optional: false + category: main + - name: libgomp + version: 12.2.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-12.2.0-h607ecd0_19.tar.bz2" + hash: + md5: 65b9cb876525dcb2e74a90cf02c6762a + sha256: d802eaceaf6f77fb8cb2e990aacf9b3eaa83361b16369a760fc1585841d7885c + optional: false + category: main + - name: libstdcxx-devel_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-devel_linux-aarch64-11.3.0-h02014c4_19.tar.bz2" + hash: + md5: 1951ddce2b043a2597eb8317f6fee950 + sha256: 83a35253ac31c38d502bcff450457a86a9cd175f164cabc82400ea07ad2679be + optional: false + category: main + - name: libstdcxx-ng + version: 12.2.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-12.2.0-hc13a102_19.tar.bz2" + hash: + md5: 981741cd4321edd5c504b48f74fe91f2 + sha256: db906f0ad19acc6aefcd5409a7a72fea76302f72013dce7593467ae07dbf54f3 + optional: false + category: main + - name: nomkl + version: "1.0" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main + - name: python_abi + version: "3.9" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.9-3_cp39.conda" + hash: + md5: b6f330b045cf3425945d536a6b5cd240 + sha256: f9ea2e91bd871899b5c2682e6ef78523b68769a62ea86af86894cfc5d37d1f0a + optional: false + category: main + - name: tzdata + version: 2022g + manager: conda + platform: linux-aarch64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main + - name: _openmp_mutex + version: "4.5" + manager: conda + platform: linux-aarch64 + dependencies: + libgomp: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2" + hash: + md5: 6168d71addc746e8f2b8d57dfd2edcea + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + optional: false + category: main + - name: libgfortran-ng + version: 12.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgfortran5: "==12.2.0 hf695500_19" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-12.2.0-he9431aa_19.tar.bz2" + hash: + md5: b5b34211bbf681bd3e7a5a4d80cce77b + sha256: 3ac162edf354bfa46076f52f3bff3a8ac10e626ebb9ed5e01aad954ebd386829 + optional: false + category: main + - name: sysroot_linux-aarch64 + version: "2.17" + manager: conda + platform: linux-aarch64 + dependencies: + kernel-headers_linux-aarch64: "==4.18.0 h5b4a56d_13" + url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h43d7e78_13.tar.bz2" + hash: + md5: 6d8f1fd1e675ba478041892112887949 + sha256: 932f7f8947c206ad4707a18c3bebbe217efdef67fd2cf9e0e94f5ccf0edeee38 + optional: false + category: main + - name: binutils_impl_linux-aarch64 + version: "2.39" + manager: conda + platform: linux-aarch64 + dependencies: + ld_impl_linux-aarch64: "==2.39 h16cd69b_1" + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.39-h48546ad_1.conda" + hash: + md5: 74724e155402aa2391b99fe919b6af17 + sha256: dbdcca1fc9601ebc035d61283ceb317fe9b006dc7a9aa65d696769e9c74c5580 + optional: false + category: main + - name: libgcc-ng + version: 12.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + _openmp_mutex: ">=4.5" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-12.2.0-h607ecd0_19.tar.bz2" + hash: + md5: 8456a29b6d9fc3123ccb9a966b6b2c49 + sha256: 0dd30553f6f38b011c9c81471a50f85e98a79e4dd672fdc1fc97904b54b5419b + optional: false + category: main + - name: binutils + version: "2.39" + manager: conda + platform: linux-aarch64 + dependencies: + binutils_impl_linux-aarch64: ">=2.39,<2.40.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils-2.39-h64c2a2e_1.conda" + hash: + md5: 9c096a144d04d6701d5ecc530e711934 + sha256: 0f37fe063a6111c38272abef6c42b881c7fe71958313638701206c0e8669b2ae + optional: false + category: main + - name: binutils_linux-aarch64 + version: "2.39" + manager: conda + platform: linux-aarch64 + dependencies: + binutils_impl_linux-aarch64: 2.39.* + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.39-h489c705_11.tar.bz2" + hash: + md5: 4b7f9e2048a3b75aca16b9612d7f49c7 + sha256: 21da410295e7e42e7459fa633a72c213b19c88d12a95c6b08599935e975694c4 + optional: false + category: main + - name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2" + hash: + md5: 2d787570a729e273a4e75775ddf3348a + sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 + optional: false + category: main + - name: jpeg + version: 9e + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/jpeg-9e-h2a766a3_3.conda" + hash: + md5: 9530170a461f31c2c04753fc664eb6b0 + sha256: 9a99054cdd1b67bc3319b863d17045045455cfb3ff1a3cb166f2f2a206aedf4d + optional: false + category: main + - name: lerc + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2" + hash: + md5: 1a0ffc65e03ce81559dbcb0695ad1476 + sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586 + optional: false + category: main + - name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.0.9-h4e544f5_8.tar.bz2" + hash: + md5: 3cedc3935cfaa2a5303daa25fb12cb1d + sha256: 8eedfeb9097042f1005d4764bda83de0eda907e55d77408654367760ad46053d + optional: false + category: main + - name: libdeflate + version: "1.17" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.17-hb4cce97_0.conda" + hash: + md5: 0a26f36963967687f4cab7c4a017a189 + sha256: 3602858d16549239f036ccb8763e6b0e4a027f2f28e0b2d9d8e65fbbb34a9ded + optional: false + category: main + - name: libffi + version: 3.4.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2" + hash: + md5: dddd85f4d52121fab0a8b099c5e06501 + sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c + optional: false + category: main + - name: libiconv + version: "1.17" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h9cdd2b7_0.tar.bz2" + hash: + md5: efc27cfbc82a027f65c02c661832ecfc + sha256: e3c95d751ea71a638f781e82b1498e914e1d11536ea52fc354fecb2e65d3a7d3 + optional: false + category: main + - name: libnsl + version: 2.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.0-hf897c2e_0.tar.bz2" + hash: + md5: 36fdbc05c9d9145ece86f5a63c3f352e + sha256: 182dbc318b7ab3ab10bc5a9d3ca161b143ae8db6df8aa11b65140009e322e642 + optional: false + category: main + - name: libopenblas + version: 0.3.21 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.21-pthreads_h6cb6f83_3.tar.bz2" + hash: + md5: bc66302748a788c3bce59999ed6d737d + sha256: 78a93de015d389597d9bdd470ffcfa3901d4b39b85d6516f242ff71d18dc6607 + optional: false + category: main + - name: libsanitizer + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-11.3.0-hdddb281_19.tar.bz2" + hash: + md5: bd023c6dd60bd0102ce12e1e0257265b + sha256: e1e263d2fc39c329d97b50a20a355e641a37ab7fe724133ffdfedb32ab53cf4d + optional: false + category: main + - name: libuuid + version: 2.32.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.32.1-hf897c2e_1000.tar.bz2" + hash: + md5: e038da5ef9095b0d79aac14a311394e7 + sha256: 8f7eead3723c32631b252aea336bb39fbbde433b8d0c5a75745f03eaa980447d + optional: false + category: main + - name: libwebp-base + version: 1.2.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.2.4-h4e544f5_0.tar.bz2" + hash: + md5: 9c307c3dba834b9529f6dcd95db543ed + sha256: 831824c213e80a43a0a85318e5967a88a1adbf344b24ed5c4ee9ead8b696f170 + optional: false + category: main + - name: libzlib + version: 1.2.13 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h4e544f5_4.tar.bz2" + hash: + md5: 88596b6277fe6d39f046983aae6044db + sha256: 9803ac96dbdbc27df9c149e06d4436b778c468bd0e6e023fbcb49a6fe9c404b4 + optional: false + category: main + - name: ncurses + version: "6.3" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.3-headf329_1.tar.bz2" + hash: + md5: 486b68148e121bc8bbadc3cefae4c04f + sha256: d410d840cb39175d7edc388690b93b2e3d7613c2e2f5c64b96582dc8b55b2319 + optional: false + category: main + - name: ninja + version: 1.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.11.0-hdd96247_0.tar.bz2" + hash: + md5: 836cf12c1e2acba999080766059b20ad + sha256: 56123a84b506452186a1604597f424e3bf366e71fceec113e6292a73bafa2d7e + optional: false + category: main + - name: openssl + version: 3.0.8 + manager: conda + platform: linux-aarch64 + dependencies: + ca-certificates: "*" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.0.8-hb4cce97_0.conda" + hash: + md5: 268fe30a14a3f40fe54da04fc053fd2d + sha256: 19d10fdaee08ab2b5506cdce4399922c5c7d012be7ca7ca93c521748bade3e90 + optional: false + category: main + - name: pkg-config + version: 0.29.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pkg-config-0.29.2-hb9de7d4_1008.tar.bz2" + hash: + md5: 1d0a81d5da1378d9b989383556c20eac + sha256: 0d6af1ebd78e231281f570ad7ddd1e2789e485c94fba6b5cef4e8ad23ff7f3bf + optional: false + category: main + - name: pthread-stubs + version: "0.4" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-hb9de7d4_1001.tar.bz2" + hash: + md5: d0183ec6ce0b5aaa3486df25fa5f0ded + sha256: f1d7ff5e06cc515ec82010537813c796369f8e9dde46ce3f4fa1a9f70bc7db7d + optional: false + category: main + - name: xorg-libxau + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.9-h3557bc0_0.tar.bz2" + hash: + md5: e0c187f5ce240897762bbb89a8a407cc + sha256: 898553ead60af45e3b8b2a7be1b21b0df8ce3c20d5772490c05188cce5ec8b55 + optional: false + category: main + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.3-h3557bc0_0.tar.bz2" + hash: + md5: a6c9016ae1ca5c47a3603ed4cd65fedd + sha256: 2aad9a0b57796170b8fb40317598fd79cfc7ae27fa7fb68c417d815e44499d59 + optional: false + category: main + - name: xz + version: 5.2.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2" + hash: + md5: 83baad393a31d59c20b63ba4da6592df + sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 + optional: false + category: main + - name: doxygen + version: 1.9.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libiconv: ">=1.16,<2.0.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.9.5-h04155f4_0.tar.bz2" + hash: + md5: 8b648aebf430cde9aa32cc55a51dc3b2 + sha256: 4ccd5a8f2434ba04fcda419e690dec233f381432e23adceb0f2fe11029b67770 + optional: false + category: main + - name: gcc_impl_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + binutils_impl_linux-aarch64: ">=2.39" + libgcc-devel_linux-aarch64: "==11.3.0 h02014c4_19" + libgcc-ng: ">=11.3.0" + libgomp: ">=11.3.0" + libsanitizer: "==11.3.0 hdddb281_19" + libstdcxx-ng: ">=11.3.0" + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-11.3.0-h771ed3b_19.tar.bz2" + hash: + md5: 3b89b2222e3ade690a36e419e85d4988 + sha256: 9f83e3b05644fd28a681ec9a98a75662299a0643cb5c3697025a6450d19000ae + optional: false + category: main + - name: libblas + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-16_linuxaarch64_openblas.tar.bz2" + hash: + md5: 188f02883567d5b7f96c7aa12e7007c9 + sha256: 6fdf73da8b717f207979f77660646ca2d7e17671482435f281b676ac27eb288e + optional: false + category: main + - name: libbrotlidec + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlicommon: "==1.0.9 h4e544f5_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.0.9-h4e544f5_8.tar.bz2" + hash: + md5: 319956380b383ec9f6a46d585599c028 + sha256: 5c735e238743bda58f44fcb5bef564dc5262c0ea0219ccdb8cbcb168c98a58e0 + optional: false + category: main + - name: libbrotlienc + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlicommon: "==1.0.9 h4e544f5_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.0.9-h4e544f5_8.tar.bz2" + hash: + md5: 56a0a025208af24e2b43b2bbeee79802 + sha256: 2f6617b2ac53ab440d50a062d08e39cb207dc3ac36a5abe61efe0fa11d2205a1 + optional: false + category: main + - name: libpng + version: 1.6.39 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.39-hf9034f9_0.conda" + hash: + md5: 5ec9052384a6ac85e9111e9ac7c5ec4c + sha256: a43ab7cb0a66febe26e33b75e4aef6ce4ce532f69e6336e24ce00235ed000fd9 + optional: false + category: main + - name: libsqlite + version: 3.40.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.40.0-hf9034f9_0.tar.bz2" + hash: + md5: 9afb0d5dbaa403858a660cd0b4a31d29 + sha256: 15e4a4bef065f73c2aae630c0408fd6108f5915d4640c7d97578f2e07b3f5d11 + optional: false + category: main + - name: libxcb + version: "1.13" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.13-h3557bc0_1004.tar.bz2" + hash: + md5: cc973f5f452272c397546eac588cddb3 + sha256: cf726d6b13e93636312722aff04831a77aa8721b63feb6fc12d3604fe209ff94 + optional: false + category: main + - name: openblas + version: 0.3.21 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libopenblas: "==0.3.21 pthreads_h6cb6f83_3" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openblas-0.3.21-pthreads_h2d9dd7e_3.tar.bz2" + hash: + md5: 17a824cf9bbf0e31998d2c1a2140204c + sha256: b782a114740e74a42e8ac77e57de4ed6d35aad30ec6a07106826e1a1e3d0c274 + optional: false + category: main + - name: readline + version: 8.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.1.2-h38e3740_0.tar.bz2" + hash: + md5: 3cdbfb7d7b63ae2c2d35bb167d257ecd + sha256: a33bb6e4c93599fb97eb19db0dcca602a90475f2da3c01c14add19b908178fcd + optional: false + category: main + - name: tk + version: 8.6.12 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.12-hd8af866_0.tar.bz2" + hash: + md5: 7894e82ff743bd96c76585ddebe28e2a + sha256: d659316c9e502fb0e1b9a284fb0f0c00e273bff787e9385ab14be9af13dcd0d2 + optional: false + category: main + - name: zstd + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.2-h44f6412_6.conda" + hash: + md5: 6d0d1cd6d184129eabb96bb220afb5b2 + sha256: d06afa18c6789d29f1d74990d0b2b68ada43665a419deb617d6440368bd951fc + optional: false + category: main + - name: brotli-bin + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlidec: "==1.0.9 h4e544f5_8" + libbrotlienc: "==1.0.9 h4e544f5_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.0.9-h4e544f5_8.tar.bz2" + hash: + md5: 0980429a0148a53edd0f1f207ec28a39 + sha256: 30214484976cc0a6f37c6e2473578d4602d66d01acf3ccfd2f97238cbb91621b + optional: false + category: main + - name: freetype + version: 2.12.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hbbbf32d_1.conda" + hash: + md5: e0891290982420d67651589c8584eec3 + sha256: f574138dd4fcec3acbd87df049bb9161af95ad194120cf322d884fdf0df477b5 + optional: false + category: main + - name: gcc + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + gcc_impl_linux-aarch64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc-11.3.0-he2d1185_11.tar.bz2" + hash: + md5: 72f1c88a327e40a7bdf030be352e9f49 + sha256: 70ee0c88cec738b6b5932b0e5c72b8d929aa3e167e9cb34823aed40d02a7e233 + optional: false + category: main + - name: gcc_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + binutils_linux-aarch64: "==2.39 h489c705_11" + gcc_impl_linux-aarch64: 11.3.0.* + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-11.3.0-h2cafa97_11.tar.bz2" + hash: + md5: 4cdc6d5a965f658b823d4d5829422e8a + sha256: 35232fa113d8cb3b15217e3b6ff00d0fbc3dff33c742a2851919b73a2cf010e1 + optional: false + category: main + - name: gfortran_impl_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + gcc_impl_linux-aarch64: ">=11.3.0" + libgcc-ng: ">=4.9" + libgfortran5: ">=11.3.0" + libstdcxx-ng: ">=4.9" + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_impl_linux-aarch64-11.3.0-h0a651b8_19.tar.bz2" + hash: + md5: fc45cd438909a1e5e5d39565bd3b3ecd + sha256: 9baf7d7c29ee9dc62638c74414253ad1b5fd2140e108a5d8fb582520ca3d981f + optional: false + category: main + - name: gxx_impl_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + gcc_impl_linux-aarch64: "==11.3.0 h771ed3b_19" + libstdcxx-devel_linux-aarch64: "==11.3.0 h02014c4_19" + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-11.3.0-h771ed3b_19.tar.bz2" + hash: + md5: 567374f76eeac7b755e5d5873459fe98 + sha256: c58c38263c10700cd3af75ce9a847a14dea67fe18cf9948059bb8a6e95dd641a + optional: false + category: main + - name: libcblas + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: "==3.9.0 16_linuxaarch64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-16_linuxaarch64_openblas.tar.bz2" + hash: + md5: 520a3ecbebc63239c27dd6f70c2ababe + sha256: c1d4fa9a99475647c7904009c026fe7f9c0b3159b2f7d2bcecac102751104302 + optional: false + category: main + - name: liblapack + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: "==3.9.0 16_linuxaarch64_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-16_linuxaarch64_openblas.tar.bz2" + hash: + md5: 62990b2d1efc22d0beb394e893d39541 + sha256: 80a809ce2c965b27d8b8b90753ab01d467b9bf2a66467ca98fc363e4a41da5ec + optional: false + category: main + - name: libtiff + version: 4.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libdeflate: ">=1.17,<1.18.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.5.0-h4c1066a_2.conda" + hash: + md5: 45b240c8ce410ecc8f82cd085279dce9 + sha256: a0e7bf098114756ef6e675414dde37b24c508816d3e525ba27d271cfbea0ab68 + optional: false + category: main + - name: python + version: 3.9.16 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-aarch64: ">=2.36.1" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.9.16-hb363c5e_0_cpython.conda" + hash: + md5: 0a7ef29549eaef817898062eeeefebd3 + sha256: 776e0ad572f4c7c9de53e5f6aaa435eb37162f041866f04fd496d3c91e3c2f47 + optional: false + category: main + - name: alabaster + version: 0.7.13 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main + - name: appdirs + version: 1.4.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main + - name: attrs + version: 22.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main + - name: backcall + version: 0.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + - name: backports + version: "1.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + - name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/backports.zoneinfo-0.2.1-py39h4420490_7.tar.bz2" + hash: + md5: 81f95bd3b0e4370ac3aef6e19eef8763 + sha256: 340b8c181416f6811c80601d8cdd8a8ba9d0540e31e3bde1f901e8e71d7c56d8 + optional: false + category: main + - name: brotli + version: 1.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + brotli-bin: "==1.0.9 h4e544f5_8" + libbrotlidec: "==1.0.9 h4e544f5_8" + libbrotlienc: "==1.0.9 h4e544f5_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.0.9-h4e544f5_8.tar.bz2" + hash: + md5: 259d82bd990ba225508389509634b157 + sha256: e775343c34d04c6e27b4967b6edeac4793c9f0bd6c843990497c72798f49808f + optional: false + category: main + - name: c-compiler + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + binutils: "*" + gcc: "*" + gcc_linux-aarch64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/c-compiler-1.5.2-hb4cce97_0.conda" + hash: + md5: ea29c067379169a815018c1c94a05b9e + sha256: 3c63e0126e5a21e62bff541253a6c235b7130e984f39b2fa6acc3773d744ff23 + optional: false + category: main + - name: certifi + version: 2022.12.7 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main + - name: charset-normalizer + version: 2.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main + - name: click + version: 8.1.3 + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main + - name: colorama + version: 0.4.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + - name: cycler + version: 0.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + - name: cython + version: 0.29.33 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cython-0.29.33-py39hdcdd789_0.conda" + hash: + md5: 7a94705550f5c09d4a3b069f0488caed + sha256: 9e7162fd241d306a0274c970dc266c9684747b1b31bfee795572ceb232b004bf + optional: false + category: main + - name: decorator + version: 5.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + - name: docutils + version: "0.19" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/docutils-0.19-py39ha65689a_1.tar.bz2" + hash: + md5: fd0d3cb6620a155e9a1bbb5f0d5f2456 + sha256: 01587e209ffd4f7b9f7ef9988068a9ef6a008f405c397c60a48a95584c30a4a8 + optional: false + category: main + - name: exceptiongroup + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main + - name: execnet + version: 1.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main + - name: executing + version: 1.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + - name: gfortran + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + gcc: 11.3.0.* + gcc_impl_linux-aarch64: 11.3.0.* + gfortran_impl_linux-aarch64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran-11.3.0-h6b6addb_11.tar.bz2" + hash: + md5: e918df1fe2a391d9b715a79a5232ea2f + sha256: b6556bd72c554d55ca0cd8f1ab2281838e2a8b817d4276c61f7f1be5546b4edf + optional: false + category: main + - name: gfortran_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + binutils_linux-aarch64: "==2.39 h489c705_11" + gcc_linux-aarch64: "==11.3.0 h2cafa97_11" + gfortran_impl_linux-aarch64: 11.3.0.* + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_linux-aarch64-11.3.0-hff98631_11.tar.bz2" + hash: + md5: a7be589b27f26b2c447a4c703c588244 + sha256: 5ca1326e20b37b2e91dd2d7553a0be569623f96d60fdd740354b2a93be2c948e + optional: false + category: main + - name: gxx + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + gcc: 11.3.0.* + gxx_impl_linux-aarch64: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx-11.3.0-he2d1185_11.tar.bz2" + hash: + md5: 0730f39c40a80d5003c5f8bddd514777 + sha256: bf2a6e358a7256f4d9d65b72c914112b6f1bd4de47d8d2dee5fd62e57d7823ca + optional: false + category: main + - name: gxx_linux-aarch64 + version: 11.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + binutils_linux-aarch64: "==2.39 h489c705_11" + gcc_linux-aarch64: "==11.3.0 h2cafa97_11" + gxx_impl_linux-aarch64: 11.3.0.* + sysroot_linux-aarch64: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-11.3.0-h7ccc656_11.tar.bz2" + hash: + md5: 7b4ebbdadc6c61ce3e98fb2d5605f5dc + sha256: 229f44d96f37b471e5b7b26f7c617a09636dc6f258c13cbdf322ca27f0e6b2f0 + optional: false + category: main + - name: idna + version: "3.4" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + - name: imagesize + version: 1.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main + - name: iniconfig + version: 2.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + - name: kiwisolver + version: 1.4.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.4-py39h110580c_1.tar.bz2" + hash: + md5: 9c045502f6ab8c89bfda6be3c389e503 + sha256: 9bf3781b4f46988b7e97d9fbaeab666340d3818d162d362b11529809349c9741 + optional: false + category: main + - name: lcms2 + version: "2.14" + manager: conda + platform: linux-aarch64 + dependencies: + jpeg: ">=9e,<10a" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.14-h7576be9_1.conda" + hash: + md5: 33f4117db8c2b9ff0888cedd74b2f8e9 + sha256: 1210de1fbb82cc73fb81f8db3e5ea26071855f3695198fe45fd4382c33aaf1c2 + optional: false + category: main + - name: markupsafe + version: 2.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.2-py39h599bc27_0.conda" + hash: + md5: 13af483192015190404fede49f1a306e + sha256: 4eb2683d7391a984b0f32e9f9fb20c2708b6a674b0e6d901cd80ccb61b491052 + optional: false + category: main + - name: munkres + version: 1.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + - name: numpy + version: 1.24.2 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.24.2-py39hafab3e7_0.conda" + hash: + md5: e8d27fa9b6e02d6fba071d9c555d7962 + sha256: 9e527264dc80f537796e72c408f335de71842a00b8cad5abfd4d1f9150b2bca9 + optional: false + category: main + - name: openjpeg + version: 2.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.0-h9508984_2.conda" + hash: + md5: 3d56d402a845c243f8c2dd3c8e836029 + sha256: 6cb45c526e9577313081a7d020a278fbdfd91e6df14f42a327276ec1a29a5045 + optional: false + category: main + - name: packaging + version: "23.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main + - name: parso + version: 0.8.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + - name: pickleshare + version: 0.7.5 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + - name: pluggy + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main + - name: psutil + version: 5.9.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.4-py39h0fd3b05_0.tar.bz2" + hash: + md5: 2d6fcae2ae9953db962dc3fc1ef456a4 + sha256: e2bb7645fc1875ee0a54f6af2f9355162e4f70b8e11cb2913c43f082d3ef65ee + optional: false + category: main + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + - name: pure_eval + version: 0.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + - name: pycodestyle + version: 2.7.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main + - name: pycparser + version: "2.21" + manager: conda + platform: linux-aarch64 + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + - name: pyparsing + version: 3.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + - name: pysocks + version: 1.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main + - name: pytz + version: 2022.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main + - name: setuptools + version: 59.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/setuptools-59.2.0-py39ha65689a_0.tar.bz2" + hash: + md5: d16c2492792df4ceab4c32d426e49f00 + sha256: 4cc2357f91ebe448287026240be37e717fd5a82cbc1d49fd5ef3ae721672e5e7 + optional: false + category: main + - name: six + version: 1.16.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + - name: smmap + version: 3.0.5 + manager: conda + platform: linux-aarch64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main + - name: sortedcontainers + version: 2.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main + - name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main + - name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main + - name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main + - name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main + - name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main + - name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main + - name: toml + version: 0.10.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + - name: tomli + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + - name: tornado + version: "6.2" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.2-py39hb9a1dbb_1.tar.bz2" + hash: + md5: f5f4671e5e76b582263699cb4ab3172c + sha256: 432a7832582bdba4cadda30d82a1115d31de069e236573943f2c429b2b20c46f + optional: false + category: main + - name: traitlets + version: 5.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + - name: typing_extensions + version: 4.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main + - name: unicodedata2 + version: 15.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-15.0.0-py39h0fd3b05_0.tar.bz2" + hash: + md5: 835f1a9631e600e0176593e95e85f73f + sha256: 06d0dd905a8b4555b729d8c5568a8339a385476890d3b3fc2134ec08d0cfc484 + optional: false + category: main + - name: wheel + version: 0.38.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main + - name: zipp + version: 3.13.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main + - name: asttokens + version: 2.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main + - name: babel + version: 2.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main + - name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: linux-aarch64 + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main + - name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main + - name: cffi + version: 1.15.1 + manager: conda + platform: linux-aarch64 + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.15.1-py39hb26bf21_3.conda" + hash: + md5: dee0362c4fde8edce396183fd6390d6e + sha256: 0a3690929b3a22c4e2db8001293509e38b5d90eb2ff57d5d71456e81c9c0f8eb + optional: false + category: main + - name: contourpy + version: 1.0.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.0.7-py39hd9a2fea_0.conda" + hash: + md5: efa783bf5c2b30aba3cf22599fe0274e + sha256: 0da3e468f4ee6cc3d708e32ab4d1e4d6e8ed899168693e3e33570d1e8ce927d9 + optional: false + category: main + - name: coverage + version: 7.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/coverage-7.1.0-py39h599bc27_0.conda" + hash: + md5: 642b33264c733811d45640fc5d035a5c + sha256: 7d02e1632234311db52c247b7d59ea8173cc06ac43943147a5291be62885a6c3 + optional: false + category: main + - name: cxx-compiler + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + c-compiler: "==1.5.2 hb4cce97_0" + gxx: "*" + gxx_linux-aarch64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cxx-compiler-1.5.2-h4c384f3_0.conda" + hash: + md5: 8ce6c4bc31f879baedd1f726f430fa6a + sha256: a2560d134c72f29f193ec195f25e774a6855c8bc1588427abfdfbb52c6769620 + optional: false + category: main + - name: fonttools + version: 4.38.0 + manager: conda + platform: linux-aarch64 + dependencies: + brotli: "*" + libgcc-ng: ">=12" + munkres: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.38.0-py39h0fd3b05_1.tar.bz2" + hash: + md5: c4eda904dc52f53c948d64d20662525f + sha256: f8160177436c15a924a539f3074d36ad10960b0243340a1b9d79633432fff65e + optional: false + category: main + - name: fortran-compiler + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + binutils: "*" + c-compiler: "==1.5.2 hb4cce97_0" + gfortran: "*" + gfortran_linux-aarch64: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/fortran-compiler-1.5.2-h878be85_0.conda" + hash: + md5: 0fc27753a4f9b39286bd58ce8870605e + sha256: e9d8407d1a4030b3faef9a7278cea55de3343f2507680ef673d32dff14d9060b + optional: false + category: main + - name: gitdb + version: 4.0.10 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main + - name: hypothesis + version: 6.68.1 + manager: conda + platform: linux-aarch64 + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main + - name: importlib-metadata + version: 6.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main + - name: jedi + version: 0.18.2 + manager: conda + platform: linux-aarch64 + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main + - name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + - name: meson + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main + - name: mypy + version: "0.981" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/mypy-0.981-py39h0fd3b05_0.tar.bz2" + hash: + md5: 356d846032061ddec0beb97de9fb4570 + sha256: ca216a2d2022060c3a51fe3bb9b73e250797da3c874bd766f3e4b4223f362495 + optional: false + category: main + - name: pexpect + version: 4.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + - name: pillow + version: 9.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-9.4.0-py39h72365ce_1.conda" + hash: + md5: 0cd1a724352e4916a84339500506f61e + sha256: f230a8e3bf559c49163b3adbd64075d3eef7274e98b97800662cb6678746847f + optional: false + category: main + - name: pip + version: "23.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main + - name: pygments + version: 2.14.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main + - name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main + - name: pytest + version: 7.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + - name: typing-extensions + version: 4.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main + - name: brotlipy + version: 0.7.0 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.0.0" + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotlipy-0.7.0-py39h0fd3b05_1005.tar.bz2" + hash: + md5: 5d37ef329c084829d3ff5b172a08b8f9 + sha256: b62b8ba3688978d1344a4ea639b4ab28988fac5318a9842af4e7b9f5feb8374d + optional: false + category: main + - name: compilers + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + c-compiler: "==1.5.2 hb4cce97_0" + cxx-compiler: "==1.5.2 h4c384f3_0" + fortran-compiler: "==1.5.2 h878be85_0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/compilers-1.5.2-h8af1aa0_0.conda" + hash: + md5: 3505d3b81bd518ea3fd084f33f6d486f + sha256: 84c71456b39a9693d471c9b279073afa67c47611f5fdaa99b72f069f46454e96 + optional: false + category: main + - name: cryptography + version: 39.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.12" + libgcc-ng: ">=12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-39.0.1-py39h8a84b6a_0.conda" + hash: + md5: 836c852bcc8f60392bfe4f9305f541b7 + sha256: a0918f5094edff472291dc2889431a17aaff4b0ee38ae321ff2ea5b420a4b42a + optional: false + category: main + - name: gitpython + version: 3.1.30 + manager: conda + platform: linux-aarch64 + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main + - name: matplotlib-base + version: 3.6.3 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.6.3-py39h2983639_0.conda" + hash: + md5: 9e1496189564d3740c20d3aff999a0ee + sha256: 4b51e606ad1e698820d72a247f12eb0c2858e52c87b7b51530f0f386a5672b4b + optional: false + category: main + - name: meson-python + version: 0.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main + - name: pandas + version: 1.5.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-1.5.3-py39h1e1c27f_0.conda" + hash: + md5: 13b3d2c17a216d189837df6a2caefb5d + sha256: eeece380a252712eaebbcc12d73abbe7542ff3e25b560afac0f1766f9a1b854b + optional: false + category: main + - name: pytest-cov + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main + - name: pytest-xdist + version: 3.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main + - name: stack_data + version: 0.6.2 + manager: conda + platform: linux-aarch64 + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + - name: wcwidth + version: 0.2.6 + manager: conda + platform: linux-aarch64 + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + - name: matplotlib + version: 3.6.3 + manager: conda + platform: linux-aarch64 + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-3.6.3-py39ha65689a_0.conda" + hash: + md5: 1af8933de795cb23f0a28cba529c544d + sha256: 7adde98e60579550ed3fe3f40f5877b135bacd6b74f59e4d3df25f504033e99f + optional: false + category: main + - name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main + - name: pyopenssl + version: 23.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main + - name: ipython + version: 8.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + __linux: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" + hash: + md5: 4703355103974293bbd8a32449b3ff28 + sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff + optional: false + category: main + - name: urllib3 + version: 1.26.14 + manager: conda + platform: linux-aarch64 + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main + - name: requests + version: 2.28.2 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main + - name: pooch + version: 1.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main + - name: sphinx + version: 5.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main + - name: breathe + version: 4.34.0 + manager: conda + platform: linux-aarch64 + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main + - name: numpydoc + version: 1.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main + - name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main + - name: scipy + version: 1.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.10.0-py39hafab3e7_2.conda" + hash: + md5: c540ebeaba5c037beb48ce709738afcb + sha256: e87204c9a98961e632a37f2ff779b1a3d5bd0477d0981f319e12d8d45f54b26d + optional: false + category: main + - name: sphinx-design + version: 0.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + - name: _libgcc_mutex + version: "0.1" + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2" + hash: + md5: e96f48755dc7c9f86c4aecf4cac40477 + sha256: 5dd34b412e6274c0614d01a2f616844376ae873dfb8782c2c67d055779de6df6 + optional: false + category: main + - name: ca-certificates + version: 2022.12.7 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ca-certificates-2022.12.7-h1084571_0.conda" + hash: + md5: e3becd49c6d0e94d1b67c9f9a4d50587 + sha256: 82b77cb085c961b085fbbb5ea3920c1933bda08c2e1dd53685f6f21b16a336ac + optional: false + category: main + - name: kernel-headers_linux-ppc64le + version: 3.10.0 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-ppc64le-3.10.0-h23d7e6c_13.tar.bz2" + hash: + md5: 2c36c739b5b1827404dcc96860f9b7e1 + sha256: 6752a00b9bf73087c90fbc3da9284745ec7fb5f960a132d3189c6a053d59cfb8 + optional: false + category: main + - name: ld_impl_linux-ppc64le + version: "2.39" + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.39-hea198f4_1.conda" + hash: + md5: c7db6cc5b9479df1ed884b6147601613 + sha256: 20d6db1053ae4af65677fc4b4cf9b2d5884ce26ea6b38f7088a5ebad1de62746 + optional: false + category: main + - name: libgcc-devel_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-devel_linux-ppc64le-11.3.0-hcb32637_19.tar.bz2" + hash: + md5: e652f909e48f3e16a1f4c2a26aaa900b + sha256: f4270a73600fe1debf364cfc4b74aac4ca90a052abe9e302301ab62189fc255a + optional: false + category: main + - name: libgfortran5 + version: 12.2.0 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-12.2.0-hda65b67_19.tar.bz2" + hash: + md5: 62f0191db9d8e634ed676c0645aee79b + sha256: 6131391202198279f8a3744fa08e6f3f6513d8211799608410bca8fe6b76bf37 + optional: false + category: main + - name: libstdcxx-devel_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-devel_linux-ppc64le-11.3.0-hcb32637_19.tar.bz2" + hash: + md5: 7c528de8f0dddad1ef05aa11151f66d6 + sha256: f4f4869b24af9d3f37ac15ced5efd51323a0b92886ba0a50fb79d199ba402dd2 + optional: false + category: main + - name: libstdcxx-ng + version: 12.2.0 + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-12.2.0-h99369c6_19.tar.bz2" + hash: + md5: 7fd9892955253a7e5f49ae0e94703dd7 + sha256: 6e630d9cbb4c0680757e4cbe86a09302125283afd791e997d0ae2fc7ce863384 + optional: false + category: main + - name: nomkl + version: "1.0" + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main + - name: python_abi + version: "3.9" + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/python_abi-3.9-3_cp39.conda" + hash: + md5: 4f09b636d43728c2906cf03a18a4e8f6 + sha256: 3321ab95a62cefe8b305da972b8780647fd8063e96ee331e2b6c9070353272c2 + optional: false + category: main + - name: tzdata + version: 2022g + manager: conda + platform: linux-ppc64le + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main + - name: libgfortran-ng + version: 12.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgfortran5: "==12.2.0 hda65b67_19" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-12.2.0-hfdc3801_19.tar.bz2" + hash: + md5: 81d5153ea3ba783743ab08b859fc8e1f + sha256: 5221449383ddf2f73777337f788b7367ae2f035373ff1e9030ea98fe891c73ab + optional: false + category: main + - name: libgomp + version: 12.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-12.2.0-hbc1322c_19.tar.bz2" + hash: + md5: 25647ac31b4d467fce690c6a561a58aa + sha256: 56a43985f648c358c6b3eb949863e393dbdb48d8f017315e03ff703031b8a951 + optional: false + category: main + - name: sysroot_linux-ppc64le + version: "2.17" + manager: conda + platform: linux-ppc64le + dependencies: + kernel-headers_linux-ppc64le: "==3.10.0 h23d7e6c_13" + url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-ppc64le-2.17-h395ec9b_13.tar.bz2" + hash: + md5: c8016c77c47a363566a72ff10a0233e0 + sha256: 50b9204fe2d6b90a6e4092d4e5f60ed24561f7914bf2296f46dbd620631efcaa + optional: false + category: main + - name: _openmp_mutex + version: "4.5" + manager: conda + platform: linux-ppc64le + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + libgomp: ">=7.5.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2" + hash: + md5: 3e41cbaba7e4988d15a24c4e85e6171b + sha256: 4c89c2067cf5e7b0fbbdc3200c3f7affa5896e14812acf10f51575be87ae0c05 + optional: false + category: main + - name: binutils_impl_linux-ppc64le + version: "2.39" + manager: conda + platform: linux-ppc64le + dependencies: + ld_impl_linux-ppc64le: "==2.39 hea198f4_1" + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_impl_linux-ppc64le-2.39-heb37b50_1.conda" + hash: + md5: d4fd843dce0edcc58c63e995b7837293 + sha256: 91e5401f436aa2686f0dfa36066674f4e26e43efade059acaff3d5c4f25d90d1 + optional: false + category: main + - name: binutils + version: "2.39" + manager: conda + platform: linux-ppc64le + dependencies: + binutils_impl_linux-ppc64le: ">=2.39,<2.40.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils-2.39-h7f02139_1.conda" + hash: + md5: 93ad8fe1ef01293548b6fc28169d40fe + sha256: 986d2a9388cb6176b91aacc7cda9f6d317a34e0f61d6d323fc121c3718bc9392 + optional: false + category: main + - name: binutils_linux-ppc64le + version: "2.39" + manager: conda + platform: linux-ppc64le + dependencies: + binutils_impl_linux-ppc64le: 2.39.* + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_linux-ppc64le-2.39-h5e55cfe_11.tar.bz2" + hash: + md5: cb19199c186994b286cbb1afb447a9d0 + sha256: b6b696f484684ad58e9509cc9414fc65349ea9e6fdb6d84822e39b738fa34ed3 + optional: false + category: main + - name: libgcc-ng + version: 12.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + _libgcc_mutex: "==0.1 conda_forge" + _openmp_mutex: ">=4.5" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-12.2.0-hbc1322c_19.tar.bz2" + hash: + md5: 9ad34f95d6fb05300bbd0f553f3bece4 + sha256: 335a2b7415cb5fbbf05459f6cfcca4dd8bafd43bcbe5bf6aa56bf66b7ed6bf42 + optional: false + category: main + - name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-h4e0d66e_4.tar.bz2" + hash: + md5: 3cbc4e0eede8b25bc53b6a462815aceb + sha256: e0edf3c1804547239de9f678f9b650684d0f215e4c277e1d92c281f4d61559b8 + optional: false + category: main + - name: jpeg + version: 9e + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/jpeg-9e-h4194056_3.conda" + hash: + md5: 90cc27ac2032b05e4131bc62d33635dd + sha256: 41ab5b1f339fb2ab0a8938081bf972111a7d730e106eec3987c718e093ab07a9 + optional: false + category: main + - name: lerc + version: 4.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/lerc-4.0.0-hbbae597_0.tar.bz2" + hash: + md5: fc65ed3c14d2236d5917f11eaf2b949f + sha256: 694594f8344b02e0c18ae80d898b248a5afc228f8033fe0c57cb52d8c1839152 + optional: false + category: main + - name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlicommon-1.0.9-hb283c62_8.tar.bz2" + hash: + md5: 9981d8b1ed12d10234fa31973de47c10 + sha256: 69a03504a38fb6b99322896de35df1b76ac34fd25d01d6fed4cb9de7cb18ceb0 + optional: false + category: main + - name: libdeflate + version: "1.17" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libdeflate-1.17-h4194056_0.conda" + hash: + md5: 02f45219ac7b6b3d2af66fbbb2a7c8e5 + sha256: aa28ce878cbe18757b4acca5341b91bab3531a42ddd092227ebc34c255781135 + optional: false + category: main + - name: libffi + version: 3.4.2 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.4.2-h4e0d66e_5.tar.bz2" + hash: + md5: 79c37a0a50ef77fea4ee5f6d257b8b3c + sha256: 178ca9f82e2144a8834dd01f9af3b4b9b5d482892675931edccff06aee524953 + optional: false + category: main + - name: libiconv + version: "1.17" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.17-hb283c62_0.tar.bz2" + hash: + md5: 4c3d267837da62ef2b79d56729d3fe65 + sha256: 39c0fb8eaec7b378d88b458376da90261afbdb076eb4c6dd11f51de69d36384f + optional: false + category: main + - name: libnsl + version: 2.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libnsl-2.0.0-h4e0d66e_0.tar.bz2" + hash: + md5: e6c718cb0e01f2af330da0a8dbd55b68 + sha256: 2aa6cd044633586588c7105a3702788ee65b679801ab5d00b48d64265ae2f13c + optional: false + category: main + - name: libopenblas + version: 0.3.21 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.21-pthreads_h60f2977_3.tar.bz2" + hash: + md5: 8d9a4d593fea2ccf376b5e459651dd87 + sha256: 5b624bbe5f0de77e1979a508c57f55b052155eabf806756b0153d2f97a1d581c + optional: false + category: main + - name: libsanitizer + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libsanitizer-11.3.0-hc94946d_19.tar.bz2" + hash: + md5: e9d33799921c73fb1af2dfaba774b19e + sha256: b7da522d965117797d9e79e4c83494958cba00b6e5d2c0afba7bcf34385162de + optional: false + category: main + - name: libuuid + version: 2.32.1 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.32.1-h4e0d66e_1000.tar.bz2" + hash: + md5: ceb7466afcb5be47530ffe9aae8650ae + sha256: 58b4f6e27b921ff9171e64b3e382cc644d7da70d5da4e3815b7ceae4b4b452e0 + optional: false + category: main + - name: libwebp-base + version: 1.2.4 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libwebp-base-1.2.4-hb283c62_0.tar.bz2" + hash: + md5: 9d042b84b56f3d719a24cd2837fa5ff8 + sha256: 49a4ec09882f4cc1895c6ba2733fb34fa25cfdb8ee087041254a5ad04cd6a125 + optional: false + category: main + - name: libzlib + version: 1.2.13 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.2.13-hb283c62_4.tar.bz2" + hash: + md5: af99cdd23d3761a569840663bdf0dc0d + sha256: 62073ba865b49db36dc14ffeaa2985711bce65d720b853e3aa4cce0a9e5439d8 + optional: false + category: main + - name: ncurses + version: "6.3" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.3-hab78ccb_1.tar.bz2" + hash: + md5: 775403ae6d617d309d874f9bff20e670 + sha256: 37761927f381de5741d7f176dddc1c3b60876f44db10f7d636ad1133381d1a94 + optional: false + category: main + - name: ninja + version: 1.11.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ninja-1.11.0-h06f31f1_0.tar.bz2" + hash: + md5: 75122717f0e5f294b581a9d7e93b7bb9 + sha256: fa399deab6926f00c01fb49e3095b341ae53edfa940258b96d65a390a27d4691 + optional: false + category: main + - name: openssl + version: 3.0.8 + manager: conda + platform: linux-ppc64le + dependencies: + ca-certificates: "*" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.0.8-h4194056_0.conda" + hash: + md5: e952dfc7249a48558697f61b41859864 + sha256: 62200f7fa9acb5d9cee24b373695e78ef1d7373bdfd77a50b80e57864b536436 + optional: false + category: main + - name: pkg-config + version: 0.29.2 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=8.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pkg-config-0.29.2-h339bb43_1008.tar.bz2" + hash: + md5: 473f492aa9dff1b35454c461ab1a823e + sha256: 0fb80b8894dd8914dd62fe5b096fcd7bb514bd3846d4d7c068ffc21411e73150 + optional: false + category: main + - name: pthread-stubs + version: "0.4" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=8.4.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pthread-stubs-0.4-h339bb43_1001.tar.bz2" + hash: + md5: 3c08a226d34a1ac3472fdfec4bd9217f + sha256: e6509a0eddb850203bdfc5a01d1ea4a28af732335c99848ec5e27db1f543326f + optional: false + category: main + - name: xorg-libxau + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxau-1.0.9-h4e0d66e_0.tar.bz2" + hash: + md5: 772615b637baddf37b1012ee28fbc70c + sha256: 6e83c6d5d74b20e759766cf34216a21d34d0efbd250fb8d865fbcbd51835c083 + optional: false + category: main + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.3.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxdmcp-1.1.3-h4e0d66e_0.tar.bz2" + hash: + md5: 95ac359ec2aea12a08fcbeb86bb48df6 + sha256: 78d953c40eb0b68fa9db8aa059e1f5c899a1ba9b6ca34142400a0dd471d7088a + optional: false + category: main + - name: xz + version: 5.2.6 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xz-5.2.6-hb283c62_0.tar.bz2" + hash: + md5: a411645e44054e333573ee5280fdb89b + sha256: d03eb2b53dc61ac97c88b3ca023cf19c2b83b97520725b3c2ec0bff2c47f4a98 + optional: false + category: main + - name: doxygen + version: 1.9.5 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libiconv: ">=1.16,<2.0.0a0" + libstdcxx-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/doxygen-1.9.5-hc3812df_0.tar.bz2" + hash: + md5: 1bab180eb34c97ed9814436fecab3a0f + sha256: 4a22d0c893e52ef49dbfbc7f408ff4422aca8d41e40194cab623c580cbb50172 + optional: false + category: main + - name: gcc_impl_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + binutils_impl_linux-ppc64le: ">=2.39" + libgcc-devel_linux-ppc64le: "==11.3.0 hcb32637_19" + libgcc-ng: ">=11.3.0" + libgomp: ">=11.3.0" + libsanitizer: "==11.3.0 hc94946d_19" + libstdcxx-ng: ">=11.3.0" + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_impl_linux-ppc64le-11.3.0-h8f9c6bb_19.tar.bz2" + hash: + md5: 0aeb44f45dbeb26ff69acf55562669de + sha256: b37216b165b1e914111f562fdc30c7c4f132a4ee2e093869f76ee4952aee46b5 + optional: false + category: main + - name: libblas + version: 3.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-16_linuxppc64le_openblas.tar.bz2" + hash: + md5: 762b1dc9aab318ee9ba7386d2418e165 + sha256: 4a4ce4387841e3cf267b61907df06403ded365322fff3926f842f080957f82ee + optional: false + category: main + - name: libbrotlidec + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + libbrotlicommon: "==1.0.9 hb283c62_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlidec-1.0.9-hb283c62_8.tar.bz2" + hash: + md5: 66fb01acc327a224248ab33d16e4b8c0 + sha256: 180aa63160d710e08855b3ff9b30f4321c5674913dd3f0b5c8f54cebdd669cc2 + optional: false + category: main + - name: libbrotlienc + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + libbrotlicommon: "==1.0.9 hb283c62_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlienc-1.0.9-hb283c62_8.tar.bz2" + hash: + md5: 4c4ecee0aec784fe72e73935f5344676 + sha256: bd6247e1ef777d697f546680242c9937dd43339c55077fef0964e6b1a2f2c5b7 + optional: false + category: main + - name: libpng + version: 1.6.39 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libpng-1.6.39-hcc10993_0.conda" + hash: + md5: bcd557c46d754ede06e9a1554eb0c68c + sha256: fd374fc3c1900eeec3bdbdf4426795d8068e910b953fb9b35dffef86e8cd27ac + optional: false + category: main + - name: libsqlite + version: 3.39.4 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.39.4-hcc10993_0.tar.bz2" + hash: + md5: 49799ec532f260e4264705336d01310b + sha256: 93cdea9743cf1f86fdf9e9516061d5c68b9b5c43b99b7db1dd81d5b3452c4759 + optional: false + category: main + - name: libxcb + version: "1.13" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.4.0" + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libxcb-1.13-h4e0d66e_1004.tar.bz2" + hash: + md5: f963aaccf057bb6b3f7c4279b6795c50 + sha256: 99e80c223ed09dda97af0cf067678259ebf21790cb20f8a9ebe07da68ae24d1e + optional: false + category: main + - name: openblas + version: 0.3.21 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=10.4.0" + libopenblas: "==0.3.21 pthreads_h60f2977_3" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openblas-0.3.21-pthreads_h5960496_3.tar.bz2" + hash: + md5: cd3637b6090fb6415c0abd53feb35c71 + sha256: 0e4f4656d5a0f582013bb41313eed5bb64ef4f79ff1d127b2926a6356ae0c64b + optional: false + category: main + - name: readline + version: 8.1.2 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.1.2-h6828edc_0.tar.bz2" + hash: + md5: a8b0d567fd553734fc0fd0ab2447526a + sha256: 37e57caeeb181929648aa898487909b8badad20aa9fb49ab603446cccdb743db + optional: false + category: main + - name: tk + version: 8.6.12 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.12-h41c6715_0.tar.bz2" + hash: + md5: c0490995dc12b45388a01094f9959edd + sha256: 61ef67fe390109aa3423d30b96faddb97b054dfbcc0e6c8a3192331b13d14d92 + optional: false + category: main + - name: zstd + version: 1.5.2 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.2-h7affb48_6.conda" + hash: + md5: ddc6eeb52a9d5e938f96d5dd246341ca + sha256: 7c927e9f2a67f0e546094ebee302acb0b3acde7a511b6a13e44155ef28f5b622 + optional: false + category: main + - name: brotli-bin + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + libbrotlidec: "==1.0.9 hb283c62_8" + libbrotlienc: "==1.0.9 hb283c62_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-bin-1.0.9-hb283c62_8.tar.bz2" + hash: + md5: 3909235bac04f832ff9b02c764dbee23 + sha256: 98fc147dcdfb2196b4e267a1fd0250934a9ad16fb4ce9dfb2466b4c51cd6123a + optional: false + category: main + - name: freetype + version: 2.12.1 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/freetype-2.12.1-h90753b0_1.conda" + hash: + md5: 55076efce6db8419ba5b1b854f455c4a + sha256: a46c8d870bc41b15e0d8362911fe8fef4d7e6626bf23b1fc53e477788a149582 + optional: false + category: main + - name: gcc + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + gcc_impl_linux-ppc64le: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc-11.3.0-ha746174_11.tar.bz2" + hash: + md5: 6391f876f8572d2de23f5db0a8e863fa + sha256: a5373b326c9cef306250f9e159d1f55d37698bdf74a7b55e5b82dea463484e3f + optional: false + category: main + - name: gcc_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + binutils_linux-ppc64le: "==2.39 h5e55cfe_11" + gcc_impl_linux-ppc64le: 11.3.0.* + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_linux-ppc64le-11.3.0-h89f38ce_11.tar.bz2" + hash: + md5: 814568bab97f272b70b8970bda7d1734 + sha256: 8e7691ff0b96738b6dc627564c000419e33239407879327e1af6309ec6638dbc + optional: false + category: main + - name: gfortran_impl_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + gcc_impl_linux-ppc64le: ">=11.3.0" + libgcc-ng: ">=4.9" + libgfortran5: ">=11.3.0" + libstdcxx-ng: ">=4.9" + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran_impl_linux-ppc64le-11.3.0-h230bcad_19.tar.bz2" + hash: + md5: e1dfcd199291fbe2535186c8ac26c38e + sha256: ea6822fe121d2236d6c1b604cf9566498dc2e5fdf2240cd3de4cb1cd98d0569e + optional: false + category: main + - name: gxx_impl_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + gcc_impl_linux-ppc64le: "==11.3.0 h8f9c6bb_19" + libstdcxx-devel_linux-ppc64le: "==11.3.0 hcb32637_19" + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_impl_linux-ppc64le-11.3.0-h8f9c6bb_19.tar.bz2" + hash: + md5: 6cae39b12f2baaf665838496d09f746e + sha256: d7ff5ce2eec8cf9b95d23c0fc8cf7a1eef64a7f7f2155369d8fd97ec42f20d4b + optional: false + category: main + - name: libcblas + version: 3.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + libblas: "==3.9.0 16_linuxppc64le_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-16_linuxppc64le_openblas.tar.bz2" + hash: + md5: 7c92b1e5f94e656d9d2f4c6164c3dd7d + sha256: f1141c257846202190deebd326b37e6147168e40e2511dffae5db48089c4f201 + optional: false + category: main + - name: liblapack + version: 3.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + libblas: "==3.9.0 16_linuxppc64le_openblas" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-16_linuxppc64le_openblas.tar.bz2" + hash: + md5: 6078295a03db891bce81100c41283109 + sha256: a14d82536cea5d9f1bb64089f371f37172c7070ffe89274c4b38618e75143ba4 + optional: false + category: main + - name: libtiff + version: 4.5.0 + manager: conda + platform: linux-ppc64le + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libdeflate: ">=1.17,<1.18.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libtiff-4.5.0-h43527b7_2.conda" + hash: + md5: 0d6957963ed574ddd3f2fcf87a1e4169 + sha256: 8d935040dcb5a3ecad23140947dd194069cb0cc5178b8104584e05c4155668fe + optional: false + category: main + - name: python + version: 3.9.16 + manager: conda + platform: linux-ppc64le + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-ppc64le: ">=2.36.1" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libsqlite: ">=3.39.4,<4.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.9.16-h342c621_0_cpython.conda" + hash: + md5: f5a45d99a97a1a92e41178b4fc787644 + sha256: ed87de2a117baa5341e85ef80b509aea3cce2c0c94c376003cb9c7f77610ff62 + optional: false + category: main + - name: alabaster + version: 0.7.13 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main + - name: appdirs + version: 1.4.4 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main + - name: attrs + version: 22.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main + - name: backcall + version: 0.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + - name: backports + version: "1.0" + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + - name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/backports.zoneinfo-0.2.1-py39h0b1cf3c_7.tar.bz2" + hash: + md5: c1167f40e89755cc23c64c6f7fd3dbe3 + sha256: f136781ac1b95d3565c2f2e5b32742d716e1b8bdd5d20d34b300a68a07f6fe2c + optional: false + category: main + - name: brotli + version: 1.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + brotli-bin: "==1.0.9 hb283c62_8" + libbrotlidec: "==1.0.9 hb283c62_8" + libbrotlienc: "==1.0.9 hb283c62_8" + libgcc-ng: ">=12" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-1.0.9-hb283c62_8.tar.bz2" + hash: + md5: f623f277928564629dc18ff3426ac984 + sha256: 8c871a332088e2d1055042a21007426d863cc54e5b7416c9a55d20a6f0a1a236 + optional: false + category: main + - name: c-compiler + version: 1.5.2 + manager: conda + platform: linux-ppc64le + dependencies: + binutils: "*" + gcc: "*" + gcc_linux-ppc64le: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/c-compiler-1.5.2-h4194056_0.conda" + hash: + md5: 906fd28502767b375b9456b4fd59bc4d + sha256: 929e32538223e861d1a4efabf95317278fa24602683852f86189bb03ff76aa62 + optional: false + category: main + - name: certifi + version: 2022.12.7 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main + - name: charset-normalizer + version: 2.1.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main + - name: click + version: 8.1.3 + manager: conda + platform: linux-ppc64le + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main + - name: colorama + version: 0.4.6 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + - name: cycler + version: 0.11.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + - name: cython + version: 0.29.33 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cython-0.29.33-py39h89b8a7f_0.conda" + hash: + md5: ee427d1817a2e2f0683c77bdc0bc6ee9 + sha256: 17ce872a2c27af5fcc84485e65072ce9549b516a14142acedd867edbfc1fc884 + optional: false + category: main + - name: decorator + version: 5.1.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + - name: docutils + version: "0.19" + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/docutils-0.19-py39hc1b9086_1.tar.bz2" + hash: + md5: b0c85fe5865a2d03afbd2b01ae03e69e + sha256: 490f080af53643f1e61fa042b69594079786a16c8889a151922642a3dec48377 + optional: false + category: main + - name: exceptiongroup + version: 1.1.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main + - name: execnet + version: 1.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main + - name: executing + version: 1.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + - name: gfortran + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + gcc: 11.3.0.* + gcc_impl_linux-ppc64le: 11.3.0.* + gfortran_impl_linux-ppc64le: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran-11.3.0-h47285a8_11.tar.bz2" + hash: + md5: 6050ddfbd06be074a4a4b31973528c7f + sha256: 07de312619594359318edda76557fdede88c9cdb9df3869465decd4c8dc281b1 + optional: false + category: main + - name: gfortran_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + binutils_linux-ppc64le: "==2.39 h5e55cfe_11" + gcc_linux-ppc64le: "==11.3.0 h89f38ce_11" + gfortran_impl_linux-ppc64le: 11.3.0.* + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran_linux-ppc64le-11.3.0-h7e72f06_11.tar.bz2" + hash: + md5: 5c1a3d92a26afe01e17ebcf99a1b3c11 + sha256: 8ad5addbb3d147189aaa895c954e459dc278dc8da145e482c631038bbff2acee + optional: false + category: main + - name: gxx + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + gcc: 11.3.0.* + gxx_impl_linux-ppc64le: 11.3.0.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx-11.3.0-ha746174_11.tar.bz2" + hash: + md5: 203a2faa2e8aa3f329d0bf0c6ff351dd + sha256: 58b7742cdb4c6c4fa79f9c5e3a70fc4d01dc02cbb57d986a51ab90bd1e9b6a8a + optional: false + category: main + - name: gxx_linux-ppc64le + version: 11.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + binutils_linux-ppc64le: "==2.39 h5e55cfe_11" + gcc_linux-ppc64le: "==11.3.0 h89f38ce_11" + gxx_impl_linux-ppc64le: 11.3.0.* + sysroot_linux-ppc64le: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_linux-ppc64le-11.3.0-h3c74164_11.tar.bz2" + hash: + md5: a0f1353564cfcbf1310cfd9f744319c8 + sha256: be7f130dba954b876a292ee0039efd0563a60621e6430f486d231775b35c05af + optional: false + category: main + - name: idna + version: "3.4" + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + - name: imagesize + version: 1.4.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main + - name: iniconfig + version: 2.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + - name: kiwisolver + version: 1.4.4 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/kiwisolver-1.4.4-py39h2bf7372_1.tar.bz2" + hash: + md5: b2e6cbe5c430337f19676048e429d5c6 + sha256: bd998a1dbaaaa9073ee6cfacbb8f28fcd1cec4817683272d9a09c8857276ef64 + optional: false + category: main + - name: lcms2 + version: "2.14" + manager: conda + platform: linux-ppc64le + dependencies: + jpeg: ">=9e,<10a" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/lcms2-2.14-h4cdffb3_1.conda" + hash: + md5: 3dc2f029758b3692b6c0bca31e20f3f6 + sha256: a5ba8adce3919b492527e638897bbf5843e75ea01358bac148f7d3c846c9f38b + optional: false + category: main + - name: markupsafe + version: 2.1.2 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/markupsafe-2.1.2-py39h3c7ea95_0.conda" + hash: + md5: 4b35b03829dc7cd269f7c0bb8b741fea + sha256: 27403dd13b41d2590f52645745d8daf5269fe415b99208d79935c8f5ff8c7911 + optional: false + category: main + - name: munkres + version: 1.1.4 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + - name: numpy + version: 1.24.2 + manager: conda + platform: linux-ppc64le + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-1.24.2-py39h27d966d_0.conda" + hash: + md5: 01161f20e96598201f9a9360b4b5f39e + sha256: 16dd1b6975ca3eda91d53b5d1e72f8b0297c3765fc53d156697d29150926a614 + optional: false + category: main + - name: openjpeg + version: 2.5.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openjpeg-2.5.0-hbcaec15_2.conda" + hash: + md5: 6d3258c9f7aa73ef7534f6bcbfd493c1 + sha256: 853ad1d97ce95219b41f3fb481dc2a562d83c6808008ff3b154f0452cb21a8ba + optional: false + category: main + - name: packaging + version: "23.0" + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main + - name: parso + version: 0.8.3 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + - name: pickleshare + version: 0.7.5 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + - name: pluggy + version: 1.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main + - name: psutil + version: 5.9.4 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/psutil-5.9.4-py39h98ec90c_0.tar.bz2" + hash: + md5: 5bd05c9eb882774901835d43e4c2c365 + sha256: d0bde2a78f967ba275a969a2d5b722d0792ac710c45c5ac74ee7b85f3cf6bb05 + optional: false + category: main + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + - name: pure_eval + version: 0.2.2 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + - name: pycodestyle + version: 2.7.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main + - name: pycparser + version: "2.21" + manager: conda + platform: linux-ppc64le + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + - name: pyparsing + version: 3.0.9 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + - name: pysocks + version: 1.7.1 + manager: conda + platform: linux-ppc64le + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main + - name: pytz + version: 2022.7.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main + - name: setuptools + version: 59.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/setuptools-59.2.0-py39hc1b9086_0.tar.bz2" + hash: + md5: 4617e1d24d2f1dff048a836d588fde54 + sha256: ad9e51800a00e3252728011f818d0f227acac77388b1b73a0b8999c1a05944fd + optional: false + category: main + - name: six + version: 1.16.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + - name: smmap + version: 3.0.5 + manager: conda + platform: linux-ppc64le + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main + - name: sortedcontainers + version: 2.4.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main + - name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main + - name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main + - name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main + - name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main + - name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main + - name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main + - name: toml + version: 0.10.2 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + - name: tomli + version: 2.0.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + - name: tornado + version: "6.2" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.2-py39h9ca6cee_1.tar.bz2" + hash: + md5: de4ea4c74f01f9b64e7c7888f7d5c506 + sha256: f4a3e920896c10dbe6247d0b0536acac4141ce28b6e8a1076c21b8563dd072c5 + optional: false + category: main + - name: traitlets + version: 5.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + - name: typing_extensions + version: 4.4.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main + - name: unicodedata2 + version: 15.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/unicodedata2-15.0.0-py39h98ec90c_0.tar.bz2" + hash: + md5: da1d94fc94f0136d8c23c64e6c66c9fb + sha256: 06b11396a68fc4d93105e4335da1b28b7465a53561a20c309dcecf1ad5795bcd + optional: false + category: main + - name: wheel + version: 0.38.4 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main + - name: zipp + version: 3.13.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main + - name: asttokens + version: 2.2.1 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main + - name: babel + version: 2.11.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main + - name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: linux-ppc64le + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main + - name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main + - name: cffi + version: 1.15.1 + manager: conda + platform: linux-ppc64le + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-1.15.1-py39h1929af6_3.conda" + hash: + md5: ff9e253220ea6ff14aea651d2328396f + sha256: b19050c387389ad2d0f817f3865a6a1f9706da40b53c6657d1fb8cb417457ff7 + optional: false + category: main + - name: contourpy + version: 1.0.7 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/contourpy-1.0.7-py39h9e1b185_0.conda" + hash: + md5: 13b641a7acb57ac3c52747d2cec170e2 + sha256: 017e14b677471c076e978e9e8e625f2ff03e3d0cb88d1807b2b40501adf041e2 + optional: false + category: main + - name: coverage + version: 7.1.0 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/coverage-7.1.0-py39h3c7ea95_0.conda" + hash: + md5: dd671f8adf5a91298fea2aa3f067c910 + sha256: 5cd7aeb415ba5581cf10782b0d41b0b5e30ce236f074267944c21db57fa23569 + optional: false + category: main + - name: cxx-compiler + version: 1.5.2 + manager: conda + platform: linux-ppc64le + dependencies: + c-compiler: "==1.5.2 h4194056_0" + gxx: "*" + gxx_linux-ppc64le: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cxx-compiler-1.5.2-he01d56d_0.conda" + hash: + md5: b3e397799dcf3015c437a3d0ed17abfa + sha256: ce7f60cf80c215d740be900c17599fd635e504ce412f0cecb5918018a9724cc8 + optional: false + category: main + - name: fonttools + version: 4.38.0 + manager: conda + platform: linux-ppc64le + dependencies: + brotli: "*" + libgcc-ng: ">=12" + munkres: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/fonttools-4.38.0-py39h98ec90c_1.tar.bz2" + hash: + md5: 505389efe350445e400f250c35b3a300 + sha256: ef5ce78150a726933e52a5e7f0886edf64eb2f0b9e2eb533d9f58ff5ae851671 + optional: false + category: main + - name: fortran-compiler + version: 1.5.2 + manager: conda + platform: linux-ppc64le + dependencies: + binutils: "*" + c-compiler: "==1.5.2 h4194056_0" + gfortran: "*" + gfortran_linux-ppc64le: 11.* + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/fortran-compiler-1.5.2-hc9fb769_0.conda" + hash: + md5: 0fd7f97c0c750664bd80c0ce33b64184 + sha256: dddb38309e547593b9086eeeda9989b4032e89bbf27a87a3df65b0871df3725a + optional: false + category: main + - name: gitdb + version: 4.0.10 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main + - name: hypothesis + version: 6.68.1 + manager: conda + platform: linux-ppc64le + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main + - name: importlib-metadata + version: 6.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main + - name: jedi + version: 0.18.2 + manager: conda + platform: linux-ppc64le + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main + - name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-ppc64le + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + - name: meson + version: 1.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main + - name: mypy + version: "0.981" + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/mypy-0.981-py39h98ec90c_0.tar.bz2" + hash: + md5: 456fb0f78d0244ff31c8095cc042e0d4 + sha256: d0c049919ecf4642373a1447cfb8c2f056e59bbe0df4c11051b1a5e53f27d9e7 + optional: false + category: main + - name: pexpect + version: 4.8.0 + manager: conda + platform: linux-ppc64le + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + - name: pillow + version: 9.4.0 + manager: conda + platform: linux-ppc64le + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libgcc-ng: ">=12" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pillow-9.4.0-py39h845a511_1.conda" + hash: + md5: c0534e2f92c834acc9d4e8205c418764 + sha256: a24c5f4c66ee54f7fdf7d370a6102b3d47ecbd8d1e0df190ce128605703c9ede + optional: false + category: main + - name: pip + version: "23.0" + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main + - name: pygments + version: 2.14.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main + - name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: linux-ppc64le + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main + - name: pytest + version: 7.2.1 + manager: conda + platform: linux-ppc64le + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + - name: typing-extensions + version: 4.4.0 + manager: conda + platform: linux-ppc64le + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main + - name: brotlipy + version: 0.7.0 + manager: conda + platform: linux-ppc64le + dependencies: + cffi: ">=1.0.0" + libgcc-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotlipy-0.7.0-py39h98ec90c_1005.tar.bz2" + hash: + md5: d8c035f4b1b28f25bfbcc199aae52d3d + sha256: e534cdeef029b8fb255dd60336e2f6e6a81d011ce231517d5fe6dcd0440c4d08 + optional: false + category: main + - name: compilers + version: 1.5.2 + manager: conda + platform: linux-ppc64le + dependencies: + c-compiler: "==1.5.2 h4194056_0" + cxx-compiler: "==1.5.2 he01d56d_0" + fortran-compiler: "==1.5.2 hc9fb769_0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/compilers-1.5.2-ha3edaa6_0.conda" + hash: + md5: 46edabff80f1b3208e74cc858f733f5a + sha256: da5910e38483edcaf941c6d6c124274a900a899d55c91f82ca3324a68f99608b + optional: false + category: main + - name: cryptography + version: 39.0.1 + manager: conda + platform: linux-ppc64le + dependencies: + cffi: ">=1.12" + libgcc-ng: ">=12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cryptography-39.0.1-py39h31bd36e_0.conda" + hash: + md5: 83f2e100cadaabaeae02f29dc3263f98 + sha256: 4dd0c3fa9da6b1e542c812ac421b28bbff222906d79587855a8d8f51d64d81e5 + optional: false + category: main + - name: gitpython + version: 3.1.30 + manager: conda + platform: linux-ppc64le + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main + - name: matplotlib-base + version: 3.6.3 + manager: conda + platform: linux-ppc64le + dependencies: + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-base-3.6.3-py39h5497c37_0.conda" + hash: + md5: 269461bf8080174eb1efc68961abc45a + sha256: f439e829ea1775ad93638858597b435aed3d36aaa4b06e93197334272c900e99 + optional: false + category: main + - name: meson-python + version: 0.12.0 + manager: conda + platform: linux-ppc64le + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main + - name: pandas + version: 1.5.3 + manager: conda + platform: linux-ppc64le + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pandas-1.5.3-py39h3cc8c3b_0.conda" + hash: + md5: e158babd99fc5079be0d87e52cef7466 + sha256: 2c61728511be17f464b673d48713a26703a64ca4a6ad402465a2d805c1ad3089 + optional: false + category: main + - name: pytest-cov + version: 4.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main + - name: pytest-xdist + version: 3.2.0 + manager: conda + platform: linux-ppc64le + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main + - name: stack_data + version: 0.6.2 + manager: conda + platform: linux-ppc64le + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + - name: wcwidth + version: 0.2.6 + manager: conda + platform: linux-ppc64le + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + - name: matplotlib + version: 3.6.3 + manager: conda + platform: linux-ppc64le + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-3.6.3-py39hc1b9086_0.conda" + hash: + md5: 773e37213cd47be018f3cd225b9694a5 + sha256: 9d85a0fd853509efc0c2a63e10e56a968069d23552fa8391b667cf52fb6b7c03 + optional: false + category: main + - name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main + - name: pyopenssl + version: 23.0.0 + manager: conda + platform: linux-ppc64le + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main + - name: ipython + version: 8.10.0 + manager: conda + platform: linux-ppc64le + dependencies: + __linux: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" + hash: + md5: 4703355103974293bbd8a32449b3ff28 + sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff + optional: false + category: main + - name: urllib3 + version: 1.26.14 + manager: conda + platform: linux-ppc64le + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main + - name: requests + version: 2.28.2 + manager: conda + platform: linux-ppc64le + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main + - name: pooch + version: 1.6.0 + manager: conda + platform: linux-ppc64le + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main + - name: sphinx + version: 5.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main + - name: breathe + version: 4.34.0 + manager: conda + platform: linux-ppc64le + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main + - name: numpydoc + version: 1.4.0 + manager: conda + platform: linux-ppc64le + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main + - name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: linux-ppc64le + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main + - name: scipy + version: 1.10.0 + manager: conda + platform: linux-ppc64le + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "*" + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.10.0-py39h27d966d_2.conda" + hash: + md5: de117adb37cbb16482bf434d06c68431 + sha256: 8bd3869860945f3d4b3d136e06a431a58abca843cd3deed85824986daa9b5743 + optional: false + category: main + - name: sphinx-design + version: 0.3.0 + manager: conda + platform: linux-ppc64le + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + - name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2" + hash: + md5: 37edc4e6304ca87316e160f5ca0bd1b5 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + optional: false + category: main + - name: ca-certificates + version: 2022.12.7 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda" + hash: + md5: af2bdcd68f16ce030ca957cdeb83d88a + sha256: 898276d86de89fb034ecfae05103045d0a0d6a356ced1b6d1832cdbd07a8fc18 + optional: false + category: main + - name: jpeg + version: 9e + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda" + hash: + md5: 6b55131ae9445ef38746dc6b080acda9 + sha256: 1ef5f9b4d9817820224c92b016da210b1356250d7272e16901c547e156b3e615 + optional: false + category: main + - name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2" + hash: + md5: 37157d273eaf3bc7d6862104161d9ec9 + sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 + optional: false + category: main + - name: libcxx + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2" + hash: + md5: 208a6a874b073277374de48a782f6b10 + sha256: ebb75dd9f854b1f184a98d0b9128a3faed6cd2f05f83677e1f399c253580afe7 + optional: false + category: main + - name: libdeflate + version: "1.17" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda" + hash: + md5: e3894420cf8b6abbf6c4d3d9742fbb4a + sha256: b322e190fd6fe631e1f4836ef99cbfb8352c03c30b51cb5baa216f7c9124d82e + optional: false + category: main + - name: libffi + version: 3.4.2 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2" + hash: + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + optional: false + category: main + - name: libgfortran-devel_osx-64 + version: 11.3.0 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-11.3.0-h824d247_27.conda" + hash: + md5: 3729d4388eb5a801b148dd4802899dba + sha256: d93b662d07aeb99417be9b62ca511520865e691d1fc224a63e383727791ac3b7 + optional: false + category: main + - name: libiconv + version: "1.17" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2" + hash: + md5: 691d103d11180486154af49c037b7ed9 + sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 + optional: false + category: main + - name: libwebp-base + version: 1.2.4 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2" + hash: + md5: 28807bef802a354f9c164e7ab242c5cb + sha256: ca3eb817054ac2942802b6b51dc671ab2af6564da329bebcb2538cdb31b59fa1 + optional: false + category: main + - name: libzlib + version: 1.2.13 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2" + hash: + md5: 35eb3fce8d51ed3c1fd4122bad48250b + sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 + optional: false + category: main + - name: llvm-openmp + version: 15.0.7 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-15.0.7-h61d9ccf_0.conda" + hash: + md5: 3faa9933dff6e96333b5ca5274674b63 + sha256: cc1586b43b757890b7d1cd24e1582345a36c40acd6cb6f9d9affb91de3c62015 + optional: false + category: main + - name: ncurses + version: "6.3" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2" + hash: + md5: 76217ebfbb163ff2770a261f955a5861 + sha256: 9794a23d03586c99cac49d4ae3d5337faaa6bfc256b31d2662ff4ad5972be143 + optional: false + category: main + - name: nomkl + version: "1.0" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main + - name: pthread-stubs + version: "0.4" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2" + hash: + md5: addd19059de62181cd11ae8f4ef26084 + sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 + optional: false + category: main + - name: python_abi + version: "3.9" + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-3_cp39.conda" + hash: + md5: 021e2768e8eaf24ee8e25aec64d305a1 + sha256: b02e179f015b042510da8ba256c86f5cfb34058a96ec1c548f33f9f8bcdbb78c + optional: false + category: main + - name: tzdata + version: 2022g + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main + - name: xorg-libxau + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2" + hash: + md5: c5049997b2e98edfbcdd294582f66281 + sha256: 6dcdbfcdb87c21cb615cd1a0a7fab7e657a443c771e80c771524f7d9b8443304 + optional: false + category: main + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2" + hash: + md5: 86ac76d6bf1cbb9621943eb3bd9ae36e + sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f + optional: false + category: main + - name: xz + version: 5.2.6 + manager: conda + platform: osx-64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2" + hash: + md5: a72f9d4ea13d55d745ff1ed594747f10 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + optional: false + category: main + - name: doxygen + version: 1.9.5 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.4" + libiconv: ">=1.16,<2.0.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.9.5-h6ca31d6_0.tar.bz2" + hash: + md5: 100e85351a872cfc6e5036329a10f589 + sha256: 6900910a349b4a54fd42aa67c940c53efe137e0fe4160ec05aafb15dc9c6903e + optional: false + category: main + - name: gmp + version: 6.2.1 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=10.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2" + hash: + md5: dedc96914428dae572a39e69ee2a392f + sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 + optional: false + category: main + - name: isl + version: "0.25" + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-64/isl-0.25-hb486fe8_0.tar.bz2" + hash: + md5: 45a9a46c78c0ea5c275b535f7923bde3 + sha256: f0a10b2be179809d4444bee0a60d5aa286b306520d55897b29d22b9848ab71fb + optional: false + category: main + - name: lerc + version: 4.0.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2" + hash: + md5: f9d6a4c82889d5ecedec1d90eb673c55 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + optional: false + category: main + - name: libbrotlidec + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: + libbrotlicommon: "==1.0.9 hb7f2c08_8" + url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2" + hash: + md5: 7f952a036d9014b4dab96c6ea0f8c2a7 + sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca + optional: false + category: main + - name: libbrotlienc + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: + libbrotlicommon: "==1.0.9 hb7f2c08_8" + url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2" + hash: + md5: b36a3bfe866d9127f25f286506982166 + sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 + optional: false + category: main + - name: libgfortran5 + version: 11.3.0 + manager: conda + platform: osx-64 + dependencies: + llvm-openmp: ">=8.0.0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_27.conda" + hash: + md5: f7602714b2be91be36f00fb75c45cb14 + sha256: 78173905004e7d13501db619391b113f3b96f2c78ba3ed0273152d1340d6a818 + optional: false + category: main + - name: libllvm14 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-h5b596cc_1.tar.bz2" + hash: + md5: c61f692b0e98efc1ef772fdf7d14e81a + sha256: 8e72bb60d707dfecca0cfb7378cbabe43de4537513a938fb0ab75ce58c5c7d91 + optional: false + category: main + - name: libpng + version: 1.6.39 + manager: conda + platform: osx-64 + dependencies: + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda" + hash: + md5: 35e4928794c5391aec14ffdf1deaaee5 + sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 + optional: false + category: main + - name: libsqlite + version: 3.40.0 + manager: conda + platform: osx-64 + dependencies: + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2" + hash: + md5: ceb13b6726534b96e3b4e3dda91e9050 + sha256: ae19f866188cc0c514fed754468460ae9e8dd763ebbd7b7afc4e818d71844297 + optional: false + category: main + - name: libxcb + version: "1.13" + manager: conda + platform: osx-64 + dependencies: + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2" + hash: + md5: eb7860935e14aec936065cbc21a1a962 + sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 + optional: false + category: main + - name: ninja + version: 1.11.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.0-h1b54a9f_0.tar.bz2" + hash: + md5: 02e4d7a0d1cda051ddf5e83725c4b2a6 + sha256: c7c7de719893c28b3e35fd3afa2ca7f6bf03022df5cf2398e1806c881ce41775 + optional: false + category: main + - name: openssl + version: 3.0.8 + manager: conda + platform: osx-64 + dependencies: + ca-certificates: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/openssl-3.0.8-hfd90126_0.conda" + hash: + md5: 4239d01834a13512079046ea216b6657 + sha256: 750ebd464414b7c4ea5aaa704788f7238a356c0a54ce76b018af246cdb65bf08 + optional: false + category: main + - name: pkg-config + version: 0.29.2 + manager: conda + platform: osx-64 + dependencies: + libiconv: ">=1.16,<2.0.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-ha3d46e9_1008.tar.bz2" + hash: + md5: 352bc6fb446a7ca608c61b33c1d5eb98 + sha256: f60d1c03c7d10e8926e767981872fdd6002d2094925df598a53c58261524c151 + optional: false + category: main + - name: readline + version: 8.1.2 + manager: conda + platform: osx-64 + dependencies: + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2" + hash: + md5: 89fa404901fa8fb7d4f4e07083b8d635 + sha256: c65dc1200a252832db49bdd6836c512a0eaafe97aa914b9f8358b15eebb1d94b + optional: false + category: main + - name: tapi + version: 1100.0.11 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=10.0.0.a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2" + hash: + md5: f9ff42ccf809a21ba6f8607f8de36108 + sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa + optional: false + category: main + - name: tk + version: 8.6.12 + manager: conda + platform: osx-64 + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2" + hash: + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + optional: false + category: main + - name: zlib + version: 1.2.13 + manager: conda + platform: osx-64 + dependencies: + libzlib: "==1.2.13 hfd90126_4" + url: "https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2" + hash: + md5: be90e6223c74ea253080abae19b3bdb1 + sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 + optional: false + category: main + - name: zstd + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.6" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda" + hash: + md5: 40a188783d3c425bdccc9ae9104acbb8 + sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f + optional: false + category: main + - name: brotli-bin + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: + libbrotlidec: "==1.0.9 hb7f2c08_8" + libbrotlienc: "==1.0.9 hb7f2c08_8" + url: "https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2" + hash: + md5: aac5ad0d8f747ef7f871508146df75d9 + sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 + optional: false + category: main + - name: freetype + version: 2.12.1 + manager: conda + platform: osx-64 + dependencies: + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda" + hash: + md5: 852224ea3e8991a8342228eab274840e + sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb + optional: false + category: main + - name: libclang-cpp14 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=13.0.1" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp14-14.0.6-default_h55ffa42_0.tar.bz2" + hash: + md5: 9b9bc2f878d47e6846e3d01ca0fcb921 + sha256: 01f7c50ef3414ea00026e5845e6ac8f0395af8ea7d585e4977fd6d7aa3e215d0 + optional: false + category: main + - name: libgfortran + version: 5.0.0 + manager: conda + platform: osx-64 + dependencies: + libgfortran5: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_27.conda" + hash: + md5: 7d25335e67256924aa04de681e68e807 + sha256: 834f1547a41fe53a23563b7702eb83b7156129a88460b5de701e8e019f7933a1 + optional: false + category: main + - name: libtiff + version: 4.5.0 + manager: conda + platform: osx-64 + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libcxx: ">=14.0.6" + libdeflate: ">=1.17,<1.18.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda" + hash: + md5: 35f714269a801f7c3cb522aacd3c0e69 + sha256: 03d00d6a3b1e569e9a8da66a9ad75a29c9c676dc7de6c16771abbb961abded2c + optional: false + category: main + - name: llvm-tools + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + libllvm14: "==14.0.6 h5b596cc_1" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-14.0.6-h5b596cc_1.tar.bz2" + hash: + md5: d99491efd3d672b3496e9fc9273da7c0 + sha256: 70be9ae375316ed616dae92c614763bd930d64765cf256d0f1aa50e3dcdafc58 + optional: false + category: main + - name: mpfr + version: 4.1.0 + manager: conda + platform: osx-64 + dependencies: + gmp: ">=6.2.1,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.1.0-h0f52abe_1.tar.bz2" + hash: + md5: afe26b08c2d2265b4d663d199000e5da + sha256: 68e2d7c06f438f7179b9b0c6f826a33a29c6580233a1e60fa71d4da260d70b8f + optional: false + category: main + - name: python + version: 3.9.16 + manager: conda + platform: osx-64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libffi: ">=3.4,<4.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/python-3.9.16-h709bd14_0_cpython.conda" + hash: + md5: 37f637999bb01d0474492ed14660c34b + sha256: ffff69cde5bce4fadaf1b6fb551d3ffa1f0f8a6dfdc95ec114f9aac02758a71a + optional: false + category: main + - name: sigtool + version: 0.1.3 + manager: conda + platform: osx-64 + dependencies: + openssl: ">=3.0.0,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2" + hash: + md5: fbfb84b9de9a6939cb165c02c69b1865 + sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf + optional: false + category: main + - name: alabaster + version: 0.7.13 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main + - name: appdirs + version: 1.4.4 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main + - name: appnope + version: 0.1.3 + manager: conda + platform: osx-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 54ac328d703bff191256ffa1183126d1 + sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742 + optional: false + category: main + - name: attrs + version: 22.2.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main + - name: backcall + version: 0.2.0 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + - name: backports + version: "1.0" + manager: conda + platform: osx-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + - name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py39h6e9494a_7.tar.bz2" + hash: + md5: 5727630b9e2234fbe5ba637c763a80c7 + sha256: 4dda0fc050802b0ad30eda1a4b13ad82172627f1601fae9e36344e41de8be5e2 + optional: false + category: main + - name: brotli + version: 1.0.9 + manager: conda + platform: osx-64 + dependencies: + brotli-bin: "==1.0.9 hb7f2c08_8" + libbrotlidec: "==1.0.9 hb7f2c08_8" + libbrotlienc: "==1.0.9 hb7f2c08_8" + url: "https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2" + hash: + md5: 55f612fe4a9b5f6ac76348b6de94aaeb + sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b + optional: false + category: main + - name: certifi + version: 2022.12.7 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main + - name: charset-normalizer + version: 2.1.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main + - name: clang-14 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + libclang-cpp14: "==14.0.6 default_h55ffa42_0" + libcxx: ">=13.0.1" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/clang-14-14.0.6-default_h55ffa42_0.tar.bz2" + hash: + md5: f4b08faae104f8a5483c06f7c6464b35 + sha256: 8c421568bce373e71ade9768f0f7e3563eaec84cb2cd51a7f2e03c6c3bb7be94 + optional: false + category: main + - name: click + version: 8.1.3 + manager: conda + platform: osx-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main + - name: colorama + version: 0.4.6 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + - name: cycler + version: 0.11.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + - name: cython + version: 0.29.33 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.6" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/cython-0.29.33-py39h7a8716b_0.conda" + hash: + md5: 04be8513f2ce60858396afbd0353688a + sha256: 3ee611cc2d9793089ef54e20d7521655b2ef8017b4c56003f872ffdb16eafee2 + optional: false + category: main + - name: decorator + version: 5.1.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + - name: docutils + version: "0.19" + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/docutils-0.19-py39h6e9494a_1.tar.bz2" + hash: + md5: d9db9ab3a721b9f36017d6b93060b462 + sha256: 232f045f5935309bd3c7901027a728c1dcfdab385e8ad104f54b6a70c315a219 + optional: false + category: main + - name: exceptiongroup + version: 1.1.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main + - name: execnet + version: 1.9.0 + manager: conda + platform: osx-64 + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main + - name: executing + version: 1.2.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + - name: idna + version: "3.4" + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + - name: imagesize + version: 1.4.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main + - name: iniconfig + version: 2.0.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + - name: kiwisolver + version: 1.4.4 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.4" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py39h92daf61_1.tar.bz2" + hash: + md5: 7720e059630e25ab17ab12677e59c615 + sha256: c397173c92ca77678d645bf8ef8064e81b821169db056217963f020acc09d42c + optional: false + category: main + - name: lcms2 + version: "2.14" + manager: conda + platform: osx-64 + dependencies: + jpeg: ">=9e,<10a" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h29502cd_1.conda" + hash: + md5: 1e42174021ffc69545f0814b9478dee3 + sha256: 64efad232b892c2511ba56bbd821e0b1e2e80a7a8ccf3524c20b5f964793ce43 + optional: false + category: main + - name: ld64_osx-64 + version: "609" + manager: conda + platform: osx-64 + dependencies: + libcxx: "*" + libllvm14: ">=14.0.6,<14.1.0a0" + sigtool: "*" + tapi: ">=1100.0.11,<1101.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-hfd63004_11.conda" + hash: + md5: 8881d41cb8fa1104d4545c6b7ddc9671 + sha256: 0c658f698bc12e0c7dc2def81c0b2a45aab810f5a11136dc99a5e944b47a3b97 + optional: false + category: main + - name: libopenblas + version: 0.3.21 + manager: conda + platform: osx-64 + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + url: "https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2" + hash: + md5: 968c46aa7f4032c3f3873f3452ed4c34 + sha256: a5a0b6ccef165ffb38e6a53e7b8808e33c77e081174315d2333ae93b593ae957 + optional: false + category: main + - name: markupsafe + version: 2.1.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py39ha30fb19_0.conda" + hash: + md5: 3b7b34916156e45ec52df74efc3db6e4 + sha256: d5aa88cdd75728fe101f83d0c4a7ab36634044f890e9e41aceb7454500e8af2b + optional: false + category: main + - name: mpc + version: 1.3.1 + manager: conda + platform: osx-64 + dependencies: + gmp: ">=6.2.1,<7.0a0" + mpfr: ">=4.1.0,<5.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h81bd1dd_0.conda" + hash: + md5: c752c0eb6c250919559172c011e5f65b + sha256: 2ae945a15c8a984d581dcfb974ad3b5d877a6527de2c95a3363e6b4490b2f312 + optional: false + category: main + - name: munkres + version: 1.1.4 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + - name: openjpeg + version: 2.5.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.6" + libpng: ">=1.6.39,<1.7.0a0" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda" + hash: + md5: 299a29af9ac9f550ad459d655739280b + sha256: 2375eafbd5241d8249fb467e2a8e190646e8798c33059c72efa60f197cdf4944 + optional: false + category: main + - name: packaging + version: "23.0" + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main + - name: parso + version: 0.8.3 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + - name: pickleshare + version: 0.7.5 + manager: conda + platform: osx-64 + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + - name: pluggy + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main + - name: psutil + version: 5.9.4 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.4-py39ha30fb19_0.tar.bz2" + hash: + md5: fde4dae8cd4d545d53e20d371ffd4c77 + sha256: 4e81064087ca1938c04d8e9dd1e8be92f686a56f7ebf0da5371beea9fc5f2a24 + optional: false + category: main + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + - name: pure_eval + version: 0.2.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + - name: pycodestyle + version: 2.7.0 + manager: conda + platform: osx-64 + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main + - name: pycparser + version: "2.21" + manager: conda + platform: osx-64 + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + - name: pyparsing + version: 3.0.9 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + - name: pysocks + version: 1.7.1 + manager: conda + platform: osx-64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main + - name: pytz + version: 2022.7.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main + - name: setuptools + version: 59.2.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/setuptools-59.2.0-py39h6e9494a_0.tar.bz2" + hash: + md5: a0954b685217e8b45fd677da613d4e95 + sha256: 5f0850fae9a651bc448bc50af4550d93f8d966f168ef85a918e51eca6490d8ab + optional: false + category: main + - name: six + version: 1.16.0 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + - name: smmap + version: 3.0.5 + manager: conda + platform: osx-64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main + - name: sortedcontainers + version: 2.4.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main + - name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main + - name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main + - name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main + - name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main + - name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main + - name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main + - name: toml + version: 0.10.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + - name: tomli + version: 2.0.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + - name: tornado + version: "6.2" + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py39ha30fb19_1.tar.bz2" + hash: + md5: 07917d8456ca9aa09acf950019bf53b2 + sha256: 1536759eb5feb9fdf9e7974e9fce18a709f0e110a75caff72dd9d83c7192cd86 + optional: false + category: main + - name: traitlets + version: 5.9.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + - name: typing_extensions + version: 4.4.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main + - name: unicodedata2 + version: 15.0.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.0.0-py39ha30fb19_0.tar.bz2" + hash: + md5: 17876b4aebf783fb7bba980a79516892 + sha256: 06ff21e0a28f5acee3719fd8c788c4dffbed408f463c933f7f892399039962fc + optional: false + category: main + - name: wheel + version: 0.38.4 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main + - name: zipp + version: 3.13.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main + - name: asttokens + version: 2.2.1 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main + - name: babel + version: 2.11.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main + - name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: osx-64 + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main + - name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main + - name: cctools_osx-64 + version: 973.0.1 + manager: conda + platform: osx-64 + dependencies: + ld64_osx-64: ">=609,<610.0a0" + libcxx: "*" + libllvm14: ">=14.0.6,<14.1.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + sigtool: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-hcc6d90d_11.conda" + hash: + md5: f1af817221bc31e7c770e1ea15374355 + sha256: 35c805738300e15a77977849b540b2ba54d8cbc915cb531cf88240a8968fc00d + optional: false + category: main + - name: cffi + version: 1.15.1 + manager: conda + platform: osx-64 + dependencies: + libffi: ">=3.4,<4.0a0" + pycparser: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_3.conda" + hash: + md5: 35c1b89ab4359002865052df70939c48 + sha256: e099e8ce3f35906071035fef85cbca94bbbb90d18f231ba8cd1a88577c7d84b3 + optional: false + category: main + - name: clang + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + clang-14: "==14.0.6 default_h55ffa42_0" + url: "https://conda.anaconda.org/conda-forge/osx-64/clang-14.0.6-h694c41f_0.tar.bz2" + hash: + md5: 77667c3c75b88f12782f628d171ffeda + sha256: dc38927cc81c81c64ab632f3aaa4bb17ed776794b2bfd3fa3375b38ad768ace7 + optional: false + category: main + - name: coverage + version: 7.1.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/coverage-7.1.0-py39ha30fb19_0.conda" + hash: + md5: be24d2d5a14dd95d77376ca68df86e94 + sha256: 7c3ee64099be5aa022f0126b5c5ace87cfb616a19fdcc7d88731ed432595fbc3 + optional: false + category: main + - name: fonttools + version: 4.38.0 + manager: conda + platform: osx-64 + dependencies: + brotli: "*" + munkres: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_1.tar.bz2" + hash: + md5: d4ef9879362c40c8c346a0b6cd79f2e0 + sha256: 6875cb8e44e09332b59f276c3b32be05906206f8a19e773d8c765feeae6dac4b + optional: false + category: main + - name: gfortran_impl_osx-64 + version: 11.3.0 + manager: conda + platform: osx-64 + dependencies: + gmp: ">=6.2.1,<7.0a0" + isl: ">=0.25,<0.26.0a0" + libcxx: ">=14.0.6" + libgfortran-devel_osx-64: 11.3.0.* + libgfortran5: ">=11.3.0" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + mpc: ">=1.2.1,<2.0a0" + mpfr: ">=4.1.0,<5.0a0" + zlib: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-11.3.0-h1f927f5_27.conda" + hash: + md5: 0bb7f54e22a2136588b33e7b0bf24148 + sha256: e8be46ff4aa486a808e3494cf6b44758cce199d2888d91553261f65bd02cf7f0 + optional: false + category: main + - name: gitdb + version: 4.0.10 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main + - name: hypothesis + version: 6.68.1 + manager: conda + platform: osx-64 + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main + - name: importlib-metadata + version: 6.0.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main + - name: jedi + version: 0.18.2 + manager: conda + platform: osx-64 + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main + - name: jinja2 + version: 3.1.2 + manager: conda + platform: osx-64 + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + - name: ld64 + version: "609" + manager: conda + platform: osx-64 + dependencies: + ld64_osx-64: "==609 hfd63004_11" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/ld64-609-hc6ad406_11.conda" + hash: + md5: 9e14075f26a915bc6180b40789138adf + sha256: fd1d2aa9a08c52599fb03dbd65fe32e788f34bcd6d509f22eac7897233282d60 + optional: false + category: main + - name: libblas + version: 3.9.0 + manager: conda + platform: osx-64 + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2" + hash: + md5: 644d63e9379867490b67bace400b2a0f + sha256: 7678dab49b552957ddfa1fc5ddf3a09963c788bca81adb0cd9626f6385e205c5 + optional: false + category: main + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + - name: meson + version: 1.0.0 + manager: conda + platform: osx-64 + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main + - name: mypy + version: "0.981" + manager: conda + platform: osx-64 + dependencies: + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/osx-64/mypy-0.981-py39ha30fb19_0.tar.bz2" + hash: + md5: b6580642702195bf97ea22c5913a82b9 + sha256: df7bdee4a6f7376bccfede1570bd3338011137d4ba63520b90b56e642ee5f782 + optional: false + category: main + - name: openblas + version: 0.3.21 + manager: conda + platform: osx-64 + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + libopenblas: "==0.3.21 openmp_h429af6e_3" + llvm-openmp: ">=14.0.4" + url: "https://conda.anaconda.org/conda-forge/osx-64/openblas-0.3.21-openmp_hbefa662_3.tar.bz2" + hash: + md5: f0ad8b67cf731e7e375e497305d7cee5 + sha256: 8aaf3165d6b443c48f3a1b2b34330c361801d04ac668d43be5475472c6a4e25f + optional: false + category: main + - name: pexpect + version: 4.8.0 + manager: conda + platform: osx-64 + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + - name: pillow + version: 9.4.0 + manager: conda + platform: osx-64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py39h7f5cd59_1.conda" + hash: + md5: d2f1bdaa85fd34020259533efeeb40bb + sha256: b7a6d9e50a212215f76666789b0e9c155756d90e27678b4a8720fc6825621648 + optional: false + category: main + - name: pip + version: "23.0" + manager: conda + platform: osx-64 + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main + - name: pygments + version: 2.14.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main + - name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: osx-64 + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main + - name: pytest + version: 7.2.1 + manager: conda + platform: osx-64 + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + - name: typing-extensions + version: 4.4.0 + manager: conda + platform: osx-64 + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main + - name: brotlipy + version: 0.7.0 + manager: conda + platform: osx-64 + dependencies: + cffi: ">=1.0.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py39ha30fb19_1005.tar.bz2" + hash: + md5: 201d86c1f0b0132954fc72251b09df8a + sha256: 0204c1d5ab773e956233c0a6941f87faf7e9dc3fe30dec0d34f04091309859d8 + optional: false + category: main + - name: cctools + version: 973.0.1 + manager: conda + platform: osx-64 + dependencies: + cctools_osx-64: "==973.0.1 hcc6d90d_11" + ld64: "==609 hc6ad406_11" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-h76f1dac_11.conda" + hash: + md5: 77d8192c013d7a4a355aee5b0ae1ae20 + sha256: afe5a8d93ae1ecc09d98a15f6edea6b14e0f99fb3f64d4d04501461afb56ccd9 + optional: false + category: main + - name: clangxx + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + clang: "==14.0.6 h694c41f_0" + url: "https://conda.anaconda.org/conda-forge/osx-64/clangxx-14.0.6-default_h55ffa42_0.tar.bz2" + hash: + md5: 6a46064b0506895d090302433e70397b + sha256: 11b6d9f11aae45ac36a4d87d0f5367d00eda6f53c43bac38594024e25a366b04 + optional: false + category: main + - name: cryptography + version: 39.0.1 + manager: conda + platform: osx-64 + dependencies: + cffi: ">=1.12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/cryptography-39.0.1-py39hbeae22c_0.conda" + hash: + md5: fac2793ec157233017912d190fa15f00 + sha256: 3b98fbb4a457fb3136e832079b5cf112063bd3c91b655f640db0b455328b3767 + optional: false + category: main + - name: gitpython + version: 3.1.30 + manager: conda + platform: osx-64 + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main + - name: libcblas + version: 3.9.0 + manager: conda + platform: osx-64 + dependencies: + libblas: "==3.9.0 16_osx64_openblas" + url: "https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2" + hash: + md5: 28592eab0f05bcf9969789e87f754e11 + sha256: 072a214ab1d596b99b985773bdb6f6e5f38774c7f73d70962700e0fc0d77d91f + optional: false + category: main + - name: liblapack + version: 3.9.0 + manager: conda + platform: osx-64 + dependencies: + libblas: "==3.9.0 16_osx64_openblas" + url: "https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2" + hash: + md5: 406ad426aade5578b90544cc2ed4a79b + sha256: 456a6e8bfc2e97846d9e157b5f51c23e0c4e9c922ccf7b2321be5362c835d35f + optional: false + category: main + - name: meson-python + version: 0.12.0 + manager: conda + platform: osx-64 + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main + - name: pytest-cov + version: 4.0.0 + manager: conda + platform: osx-64 + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main + - name: pytest-xdist + version: 3.2.0 + manager: conda + platform: osx-64 + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main + - name: stack_data + version: 0.6.2 + manager: conda + platform: osx-64 + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + - name: wcwidth + version: 0.2.6 + manager: conda + platform: osx-64 + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + - name: compiler-rt_osx-64 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + clang: 14.0.6.* + clangxx: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-14.0.6-hab78ec2_0.tar.bz2" + hash: + md5: 4fdde3f4ed31722a1c811723f5db82f0 + sha256: a8351d6a47a8a2cd8267862d36ad5a06f16955c68111140b8b147ee126433712 + optional: false + category: main + - name: numpy + version: 1.24.2 + manager: conda + platform: osx-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.6" + liblapack: ">=3.9.0,<4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py39h6ee2318_0.conda" + hash: + md5: 9b49051072af22354aee82b524f808ff + sha256: 6c4acf04c482a33b7c4a1661ed50c6927f683418b9b61b29f16711f77480485e + optional: false + category: main + - name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main + - name: pyopenssl + version: 23.0.0 + manager: conda + platform: osx-64 + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main + - name: compiler-rt + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + clang: 14.0.6.* + clangxx: 14.0.6.* + compiler-rt_osx-64: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-14.0.6-h613da45_0.tar.bz2" + hash: + md5: b44e0625319f9933e584dc3b96f5baf7 + sha256: 2dea3b5efea587329320c70a335fa5666c3a814e70e76464734b90a40b70e8a8 + optional: false + category: main + - name: contourpy + version: 1.0.7 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.6" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py39h92daf61_0.conda" + hash: + md5: 3b50cfd6ea07613741693ba535fcefda + sha256: e62b248506d690eaea2de499555288665ca0508d54efe63690638f1b39e6e775 + optional: false + category: main + - name: ipython + version: 8.10.0 + manager: conda + platform: osx-64 + dependencies: + __osx: "*" + appnope: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda" + hash: + md5: e67b634578fefbb312cd6cfd34b63d86 + sha256: 5951fbddbd8be803c38b75d7d34ff78d366e57e55a7afa2604be6fd0abacb882 + optional: false + category: main + - name: pandas + version: 1.5.3 + manager: conda + platform: osx-64 + dependencies: + libcxx: ">=14.0.6" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py39hecff1ad_0.conda" + hash: + md5: e7d2a20902a36eea13dea9b0021fbfb4 + sha256: 2fcd5f5ad098fe73089c3d5970f155df75c329cffbdf08c3ad52b2515224fe6a + optional: false + category: main + - name: urllib3 + version: 1.26.14 + manager: conda + platform: osx-64 + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main + - name: clang_osx-64 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + cctools_osx-64: "*" + clang: 14.0.6.* + compiler-rt: 14.0.6.* + ld64_osx-64: "*" + llvm-tools: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-14.0.6-h3113cd8_4.conda" + hash: + md5: e1828ef1597292a9ea25627fdfacb9f3 + sha256: 4cdce8a6e1b1ea671e6f10839548983f93f9c4ab86cb89acf439d414283162b5 + optional: false + category: main + - name: matplotlib-base + version: 3.6.3 + manager: conda + platform: osx-64 + dependencies: + __osx: ">=10.12" + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libcxx: ">=14.0.6" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.6.3-py39hb2f573b_0.conda" + hash: + md5: 2852034caacfeaa91d7258c5712887e2 + sha256: cbf4ca345fbce7bdebbdfc9175f9969af4bb6afb97f73450bf81b90d63389dda + optional: false + category: main + - name: requests + version: 2.28.2 + manager: conda + platform: osx-64 + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main + - name: c-compiler + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + cctools: ">=949.0.1" + clang_osx-64: 14.* + ld64: ">=530" + llvm-openmp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.5.2-hbf74d83_0.conda" + hash: + md5: c1413ef5a20d658923e12dd3b566d8f3 + sha256: 0f97b6cc2215f0789ffa2781eb8a6304efaf5c4592c4c619d6e0a63c23f2b877 + optional: false + category: main + - name: clangxx_osx-64 + version: 14.0.6 + manager: conda + platform: osx-64 + dependencies: + clang_osx-64: "==14.0.6 h3113cd8_4" + clangxx: 14.0.6.* + libcxx: ">=14.0.6" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-14.0.6-h6f97653_4.conda" + hash: + md5: f9f2cc37068e5f2f4332793640329fe3 + sha256: 9da6a17e9ae0b51ecc2ab2f25f850a38902f696de1d05cf2ad9374146cfc1d3a + optional: false + category: main + - name: gfortran_osx-64 + version: 11.3.0 + manager: conda + platform: osx-64 + dependencies: + cctools_osx-64: "*" + clang: "*" + clang_osx-64: "*" + gfortran_impl_osx-64: "==11.3.0" + ld64_osx-64: "*" + libgfortran: 5.* + libgfortran-devel_osx-64: "==11.3.0" + libgfortran5: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-11.3.0-h18f7dce_0.tar.bz2" + hash: + md5: 72320d23ed499315d1d1ac332b94bc66 + sha256: 7abe5dd161c8e4cdb67ceefecf27906d208e46bdb86b71e444b71409fc0857a1 + optional: false + category: main + - name: matplotlib + version: 3.6.3 + manager: conda + platform: osx-64 + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.6.3-py39h6e9494a_0.conda" + hash: + md5: 255526eb4dbca981a03b25f0267f2a62 + sha256: bb324a483b9cb30a09bfefe18cb4e42199201940be0ed82f3c0fbdb26ef2950d + optional: false + category: main + - name: pooch + version: 1.6.0 + manager: conda + platform: osx-64 + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main + - name: sphinx + version: 5.3.0 + manager: conda + platform: osx-64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main + - name: breathe + version: 4.34.0 + manager: conda + platform: osx-64 + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main + - name: cxx-compiler + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + c-compiler: "==1.5.2 hbf74d83_0" + clangxx_osx-64: 14.* + url: "https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.5.2-hb8565cd_0.conda" + hash: + md5: 349ae14723b98f76ea0fcb8e532b2ead + sha256: 91193c9029594d102217457ce8b4fe1cfd4a1e13e652451e94f851e91b45a147 + optional: false + category: main + - name: gfortran + version: 11.3.0 + manager: conda + platform: osx-64 + dependencies: + cctools: "*" + gfortran_osx-64: "*" + ld64: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran-11.3.0-h2c809b3_0.tar.bz2" + hash: + md5: db5338d1fb1ad08498bdc1b42277a0d5 + sha256: 4f5c1dc5323e888d4fa372eba6f4540b60f557963209502cfad569fdc3d47495 + optional: false + category: main + - name: numpydoc + version: 1.4.0 + manager: conda + platform: osx-64 + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main + - name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: osx-64 + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main + - name: scipy + version: 1.10.0 + manager: conda + platform: osx-64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.6" + libgfortran: 5.* + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.0-py39h8a15683_2.conda" + hash: + md5: fb37c05f4b9712410daa406ada94d631 + sha256: c44076aade55c5252c46c588692ceea2a98be6d2e44bc0bdafb00f3d7d56d622 + optional: false + category: main + - name: sphinx-design + version: 0.3.0 + manager: conda + platform: osx-64 + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + - name: fortran-compiler + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + cctools: ">=949.0.1" + gfortran: "*" + gfortran_osx-64: 11.* + ld64: ">=530" + llvm-openmp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.5.2-haad3a49_0.conda" + hash: + md5: 649a324b13eb77c6d5e98d36ea0c59f4 + sha256: db482cbd1f8046a6d51c0af47d98f97e0c157bf9029bbc95b71c72972f3fa01f + optional: false + category: main + - name: compilers + version: 1.5.2 + manager: conda + platform: osx-64 + dependencies: + c-compiler: "==1.5.2 hbf74d83_0" + cxx-compiler: "==1.5.2 hb8565cd_0" + fortran-compiler: "==1.5.2 haad3a49_0" + url: "https://conda.anaconda.org/conda-forge/osx-64/compilers-1.5.2-h694c41f_0.conda" + hash: + md5: 1fdd3bc173dad6e7a0439962c7764ab8 + sha256: fe35c96a228d9e245e9cc05fdff5078e8f31a9ae44bd320f5cb48e6ab0fca139 + optional: false + category: main + - name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2" + hash: + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + optional: false + category: main + - name: ca-certificates + version: 2022.12.7 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda" + hash: + md5: 7dc111916edc905957b7417a247583b6 + sha256: a9634dc719fc9cd4c91cf8ad3167532e59051cace3e90ef2ba305a41c316784a + optional: false + category: main + - name: jpeg + version: 9e + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda" + hash: + md5: ef1cce2ab799e0c2f32c3344125ff218 + sha256: 7e21d03917fb535b39c3af0cc7b7115617556a4ca2fe13018c09407987883b34 + optional: false + category: main + - name: libbrotlicommon + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2" + hash: + md5: 84eb0c3c995a865079080d092e4a3c06 + sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 + optional: false + category: main + - name: libcxx + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2" + hash: + md5: 716c4b72ff3808ade65748fd9b49cc44 + sha256: 8e199c6956fad3abcbe9a1468c6219d9e95b64b898e9cf009b82d669c3bfdaf6 + optional: false + category: main + - name: libdeflate + version: "1.17" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda" + hash: + md5: cae34d3f6ab02e0abf92ec3caaf0bd39 + sha256: 9a1979b3f6dc155b8c48987cfae6b13ba19b3e176e4470b87f60011e806218f5 + optional: false + category: main + - name: libffi + version: 3.4.2 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2" + hash: + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + optional: false + category: main + - name: libgfortran-devel_osx-arm64 + version: 11.3.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-11.3.0-hfe9555d_27.conda" + hash: + md5: 28cf7c6b44b099d8cb4f801dc547cc5c + sha256: e0e304772a9c572081ee04b316327cec0659c77890db26548ea600ab9b20e1c8 + optional: false + category: main + - name: libiconv + version: "1.17" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2" + hash: + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + optional: false + category: main + - name: libwebp-base + version: 1.2.4 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2" + hash: + md5: 23f90b9f28c585445c52184a3388d01d + sha256: 43e9557894d07ddbba76fdacf321ca84f2c6da5a649a32a6a91f23e2761d1df4 + optional: false + category: main + - name: libzlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2" + hash: + md5: 780852dc54c4c07e64b276a97f89c162 + sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 + optional: false + category: main + - name: llvm-openmp + version: 15.0.7 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-15.0.7-h7cfbb63_0.conda" + hash: + md5: 358164e15a9320f11b84a53fb8d8e446 + sha256: 6cc4cf021fc1f06df3b97598bf9583fe7a04fad6a4eef9882558f7932f362bc0 + optional: false + category: main + - name: ncurses + version: "6.3" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2" + hash: + md5: db86e5a978380a13f5559f97afdfe99d + sha256: 50ba7c13dd7d05569e7caa98a13a3684450f8547b4965a1e86b54e2f1240debe + optional: false + category: main + - name: nomkl + version: "1.0" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" + hash: + md5: 9a66894dfd07c4510beb6b3f9672ccc0 + sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b + optional: false + category: main + - name: pthread-stubs + version: "0.4" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2" + hash: + md5: d3f26c6494d4105d4ecb85203d687102 + sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 + optional: false + category: main + - name: python_abi + version: "3.9" + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-3_cp39.conda" + hash: + md5: f8fb5fb65327a2429b084833c8ff1dbc + sha256: 9434a23c734685db9a5017206dae58f141e2edddec2ee9e1ec10a3fdefa55c0f + optional: false + category: main + - name: tzdata + version: 2022g + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" + hash: + md5: 51fc4fcfb19f5d95ffc8c339db5068e8 + sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 + optional: false + category: main + - name: xorg-libxau + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2" + hash: + md5: e2fa1f5a28cf0ce02516baf910be132e + sha256: a5810ad0fae16b72ee7cbb22e009c926dd1cd95d82885896e7f20fe911f7195f + optional: false + category: main + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2" + hash: + md5: 6738b13f7fadc18725965abdd4129c36 + sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 + optional: false + category: main + - name: xz + version: 5.2.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: "https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2" + hash: + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + optional: false + category: main + - name: doxygen + version: 1.9.5 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.4" + libiconv: ">=1.16,<2.0.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.9.5-hd78112f_0.tar.bz2" + hash: + md5: 0b5059999731cad5ca96b597f0b6c77b + sha256: 48a4bafdacca69e6ee38ea635d81e300bad86eda34869600fbdeff50ed74976f + optional: false + category: main + - name: gettext + version: 0.21.1 + manager: conda + platform: osx-arm64 + dependencies: + libiconv: ">=1.17,<2.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2" + hash: + md5: 63d2ff6fddfa74e5458488fd311bf635 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + optional: false + category: main + - name: gmp + version: 6.2.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=11.0.0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2" + hash: + md5: f8140773b6ca51bf32feec9b4290a8c5 + sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + optional: false + category: main + - name: isl + version: "0.25" + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.25-h9a09cb3_0.tar.bz2" + hash: + md5: b0c90b63ffeb9e2d045be8f5bc64741c + sha256: 6c6b486de9db1c2c897b24f6b0eb9a1ecdaf355ede1ee2ccb0c1aaee4bd9ef59 + optional: false + category: main + - name: lerc + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2" + hash: + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + optional: false + category: main + - name: libbrotlidec + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlicommon: "==1.0.9 h1a8c8d9_8" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2" + hash: + md5: 640ea7b788cdd0420409bd8479f023f9 + sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 + optional: false + category: main + - name: libbrotlienc + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlicommon: "==1.0.9 h1a8c8d9_8" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2" + hash: + md5: 572907b78be867937c258421bc0807a8 + sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f + optional: false + category: main + - name: libgfortran5 + version: 11.3.0 + manager: conda + platform: osx-arm64 + dependencies: + llvm-openmp: ">=8.0.0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_27.conda" + hash: + md5: 4514d8c30cda679e66ca297965e4b043 + sha256: 88325ae7043712ba02a616281d37bfbab63c4c9b2a7f18ef8410b13d84947350 + optional: false + category: main + - name: libllvm14 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hf6e71e7_1.tar.bz2" + hash: + md5: 2ec0ff9a370305311ce222bcb085b72d + sha256: e3b9eee8abc1e3c315094aa6452e01424e3da8aef8dd42093836183d55f5df4b + optional: false + category: main + - name: libpng + version: 1.6.39 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda" + hash: + md5: 0078e6327c13cfdeae6ff7601e360383 + sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 + optional: false + category: main + - name: libsqlite + version: 3.40.0 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2" + hash: + md5: d090fcec993f4ef0a90e6df7f231a273 + sha256: 5e8992b2099bb4767996e1bed70945ba39f61399ab912ba2a2770d12c165acb5 + optional: false + category: main + - name: libxcb + version: "1.13" + manager: conda + platform: osx-arm64 + dependencies: + pthread-stubs: "*" + xorg-libxau: "*" + xorg-libxdmcp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2" + hash: + md5: 6b3457a192f8091cb413962f65740ac4 + sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb + optional: false + category: main + - name: ninja + version: 1.11.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=13.0.1" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.0-hf86a087_0.tar.bz2" + hash: + md5: 1544c2828bb4b2a55997cd77627720ea + sha256: fe04151afa66d9bce6025066201692929aa195fe77fc62505f9b183720de03cb + optional: false + category: main + - name: openssl + version: 3.0.8 + manager: conda + platform: osx-arm64 + dependencies: + ca-certificates: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.0.8-h03a7124_0.conda" + hash: + md5: accdc6784b8ae5dd618a9e76f4c3af36 + sha256: 6d58b0412c4c27669da02368a303f4c4abc1b0edda5f27b2f8155299ab2b45a5 + optional: false + category: main + - name: pcre2 + version: "10.40" + manager: conda + platform: osx-arm64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2" + hash: + md5: 721b7288270bafc83586b0f01c2a67f2 + sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe + optional: false + category: main + - name: readline + version: 8.1.2 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: ">=6.3,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2" + hash: + md5: dc790f296d94409efb3f22af84ee968d + sha256: 2d2a65fcdd91361ea7e40c03eeec18ff7a453c32f6589a1fce64717f6cd7c7b6 + optional: false + category: main + - name: tapi + version: 1100.0.11 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=11.0.0.a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2" + hash: + md5: d83362e7d0513f35f454bc50b0ca591d + sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 + optional: false + category: main + - name: tk + version: 8.6.12 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2" + hash: + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + optional: false + category: main + - name: zlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: "==1.2.13 h03a7124_4" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2" + hash: + md5: 34161cff4e29cc45e536abf2f13fd6b4 + sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 + optional: false + category: main + - name: zstd + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.6" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda" + hash: + md5: 8f346953ef63bf5fb482488a659adcf3 + sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d + optional: false + category: main + - name: brotli-bin + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlidec: "==1.0.9 h1a8c8d9_8" + libbrotlienc: "==1.0.9 h1a8c8d9_8" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2" + hash: + md5: f212620a4f3606ff8f800b8b1077415a + sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 + optional: false + category: main + - name: freetype + version: 2.12.1 + manager: conda + platform: osx-arm64 + dependencies: + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda" + hash: + md5: 33ea6326e26d1da25eb8dfa768195b82 + sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 + optional: false + category: main + - name: libclang-cpp14 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=13.0.1" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp14-14.0.6-default_h81a5282_0.tar.bz2" + hash: + md5: 6cfc1343e167d250367983b1864adc04 + sha256: 86a606d0d76cdae79d3d89c686313cda22ecbbde182b4e906759500078653d6b + optional: false + category: main + - name: libgfortran + version: 5.0.0 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran5: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_27.conda" + hash: + md5: 61d66d1a81d08e3f82049aa279f4cd7f + sha256: fce7eb15948e1fec90508a4a7ca1fa350225f03e46c5a6e6df5b4f7b523db695 + optional: false + category: main + - name: libglib + version: 2.74.1 + manager: conda + platform: osx-arm64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libcxx: ">=14.0.4" + libffi: ">=3.4,<4.0a0" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + pcre2: ">=10.40,<10.41.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2" + hash: + md5: 4321cf67e46674567f419e95bae18522 + sha256: c312e93652734424b30ed017743ea9e37a5efcdf42e14d3f78ca96cf64fd266d + optional: false + category: main + - name: libtiff + version: 4.5.0 + manager: conda + platform: osx-arm64 + dependencies: + jpeg: ">=9e,<10a" + lerc: ">=4.0.0,<5.0a0" + libcxx: ">=14.0.6" + libdeflate: ">=1.17,<1.18.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.2,<1.6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda" + hash: + md5: 8e08eae60de32c940096ee9b4da35685 + sha256: 0207f4234571d393d2f790aedaa1e127dfcd9d7fe3fe886ebdf31c9e7b9f7ce2 + optional: false + category: main + - name: llvm-tools + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libllvm14: "==14.0.6 hf6e71e7_1" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-14.0.6-hf6e71e7_1.tar.bz2" + hash: + md5: e97dcf92f03537c52aa2dcdcaf6ef75c + sha256: 91dc605c32d6b76189c34757c27319800e78fd865d0652acdd5b18ac999988af + optional: false + category: main + - name: mpfr + version: 4.1.0 + manager: conda + platform: osx-arm64 + dependencies: + gmp: ">=6.2.0,<7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.1.0-h6d7a090_1.tar.bz2" + hash: + md5: c37f296f76cfb61d4f91613da93789e6 + sha256: bf44598be1fe9f6310ac0ebcd91dd6b51d4d19fe085c96b4da8297f2fc868f86 + optional: false + category: main + - name: python + version: 3.9.16 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libffi: ">=3.4,<4.0a0" + libsqlite: ">=3.40.0,<4.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.7,<4.0a0" + pip: "*" + readline: ">=8.1.2,<9.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "*" + xz: ">=5.2.6,<6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.16-hea58f1e_0_cpython.conda" + hash: + md5: d2dfc4fe1da1624e020334b1000c6a3d + sha256: 90596405b18cf38e0ae2eebb81fc41da836081f3488ae9f3571a9199664a6032 + optional: false + category: main + - name: sigtool + version: 0.1.3 + manager: conda + platform: osx-arm64 + dependencies: + openssl: ">=3.0.0,<4.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2" + hash: + md5: 4a2cac04f86a4540b8c9b8d8f597848f + sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff + optional: false + category: main + - name: alabaster + version: 0.7.13 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + optional: false + category: main + - name: appdirs + version: 1.4.4 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + optional: false + category: main + - name: appnope + version: 0.1.3 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 54ac328d703bff191256ffa1183126d1 + sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742 + optional: false + category: main + - name: attrs + version: 22.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" + hash: + md5: 8b76db7818a4e401ed4486c4c1635cd9 + sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 + optional: false + category: main + - name: backcall + version: 0.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + - name: backports + version: "1.0" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + - name: backports.zoneinfo + version: 0.2.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py39h2804cbe_7.tar.bz2" + hash: + md5: 53ed254446fa05b6c7efda9cabe03630 + sha256: e149a5598cd38ee3db357a09d16384ea119d56be7d41decd10e078c8d326b28e + optional: false + category: main + - name: brotli + version: 1.0.9 + manager: conda + platform: osx-arm64 + dependencies: + brotli-bin: "==1.0.9 h1a8c8d9_8" + libbrotlidec: "==1.0.9 h1a8c8d9_8" + libbrotlienc: "==1.0.9 h1a8c8d9_8" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2" + hash: + md5: e2a5e381ddd6529eb62e7710270b2ec5 + sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 + optional: false + category: main + - name: certifi + version: 2022.12.7 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" + hash: + md5: fb9addc3db06e56abe03e0e9f21a63e6 + sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec + optional: false + category: main + - name: charset-normalizer + version: 2.1.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + optional: false + category: main + - name: clang-14 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libclang-cpp14: "==14.0.6 default_h81a5282_0" + libcxx: ">=13.0.1" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang-14-14.0.6-default_h81a5282_0.tar.bz2" + hash: + md5: ad7388bad4d7416ce2bbacddb2faa577 + sha256: 20a8d11fca5be934d9d8990b688396c0a4be8bd8cc29be2e79be5e3e4baefbeb + optional: false + category: main + - name: click + version: 8.1.3 + manager: conda + platform: osx-arm64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + optional: false + category: main + - name: colorama + version: 0.4.6 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + optional: false + category: main + - name: cycler + version: 0.11.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + optional: false + category: main + - name: cython + version: 0.29.33 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.6" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cython-0.29.33-py39h23fbdae_0.conda" + hash: + md5: 39e8c4d178e2c54e910f8b59624fb796 + sha256: 036c45bf33e0c167b4d518c649722290c1779a067b1f1c197e27b7f735d8af9b + optional: false + category: main + - name: decorator + version: 5.1.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + optional: false + category: main + - name: docutils + version: "0.19" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.19-py39h2804cbe_1.tar.bz2" + hash: + md5: 509daec50d39e5f31eb2992d2248752e + sha256: 910ef18f7b43aeef7a6cc51274c68895c64c28b7fa05979dae8917106d9f5cd7 + optional: false + category: main + - name: exceptiongroup + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" + hash: + md5: a385c3e8968b4cf8fbc426ace915fd1a + sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d + optional: false + category: main + - name: execnet + version: 1.9.0 + manager: conda + platform: osx-arm64 + dependencies: + python: "==2.7|>=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0e521f7a5e60d508b121d38b04874fb2 + sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c + optional: false + category: main + - name: executing + version: 1.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + optional: false + category: main + - name: idna + version: "3.4" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + - name: imagesize + version: 1.4.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.4" + url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + optional: false + category: main + - name: iniconfig + version: 2.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + - name: kiwisolver + version: 1.4.4 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.4" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py39haaf3ac1_1.tar.bz2" + hash: + md5: 5f43e4d5437b93606167c640ea2d06c1 + sha256: afe4759ca7572eb98361cd4c68ae3819a16d368c963d1134b926d2963434b3e6 + optional: false + category: main + - name: lcms2 + version: "2.14" + manager: conda + platform: osx-arm64 + dependencies: + jpeg: ">=9e,<10a" + libtiff: ">=4.5.0,<4.6.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h481adae_1.conda" + hash: + md5: aad4fc7ce783e7d109576df5a9bb78c7 + sha256: 65c0a292be935a5e499b1e782b7ddada93b16ec77fef7416e2846aa2b3e16f3b + optional: false + category: main + - name: ld64_osx-arm64 + version: "609" + manager: conda + platform: osx-arm64 + dependencies: + libcxx: "*" + libllvm14: ">=14.0.6,<14.1.0a0" + sigtool: "*" + tapi: ">=1100.0.11,<1101.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-h7167370_11.conda" + hash: + md5: 5158e240a2318c11dba7e8493bf1b42b + sha256: 0a0a9d26eb1e14d1ff4b9ee7a05eb3f338f258dd2c78a6a649d7fe9037ae5f8c + optional: false + category: main + - name: libopenblas + version: 0.3.21 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2" + hash: + md5: 2a980a5d8cc34ce70d339b983f9920de + sha256: 92e341be106c00adf1f1757ec9f9586a3848af94b434554c75dd7c5023f84ea2 + optional: false + category: main + - name: markupsafe + version: 2.1.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py39h02fc5c5_0.conda" + hash: + md5: 525d6fb3283d4b90cd9f92c9811214af + sha256: 33f4eb17d29fe5983f27ac193e1dd071857447649a6a4197f1bb0310f1928f57 + optional: false + category: main + - name: mpc + version: 1.3.1 + manager: conda + platform: osx-arm64 + dependencies: + gmp: ">=6.2.1,<7.0a0" + mpfr: ">=4.1.0,<5.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h91ba8db_0.conda" + hash: + md5: 362af269d860ae49580f8f032a68b0df + sha256: 6d8d4f8befca279f022c1c212241ad6672cb347181452555414e277484ad534c + optional: false + category: main + - name: munkres + version: 1.1.4 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + optional: false + category: main + - name: openjpeg + version: 2.5.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.6" + libpng: ">=1.6.39,<1.7.0a0" + libtiff: ">=4.5.0,<4.6.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda" + hash: + md5: c3e184f0810a4614863569488b1ac709 + sha256: 2bb159e385e633a08cc164f50b4e39fa465b85f54c376a5c20aa15f57ef407b3 + optional: false + category: main + - name: packaging + version: "23.0" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 1ff2e3ca41f0ce16afec7190db28288b + sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 + optional: false + category: main + - name: parso + version: 0.8.3 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + optional: false + category: main + - name: pickleshare + version: 0.7.5 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3" + url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + - name: pkg-config + version: 0.29.2 + manager: conda + platform: osx-arm64 + dependencies: + libglib: ">=2.70.2,<3.0a0" + libiconv: ">=1.16,<2.0.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2" + hash: + md5: 8d173d52214679033079d1b0582075aa + sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0 + optional: false + category: main + - name: pluggy + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" + hash: + md5: 7d301a0d25f424d96175f810935f0da9 + sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 + optional: false + category: main + - name: psutil + version: 5.9.4 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.4-py39h02fc5c5_0.tar.bz2" + hash: + md5: bf7577af58a627d4f3c454965b246f18 + sha256: 6c99579a51949c5a74d627c06058fa8a21a54bf088538b06061388ecf56fbe88 + optional: false + category: main + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + - name: pure_eval + version: 0.2.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + optional: false + category: main + - name: pycodestyle + version: 2.7.0 + manager: conda + platform: osx-arm64 + dependencies: + python: 2.7.*|>=3.5 + url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 0234673eb2ecfbdf4e54574ab4d95f81 + sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 + optional: false + category: main + - name: pycparser + version: "2.21" + manager: conda + platform: osx-arm64 + dependencies: + python: 2.7.*|>=3.4 + url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + - name: pyparsing + version: 3.0.9 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + - name: pysocks + version: 1.7.1 + manager: conda + platform: osx-arm64 + dependencies: + __unix: "*" + python: ">=3.8" + url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + optional: false + category: main + - name: pytz + version: 2022.7.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" + hash: + md5: f59d49a7b464901cf714b9e7984d01a2 + sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac + optional: false + category: main + - name: setuptools + version: 59.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/setuptools-59.2.0-py39h2804cbe_0.tar.bz2" + hash: + md5: 71789b9ebc713ccc0ebae4ce8e07bf71 + sha256: 83002349c6ae229f4ffa03ad2e3101121f1d47f1f04654c317d31e14528a4bfc + optional: false + category: main + - name: six + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + - name: smmap + version: 3.0.5 + manager: conda + platform: osx-arm64 + dependencies: + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" + hash: + md5: 3a8dc70789709aa315325d5df06fb7e4 + sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 + optional: false + category: main + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2" + url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + optional: false + category: main + - name: sortedcontainers + version: 2.4.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6d6552722448103793743dabfbda532d + sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 + optional: false + category: main + - name: soupsieve + version: 2.3.2.post1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 146f4541d643d48fc8a75cacf69f03ae + sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 + optional: false + category: main + - name: sphinxcontrib-applehelp + version: 1.0.4 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" + hash: + md5: 5a31a7d564f551d0e6dff52fd8cb5b16 + sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 + optional: false + category: main + - name: sphinxcontrib-devhelp + version: 1.0.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" + hash: + md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 + sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 + optional: false + category: main + - name: sphinxcontrib-htmlhelp + version: 2.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" + hash: + md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 + sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd + optional: false + category: main + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" + hash: + md5: 67cd9d9c0382d37479b4d306c369a2d4 + sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe + optional: false + category: main + - name: sphinxcontrib-qthelp + version: 1.0.3 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" + hash: + md5: d01180388e6d1838c3e1ad029590aa7a + sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 + optional: false + category: main + - name: sphinxcontrib-serializinghtml + version: 1.1.5 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" + hash: + md5: 9ff55a0901cf952f05c654394de76bf7 + sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 + optional: false + category: main + - name: toml + version: 0.10.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=2.7" + url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + - name: tomli + version: 2.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + optional: false + category: main + - name: tornado + version: "6.2" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py39h02fc5c5_1.tar.bz2" + hash: + md5: 54bb01d39f399f9e846530f824db4b03 + sha256: a09467527b27668ac2e474750d499d298053e4a0a8e87b8333359494e9d36877 + optional: false + category: main + - name: traitlets + version: 5.9.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" + hash: + md5: d0b4f5c87cd35ac3fb3d47b223263a64 + sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d + optional: false + category: main + - name: typing_extensions + version: 4.4.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" + hash: + md5: 2d93b130d148d7fc77e583677792fc6a + sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d + optional: false + category: main + - name: unicodedata2 + version: 15.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.0.0-py39h02fc5c5_0.tar.bz2" + hash: + md5: 1371c4d91f9c3edf170200a1374cb3e8 + sha256: 3c0454fd960aca8f465db69beb281bbd8b4174e3df48871b625d43b037aea671 + optional: false + category: main + - name: wheel + version: 0.38.4 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c829cfb8cb826acb9de0ac1a2df0a940 + sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 + optional: false + category: main + - name: zipp + version: 3.13.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" + hash: + md5: 41b09d997939e83b231c4557a90c3b13 + sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 + optional: false + category: main + - name: asttokens + version: 2.2.1 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.5" + six: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" + hash: + md5: bf7f54dd0f25c3f06ecb82a07341841a + sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c + optional: false + category: main + - name: babel + version: 2.11.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + pytz: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 2ea70fde8d581ba9425a761609eed6ba + sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f + optional: false + category: main + - name: backports.functools_lru_cache + version: 1.6.4 + manager: conda + platform: osx-arm64 + dependencies: + backports: "*" + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c5b3edc62d6309088f4970b3eaaa65a6 + sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 + optional: false + category: main + - name: beautifulsoup4 + version: 4.11.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" + hash: + md5: 88b59f6989f0ed5ab3433af0b82555e1 + sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 + optional: false + category: main + - name: cctools_osx-arm64 + version: 973.0.1 + manager: conda + platform: osx-arm64 + dependencies: + ld64_osx-arm64: ">=609,<610.0a0" + libcxx: "*" + libllvm14: ">=14.0.6,<14.1.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + sigtool: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-hef52d2f_11.conda" + hash: + md5: b4f37afd4ae6d094626d1cd10c4af0a8 + sha256: 434e1ae972a0cd2980c414cb3d9bf2b31518c29dfd5e0124ad30aa6d9219a8f7 + optional: false + category: main + - name: cffi + version: 1.15.1 + manager: conda + platform: osx-arm64 + dependencies: + libffi: ">=3.4,<4.0a0" + pycparser: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_3.conda" + hash: + md5: 259002f955175cc89beb8477de5de291 + sha256: 0fdb684286cb933d398d32f306a2dbbd605acafc4a0f85ebb3c54ff30d604b41 + optional: false + category: main + - name: clang + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + clang-14: "==14.0.6 default_h81a5282_0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang-14.0.6-hce30654_0.tar.bz2" + hash: + md5: 4b60f8635f0d1c6e143551fa82e91945 + sha256: a001a0aee5076c7c64f0f695f171dcc59f23ce21dd61be94352f16598833a1d5 + optional: false + category: main + - name: coverage + version: 7.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + tomli: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.1.0-py39h02fc5c5_0.conda" + hash: + md5: abe9ca542c29c3b9963f5baaf64bf827 + sha256: 57bcb6504fee2cc252ed2cec5e5aa07d10b8419f0b611078c56bc156dd7d66a1 + optional: false + category: main + - name: fonttools + version: 4.38.0 + manager: conda + platform: osx-arm64 + dependencies: + brotli: "*" + munkres: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + unicodedata2: ">=14.0.0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_1.tar.bz2" + hash: + md5: bad1666f9a5aa9743e2be7b6818d752a + sha256: 7abe958b39d09b15ec6ec4847525d77a347e43fa05d480c95ce2453f4a394006 + optional: false + category: main + - name: gfortran_impl_osx-arm64 + version: 11.3.0 + manager: conda + platform: osx-arm64 + dependencies: + gmp: ">=6.2.1,<7.0a0" + isl: ">=0.25,<0.26.0a0" + libcxx: ">=14.0.6" + libgfortran-devel_osx-arm64: 11.3.0.* + libgfortran5: ">=11.3.0" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + mpc: ">=1.2.1,<2.0a0" + mpfr: ">=4.1.0,<5.0a0" + zlib: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-11.3.0-h2a9d086_27.conda" + hash: + md5: 038e7f8ccaa6348bc5da9bd019e1bb61 + sha256: bfe545a666ae47782e0a29eed499d006903f8b374e7c733ba6e559e99d7dc553 + optional: false + category: main + - name: gitdb + version: 4.0.10 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.4" + smmap: ">=3.0.1,<4" + url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" + hash: + md5: 3706d2f3d7cb5dae600c833345a76132 + sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 + optional: false + category: main + - name: hypothesis + version: 6.68.1 + manager: conda + platform: osx-arm64 + dependencies: + attrs: ">=19.2.0" + backports.zoneinfo: ">=0.2.1" + click: ">=7.0" + exceptiongroup: ">=1.0.0rc8" + python: ">=3.8" + setuptools: "*" + sortedcontainers: ">=2.1.0,<3.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" + hash: + md5: 3c044b3b920eb287f8c095c7f086ba64 + sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 + optional: false + category: main + - name: importlib-metadata + version: 6.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" + hash: + md5: 691644becbcdca9f73243450b1c63e62 + sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca + optional: false + category: main + - name: jedi + version: 0.18.2 + manager: conda + platform: osx-arm64 + dependencies: + parso: ">=0.8.0,<0.9.0" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" + hash: + md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 + sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c + optional: false + category: main + - name: jinja2 + version: 3.1.2 + manager: conda + platform: osx-arm64 + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + - name: ld64 + version: "609" + manager: conda + platform: osx-arm64 + dependencies: + ld64_osx-arm64: "==609 h7167370_11" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h619f069_11.conda" + hash: + md5: 00e421a01015e5246eca89480c6f7264 + sha256: 2dafdecd71c4eb71524d1d9bc4df94bfd456144ddd7d88fec9813eced8993ee2 + optional: false + category: main + - name: libblas + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2" + hash: + md5: 53d6d5097f0d62e24db8c1979a21102e + sha256: 17dd67806f7e31981a1ac8abb63ed004eac416a1061c7737028f5af269430fa6 + optional: false + category: main + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + traitlets: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + - name: meson + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + ninja: ">=1.8.2" + python: ">=3.5.2" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" + hash: + md5: 4de573313958b8da6c526fdd354fffc8 + sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 + optional: false + category: main + - name: mypy + version: "0.981" + manager: conda + platform: osx-arm64 + dependencies: + mypy_extensions: ">=0.4.3" + psutil: ">=4.0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + tomli: ">=1.1.0" + typing_extensions: ">=3.10" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/mypy-0.981-py39h02fc5c5_0.tar.bz2" + hash: + md5: c9d491f73cc761dcd0f12de0b40c83c5 + sha256: b5537747d9947a0d868d1b814ddc536b9392d4697587d111113c2b685204d524 + optional: false + category: main + - name: openblas + version: 0.3.21 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + libopenblas: "==0.3.21 openmp_hc731615_3" + llvm-openmp: ">=14.0.4" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/openblas-0.3.21-openmp_hf78f355_3.tar.bz2" + hash: + md5: ff5b9fccd5f48f6d1b14c9e3859417b9 + sha256: 536b88e3a11a6d075a182506d969b98efee9d7481caf7daf9bc11ed33cdcbf0f + optional: false + category: main + - name: pexpect + version: 4.8.0 + manager: conda + platform: osx-arm64 + dependencies: + ptyprocess: ">=0.5" + python: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + - name: pillow + version: 9.4.0 + manager: conda + platform: osx-arm64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + jpeg: ">=9e,<10a" + lcms2: ">=2.14,<3.0a0" + libtiff: ">=4.5.0,<4.6.0a0" + libwebp-base: ">=1.2.4,<2.0a0" + libxcb: ">=1.13,<1.14.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + tk: ">=8.6.12,<8.7.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py39h8bd98a6_1.conda" + hash: + md5: 90500f863712b55483294662f1f5f5f1 + sha256: 3005f4fc32c370c380abc692c027a1391ab8248798153cb2eca62dfc569912f7 + optional: false + category: main + - name: pip + version: "23.0" + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.7" + setuptools: "*" + wheel: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" + hash: + md5: 85b35999162ec95f9f999bac15279c02 + sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d + optional: false + category: main + - name: pygments + version: 2.14.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + setuptools: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" + hash: + md5: c78cd16b11cd6a295484bd6c8f24bea1 + sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 + optional: false + category: main + - name: pyproject-metadata + version: 0.7.1 + manager: conda + platform: osx-arm64 + dependencies: + packaging: ">=19.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" + hash: + md5: dcb27826ffc94d5f04e241322239983b + sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee + optional: false + category: main + - name: pytest + version: 7.2.1 + manager: conda + platform: osx-arm64 + dependencies: + attrs: ">=19.2.0" + colorama: "*" + exceptiongroup: "*" + iniconfig: "*" + packaging: "*" + pluggy: ">=0.12,<2.0" + python: ">=3.8" + tomli: ">=1.0.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" + hash: + md5: f0be05afc9c9ab45e273c088e00c258b + sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b + optional: false + category: main + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + - name: typing-extensions + version: 4.4.0 + manager: conda + platform: osx-arm64 + dependencies: + typing_extensions: "==4.4.0 pyha770c72_0" + url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" + hash: + md5: be969210b61b897775a0de63cd9e9026 + sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 + optional: false + category: main + - name: brotlipy + version: 0.7.0 + manager: conda + platform: osx-arm64 + dependencies: + cffi: ">=1.0.0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py39h02fc5c5_1005.tar.bz2" + hash: + md5: cf0b1f6f29ee28e7b20d49cb66bae19e + sha256: d56a680b34d84144d396619eee5331493a9a611ee4ee21bd88a73bcac642abf4 + optional: false + category: main + - name: cctools + version: 973.0.1 + manager: conda + platform: osx-arm64 + dependencies: + cctools_osx-arm64: "==973.0.1 hef52d2f_11" + ld64: "==609 h619f069_11" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hcbb26d4_11.conda" + hash: + md5: fed06888f63eed25f43fdd6a475f9533 + sha256: 2e24a64f78b0362431d1b2f92e1986b4696b08f33cd27b2b17f8e72aa56882dc + optional: false + category: main + - name: clangxx + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + clang: "==14.0.6 hce30654_0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-14.0.6-default_hb7ecf47_0.tar.bz2" + hash: + md5: abb3bf7081791c101fcb2851c64900ca + sha256: 8b54e9ad48eac3d38c82ece984915f096be11d9279a0c59ccc0b9740e26ea58a + optional: false + category: main + - name: cryptography + version: 39.0.1 + manager: conda + platform: osx-arm64 + dependencies: + cffi: ">=1.12" + openssl: ">=3.0.8,<4.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-39.0.1-py39he2a39a8_0.conda" + hash: + md5: 8a645fce995651a072a449b23a713954 + sha256: d7a28a987198925ccc2a6f7d9b2e5e6da0fa97b5f18f844ff4aae1a2c57ec3f7 + optional: false + category: main + - name: gitpython + version: 3.1.30 + manager: conda + platform: osx-arm64 + dependencies: + gitdb: ">=4.0.1,<5" + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" + hash: + md5: 0c217ab2f5ef6925e4e52c70b57cfc4a + sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 + optional: false + category: main + - name: libcblas + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: "==3.9.0 16_osxarm64_openblas" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2" + hash: + md5: c7cfc18378f00d3faf7f8a9a2553be3c + sha256: 99a04c6a273e76b01ace4f3a8f333b96a76b7351a155aaeba179e283da5c264e + optional: false + category: main + - name: liblapack + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: "==3.9.0 16_osxarm64_openblas" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2" + hash: + md5: 52d270c579bfca986d6cdd81eb5ed6e7 + sha256: 87204cb0ff22f260b3aa5fc7c938157b471eb2bd287acf1ba7e61a67f86ba959 + optional: false + category: main + - name: meson-python + version: 0.12.0 + manager: conda + platform: osx-arm64 + dependencies: + colorama: "*" + meson: ">=0.63.3" + ninja: "*" + pyproject-metadata: ">=0.6.1" + python: ">=3.7" + tomli: ">=1.0.0" + typing-extensions: ">=3.7.4" + wheel: ">=0.36.0" + url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" + hash: + md5: dc566efe9c7af4eb305402b5c6121ca3 + sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da + optional: false + category: main + - name: pytest-cov + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + coverage: ">=5.2.1" + pytest: ">=4.6" + python: ">=3.6" + toml: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 + sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 + optional: false + category: main + - name: pytest-xdist + version: 3.2.0 + manager: conda + platform: osx-arm64 + dependencies: + execnet: ">=1.1" + pytest: ">=6.2.0" + python: ">=3.7" + url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" + hash: + md5: 70ab87b96126f35d1e68de2ad9fb6423 + sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 + optional: false + category: main + - name: stack_data + version: 0.6.2 + manager: conda + platform: osx-arm64 + dependencies: + asttokens: "*" + executing: "*" + pure_eval: "*" + python: ">=3.5" + url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + optional: false + category: main + - name: wcwidth + version: 0.2.6 + manager: conda + platform: osx-arm64 + dependencies: + backports.functools_lru_cache: "*" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" + hash: + md5: 078979d33523cb477bd1916ce41aacc9 + sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 + optional: false + category: main + - name: compiler-rt_osx-arm64 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + clang: 14.0.6.* + clangxx: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-14.0.6-h48302dc_0.tar.bz2" + hash: + md5: ebcb473032038866101b70f9f270a9a2 + sha256: f9f63e8779ff31368cc92ee668308c8e7e974f68457f62148c5663aa0136a42d + optional: false + category: main + - name: numpy + version: 1.24.2 + manager: conda + platform: osx-arm64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.6" + liblapack: ">=3.9.0,<4.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py39hff61c6a_0.conda" + hash: + md5: 894fca4ee0ea0bfef6ebca15d6d8196e + sha256: 6c0ed2591695627ff4789d14def1868afa43395c7af0db4c97878a6abc27e5e5 + optional: false + category: main + - name: prompt-toolkit + version: 3.0.36 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + wcwidth: "*" + url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" + hash: + md5: 4d79ec192e0bfd530a254006d123b9a6 + sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 + optional: false + category: main + - name: pyopenssl + version: 23.0.0 + manager: conda + platform: osx-arm64 + dependencies: + cryptography: ">=38.0.0,<40" + python: ">=3.6" + url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" + hash: + md5: d41957700e83bbb925928764cb7f8878 + sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 + optional: false + category: main + - name: compiler-rt + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + clang: 14.0.6.* + clangxx: 14.0.6.* + compiler-rt_osx-arm64: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-14.0.6-h30b49de_0.tar.bz2" + hash: + md5: b88a5457fa7def557e5902046ab56b6e + sha256: 266578ae49450e6b4a778b454f8e7fd988676dd9146bb186093066ab1589ba06 + optional: false + category: main + - name: contourpy + version: 1.0.7 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.6" + numpy: ">=1.16" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py39haaf3ac1_0.conda" + hash: + md5: 221d648082c1ebdd89e6968441b5a9c5 + sha256: 141e4de214f13537aee7acfa3ed49e43346af017d66030794cd0a4f62ceda9e6 + optional: false + category: main + - name: ipython + version: 8.10.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: "*" + appnope: "*" + backcall: "*" + decorator: "*" + jedi: ">=0.16" + matplotlib-inline: "*" + pexpect: ">4.3" + pickleshare: "*" + prompt-toolkit: ">=3.0.30,<3.1.0" + pygments: ">=2.4.0" + python: ">=3.8" + stack_data: "*" + traitlets: ">=5" + url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda" + hash: + md5: e67b634578fefbb312cd6cfd34b63d86 + sha256: 5951fbddbd8be803c38b75d7d34ff78d366e57e55a7afa2604be6fd0abacb882 + optional: false + category: main + - name: pandas + version: 1.5.3 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: ">=14.0.6" + numpy: ">=1.20.3,<2.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.8.1" + python_abi: 3.9.* *_cp39 + pytz: ">=2020.1" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py39hde7b980_0.conda" + hash: + md5: 694bdfe194977ddb7588e05f57ce295c + sha256: 1906573ea1ab24667c120984c840b9550a2fab8eba699ae659a49824661fc30c + optional: false + category: main + - name: urllib3 + version: 1.26.14 + manager: conda + platform: osx-arm64 + dependencies: + brotlipy: ">=0.6.0" + certifi: "*" + cryptography: ">=1.3.4" + idna: ">=2.0.0" + pyopenssl: ">=0.14" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + python: "<4.0" + url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" + hash: + md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 + sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 + optional: false + category: main + - name: clang_osx-arm64 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + cctools_osx-arm64: "*" + clang: 14.0.6.* + compiler-rt: 14.0.6.* + ld64_osx-arm64: "*" + llvm-tools: 14.0.6.* + url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-14.0.6-h15773ab_4.conda" + hash: + md5: d0db37e26bfd89ca03a40a5b8ce15635 + sha256: 4d23a3b87660ee13516d9d04da665587d488b791eb8300da1a0e6c93f6d8aaf8 + optional: false + category: main + - name: matplotlib-base + version: 3.6.3 + manager: conda + platform: osx-arm64 + dependencies: + certifi: ">=2020.6.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libcxx: ">=14.0.6" + numpy: ">=1.20.3,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.9,<3.10.0a0 *_cpython" + python-dateutil: ">=2.7" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.6.3-py39h35e9e80_0.conda" + hash: + md5: 6699bbc7c73575331a5dc91f83fffc47 + sha256: 3df1794307e98ed49b8c3f8ca14c87b220b79ed56e4fcb7c74b0604ef35b36e0 + optional: false + category: main + - name: requests + version: 2.28.2 + manager: conda + platform: osx-arm64 + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + python: ">=3.7,<4.0" + urllib3: ">=1.21.1,<1.27" + url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" + hash: + md5: 11d178fc55199482ee48d6812ea83983 + sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a + optional: false + category: main + - name: c-compiler + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + cctools: ">=949.0.1" + clang_osx-arm64: 14.* + ld64: ">=530" + llvm-openmp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.5.2-h5008568_0.conda" + hash: + md5: 56a88306583601d05b6eeded173d73d9 + sha256: 54fabbef178e857a639a9c7a302cdab072ca5c2b94052ac939a7ebcf9dad32e4 + optional: false + category: main + - name: clangxx_osx-arm64 + version: 14.0.6 + manager: conda + platform: osx-arm64 + dependencies: + clang_osx-arm64: "==14.0.6 h15773ab_4" + clangxx: 14.0.6.* + libcxx: ">=14.0.6" + libllvm14: ">=14.0.6,<14.1.0a0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-14.0.6-he29aa18_4.conda" + hash: + md5: 85157d29e430829c4cc5b1f152306f9b + sha256: 87d60f5785f2ab4fe119eb43d7c9ae6a7f6a064ebf95409b0165e0fc6c3a2258 + optional: false + category: main + - name: gfortran_osx-arm64 + version: 11.3.0 + manager: conda + platform: osx-arm64 + dependencies: + cctools_osx-arm64: "*" + clang: "*" + clang_osx-arm64: "*" + gfortran_impl_osx-arm64: "==11.3.0" + ld64_osx-arm64: "*" + libgfortran: 5.* + libgfortran-devel_osx-arm64: "==11.3.0" + libgfortran5: ">=11.3.0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-11.3.0-h57527a5_0.tar.bz2" + hash: + md5: ebf560369c33d9a4f568a2c5b5922b52 + sha256: f8372955a71bef3ae6f06df20d164a9aeb233a4553c7eb92cb8c0d8bae445d6f + optional: false + category: main + - name: matplotlib + version: 3.6.3 + manager: conda + platform: osx-arm64 + dependencies: + matplotlib-base: ">=3.6.3,<3.6.4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + tornado: ">=5" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.6.3-py39hdf13c20_0.conda" + hash: + md5: dc01380d1f0fd2946d0b2b822acf18d6 + sha256: d78938af23d11a6535ffa5bd75be4c43f81079b9d659869781a0d454ca19ff1c + optional: false + category: main + - name: pooch + version: 1.6.0 + manager: conda + platform: osx-arm64 + dependencies: + appdirs: ">=1.3.0" + packaging: ">=20.0" + python: ">=3.6" + requests: ">=2.19.0" + url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 6429e1d1091c51f626b5dcfdd38bf429 + sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 + optional: false + category: main + - name: sphinx + version: 5.3.0 + manager: conda + platform: osx-arm64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.14,<0.20" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.12" + python: ">=3.7" + requests: ">=2.5.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "*" + sphinxcontrib-devhelp: "*" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "*" + sphinxcontrib-qthelp: "*" + sphinxcontrib-serializinghtml: ">=1.1.5" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: f9e1fcfe235d655900bfeb6aee426472 + sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 + optional: false + category: main + - name: breathe + version: 4.34.0 + manager: conda + platform: osx-arm64 + dependencies: + docutils: ">=0.12" + jinja2: ">=2.7.3" + markupsafe: ">=0.23" + pygments: ">=1.6" + python: ">=3.6" + sphinx: ">=4.0,<6.0.0a" + url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: a2a04f8e8c2d91adb08ff929b4d73654 + sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 + optional: false + category: main + - name: cxx-compiler + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + c-compiler: "==1.5.2 h5008568_0" + clangxx_osx-arm64: 14.* + url: "https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.5.2-hffc8910_0.conda" + hash: + md5: 3dd2dd956573a59e32711e2e08bb5d8b + sha256: 84f23671f8b18aeabcfd4b5315383442c3bdff3c9194b85c30ec5690d14e721a + optional: false + category: main + - name: gfortran + version: 11.3.0 + manager: conda + platform: osx-arm64 + dependencies: + cctools: "*" + gfortran_osx-arm64: "*" + ld64: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-11.3.0-h1ca8e4b_0.tar.bz2" + hash: + md5: 75b415dac7f64e2af572a24469b581d4 + sha256: 8422479e2ef6937956635ad70303b9dc1aa82d7fde70a49fac4759e73a022464 + optional: false + category: main + - name: numpydoc + version: 1.4.0 + manager: conda + platform: osx-arm64 + dependencies: + jinja2: ">=2.10" + python: ">=3.7" + sphinx: ">=1.8" + url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: 0aac89c61a466b0f9c4fd0ec44d81f1d + sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 + optional: false + category: main + - name: pydata-sphinx-theme + version: 0.9.0 + manager: conda + platform: osx-arm64 + dependencies: + beautifulsoup4: "*" + docutils: "!=0.17.0" + packaging: "*" + python: ">=3.7" + sphinx: ">=4.0.2" + url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" + hash: + md5: ed5f1236283219a21207813d387b44bd + sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c + optional: false + category: main + - name: scipy + version: 1.10.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.6" + libgfortran: 5.* + libgfortran5: ">=11.3.0" + liblapack: ">=3.9.0,<4.0a0" + numpy: ">=1.20.3,<2.0a0" + pooch: "*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + url: "https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.0-py39h18313fe_2.conda" + hash: + md5: fdd930b6cca23bb9867e4731fa345d6a + sha256: 165e1537c6a7b43e0f112df5e81691aa192d6614f4ff5229721bf9f493ff90ee + optional: false + category: main + - name: sphinx-design + version: 0.3.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ">=3.6" + sphinx: ">=4,<6" + url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" + hash: + md5: 83d1a712e6d2bab6b298b1d2f42ad355 + sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 + optional: false + category: main + - name: fortran-compiler + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + cctools: ">=949.0.1" + gfortran: "*" + gfortran_osx-arm64: 11.* + ld64: ">=530" + llvm-openmp: "*" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.5.2-h2ccabda_0.conda" + hash: + md5: 21d7e4d79b87bf28d865241f7dff5629 + sha256: d5b7b998c28252a1a7ee07d4558c89ba0fa43fa12b27f336ab02115e18add806 + optional: false + category: main + - name: compilers + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + c-compiler: "==1.5.2 h5008568_0" + cxx-compiler: "==1.5.2 hffc8910_0" + fortran-compiler: "==1.5.2 h2ccabda_0" + url: "https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.5.2-hce30654_0.conda" + hash: + md5: 4bf0aaf590a633d103a70841bb9f2f2e + sha256: 9a21d680350cf836160476852d18f2fdfb3c95ea9556d061dc08422907c02c1e + optional: false + category: main +version: 1 + diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index a6388f1d1..1805076ff 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -1,4 +1,5 @@ use std::borrow::Cow; +use std::cell::RefCell; use std::collections::Bound; use std::hash::{Hash, Hasher}; use std::ops::RangeBounds; @@ -214,7 +215,7 @@ impl Version { /// Returns the individual segments of the version. fn segments( &self, - ) -> impl Iterator + DoubleEndedIterator + ExactSizeIterator + '_ { + ) -> impl Iterator> + DoubleEndedIterator + ExactSizeIterator + '_ { let mut idx = if self.has_epoch() { 1 } else { 0 }; let version_segments = if let Some(local_index) = self.local_segment_index() { &self.segments[..local_index] @@ -223,10 +224,12 @@ impl Version { }; version_segments.iter().map(move |&segment| { let start = idx; - let len = segment.len() as usize; - let end = idx + len; - idx += len; - &self.components[start..end] + idx += segment.len() as usize; + SegmentIter { + offset: start, + version: self, + segment, + } }) } @@ -273,20 +276,22 @@ impl Version { /// ``` fn local_segments( &self, - ) -> impl Iterator + DoubleEndedIterator + ExactSizeIterator + '_ { + ) -> impl Iterator> + DoubleEndedIterator + ExactSizeIterator + '_ { if let Some(start) = self.local_segment_index() { let mut idx = if self.has_epoch() { 1 } else { 0 }; idx += self.segments[..start] .iter() .map(|segment| segment.len()) - .sum::() as usize; + .sum::(); let version_segments = &self.segments[start..]; - Either::Left(version_segments.iter().map(move |segment| { + Either::Left(version_segments.iter().map(move |&segment| { let start = idx; - let len = segment.len() as usize; - let end = idx + len; - idx += len; - &self.components[start..end] + idx += segment.len(); + SegmentIter { + offset: start, + version: self, + segment, + } })) } else { Either::Right(iter::empty()) @@ -300,8 +305,17 @@ impl Version { let major_segment = segments.next()?; let minor_segment = segments.next()?; - if major_segment.len() == 1 && minor_segment.len() == 1 { - Some((major_segment[0].as_number()?, minor_segment[0].as_number()?)) + if major_segment.component_count() == 1 && minor_segment.component_count() == 1 { + Some(( + major_segment + .components() + .next() + .and_then(|c| c.as_number())?, + minor_segment + .components() + .next() + .and_then(|c| c.as_number())?, + )) } else { None } @@ -312,7 +326,7 @@ impl Version { /// If a version has a single component named "dev" it is considered to be a dev version. pub fn is_dev(&self) -> bool { self.segments() - .flatten() + .flat_map(|segment| segment.components()) .any(|component| component.as_string() == Some("dev")) } @@ -333,40 +347,6 @@ impl Version { && segments_starts_with(self.local_segments(), other.local_segments()) } - /// Returns the canonical string representation of the version. This is all segments joined by dots. - pub fn canonical(&self) -> String { - fn format_components(components: &[Component]) -> impl Display { - // Skip first component if its default and followed by a non-numeral - let components = if components.len() > 1 - && components[0] == Component::default() - && components[1].as_number().is_none() - { - &components[1..] - } else { - components - }; - components.iter().join("") - } - - fn format_segments<'i, I: Iterator + 'i>( - segments: I, - ) -> impl Display + 'i { - segments.format_with(".", |components, f| f(&format_components(components))) - } - - let epoch = self.epoch(); - let epoch_display = (epoch != 0) - .then(|| format!("{}!", epoch)) - .unwrap_or_default(); - let segments_display = format_segments(self.segments()); - let local_display = self - .has_local() - .then(|| format!("+{}", format_segments(self.local_segments()))) - .unwrap_or_default(); - - format!("{}{}{}", epoch_display, segments_display, local_display) - } - /// Returns a new version with only the given segments. /// /// Calling this function on a version that looks like `1.3a.4-alpha3` with the range `[1..3]` @@ -392,7 +372,7 @@ impl Version { } let mut components = SmallVec::<[Component; 3]>::default(); - let mut segments = SmallVec::<[u16; 4]>::default(); + let mut segments = SmallVec::<[Segment; 4]>::default(); // Copy the epoch if self.has_epoch() { @@ -400,22 +380,29 @@ impl Version { } // Copy the segments and components of the common version - for segment_components in self + for (segment_idx, segment_iter) in self .segments() .skip(start_segment_idx) .take(end_segment_idx - start_segment_idx) + .enumerate() { - segments.push(segment_components.len() as _); - for component in segment_components { + let segment = if segment_idx == 0 { + segment_iter.segment.without_separator() + } else { + segment_iter.segment + }; + segments.push(segment); + + for component in segment_iter.components() { components.push(component.clone()); } } // Copy the segments and components of the local version let local_start_idx = segments.len(); - for segment_components in self.local_segments() { - segments.push(segment_components.len() as _); - for component in segment_components { + for segment_iter in self.local_segments() { + segments.push(segment_iter.segment); + for component in segment_iter.components() { components.push(component.clone()); } } @@ -450,7 +437,7 @@ impl Version { if let Some(local_index) = self.local_segment_index() { local_index } else { - self.segment_lengths.len() + self.segments.len() } } @@ -459,7 +446,7 @@ impl Version { pub fn strip_local(&self) -> Cow<'_, Version> { if self.has_local() { let mut components = SmallVec::<[Component; 3]>::default(); - let mut segment_lengths = SmallVec::<[u16; 4]>::default(); + let mut segments = SmallVec::<[Segment; 4]>::default(); let mut flags = 0; // Add the epoch @@ -469,9 +456,9 @@ impl Version { } // Copy the segments - for segment in self.segments() { - segment_lengths.push(segment.len() as _); - for component in segment.iter() { + for segment_iter in self.segments() { + segments.push(segment_iter.segment); + for component in segment_iter.components() { components.push(component.clone()); } } @@ -479,7 +466,7 @@ impl Version { Cow::Owned(Version { norm: None, components, - segment_lengths, + segments, flags, }) } else { @@ -492,8 +479,8 @@ impl Version { fn segments_starts_with< 'a, 'b, - A: Iterator + 'a, - B: Iterator + 'a, + A: Iterator> + 'a, + B: Iterator> + 'b, >( a: A, b: B, @@ -504,7 +491,7 @@ fn segments_starts_with< EitherOrBoth::Left(_) => return true, EitherOrBoth::Right(_) => return false, }; - for values in left.iter().zip_longest(right.iter()) { + for values in left.components().zip_longest(right.components()) { if !match values { EitherOrBoth::Both(a, b) => a == b, EitherOrBoth::Left(_) => return true, @@ -519,11 +506,15 @@ fn segments_starts_with< impl PartialEq for Version { fn eq(&self, other: &Self) -> bool { - fn segments_equal<'i, I: Iterator>(a: I, b: I) -> bool { + fn segments_equal<'i, I: Iterator>>(a: I, b: I) -> bool { for ranges in a.zip_longest(b) { - let (a_range, b_range) = ranges.or_default(); + let (a_range, b_range) = ranges.map_any(Some, Some).or_default(); let default = Component::default(); - for components in a_range.iter().zip_longest(b_range.iter()) { + for components in a_range + .iter() + .flat_map(SegmentIter::components) + .zip_longest(b_range.iter().flat_map(SegmentIter::components)) + { let (a_component, b_component) = match components { EitherOrBoth::Left(l) => (l, &default), EitherOrBoth::Right(r) => (&default, r), @@ -545,7 +536,7 @@ impl PartialEq for Version { impl Hash for Version { fn hash(&self, state: &mut H) { - fn hash_segments<'i, I: Iterator, H: Hasher>( + fn hash_segments<'i, I: Iterator>, H: Hasher>( state: &mut H, segments: I, ) { @@ -555,7 +546,7 @@ impl Hash for Version { // number of default components in each segment. The get an equivalent hash we skip // trailing default components when computing the hash segment - .iter() + .components() .rev() .skip_while(|c| **c == default) .for_each(|c| c.hash(state)); @@ -568,35 +559,75 @@ impl Hash for Version { } } -/// A helper function to display the segments of a [`Version`] -fn format_segments<'i, I: Iterator>( - segments: I, -) -> impl fmt::Display + fmt::Debug { - format!( - "[{}]", - segments.format_with(", ", |components, f| f(&format_args!( - "[{}]", - components.iter().format(", ") - ))) - ) -} - impl Debug for Version { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.debug_struct("Version") .field("norm", &self.norm) - .field( - "version", - &format_segments( - iter::once([Component::Numeral(self.epoch())].as_slice()) - .chain(self.segments()), - ), - ) - .field("local", &format_segments(self.local_segments())) + .field("epoch", &self.epoch_opt()) + .field("version", &SegmentFormatter::from(self.segments())) + .field("local", &SegmentFormatter::from(self.local_segments())) .finish() } } +/// A helper struct to format an iterator of [`SegmentIter`]. Implements both [`std::fmt::Debug`] +/// where segments are displayed as an array of arrays (e.g. `[[1], [2,3,4]]`) and +/// [`std::fmt::Display`] where segments are display in their canonical form (e.g. `1.2-rc2`). +struct SegmentFormatter<'v, I: Iterator> + 'v> { + inner: RefCell>, +} + +impl<'v, I: Iterator> + 'v> From for SegmentFormatter<'v, I> { + fn from(value: I) -> Self { + Self { + inner: RefCell::new(Some(value)), + } + } +} + +impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatter<'v, I> { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + let iter = match self.inner.borrow_mut().take() { + Some(iter) => iter, + None => panic!("was already formatted once"), + }; + + write!(f, "[")?; + for (idx, segment) in iter.enumerate() { + if idx > 0 { + write!(f, ", ")?; + } + write!(f, "[{}]", segment.components().format(", "))?; + } + write!(f, "]")?; + + Ok(()) + } +} + +impl<'v, I: Iterator> + 'v> fmt::Display for SegmentFormatter<'v, I> { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + let iter = match self.inner.borrow_mut().take() { + Some(iter) => iter, + None => panic!("was already formatted once"), + }; + + for segment in iter { + if let Some(separator) = segment.separator() { + write!(f, "{separator}")?; + } + let mut components = segment.components(); + if segment.has_implicit_default() { + let _ = components.next(); + } + for component in components { + write!(f, "{component}")?; + } + } + Ok(()) + } +} + /// Either a number, literal or the infinity. #[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize)] enum Component { @@ -705,10 +736,14 @@ impl Display for Component { impl Ord for Version { fn cmp(&self, other: &Self) -> Ordering { - fn cmp_segments<'i, I: Iterator>(a: I, b: I) -> Ordering { + fn cmp_segments<'i, I: Iterator>>(a: I, b: I) -> Ordering { for ranges in a.zip_longest(b) { - let (a_range, b_range) = ranges.or_default(); - for components in a_range.iter().zip_longest(b_range.iter()) { + let (a_range, b_range) = ranges.map_any(Some, Some).or_default(); + for components in a_range + .iter() + .flat_map(SegmentIter::components) + .zip_longest(b_range.iter().flat_map(SegmentIter::components)) + { let default = Component::default(); let (a_component, b_component) = match components { EitherOrBoth::Left(l) => (l, &default), @@ -740,10 +775,16 @@ impl PartialOrd for Version { impl Display for Version { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - match &self.norm { - None => write!(f, "{}", self.canonical()), - Some(norm) => write!(f, "{}", norm.as_ref()), + if let Some(epoch) = self.epoch_opt() { + write!(f, "{epoch}!")?; } + + write!(f, "{}", SegmentFormatter::from(self.segments()))?; + if self.has_local() { + write!(f, "+{}", SegmentFormatter::from(self.local_segments()))?; + } + + return Ok(()); } } @@ -761,13 +802,66 @@ impl<'de> Deserialize<'de> for Version { where D: Deserializer<'de>, { - Cow::<'de, str>::deserialize()? + Cow::<'de, str>::deserialize(deserializer)? .as_ref() .parse() .map_err(|err| D::Error::custom(err)) } } +struct SegmentIter<'v> { + /// Information about the segment we are iterating. + segment: Segment, + + /// Offset in the components of the version. + offset: usize, + + /// The version to which the segment belongs + version: &'v Version, +} + +impl<'v> SegmentIter<'v> { + /// Returns true if the first component is an implicit default added while parsing the version. + /// E.g. `2.a` is represented as `2.0a`. The `0` is added implicitly. + pub fn has_implicit_default(&self) -> bool { + self.segment.has_implicit_default() + } + + /// Returns the separator that is found in from of this segment or `None` if this segment was + /// not preceded by a separator. + pub fn separator(&self) -> Option { + self.segment.separator() + } + + /// Returns the number of components stored in the version. Note that the number of components + /// returned by [`Self::components`] might differ because it might include an implicit default. + pub fn component_count(&self) -> usize { + self.segment.len() + } + + /// Returns an iterator over the components of this segment. + pub fn components(&self) -> impl Iterator + DoubleEndedIterator { + static IMPLICIT_DEFAULT: Component = Component::Numeral(0); + + let version = self.version; + + // Create an iterator over all component + let segment_components = (self.offset..self.offset + self.segment.len()) + .map(move |idx| &version.components[idx]); + + // Add an implicit default if this segment has one + let implicit_default_component = self + .segment + .has_implicit_default() + .then_some(&IMPLICIT_DEFAULT); + + // Join the two iterators together to get all the components of this segment. + implicit_default_component + .into_iter() + .chain(segment_components) + } +} + #[cfg(test)] mod test { use std::cmp::Ordering; @@ -776,7 +870,6 @@ mod test { use std::collections::hash_map::DefaultHasher; use std::hash::{Hash, Hasher}; - use crate::version::Segment; use rand::seq::SliceRandom; use super::Version; @@ -973,7 +1066,11 @@ mod test { assert_eq!( Version::from_str("1.1l").unwrap().bump(), Version::from_str("1.2l").unwrap() - ) + ); + assert_eq!( + Version::from_str("1.alpha").unwrap().bump(), + Version::from_str("1.2alpha").unwrap() + ); } #[test] @@ -1046,17 +1143,17 @@ mod test { #[test] fn canonical() { - assert_eq!(Version::from_str("1.2.3").unwrap().canonical(), "1.2.3"); - assert_eq!(Version::from_str("1!1.2.3").unwrap().canonical(), "1!1.2.3"); + assert_eq!(Version::from_str("1.2.3").unwrap().to_string(), "1.2.3"); + assert_eq!(Version::from_str("1!1.2.3").unwrap().to_string(), "1!1.2.3"); assert_eq!( - Version::from_str("1.2.3-alpha.2").unwrap().canonical(), - "1.2.3.alpha.2" + Version::from_str("1.2.3-alpha.2").unwrap().to_string(), + "1.2.3-alpha.2" ); assert_eq!( Version::from_str("1!1.2.3-alpha.2+3beta5rc") .unwrap() - .canonical(), - "1!1.2.3.alpha.2+3beta5rc" + .to_string(), + "1!1.2.3-alpha.2+3beta5rc" ); } diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 29afebabb..b0eba1b67 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,4 +1,5 @@ use super::{Component, Version}; +use crate::version::segment::Segment; use crate::version::{EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET}; use nom::branch::alt; use nom::bytes::complete::{tag_no_case, take_while}; @@ -18,7 +19,6 @@ use std::{ str::FromStr, }; use thiserror::Error; -use crate::version::segment::Segment; /// An error that occurred during parsing of a string to a version. #[derive(Debug, Clone, Eq, PartialEq)] @@ -171,7 +171,7 @@ fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVers /// Parses a version segment from a list of components. fn segment_parser<'i, 'c>( components: &'c mut SmallVec<[Component; 3]>, -) -> impl Parser<&'i str, u16, ParseVersionErrorKind> + 'c { +) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + 'c { move |input| { // Parse the first component of the segment let (mut rest, first_component) = match component_parser(input) { @@ -184,15 +184,12 @@ fn segment_parser<'i, 'c>( // If the first component is not numeric we add a default component since each segment must // always start with a number. - let mut segment_length = 0; - if !first_component.is_numeric() { - components.push(Component::default()); - segment_length += 1; - } + let mut component_count = 0u16; + let has_implicit_default = !first_component.is_numeric(); // Add the first component components.push(first_component); - segment_length += 1; + component_count += 1; // Loop until we can't find any more components loop { @@ -200,14 +197,14 @@ fn segment_parser<'i, 'c>( Ok((i, o)) => (i, o), Err(e) => { // Remove any components that we may have added. - components.drain(components.len() - segment_length..); + components.drain(components.len() - (component_count as usize)..); return Err(e); } }; match component { Some(component) => { components.push(component); - segment_length = match segment_length.checked_add(1) { + component_count = match component_count.checked_add(1) { Some(length) => length, None => { return Err(nom::Err::Error( @@ -217,7 +214,13 @@ fn segment_parser<'i, 'c>( } } None => { - break Ok((remaining, segment_length.try_into().unwrap())); + let segment = Segment::new(component_count) + .ok_or_else(|| { + nom::Err::Error(ParseVersionErrorKind::TooManyComponentsInASegment) + })? + .with_implicit_default(has_implicit_default); + + break Ok((remaining, segment)); } } rest = remaining; @@ -227,16 +230,16 @@ fn segment_parser<'i, 'c>( fn final_version_part_parser<'i>( components: &mut SmallVec<[Component; 3]>, - segment_lengths: &mut SmallVec<[u16; 4]>, + segments: &mut SmallVec<[Segment; 4]>, input: &'i str, dash_or_underscore: Option, ) -> Result, nom::Err> { let mut dash_or_underscore = dash_or_underscore; - let first_segment_idx = segment_lengths.len(); + let first_segment_idx = segments.len(); // Parse the first segment of the version. It must exists. let (mut input, first_segment_length) = segment_parser(components).parse(input)?; - segment_lengths.push(first_segment_length); + segments.push(first_segment_length); let result = loop { // Parse either eof or a version segment separator. let (rest, separator) = match alt((map(one_of("-._"), Some), value(None, eof)))(input) { @@ -262,18 +265,22 @@ fn final_version_part_parser<'i>( } // Parse the next segment. - let (rest, segment_length) = match segment_parser(components).parse(rest) { + let (rest, segment) = match segment_parser(components).parse(rest) { Ok(result) => result, Err(e) => break Err(e), }; - segment_lengths.push(segment_length); + segments.push( + segment + .with_separator(Some(separator)) + .expect("unrecognized separator"), + ); input = rest; }; // If there was an error, revert the `segment_lengths` array. if result.is_err() { - segment_lengths.drain(first_segment_idx..); + segments.drain(first_segment_idx..); } result @@ -302,11 +309,11 @@ pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVers // Parse the common version part let dash_or_underscore = - final_version_part_parser(&mut components, &mut segment_lengths, common_part, None)?; + final_version_part_parser(&mut components, &mut segments, common_part, None)?; // Parse the local version part if let Some(local_part) = local_part { - let first_local_segment_idx = segment_lengths.len(); + let first_local_segment_idx = segments.len(); // Check if there are not too many segments. if first_local_segment_idx > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { @@ -326,7 +333,7 @@ pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVers // Parse the segments final_version_part_parser( &mut components, - &mut segment_lengths, + &mut segments, local_part, dash_or_underscore, )?; @@ -469,7 +476,7 @@ impl FromStr for Version { fn split_component<'a>( segments_iter: impl Iterator, - segments: &mut SmallVec<[u16; 4]>, + segments: &mut SmallVec<[Segment; 4]>, components: &mut SmallVec<[Component; 3]>, ) -> Result<(), ParseVersionErrorKind> { for component in segments_iter { @@ -492,15 +499,11 @@ impl FromStr for Version { .peekable(); // A segment must always starts with a numeral - let mut component_count = 0u16; - if !matches!(atoms.peek(), Some(&Ok(Component::Numeral(_)))) { - components.push(Component::Numeral(0)); - component_count = component_count - .checked_add(1) - .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)?; - } + let has_implicit_default = + !matches!(atoms.peek(), Some(&Ok(Component::Numeral(_)))); // Add the components + let mut component_count = 0u16; for component in atoms { components.push(component?); component_count = component_count @@ -509,7 +512,11 @@ impl FromStr for Version { } // Add the segment information - segments.push(Segment::new(component_count)); + segments.push( + Segment::new(component_count) + .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)? + .with_implicit_default(has_implicit_default), + ); } Ok(()) @@ -550,9 +557,10 @@ impl FromStr for Version { #[cfg(test)] mod test { - use crate::version::{parse::final_version_parser, Version}; + use super::{final_version_parser, Version}; use serde::Serialize; use std::collections::BTreeMap; + use std::fmt::{Display, Formatter}; #[test] fn test_parse() { @@ -577,7 +585,7 @@ mod test { "1___", ]; - #[derive(Serialize)] + #[derive(Debug, Serialize)] #[serde(untagged)] enum VersionOrError { Version(Version), @@ -585,14 +593,28 @@ mod test { } let mut index_map: BTreeMap = BTreeMap::default(); - for version in versions { - let version_or_error = match final_version_parser(version) { - Ok(version) => VersionOrError::Version(version), + for version_str in versions { + let version_or_error = match final_version_parser(version_str) { + Ok(version) => { + assert_eq!(version_str, version.to_string().as_str()); + VersionOrError::Version(version) + } Err(e) => VersionOrError::Error(e.to_string()), }; - index_map.insert(version.to_owned(), version_or_error); + index_map.insert(version_str.to_owned(), version_or_error); } - insta::assert_toml_snapshot!(index_map); + insta::assert_debug_snapshot!(index_map); + } + + struct DisplayAsDebug(T); + + impl Display for DisplayAsDebug + where + for<'i> &'i T: std::fmt::Debug, + { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + write!(f, "{:?}", &self.0) + } } } diff --git a/crates/rattler_conda_types/src/version/segment.rs b/crates/rattler_conda_types/src/version/segment.rs index b3b5fe8b3..71d6ee998 100644 --- a/crates/rattler_conda_types/src/version/segment.rs +++ b/crates/rattler_conda_types/src/version/segment.rs @@ -36,8 +36,8 @@ impl Segment { } /// Returns the number of components in this segment - pub fn len(self) -> u16 { - (self.0 >> COMPONENT_COUNT_OFFSET) & COMPONENT_COUNT_MASK + pub fn len(self) -> usize { + ((self.0 >> COMPONENT_COUNT_OFFSET) & COMPONENT_COUNT_MASK) as usize } /// Sets whether the segment starts with an implicit default `Component`. This is the case when @@ -71,6 +71,11 @@ impl Segment { )) } + /// Removes the separator from this segment + pub fn without_separator(self) -> Self { + Self(self.0 & !(SEGMENT_SEPARATOR_MASK << SEGMENT_SEPARATOR_OFFSET)) + } + /// Returns the separator that precedes this segment or `None` if there is no separator. pub fn separator(self) -> Option { match (self.0 >> SEGMENT_SEPARATOR_OFFSET) & SEGMENT_SEPARATOR_MASK { @@ -104,10 +109,7 @@ mod test { assert_eq!(Segment::new(8191).unwrap().len(), 8191); assert_eq!(Segment::new(8192), None); - assert_eq!( - Segment::new(4096).unwrap().has_implicit_default(), - false - ); + assert_eq!(Segment::new(4096).unwrap().has_implicit_default(), false); assert_eq!( Segment::new(4096) .unwrap() diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index e3daf53d9..8d02ded34 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -1,22 +1,113 @@ --- source: crates/rattler_conda_types/src/version/parse.rs +assertion_line: 607 expression: index_map --- -"$" = 'expected a version component e.g. `2` or `rc`' -"." = 'expected a version component e.g. `2` or `rc`' -"1!1.2a.3-rc1" = '1!1.2a.3.rc1' -"1+" = 'expected a version component e.g. `2` or `rc`' -"1+$" = 'expected a version component e.g. `2` or `rc`' -"1+." = 'expected a version component e.g. `2` or `rc`' -"1+2" = '1+2' -1-2-3 = '1.2.3' -1-2-3_ = '1.2.3_' -1-2_3 = 'cannot use both underscores and dashes as version segment seperators' -"1.0.1_" = '1.0.1_' -"1.0.1post.za" = '1.0.1post.za' -"1@2" = "expected a '.', '-', or '_'" -1_ = '1_' -1_2_3 = '1.2.3' -1_2_3_ = '1.2.3_' -1__ = '1._' -1___ = 'expected a version component e.g. `2` or `rc`' +{ + "$": Error( + "expected a version component e.g. `2` or `rc`", + ), + ".": Error( + "expected a version component e.g. `2` or `rc`", + ), + "1!1.2a.3-rc1": Version( + Version { + norm: None, + epoch: Some( + 1, + ), + version: [[1], [2, a], [3], [0, rc, 1]], + local: [], + }, + ), + "1+": Error( + "expected a version component e.g. `2` or `rc`", + ), + "1+$": Error( + "expected a version component e.g. `2` or `rc`", + ), + "1+.": Error( + "expected a version component e.g. `2` or `rc`", + ), + "1+2": Version( + Version { + norm: None, + epoch: None, + version: [[1]], + local: [[2]], + }, + ), + "1-2-3": Version( + Version { + norm: None, + epoch: None, + version: [[1], [2], [3]], + local: [], + }, + ), + "1-2-3_": Version( + Version { + norm: None, + epoch: None, + version: [[1], [2], [3, _]], + local: [], + }, + ), + "1-2_3": Error( + "cannot use both underscores and dashes as version segment seperators", + ), + "1.0.1_": Version( + Version { + norm: None, + epoch: None, + version: [[1], [0], [1, _]], + local: [], + }, + ), + "1.0.1post.za": Version( + Version { + norm: None, + epoch: None, + version: [[1], [0], [1, post], [0, za]], + local: [], + }, + ), + "1@2": Error( + "expected a '.', '-', or '_'", + ), + "1_": Version( + Version { + norm: None, + epoch: None, + version: [[1, _]], + local: [], + }, + ), + "1_2_3": Version( + Version { + norm: None, + epoch: None, + version: [[1], [2], [3]], + local: [], + }, + ), + "1_2_3_": Version( + Version { + norm: None, + epoch: None, + version: [[1], [2], [3, _]], + local: [], + }, + ), + "1__": Version( + Version { + norm: None, + epoch: None, + version: [[1], [0, _]], + local: [], + }, + ), + "1___": Error( + "expected a version component e.g. `2` or `rc`", + ), +} From 9b1945077daede52e4fa9d4b95531d2058c4950e Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 30 Jun 2023 10:54:41 +0200 Subject: [PATCH 06/22] refactor: bump --- crates/rattler_conda_types/src/version/mod.rs | 102 +++++++++++++----- .../rattler_conda_types/src/version/parse.rs | 12 +-- .../src/version/segment.rs | 2 +- 3 files changed, 81 insertions(+), 35 deletions(-) diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 1805076ff..b25c3b9c6 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -149,7 +149,7 @@ pub struct Version { /// So for the version `1.2g.beta15.rc` this stores: /// /// [1, 2, 'g', 0, 'beta', 15, 0, 'rc'] - components: SmallVec<[Component; 3]>, + components: ComponentVec, /// Information on each individual segment. Segments group different components together. /// @@ -162,7 +162,7 @@ pub struct Version { /// `beta15` consists of 3 components (`0`, `beta` and `15`). Segments must always start /// with a number. /// `rc` consists of 2 components (`0`, `rc`). Segments must always start with a number. - segments: SmallVec<[Segment; 4]>, + segments: SegmentVec, /// Flags to indicate edge cases /// The first bit indicates whether or not this version has an epoch. @@ -171,6 +171,9 @@ pub struct Version { flags: u8, } +type ComponentVec = SmallVec<[Component; 3]>; +type SegmentVec = SmallVec<[Segment; 4]>; + impl Version { /// Returns true if this version has an epoch. pub fn has_epoch(&self) -> bool { @@ -235,35 +238,71 @@ impl Version { /// Returns a new version where the last numerical segment of this version has been bumped. pub fn bump(&self) -> Self { - let mut bumped_version = self.clone(); - - // Bump the last numeric components. - let last_numeral = bumped_version - .components - .iter_mut() - .rev() - .find_map(|c| match c { - Component::Numeral(num) => Some(num), - _ => None, - }); - - match last_numeral { - Some(last_numeral) => { - *last_numeral += 1; + let mut components = ComponentVec::new(); + let mut segments = SegmentVec::new(); + let mut flags = 0; + + // Copy the optional epoch. + if let Some(epoch) = self.epoch_opt() { + components.push(Component::Numeral(epoch)); + flags |= EPOCH_MASK; + } + + // Copy over all the segments and bump the last segment. + let segment_count = self.segment_count(); + for (idx, segment_iter) in self.segments().enumerate() { + let segment = segment_iter.segment; + + let mut segment_components = + segment_iter.components().cloned().collect::(); + + // If this is the last segment of the version bump the last number. Each segment must at + // least start with a number so this should always work. + if idx == (segment_count - 1) { + let last_numeral_component = segment_components + .iter_mut() + .filter_map(Component::as_number_mut) + .rev() + .next() + .expect("every segment must at least contain a single numeric component"); + *last_numeral_component += 1; } - None => { - // The only case when there is no numeral is when there is no epoch. So we just add - // a 1 epoch. - debug_assert!(!bumped_version.has_epoch()); - bumped_version.components.insert(0, Component::Numeral(1)); - bumped_version.flags |= EPOCH_MASK; + + let has_implicit_default = + segment.has_implicit_default() && segment_components[0] == Component::default(); + let start_idx = if has_implicit_default { 1 } else { 0 }; + + let component_count = segment_components.len(); + for component in segment_components.into_iter().skip(start_idx) { + components.push(component); } + + let segment = Segment::new((component_count - start_idx) as _) + .expect("there will be no more components than in the previous segment") + .with_implicit_default(has_implicit_default) + .with_separator(segment.separator()) + .expect("copying the segment should just work"); + + segments.push(segment); } - // Remove the normalized version because its no longer valid. - bumped_version.norm = None; + if self.has_local() { + let segment_idx = segments.len() as u8; + for segment_iter in self.local_segments() { + for component in segment_iter.components().cloned() { + components.push(component); + } + segments.push(segment_iter.segment); + } + flags |= (segment_idx << LOCAL_VERSION_OFFSET) & LOCAL_VERSION_MASK; + } - bumped_version + Self { + norm: None, + components, + segments, + flags, + } } /// Returns the segments that belong the local part of the version. @@ -652,6 +691,13 @@ impl Component { } } + pub fn as_number_mut(&mut self) -> Option<&mut u64> { + match self { + Component::Numeral(value) => Some(value), + _ => None, + } + } + #[allow(dead_code)] pub fn as_string(&self) -> Option<&str> { match self { @@ -1068,8 +1114,8 @@ mod test { Version::from_str("1.2l").unwrap() ); assert_eq!( - Version::from_str("1.alpha").unwrap().bump(), - Version::from_str("1.2alpha").unwrap() + Version::from_str("5!1.alpha+3.4").unwrap().bump(), + Version::from_str("5!1.1alpha+3.4").unwrap() ); } diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index b0eba1b67..5a370a06b 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,6 +1,6 @@ use super::{Component, Version}; use crate::version::segment::Segment; -use crate::version::{EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET}; +use crate::version::{ComponentVec, EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET, SegmentVec}; use nom::branch::alt; use nom::bytes::complete::{tag_no_case, take_while}; use nom::character::complete::{alpha1, char, digit1, one_of}; @@ -170,7 +170,7 @@ fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVers /// Parses a version segment from a list of components. fn segment_parser<'i, 'c>( - components: &'c mut SmallVec<[Component; 3]>, + components: &'c mut ComponentVec, ) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + 'c { move |input| { // Parse the first component of the segment @@ -229,8 +229,8 @@ fn segment_parser<'i, 'c>( } fn final_version_part_parser<'i>( - components: &mut SmallVec<[Component; 3]>, - segments: &mut SmallVec<[Segment; 4]>, + components: &mut ComponentVec, + segments: &mut SegmentVec, input: &'i str, dash_or_underscore: Option, ) -> Result, nom::Err> { @@ -476,8 +476,8 @@ impl FromStr for Version { fn split_component<'a>( segments_iter: impl Iterator, - segments: &mut SmallVec<[Segment; 4]>, - components: &mut SmallVec<[Component; 3]>, + segments: &mut SegmentVec, + components: &mut ComponentVec, ) -> Result<(), ParseVersionErrorKind> { for component in segments_iter { let version_split_re = lazy_regex::regex!(r#"([0-9]+|[^0-9]+)"#); diff --git a/crates/rattler_conda_types/src/version/segment.rs b/crates/rattler_conda_types/src/version/segment.rs index 71d6ee998..c0aec7b51 100644 --- a/crates/rattler_conda_types/src/version/segment.rs +++ b/crates/rattler_conda_types/src/version/segment.rs @@ -3,7 +3,7 @@ use std::fmt::{Debug, Formatter}; /// Represents information about a segment in a version. E.g. the part between `.`, `-` or `_`. /// -/// `SegmentInfo` encodes the number of components, the separator that exists before it and whether +/// [`Segment`] encodes the number of components, the separator that exists before it and whether /// or not the segment starts with an implicit default component. #[derive(Copy, Clone, Eq, PartialEq)] #[repr(transparent)] From e576aec0a1951e769099fb88be99b8a1cbc27981 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 30 Jun 2023 11:00:50 +0200 Subject: [PATCH 07/22] fix: clippy and fmt --- crates/rattler_conda_types/src/version/mod.rs | 6 +- .../rattler_conda_types/src/version/parse.rs | 362 +++++++++--------- 2 files changed, 185 insertions(+), 183 deletions(-) diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index b25c3b9c6..37e29e452 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -227,7 +227,7 @@ impl Version { }; version_segments.iter().map(move |&segment| { let start = idx; - idx += segment.len() as usize; + idx += segment.len(); SegmentIter { offset: start, version: self, @@ -830,7 +830,7 @@ impl Display for Version { write!(f, "+{}", SegmentFormatter::from(self.local_segments()))?; } - return Ok(()); + Ok(()) } } @@ -851,7 +851,7 @@ impl<'de> Deserialize<'de> for Version { Cow::<'de, str>::deserialize(deserializer)? .as_ref() .parse() - .map_err(|err| D::Error::custom(err)) + .map_err(D::Error::custom) } } diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 5a370a06b..620f102d7 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,6 +1,8 @@ use super::{Component, Version}; use crate::version::segment::Segment; -use crate::version::{ComponentVec, EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET, SegmentVec}; +use crate::version::{ + ComponentVec, SegmentVec, EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET, +}; use nom::branch::alt; use nom::bytes::complete::{tag_no_case, take_while}; use nom::character::complete::{alpha1, char, digit1, one_of}; @@ -135,13 +137,13 @@ pub fn epoch_parser(input: &str) -> IResult<&str, u64, ParseVersionErrorKind> { let (rest, digits) = terminated(digit1, char('!'))(input)?; let epoch = digits .parse() - .map_err(|err| ParseVersionErrorKind::EpochMustBeInteger(err)) + .map_err(ParseVersionErrorKind::EpochMustBeInteger) .map_err(nom::Err::Failure)?; Ok((rest, epoch)) } /// Parses a numeral from the input, fails if the parsed digits cannot be represented by an `u64`. -fn numeral_parser<'i>(input: &'i str) -> IResult<&'i str, u64, ParseVersionErrorKind> { +fn numeral_parser(input: &str) -> IResult<&str, u64, ParseVersionErrorKind> { let (rest, digits) = digit1(input)?; match u64::from_str(digits) { Ok(numeral) => Ok((rest, numeral)), @@ -169,9 +171,9 @@ fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVers } /// Parses a version segment from a list of components. -fn segment_parser<'i, 'c>( - components: &'c mut ComponentVec, -) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + 'c { +fn segment_parser<'i>( + components: &mut ComponentVec, +) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + '_ { move |input| { // Parse the first component of the segment let (mut rest, first_component) = match component_parser(input) { @@ -215,9 +217,9 @@ fn segment_parser<'i, 'c>( } None => { let segment = Segment::new(component_count) - .ok_or_else(|| { - nom::Err::Error(ParseVersionErrorKind::TooManyComponentsInASegment) - })? + .ok_or(nom::Err::Error( + ParseVersionErrorKind::TooManyComponentsInASegment, + ))? .with_implicit_default(has_implicit_default); break Ok((remaining, segment)); @@ -228,10 +230,10 @@ fn segment_parser<'i, 'c>( } } -fn final_version_part_parser<'i>( +fn final_version_part_parser( components: &mut ComponentVec, segments: &mut SegmentVec, - input: &'i str, + input: &str, dash_or_underscore: Option, ) -> Result, nom::Err> { let mut dash_or_underscore = dash_or_underscore; @@ -286,7 +288,7 @@ fn final_version_part_parser<'i>( result } -pub fn version_parser<'i>(input: &'i str) -> IResult<&'i str, Version, ParseVersionErrorKind> { +pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKind> { let mut components = SmallVec::default(); let mut segments = SmallVec::default(); let mut flags = 0u8; @@ -384,174 +386,174 @@ impl FromStr for Version { fn from_str(s: &str) -> Result { return final_version_parser(s).map_err(|kind| ParseVersionError::new(s, kind)); - // Version comparison is case-insensitive so normalize everything to lowercase - let normalized = s.trim().to_lowercase(); - - // Basic validity check - if normalized.is_empty() { - return Err(ParseVersionError::new(s, ParseVersionErrorKind::Empty)); - } - - // Allow for dashes as long as there are no underscores as well. Dashes are then converted - // to underscores. - let lowered = if normalized.contains('-') && !normalized.contains('_') { - normalized.replace('-', "_") - } else { - normalized - }; - - // Ensure the string only contains valid characters - if !has_valid_chars(&lowered) { - return Err(ParseVersionError::new( - s, - ParseVersionErrorKind::InvalidCharacters, - )); - } - - // Find epoch - let (epoch, rest) = if let Some((epoch, rest)) = lowered.split_once('!') { - let epoch: u64 = epoch.parse().map_err(|e| { - ParseVersionError::new(s, ParseVersionErrorKind::EpochMustBeInteger(e)) - })?; - (Some(epoch), rest) - } else { - (None, lowered.as_str()) - }; - - // Ensure the rest of the string no longer contains an epoch - if rest.find('!').is_some() { - return Err(ParseVersionError::new( - s, - ParseVersionErrorKind::DuplicateEpochSeparator, - )); - } - - // Find local version string - let (local, rest) = if let Some((rest, local)) = rest.rsplit_once('+') { - (local, rest) - } else { - ("", rest) - }; - - // Ensure the rest of the string no longer contains a local version separator - if rest.find('+').is_some() { - return Err(ParseVersionError::new( - s, - ParseVersionErrorKind::DuplicateLocalVersionSeparator, - )); - } - - // Split the local version by '_' or '.' - let local_split = local.split(&['.', '_'][..]); - - // If the last character of a version is '-' or '_', don't split that out individually. - // Implements the instructions for openssl-like versions. You can work-around this problem - // by appending a dash to plain version numbers. - let version: SmallVec<[String; 6]> = if rest.ends_with('_') { - let mut versions: SmallVec<[String; 6]> = rest[..(rest.len() as isize - 1) as usize] - .replace('_', ".") - .split('.') - .map(ToOwned::to_owned) - .collect(); - if let Some(last) = versions.last_mut() { - *last += "_"; - } - versions - } else { - rest.replace('_', ".") - .split('.') - .map(ToOwned::to_owned) - .collect() - }; - let version_split = version.iter().map(|s| s.as_str()); - - let mut components = SmallVec::default(); - let mut segments = SmallVec::default(); - let mut flags = 0u8; - - if let Some(epoch) = epoch { - components.push(epoch.into()); - flags |= 0x1; // Mark that the version contains an epoch - } - - fn split_component<'a>( - segments_iter: impl Iterator, - segments: &mut SegmentVec, - components: &mut ComponentVec, - ) -> Result<(), ParseVersionErrorKind> { - for component in segments_iter { - let version_split_re = lazy_regex::regex!(r#"([0-9]+|[^0-9]+)"#); - let mut numeral_or_alpha_split = version_split_re.find_iter(component).peekable(); - if numeral_or_alpha_split.peek().is_none() { - return Err(ParseVersionErrorKind::EmptyVersionComponent); - } - - let mut atoms = numeral_or_alpha_split - .map(|mtch| match mtch.as_str() { - num if num.chars().all(|c| c.is_ascii_digit()) => num - .parse() - .map_err(ParseVersionErrorKind::InvalidNumeral) - .map(Component::Numeral), - "post" => Ok(Component::Post), - "dev" => Ok(Component::Dev), - ident => Ok(Component::Iden(ident.to_owned().into_boxed_str())), - }) - .peekable(); - - // A segment must always starts with a numeral - let has_implicit_default = - !matches!(atoms.peek(), Some(&Ok(Component::Numeral(_)))); - - // Add the components - let mut component_count = 0u16; - for component in atoms { - components.push(component?); - component_count = component_count - .checked_add(1) - .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)?; - } - - // Add the segment information - segments.push( - Segment::new(component_count) - .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)? - .with_implicit_default(has_implicit_default), - ); - } - - Ok(()) - } - - split_component(version_split, &mut segments, &mut components) - .map_err(|e| ParseVersionError::new(s, e))?; - - if !local.is_empty() { - if segments.len() > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { - // There are too many segments to be able to encode the local segment parts into the - // special `flag` we store. The flags is 8 bits and the first bit is used to - // indicate if there is an epoch or not. The remaining 7 bits are used to indicate - // which segment is the first that belongs to the local version part. We can encode - // at most 127 positions so if there are more segments in the common version part, - // we cannot represent this version. - return Err(ParseVersionError::new( - s, - ParseVersionErrorKind::TooManySegments, - )); - } - - // Encode that the local version segment starts at the given index. - flags |= (u8::try_from(segments.len()).unwrap()) << LOCAL_VERSION_OFFSET; - - split_component(local_split, &mut segments, &mut components) - .map_err(|e| ParseVersionError::new(s, e))? - }; - - Ok(Self { - norm: Some(lowered.into_boxed_str()), - flags, - segments, - components, - }) + // // Version comparison is case-insensitive so normalize everything to lowercase + // let normalized = s.trim().to_lowercase(); + // + // // Basic validity check + // if normalized.is_empty() { + // return Err(ParseVersionError::new(s, ParseVersionErrorKind::Empty)); + // } + // + // // Allow for dashes as long as there are no underscores as well. Dashes are then converted + // // to underscores. + // let lowered = if normalized.contains('-') && !normalized.contains('_') { + // normalized.replace('-', "_") + // } else { + // normalized + // }; + // + // // Ensure the string only contains valid characters + // if !has_valid_chars(&lowered) { + // return Err(ParseVersionError::new( + // s, + // ParseVersionErrorKind::InvalidCharacters, + // )); + // } + // + // // Find epoch + // let (epoch, rest) = if let Some((epoch, rest)) = lowered.split_once('!') { + // let epoch: u64 = epoch.parse().map_err(|e| { + // ParseVersionError::new(s, ParseVersionErrorKind::EpochMustBeInteger(e)) + // })?; + // (Some(epoch), rest) + // } else { + // (None, lowered.as_str()) + // }; + // + // // Ensure the rest of the string no longer contains an epoch + // if rest.find('!').is_some() { + // return Err(ParseVersionError::new( + // s, + // ParseVersionErrorKind::DuplicateEpochSeparator, + // )); + // } + // + // // Find local version string + // let (local, rest) = if let Some((rest, local)) = rest.rsplit_once('+') { + // (local, rest) + // } else { + // ("", rest) + // }; + // + // // Ensure the rest of the string no longer contains a local version separator + // if rest.find('+').is_some() { + // return Err(ParseVersionError::new( + // s, + // ParseVersionErrorKind::DuplicateLocalVersionSeparator, + // )); + // } + // + // // Split the local version by '_' or '.' + // let local_split = local.split(&['.', '_'][..]); + // + // // If the last character of a version is '-' or '_', don't split that out individually. + // // Implements the instructions for openssl-like versions. You can work-around this problem + // // by appending a dash to plain version numbers. + // let version: SmallVec<[String; 6]> = if rest.ends_with('_') { + // let mut versions: SmallVec<[String; 6]> = rest[..(rest.len() as isize - 1) as usize] + // .replace('_', ".") + // .split('.') + // .map(ToOwned::to_owned) + // .collect(); + // if let Some(last) = versions.last_mut() { + // *last += "_"; + // } + // versions + // } else { + // rest.replace('_', ".") + // .split('.') + // .map(ToOwned::to_owned) + // .collect() + // }; + // let version_split = version.iter().map(|s| s.as_str()); + // + // let mut components = SmallVec::default(); + // let mut segments = SmallVec::default(); + // let mut flags = 0u8; + // + // if let Some(epoch) = epoch { + // components.push(epoch.into()); + // flags |= 0x1; // Mark that the version contains an epoch + // } + // + // fn split_component<'a>( + // segments_iter: impl Iterator, + // segments: &mut SegmentVec, + // components: &mut ComponentVec, + // ) -> Result<(), ParseVersionErrorKind> { + // for component in segments_iter { + // let version_split_re = lazy_regex::regex!(r#"([0-9]+|[^0-9]+)"#); + // let mut numeral_or_alpha_split = version_split_re.find_iter(component).peekable(); + // if numeral_or_alpha_split.peek().is_none() { + // return Err(ParseVersionErrorKind::EmptyVersionComponent); + // } + // + // let mut atoms = numeral_or_alpha_split + // .map(|mtch| match mtch.as_str() { + // num if num.chars().all(|c| c.is_ascii_digit()) => num + // .parse() + // .map_err(ParseVersionErrorKind::InvalidNumeral) + // .map(Component::Numeral), + // "post" => Ok(Component::Post), + // "dev" => Ok(Component::Dev), + // ident => Ok(Component::Iden(ident.to_owned().into_boxed_str())), + // }) + // .peekable(); + // + // // A segment must always starts with a numeral + // let has_implicit_default = + // !matches!(atoms.peek(), Some(&Ok(Component::Numeral(_)))); + // + // // Add the components + // let mut component_count = 0u16; + // for component in atoms { + // components.push(component?); + // component_count = component_count + // .checked_add(1) + // .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)?; + // } + // + // // Add the segment information + // segments.push( + // Segment::new(component_count) + // .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)? + // .with_implicit_default(has_implicit_default), + // ); + // } + // + // Ok(()) + // } + // + // split_component(version_split, &mut segments, &mut components) + // .map_err(|e| ParseVersionError::new(s, e))?; + // + // if !local.is_empty() { + // if segments.len() > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { + // // There are too many segments to be able to encode the local segment parts into the + // // special `flag` we store. The flags is 8 bits and the first bit is used to + // // indicate if there is an epoch or not. The remaining 7 bits are used to indicate + // // which segment is the first that belongs to the local version part. We can encode + // // at most 127 positions so if there are more segments in the common version part, + // // we cannot represent this version. + // return Err(ParseVersionError::new( + // s, + // ParseVersionErrorKind::TooManySegments, + // )); + // } + // + // // Encode that the local version segment starts at the given index. + // flags |= (u8::try_from(segments.len()).unwrap()) << LOCAL_VERSION_OFFSET; + // + // split_component(local_split, &mut segments, &mut components) + // .map_err(|e| ParseVersionError::new(s, e))? + // }; + // + // Ok(Self { + // norm: Some(lowered.into_boxed_str()), + // flags, + // segments, + // components, + // }) } } From 413c5d22aba8815d6c62fef52322d3dae2cd7c9e Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 30 Jun 2023 17:04:52 +0200 Subject: [PATCH 08/22] refactor: added flags --- crates/rattler_conda_types/benches/parse.rs | 1 - ...nda_lock__test__packages_for_platform.snap | 2 +- ...lock__test__packages_for_platform.snap.new | 3559 ----- ...es__conda_lock__test__read_conda_lock.snap | 10 +- ...conda_lock__test__read_conda_lock.snap.new | 13255 ---------------- .../rattler_conda_types/src/version/flags.rs | 120 + crates/rattler_conda_types/src/version/mod.rs | 56 +- .../rattler_conda_types/src/version/parse.rs | 223 +- ...da_types__version__parse__test__parse.snap | 11 - 9 files changed, 171 insertions(+), 17066 deletions(-) delete mode 100644 crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new delete mode 100644 crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new create mode 100644 crates/rattler_conda_types/src/version/flags.rs diff --git a/crates/rattler_conda_types/benches/parse.rs b/crates/rattler_conda_types/benches/parse.rs index 7aa27803f..24012a3e7 100644 --- a/crates/rattler_conda_types/benches/parse.rs +++ b/crates/rattler_conda_types/benches/parse.rs @@ -1,6 +1,5 @@ use criterion::{black_box, criterion_group, criterion_main, Criterion}; use rattler_conda_types::Version; -use std::str::FromStr; fn criterion_benchmark(c: &mut Criterion) { c.bench_function("parse simple version", |b| { diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap index 3aa4f6576..5ad597dee 100644 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap @@ -3106,7 +3106,7 @@ expression: "conda_lock.packages_for_platform(Platform::Linux64).collect::=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new deleted file mode 100644 index 2edb7aac4..000000000 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform.snap.new +++ /dev/null @@ -1,3559 +0,0 @@ ---- -source: crates/rattler_conda_types/src/conda_lock/mod.rs -assertion_line: 520 -expression: "conda_lock.packages_for_platform(Platform::Linux64).collect::>()" ---- -- name: _libgcc_mutex - version: "0.1" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2" - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - optional: false - category: main -- name: ca-certificates - version: 2022.12.7 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda" - hash: - md5: ff9f73d45c4a07d6f424495288a26080 - sha256: 8f6c81b0637771ae0ea73dc03a6d30bec3326ba3927f2a7b91931aa2d59b1789 - optional: false - category: main -- name: font-ttf-dejavu-sans-mono - version: "2.37" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2" - hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - optional: false - category: main -- name: font-ttf-inconsolata - version: "3.000" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2" - hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c - optional: false - category: main -- name: font-ttf-source-code-pro - version: "2.038" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2" - hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 - optional: false - category: main -- name: font-ttf-ubuntu - version: "0.83" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2" - hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e - optional: false - category: main -- name: kernel-headers_linux-64 - version: 2.6.32 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2" - hash: - md5: 5dd5127afd710f91f6a75821bac0a4f0 - sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 - optional: false - category: main -- name: ld_impl_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hcc3a1bd_1.conda" - hash: - md5: 737be0d34c22d24432049ab7a3214de4 - sha256: 3e7f203e33ea497b6e468279cc5fdef7d556473c25e7466b35fd672940392469 - optional: false - category: main -- name: libgcc-devel_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" - hash: - md5: 9b7bdb0b42ce4e4670d32bfe0532b56a - sha256: 70b2c370cc616304f732eeb4014825390dbee044ecbc3875e968b0ea01bd7503 - optional: false - category: main -- name: libgfortran5 - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2" - hash: - md5: 164b4b1acaedc47ee7e658ae6b308ca3 - sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 - optional: false - category: main -- name: libstdcxx-devel_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" - hash: - md5: 8aee006c0662f551f3acef9a7077a5b9 - sha256: abfcbf3a0f770be88eefebf84ae3a901da9e933799c9eecf3e9b06f34b00a0a5 - optional: false - category: main -- name: libstdcxx-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2" - hash: - md5: 1030b1f38c129f2634eae026f704fe60 - sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 - optional: false - category: main -- name: nomkl - version: "1.0" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main -- name: python_abi - version: "3.9" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-3_cp39.conda" - hash: - md5: 0dd193187d54e585cac7eab942a8847e - sha256: 89e8c4436dd04d8b4a0c13c508e930be56973a480a9714171969de953bdafd3a - optional: false - category: main -- name: tzdata - version: 2022g - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main -- name: fonts-conda-forge - version: "1" - manager: conda - platform: linux-64 - dependencies: - font-ttf-dejavu-sans-mono: "*" - font-ttf-inconsolata: "*" - font-ttf-source-code-pro: "*" - font-ttf-ubuntu: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2" - hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - optional: false - category: main -- name: libgfortran-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - libgfortran5: "==12.2.0 h337968e_19" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2" - hash: - md5: cd7a806282c16e1f2d39a7e80d3a3e0d - sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f - optional: false - category: main -- name: libgomp - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2" - hash: - md5: cedcee7c064c01c403f962c9e8d3c373 - sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e - optional: false - category: main -- name: sysroot_linux-64 - version: "2.12" - manager: conda - platform: linux-64 - dependencies: - kernel-headers_linux-64: "==2.6.32 he073ed8_15" - url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2" - hash: - md5: 66c192522eacf5bb763568b4e415d133 - sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff - optional: false - category: main -- name: _openmp_mutex - version: "4.5" - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - libgomp: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2" - hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - optional: false - category: main -- name: binutils_impl_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - ld_impl_linux-64: "==2.39 hcc3a1bd_1" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-he00db2b_1.conda" - hash: - md5: 3d726e8b51a1f5bfd66892a2b7d9db2d - sha256: 69a7c32141475dab43de2f19b7a67c14596cbb357cdb5891ff866918f8f65a2e - optional: false - category: main -- name: fonts-conda-ecosystem - version: "1" - manager: conda - platform: linux-64 - dependencies: - fonts-conda-forge: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2" - hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - optional: false - category: main -- name: binutils - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: ">=2.39,<2.40.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils-2.39-hdd6e379_1.conda" - hash: - md5: 1276c18b0a562739185dbf5bd14b57b2 - sha256: 8edbd5a01feaf22053d7c02e7d5066a3b35b265deee0a5ad3f69054289bbbd7e - optional: false - category: main -- name: binutils_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: 2.39.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2" - hash: - md5: b7d26ab37be17ea4c366a97138684bcb - sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e - optional: false - category: main -- name: libgcc-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - _openmp_mutex: ">=4.5" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2" - hash: - md5: e4c94f80aef025c17ab0828cd85ef535 - sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 - optional: false - category: main -- name: alsa-lib - version: 1.2.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2" - hash: - md5: be733e69048951df1e4b4b7bb8c7666f - sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd - optional: false - category: main -- name: attr - version: 2.5.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2" - hash: - md5: d9c69a24ad678ffce24c6543a0176b00 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 - optional: false - category: main -- name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2" - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main -- name: expat - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2" - hash: - md5: c4fbad8d4bddeb3c085f18cbf97fbfad - sha256: b44db0b92ae926b3fbbcd57c179fceb64fa11a9f9d09082e03be58b74dcad832 - optional: false - category: main -- name: fftw - version: 3.3.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf0379b8_106.conda" - hash: - md5: d7407e695358f068a2a7f8295cde0567 - sha256: 8b735848df623fab555a6d7fc400636116d6ed5686ae0e50adb7df4c1c3a9cef - optional: false - category: main -- name: gettext - version: 0.21.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2" - hash: - md5: 14947d8770185e5153fdd04d4673ed37 - sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a - optional: false - category: main -- name: graphite2 - version: 1.3.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2" - hash: - md5: 8c54672728e8ec6aa6db90cf2806d220 - sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 - optional: false - category: main -- name: gstreamer-orc - version: 0.4.33 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.33-h166bdaf_0.tar.bz2" - hash: - md5: 879c93426c9d0b84a9de4513fbce5f4f - sha256: c4fdbaaeb66eed280ef6875c6a4b6916ed168166277e9317fbe25b15d3758897 - optional: false - category: main -- name: icu - version: "70.1" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2" - hash: - md5: 87473a15119779e021c314249d4b4aed - sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a - optional: false - category: main -- name: jpeg - version: 9e - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda" - hash: - md5: c7a069243e1fbe9a556ed2ec030e6407 - sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b - optional: false - category: main -- name: keyutils - version: 1.6.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2" - hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - optional: false - category: main -- name: lame - version: "3.100" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2" - hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab - optional: false - category: main -- name: lerc - version: 4.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2" - hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 - optional: false - category: main -- name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 9194c9bf9428035a05352d031462eae4 - sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 - optional: false - category: main -- name: libdb - version: 6.2.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2" - hash: - md5: 3f3258d8f841fbac63b36b75bdac1afd - sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 - optional: false - category: main -- name: libdeflate - version: "1.17" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda" - hash: - md5: 5cc781fd91968b11a8a7fdbee0982676 - sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c - optional: false - category: main -- name: libffi - version: 3.4.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2" - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main -- name: libiconv - version: "1.17" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2" - hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 - optional: false - category: main -- name: libnsl - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2" - hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad - optional: false - category: main -- name: libogg - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2" - hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 - optional: false - category: main -- name: libopenblas - version: 0.3.21 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2" - hash: - md5: 8c5963a49b6035c40646a763293fbb35 - sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 - optional: false - category: main -- name: libopus - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2" - hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - optional: false - category: main -- name: libsanitizer - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.3.0-h239ccf8_19.tar.bz2" - hash: - md5: d17fd55aed84ab6592c5419b6600501c - sha256: 5e53a50c9b5fd04790f4cc63aa74cd6172151246248438b9bc154392ebe0bd17 - optional: false - category: main -- name: libtool - version: 2.4.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda" - hash: - md5: f204c8ba400ec475452737094fb81d52 - sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1 - optional: false - category: main -- name: libudev1 - version: "252" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libudev1-252-h166bdaf_0.tar.bz2" - hash: - md5: 174243089ec111479298a5b7099b64b5 - sha256: e9ef9cb1d34a2f02f68c4778986f1f8be3015fec272523fd2dde3723c120f038 - optional: false - category: main -- name: libuuid - version: 2.32.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2" - hash: - md5: 772d69f030955d9646d3d0eaf21d859d - sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 - optional: false - category: main -- name: libwebp-base - version: 1.2.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2" - hash: - md5: ac2ccf7323d21f2994e4d1f5da664f37 - sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 - optional: false - category: main -- name: libzlib - version: 1.2.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2" - hash: - md5: f3f9de449d32ca9b9c66a22863c96f41 - sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd - optional: false - category: main -- name: lz4-c - version: 1.9.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda" - hash: - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f - optional: false - category: main -- name: mpg123 - version: 1.31.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.2-hcb278e6_0.conda" - hash: - md5: 08efb1e1813f1a151b7a945b972a049b - sha256: cc8cb2097e96d2420dd698951ab524b6c8268fa691d370020a0eae3e65197c04 - optional: false - category: main -- name: ncurses - version: "6.3" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2" - hash: - md5: 4acfc691e64342b9dae57cf2adc63238 - sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 - optional: false - category: main -- name: ninja - version: 1.11.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.0-h924138e_0.tar.bz2" - hash: - md5: 18c563c26253a21c1aa9d662e874b0cd - sha256: 1d3659abc4e3dfa9c8c03a664f6d0323503b75a4506fb9d28f28448be5540fc5 - optional: false - category: main -- name: nspr - version: "4.35" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda" - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - optional: false - category: main -- name: openssl - version: 3.0.8 - manager: conda - platform: linux-64 - dependencies: - ca-certificates: "*" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.8-h0b41bf4_0.conda" - hash: - md5: e043403cd18faf815bf7705ab6c1e092 - sha256: cd981c5c18463bc7a164fcf45c5cf697d58852b780b4dfa5e83c18c1fda6d7cd - optional: false - category: main -- name: pixman - version: 0.40.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2" - hash: - md5: 660e72c82f2e75a6b3fe6a6e75c79f19 - sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 - optional: false - category: main -- name: pkg-config - version: 0.29.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2" - hash: - md5: fbef41ff6a4c8140c30057466a1cdd47 - sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c - optional: false - category: main -- name: pthread-stubs - version: "0.4" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2" - hash: - md5: 22dad4df6e8630e8dff2428f6f6a7036 - sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff - optional: false - category: main -- name: xorg-kbproto - version: 1.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2" - hash: - md5: 4b230e8381279d76131116660f5a241a - sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 - optional: false - category: main -- name: xorg-libice - version: 1.0.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2" - hash: - md5: d6b0b50b49eccfe0be0373be628be0f3 - sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 - optional: false - category: main -- name: xorg-libxau - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2" - hash: - md5: bf6f803a544f26ebbdc3bfff272eb179 - sha256: 9e9b70c24527289ac7ae31925d1eb3b0c1e9a78cb7b8f58a3110cc8bbfe51c26 - optional: false - category: main -- name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2" - hash: - md5: be93aabceefa2fac576e971aef407908 - sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 - optional: false - category: main -- name: xorg-renderproto - version: 0.11.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2" - hash: - md5: 06feff3d2634e3097ce2fe681474b534 - sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 - optional: false - category: main -- name: xorg-xextproto - version: 7.3.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2" - hash: - md5: 1e15f6ad85a7d743a2ac68dae6c82b98 - sha256: d45c4d1c8372c546711eb3863c76d899d03a67c3edb3b5c2c46c9492814cbe03 - optional: false - category: main -- name: xorg-xproto - version: 7.0.31 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2" - hash: - md5: b4a4381d54784606820704f7b5f05a15 - sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d - optional: false - category: main -- name: xz - version: 5.2.6 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2" - hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - optional: false - category: main -- name: doxygen - version: 1.9.5 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libiconv: ">=1.16,<2.0.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.5-h583eb01_0.tar.bz2" - hash: - md5: a94d4fb8005f9d8d286e06bbb1bec448 - sha256: f8379387abdb1c51ec72165fbd7e2c54b83c40224ea9eed825a18895ab60273f - optional: false - category: main -- name: gcc_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: ">=2.39" - libgcc-devel_linux-64: "==11.3.0 h210ce93_19" - libgcc-ng: ">=11.3.0" - libgomp: ">=11.3.0" - libsanitizer: "==11.3.0 h239ccf8_19" - libstdcxx-ng: ">=11.3.0" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" - hash: - md5: 89ac16d36e66ccb9ca5d34c9217e5799 - sha256: 51c6e39148c9da4a9889d34f0daebdf961ca93f032b1e86f621a67ecff2bd915 - optional: false - category: main -- name: jack - version: 1.9.22 - manager: conda - platform: linux-64 - dependencies: - alsa-lib: ">=1.2.8,<1.2.9.0a0" - libdb: ">=6.2.32,<6.3.0a0" - libgcc-ng: ">=12" - libopus: ">=1.3.1,<2.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h11f4161_0.conda" - hash: - md5: 504fa9e712b99494a9cf4630e3ca7d78 - sha256: 9f173c6633f7ef049b05cd92a9fc028402972ddc44a56d5bb51d8879d73bbde7 - optional: false - category: main -- name: libblas - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: d9b7a8639171f6c6fa0a983edabcfe2b - sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 - optional: false - category: main -- name: libbrotlidec - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlicommon: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 4ae4d7795d33e02bd20f6b23d91caf82 - sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 - optional: false - category: main -- name: libbrotlienc - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlicommon: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 04bac51ba35ea023dc48af73c1c88c25 - sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be - optional: false - category: main -- name: libcap - version: "2.66" - manager: conda - platform: linux-64 - dependencies: - attr: ">=2.5.1,<2.6.0a0" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcap-2.66-ha37c62d_0.tar.bz2" - hash: - md5: 2d7665abd0997f1a6d4b7596bc27b657 - sha256: db113b0bacb45533ec6f5c13a548054af8bd0ca2f7583e8bc5989f17e1e1638b - optional: false - category: main -- name: libedit - version: 3.1.20191231 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - ncurses: ">=6.2,<7.0.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2" - hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - optional: false - category: main -- name: libevent - version: 2.1.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - openssl: ">=3.0.0,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2" - hash: - md5: 4a049fc560e00e43151dc51368915fdd - sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a - optional: false - category: main -- name: libflac - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libgcc-ng: ">=12" - libogg: ">=1.3.4,<1.4.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2" - hash: - md5: 7daf72d8e2a8e848e11d63ed6d1026e0 - sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 - optional: false - category: main -- name: libgpg-error - version: "1.46" - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda" - hash: - md5: 27e745f6f2e4b757e95dd7225fbe6bdb - sha256: a2e3df80a5713b4143f7d276a9354d78f2b2927b22831dc24c3246a82674aaba - optional: false - category: main -- name: libpng - version: 1.6.39 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda" - hash: - md5: e1c890aebdebbfbf87e2c917187b4416 - sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 - optional: false - category: main -- name: libsqlite - version: 3.40.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2" - hash: - md5: 2e5f9a37d487e1019fd4d8113adb2f9f - sha256: 6008a0b914bd1a3510a3dba38eada93aa0349ebca3a21e5fa276833c8205bf49 - optional: false - category: main -- name: libvorbis - version: 1.3.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libogg: ">=1.3.4,<1.4.0a0" - libstdcxx-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2" - hash: - md5: 309dec04b70a3cc0f1e84a4013683bc0 - sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 - optional: false - category: main -- name: libxcb - version: "1.13" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2" - hash: - md5: b3653fdc58d03face9724f602218a904 - sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 - optional: false - category: main -- name: libxml2 - version: 2.10.3 - manager: conda - platform: linux-64 - dependencies: - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libiconv: ">=1.17,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2" - hash: - md5: 3b933ea47ef8f330c4c068af25fcd6a8 - sha256: b30713fb4477ff4f722280d956593e7e7a2cb705b7444dcc278de447432b43b1 - optional: false - category: main -- name: mysql-common - version: 8.0.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-ha901b37_0.conda" - hash: - md5: 6a39818710235826181e104aada40c75 - sha256: d7da5c1cc47656394933146ab30f6f3433553e8265ea1a4254bce441ab678199 - optional: false - category: main -- name: openblas - version: 0.3.21 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libopenblas: "==0.3.21 pthreads_h78a6416_3" - url: "https://conda.anaconda.org/conda-forge/linux-64/openblas-0.3.21-pthreads_h320a7e8_3.tar.bz2" - hash: - md5: 29155b9196b9d78022f11d86733e25a7 - sha256: b9986da11c136f4171ce94df6fe5940b529f38b9f13f2746817913071aa51151 - optional: false - category: main -- name: pcre2 - version: "10.40" - manager: conda - platform: linux-64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2" - hash: - md5: 69e2c796349cd9b273890bee0febfe1b - sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a - optional: false - category: main -- name: readline - version: 8.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2" - hash: - md5: db2ebbe2943aae81ed051a6a9af8e0fa - sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 - optional: false - category: main -- name: tk - version: 8.6.12 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2" - hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 - optional: false - category: main -- name: xorg-libsm - version: 1.2.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libuuid: ">=2.32.1,<3.0a0" - xorg-libice: 1.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2" - hash: - md5: 9e856f78d5c80d5a78f61e72d1d473a3 - sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 - optional: false - category: main -- name: zlib - version: 1.2.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: "==1.2.13 h166bdaf_4" - url: "https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2" - hash: - md5: 4b11e365c0275b808be78b30f904e295 - sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 - optional: false - category: main -- name: zstd - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda" - hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 - optional: false - category: main -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlidec: "==1.0.9 h166bdaf_8" - libbrotlienc: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: e5613f2bc717e9945840ff474419b8e4 - sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f - optional: false - category: main -- name: freetype - version: 2.12.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda" - hash: - md5: e1232042de76d24539a436d37597eb06 - sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f - optional: false - category: main -- name: gcc - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc-11.3.0-h02d0930_11.tar.bz2" - hash: - md5: 6037ebe5f1e3054519ce78b11eec9cd4 - sha256: 1946d6c3ea7e98231de51d506c978c00ae97c7b27379ab34a368218d014758c8 - optional: false - category: main -- name: gcc_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.3.0-he6f903b_11.tar.bz2" - hash: - md5: 25f76cb82e483ce96d118b9edffd12c9 - sha256: c0041b6f805b6b3c01bfb51232b606c9a50a8e0154d17bbf61af36d62c600f00 - optional: false - category: main -- name: gfortran_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: ">=11.3.0" - libgcc-ng: ">=4.9" - libgfortran5: ">=11.3.0" - libstdcxx-ng: ">=4.9" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-11.3.0-he34c6f7_19.tar.bz2" - hash: - md5: 3de873ee757f1a2e583416a3583f84c4 - sha256: 3263c7b7d4c9d0c0a25e92ca201b7c014c00257cecf08ac28953dfda43c93803 - optional: false - category: main -- name: gxx_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: "==11.3.0 hab1b70f_19" - libstdcxx-devel_linux-64: "==11.3.0 h210ce93_19" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" - hash: - md5: b73564a352e64bb5f2c9bfd3cd6dd127 - sha256: b86a4d15050c8ad5b8a4273c55f468847d891ceb08f3702408c3a0e921a5b5ea - optional: false - category: main -- name: krb5 - version: 1.20.1 - manager: conda - platform: linux-64 - dependencies: - keyutils: ">=1.6.1,<2.0a0" - libedit: ">=3.1.20191231,<4.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda" - hash: - md5: 89a41adce7106749573d883b2f657d78 - sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 - optional: false - category: main -- name: libcblas - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: "==3.9.0 16_linux64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: 20bae26d0a1db73f758fc3754cab4719 - sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f - optional: false - category: main -- name: libgcrypt - version: 1.10.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libgpg-error: ">=1.44,<2.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2" - hash: - md5: f967fc95089cd247ceed56eda31de3a9 - sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a - optional: false - category: main -- name: libglib - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libiconv: ">=1.17,<2.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - pcre2: ">=10.40,<10.41.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2" - hash: - md5: ed5349aa96776e00b34eccecf4a948fe - sha256: 3cbad3d63cff2dd9ac1dc9cce54fd3d657f3aff53df41bfe5bae9d760562a5af - optional: false - category: main -- name: liblapack - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: "==3.9.0 16_linux64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: 955d993f41f9354bf753d29864ea20ad - sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 - optional: false - category: main -- name: libllvm15 - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libxml2: ">=2.10.3,<2.11.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_0.conda" - hash: - md5: 70cbb0c2033665f2a7339bf0ec51a67f - sha256: 3fb9a9cfd2f5c79e8116c67f95d5a9b790ec66807ae0d8cebefc26fda9f836a7 - optional: false - category: main -- name: libsndfile - version: 1.2.0 - manager: conda - platform: linux-64 - dependencies: - lame: ">=3.100,<3.101.0a0" - libflac: ">=1.4.2,<1.5.0a0" - libgcc-ng: ">=12" - libogg: ">=1.3.4,<1.4.0a0" - libopus: ">=1.3.1,<2.0a0" - libstdcxx-ng: ">=12" - libvorbis: ">=1.3.7,<1.4.0a0" - mpg123: ">=1.31.1,<1.32.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda" - hash: - md5: c648d19cd9c8625898d5d370414de7c7 - sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 - optional: false - category: main -- name: libtiff - version: 4.5.0 - manager: conda - platform: linux-64 - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libdeflate: ">=1.17,<1.18.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda" - hash: - md5: 2e648a34072eb39d7c4fc2a9981c5f0c - sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee - optional: false - category: main -- name: libxkbcommon - version: 1.0.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - libxml2: ">=2.9.10,<2.11.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.0.3-he3ba5ed_0.tar.bz2" - hash: - md5: f9dbabc7e01c459ed7a1d1d64b206e9b - sha256: 64d37e16c694714ca08a96f9864a35ba9ee38b8e222f8ee646e10976250d966d - optional: false - category: main -- name: mysql-libs - version: 8.0.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - mysql-common: "==8.0.32 ha901b37_0" - openssl: ">=3.0.7,<4.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hd7da12d_0.conda" - hash: - md5: b05d7ea8b76f1172d5fe4f30e03277ea - sha256: 903174761ce605d98410747e0072757da5278d57309148ef175af490aa791f38 - optional: false - category: main -- name: nss - version: "3.88" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libgcc-ng: ">=12" - libsqlite: ">=3.40.0,<4.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - nspr: ">=4.35,<5.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda" - hash: - md5: d7a81dfb99ad8fbb88872fb7ec646e6c - sha256: a589e916119db06742da1307c3438a5c733cf01006470158c7aae8f2859f6e90 - optional: false - category: main -- name: python - version: 3.9.16 - manager: conda - platform: linux-64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-64: ">=2.36.1" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/python-3.9.16-h2782a2a_0_cpython.conda" - hash: - md5: 95c9b7c96a7fd7342e0c9d0a917b8f78 - sha256: 00bcb28a294aa78bf9d2a2ecaae8cb887188eae710f9197d823d36fb8a5d9767 - optional: false - category: main -- name: xcb-util - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: 384e7fcb3cd162ba3e4aed4b687df566 - sha256: 292dee40f8390aea0e6a0abbf2f255f179c777326831ed9e1ad7db53665c8562 - optional: false - category: main -- name: xcb-util-keysyms - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: 637054603bb7594302e3bf83f0a99879 - sha256: 6a2c0f38b360a2fda57b2349d2cbeeb7583576a4914a3e4ce17977601ac87613 - optional: false - category: main -- name: xcb-util-renderutil - version: 0.3.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2" - hash: - md5: 732e22f1741bccea861f5668cf7342a7 - sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 - optional: false - category: main -- name: xcb-util-wm - version: 0.4.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h166bdaf_0.tar.bz2" - hash: - md5: 0a8e20a8aef954390b9481a527421a8c - sha256: a76af35297f233982b58de1f55f1900d8a8ae44018a55d2a94f3084ab97d6c80 - optional: false - category: main -- name: xorg-libx11 - version: 1.7.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libxcb: 1.* - xorg-kbproto: "*" - xorg-xproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2" - hash: - md5: 12a61e640b8894504326aadafccbb790 - sha256: ec4641131e3afcb4b34614a5fa298efb34f54c2b2960bf9a73a8d202140d47c4 - optional: false - category: main -- name: alabaster - version: 0.7.13 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main -- name: appdirs - version: 1.4.4 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main -- name: attrs - version: 22.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main -- name: backcall - version: 0.2.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main -- name: backports - version: "1.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main -- name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py39hf3d152e_7.tar.bz2" - hash: - md5: b1a72c73acf3527aa5c1e2eed594fa25 - sha256: 1e9ca141550b6b515dec4ff32a7ca32948f6ac01e0fec207d8a14a7170b2973c - optional: false - category: main -- name: brotli - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - brotli-bin: "==1.0.9 h166bdaf_8" - libbrotlidec: "==1.0.9 h166bdaf_8" - libbrotlienc: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 2ff08978892a3e8b954397c461f18418 - sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 - optional: false - category: main -- name: c-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - binutils: "*" - gcc: "*" - gcc_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda" - hash: - md5: 69afb4e35be6366c2c1f9ed7f49bc3e6 - sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a - optional: false - category: main -- name: certifi - version: 2022.12.7 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main -- name: charset-normalizer - version: 2.1.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main -- name: click - version: 8.1.3 - manager: conda - platform: linux-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main -- name: colorama - version: 0.4.6 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main -- name: cycler - version: 0.11.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main -- name: cython - version: 0.29.33 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cython-0.29.33-py39h227be39_0.conda" - hash: - md5: 34bab6ef3e8cdf86fe78c46a984d3217 - sha256: 908715a56fe7633df894464c59c3799d88300772fc62011fa96593ce4ad92ef4 - optional: false - category: main -- name: dbus - version: 1.13.6 - manager: conda - platform: linux-64 - dependencies: - expat: ">=2.4.2,<3.0a0" - libgcc-ng: ">=9.4.0" - libglib: ">=2.70.2,<3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2" - hash: - md5: ecfff944ba3960ecb334b9a2663d708d - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 - optional: false - category: main -- name: decorator - version: 5.1.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main -- name: docutils - version: "0.19" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py39hf3d152e_1.tar.bz2" - hash: - md5: adb733ec2ee669f6d010758d054da60f - sha256: 826ae2374fc37a9bb29dd3c7783ba11ffa1e215660a60144e7f759c49686b1af - optional: false - category: main -- name: exceptiongroup - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main -- name: execnet - version: 1.9.0 - manager: conda - platform: linux-64 - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main -- name: executing - version: 1.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main -- name: fontconfig - version: 2.14.2 - manager: conda - platform: linux-64 - dependencies: - expat: ">=2.5.0,<3.0a0" - freetype: ">=2.12.1,<3.0a0" - libgcc-ng: ">=12" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda" - hash: - md5: 0f69b688f52ff6da70bccb7ff7001d1d - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 - optional: false - category: main -- name: gfortran - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc: 11.3.0.* - gcc_impl_linux-64: 11.3.0.* - gfortran_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran-11.3.0-ha859ce3_11.tar.bz2" - hash: - md5: 9a6a0c6fc4d192fddc7347a0ca31a329 - sha256: 9ec8753064dc7379958788952346fc1f0caa18affe093cac62c8a8e267f5f38e - optional: false - category: main -- name: gfortran_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_linux-64: "==11.3.0 he6f903b_11" - gfortran_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-11.3.0-h3c55166_11.tar.bz2" - hash: - md5: f70b169eb69320d71f193758b7df67e8 - sha256: 7c3bc99fc0d32647681f9b8ce44f137f16ae5ec37f040b66506c6634c299f071 - optional: false - category: main -- name: glib-tools - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libglib: "==2.74.1 h606061b_1" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.74.1-h6239696_1.tar.bz2" - hash: - md5: 5f442e6bc9d89ba236eb25a25c5c2815 - sha256: 029533e2e1cb03a80ae07a0a1a6bdd76b524e8f551d82e832a4d846a77b615c9 - optional: false - category: main -- name: gxx - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc: 11.3.0.* - gxx_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx-11.3.0-h02d0930_11.tar.bz2" - hash: - md5: e47dd4b4e577f03bb6aab18f48be5419 - sha256: 3614201ab2f09f27429b7faea7dcd9e24e089a325bca878f76cdd0dca4676520 - optional: false - category: main -- name: gxx_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_linux-64: "==11.3.0 he6f903b_11" - gxx_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.3.0-hc203a17_11.tar.bz2" - hash: - md5: 15fbc9079f191d468403639a6515652c - sha256: 7be17e1fdb200e8b9afe8f4e88b3b821740be6024e433565abda94e5d021c9cb - optional: false - category: main -- name: idna - version: "3.4" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main -- name: imagesize - version: 1.4.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main -- name: iniconfig - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main -- name: kiwisolver - version: 1.4.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2" - hash: - md5: 41679a052a8ce841c74df1ebc802e411 - sha256: eb28254cc7029e702d0059536d986b010221de62f9c8588a5a83e95a00b4e74d - optional: false - category: main -- name: lcms2 - version: "2.14" - manager: conda - platform: linux-64 - dependencies: - jpeg: ">=9e,<10a" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-hfd0df8a_1.conda" - hash: - md5: c2566c2ea5f153ddd6bf4acaf7547d97 - sha256: 632f191ac65bc673f8fcef9947e2c8431b0db6ca357ceebde3bdc4ed187af814 - optional: false - category: main -- name: libclang13 - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libllvm15: ">=15.0.7,<15.1.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h3e3d535_1.conda" - hash: - md5: a3a0f7a6f0885f5e1e0ec691566afb77 - sha256: e48481c37d02aefeddcfac20d48cf13b838c5f7b9018300fa7eac404d30f3d7f - optional: false - category: main -- name: libcups - version: 2.3.3 - manager: conda - platform: linux-64 - dependencies: - krb5: ">=1.20.1,<1.21.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda" - hash: - md5: c9f4416a34bc91e0eb029f912c68f81f - sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 - optional: false - category: main -- name: libpq - version: "15.2" - manager: conda - platform: linux-64 - dependencies: - krb5: ">=1.20.1,<1.21.0a0" - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - openssl: ">=3.0.8,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda" - hash: - md5: 4654b17eccaba55b8581d6b9c77f53cc - sha256: 5693c492ca0280e62edd114d91b7aa9c81fa60276b594f31d18a852636603f9e - optional: false - category: main -- name: libsystemd0 - version: "252" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libcap: ">=2.66,<2.67.0a0" - libgcc-ng: ">=12" - libgcrypt: ">=1.10.1,<2.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-252-h2a991cd_0.tar.bz2" - hash: - md5: 3c5ae9f61f663b3d5e1bf7f7da0c85f5 - sha256: a181e25a04207179da598a5a89747a026642341e193dca125620f5f4e268804a - optional: false - category: main -- name: markupsafe - version: 2.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py39h72bdee0_0.conda" - hash: - md5: 35514f5320206df9f4661c138c02e1c1 - sha256: da31fe95611393bb7dd3dee309a89328448570fd8a3205c2c55c03eb73688b61 - optional: false - category: main -- name: munkres - version: 1.1.4 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main -- name: mypy_extensions - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main -- name: numpy - version: 1.24.2 - manager: conda - platform: linux-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py39h7360e5f_0.conda" - hash: - md5: 757070dc7cc33003254888808cd34f1e - sha256: c0418aa18f4fd37d3ac786058bfa29cca0b5b8eca95a2e0ae2fdd13aefc81ad6 - optional: false - category: main -- name: openjpeg - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda" - hash: - md5: 5ce6a42505c6e9e6151c54c3ec8d68ea - sha256: 3cbfb1fe9bb492dcb672f98f0ddc7b4e029f51f77101d9c301caa3acaea8cba2 - optional: false - category: main -- name: packaging - version: "23.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main -- name: parso - version: 0.8.3 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main -- name: pickleshare - version: 0.7.5 - manager: conda - platform: linux-64 - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main -- name: pluggy - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main -- name: ply - version: "3.11" - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2" - hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 - optional: false - category: main -- name: psutil - version: 5.9.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py39hb9d737c_0.tar.bz2" - hash: - md5: 12184951da572828fb986b06ffb63eed - sha256: 515cf2cfc0504eb5758fa9ddfabc1dcbd7182da7650828aac97c9eee35597c84 - optional: false - category: main -- name: ptyprocess - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main -- name: pure_eval - version: 0.2.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main -- name: pycodestyle - version: 2.7.0 - manager: conda - platform: linux-64 - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main -- name: pycparser - version: "2.21" - manager: conda - platform: linux-64 - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main -- name: pyparsing - version: 3.0.9 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main -- name: pysocks - version: 1.7.1 - manager: conda - platform: linux-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main -- name: pytz - version: 2022.7.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main -- name: setuptools - version: 59.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/setuptools-59.2.0-py39hf3d152e_0.tar.bz2" - hash: - md5: 37ef3543fa46bf5d587f23d72b88fbf7 - sha256: 7e74640590ebe3379bb33c0aed17efa8c305c016b85e987d1e864a40a29743aa - optional: false - category: main -- name: six - version: 1.16.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main -- name: smmap - version: 3.0.5 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main -- name: snowballstemmer - version: 2.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main -- name: sortedcontainers - version: 2.4.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main -- name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main -- name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main -- name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main -- name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main -- name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main -- name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main -- name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main -- name: toml - version: 0.10.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main -- name: tomli - version: 2.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main -- name: tornado - version: "6.2" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py39hb9d737c_1.tar.bz2" - hash: - md5: 8a7d309b08cff6386fe384aa10dd3748 - sha256: 67c3eef0531caf75a81945844288f363cd3b7b029829bd91ed0994bf6b231f34 - optional: false - category: main -- name: traitlets - version: 5.9.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main -- name: typing_extensions - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main -- name: unicodedata2 - version: 15.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py39hb9d737c_0.tar.bz2" - hash: - md5: 230d65004135bf312504a1bbcb0c7a08 - sha256: 03c2cf05d1f4f2b01fc1e3ced22d5f331f2f233e335c4a4cd11a31fea1fccc0c - optional: false - category: main -- name: wheel - version: 0.38.4 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main -- name: xcb-util-image - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - xcb-util: ">=0.4.0,<0.5.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: c9b568bd804cb2903c6be6f5f68182e4 - sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 - optional: false - category: main -- name: xorg-libxext - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - xorg-libx11: ">=1.7.0,<2.0a0" - xorg-xextproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2" - hash: - md5: 536cc5db4d0a3ba0630541aec064b5e4 - sha256: cf47ccbf49d46189d7bdadeac1387c826be82deb92ce6badbb03baae4b67ed26 - optional: false - category: main -- name: xorg-libxrender - version: 0.9.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - xorg-libx11: ">=1.7.0,<2.0a0" - xorg-renderproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2" - hash: - md5: f59c1242cc1dd93e72c2ee2b360979eb - sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 - optional: false - category: main -- name: zipp - version: 3.13.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main -- name: asttokens - version: 2.2.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main -- name: babel - version: 2.11.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main -- name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: linux-64 - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main -- name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main -- name: cairo - version: 1.16.0 - manager: conda - platform: linux-64 - dependencies: - fontconfig: ">=2.13.96,<3.0a0" - fonts-conda-ecosystem: "*" - freetype: ">=2.12.1,<3.0a0" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libglib: ">=2.72.1,<3.0a0" - libpng: ">=1.6.38,<1.7.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - pixman: ">=0.40.0,<1.0a0" - xorg-libice: "*" - xorg-libsm: "*" - xorg-libx11: "*" - xorg-libxext: "*" - xorg-libxrender: "*" - zlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2" - hash: - md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 - sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 - optional: false - category: main -- name: cffi - version: 1.15.1 - manager: conda - platform: linux-64 - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_3.conda" - hash: - md5: 20080319ef73fbad74dcd6d62f2a3ffe - sha256: 485a8f65c58c26c7d48bfea20ed1d6f1493f3329dd2c9c0a888a1c2b7c2365c5 - optional: false - category: main -- name: contourpy - version: 1.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py39h4b4f3f3_0.conda" - hash: - md5: c5387f3fb1f5b8b71e1c865fc55f4951 - sha256: 74a767b73686caf0bb1d1186cd62a54f01e03ad5432eaaf0a7babad7634c4067 - optional: false - category: main -- name: coverage - version: 7.1.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py39h72bdee0_0.conda" - hash: - md5: 915b100b564875cceb85cbeab61fd678 - sha256: 074f44d601cae7c972183e915e7ea53ea433c59a43cb0c8964bb4d897e514512 - optional: false - category: main -- name: cxx-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - c-compiler: "==1.5.2 h0b41bf4_0" - gxx: "*" - gxx_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda" - hash: - md5: 6b3b19e359824b97df7145c8c878c8be - sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc - optional: false - category: main -- name: fonttools - version: 4.38.0 - manager: conda - platform: linux-64 - dependencies: - brotli: "*" - libgcc-ng: ">=12" - munkres: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2" - hash: - md5: 3f2d104f2fefdd5e8a205dd3aacbf1d7 - sha256: 55dff2dd401ef1d6fc4a27cf8e74af899c609519d35eafff3b097d7fc1836d83 - optional: false - category: main -- name: fortran-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - binutils: "*" - c-compiler: "==1.5.2 h0b41bf4_0" - gfortran: "*" - gfortran_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.5.2-hdb1a99f_0.conda" - hash: - md5: 265323e1bd53709aeb739c9b1794b398 - sha256: 985733294fe9b3dc6f126ee95b4b934e097060ca0c12fe469812596a4763228e - optional: false - category: main -- name: gitdb - version: 4.0.10 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main -- name: glib - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - glib-tools: "==2.74.1 h6239696_1" - libgcc-ng: ">=12" - libglib: "==2.74.1 h606061b_1" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - python: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/glib-2.74.1-h6239696_1.tar.bz2" - hash: - md5: f3220a9e9d3abcbfca43419a219df7e4 - sha256: bc3f1d84e976a62ae8388e3b44f260d867beb7a307c18147048a8301a3c12e47 - optional: false - category: main -- name: hypothesis - version: 6.68.1 - manager: conda - platform: linux-64 - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main -- name: importlib-metadata - version: 6.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main -- name: jedi - version: 0.18.2 - manager: conda - platform: linux-64 - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main -- name: jinja2 - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main -- name: libclang - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libclang13: "==15.0.7 default_h3e3d535_1" - libgcc-ng: ">=12" - libllvm15: ">=15.0.7,<15.1.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_had23c3d_1.conda" - hash: - md5: 36c65ed73b7c92589bd9562ef8a6023d - sha256: eba3ed760c72c992a04d86455556ecb90c0e1e3688defcac44b28a848d71651c - optional: false - category: main -- name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main -- name: meson - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main -- name: mypy - version: "0.981" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/linux-64/mypy-0.981-py39hb9d737c_0.tar.bz2" - hash: - md5: 726060f54d0a1ae07577a34dda31a868 - sha256: 0cbf2e4018d7694517268c258a7b53b73c4c3a57490352a0792e08b96d8b637f - optional: false - category: main -- name: pexpect - version: 4.8.0 - manager: conda - platform: linux-64 - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main -- name: pillow - version: 9.4.0 - manager: conda - platform: linux-64 - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py39h2320bf1_1.conda" - hash: - md5: d2f79132b9c8e416058a4cd84ef27b3d - sha256: 77348588ae7cc8034b63e8a71b6695ba22761e1c531678e724cf06a12be3d1e2 - optional: false - category: main -- name: pip - version: "23.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main -- name: pulseaudio - version: "16.1" - manager: conda - platform: linux-64 - dependencies: - alsa-lib: ">=1.2.8,<1.2.9.0a0" - dbus: ">=1.13.6,<2.0a0" - fftw: ">=3.3.10,<4.0a0" - gstreamer-orc: ">=0.4.33,<0.5.0a0" - jack: ">=1.9.21,<1.10.0a0" - libcap: ">=2.66,<2.67.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libsndfile: ">=1.2.0,<1.3.0a0" - libsystemd0: ">=252" - libtool: ">=2.4.7,<3.0a0" - libudev1: ">=252" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-16.1-ha8d29e2_1.conda" - hash: - md5: dbfc2a8d63a43a11acf4c704e1ef9d0c - sha256: aa2aa5b5e2430a3c3d8b24574e5e270c47026740cb706e9be31df81b0627afa6 - optional: false - category: main -- name: pygments - version: 2.14.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main -- name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: linux-64 - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main -- name: pytest - version: 7.2.1 - manager: conda - platform: linux-64 - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main -- name: python-dateutil - version: 2.8.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main -- name: sip - version: 6.7.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - packaging: "*" - ply: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - toml: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.7-py39h227be39_0.conda" - hash: - md5: 7d9a35091552af3655151f164ddd64a3 - sha256: cbd7ddbe101dfe7d7241c5334e08c56fd9000400a099a2144ba95f63f90b9b45 - optional: false - category: main -- name: typing-extensions - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main -- name: brotlipy - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - cffi: ">=1.0.0" - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2" - hash: - md5: a639fdd9428d8b25f8326a3838d54045 - sha256: 293229afcd31e81626e5cfe0478be402b35d29b73aa421a49470645debda5019 - optional: false - category: main -- name: compilers - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - c-compiler: "==1.5.2 h0b41bf4_0" - cxx-compiler: "==1.5.2 hf52228f_0" - fortran-compiler: "==1.5.2 hdb1a99f_0" - url: "https://conda.anaconda.org/conda-forge/linux-64/compilers-1.5.2-ha770c72_0.conda" - hash: - md5: f95226244ee1c487cf53272f971323f4 - sha256: 8ca9a7581c9522fa299782e28ac1e196f67df72b2f01c1e6ed09a2d3a77ec310 - optional: false - category: main -- name: cryptography - version: 39.0.1 - manager: conda - platform: linux-64 - dependencies: - cffi: ">=1.12" - libgcc-ng: ">=12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cryptography-39.0.1-py39h079d5ae_0.conda" - hash: - md5: 3245013812dfbff6a22e57533ac6f69d - sha256: 4349d5416c718c331454b957e0a077500fb4fb9e8f3b7eadb8777a3842021818 - optional: false - category: main -- name: gitpython - version: 3.1.30 - manager: conda - platform: linux-64 - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main -- name: gstreamer - version: 1.22.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - gettext: ">=0.21.1,<1.0a0" - glib: ">=2.74.1,<3.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_0.conda" - hash: - md5: d764367398de61c0d5531dd912e6cc96 - sha256: ebf7839171f7ae6228c9650b13f551da9812486bbb6cd5e78985574b82dc6bbc - optional: false - category: main -- name: harfbuzz - version: 6.0.0 - manager: conda - platform: linux-64 - dependencies: - cairo: ">=1.16.0,<2.0a0" - freetype: ">=2.12.1,<3.0a0" - graphite2: "*" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda" - hash: - md5: 448fe40d2fed88ccf4d9ded37cbb2b38 - sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 - optional: false - category: main -- name: matplotlib-base - version: 3.6.3 - manager: conda - platform: linux-64 - dependencies: - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.3-py39he190548_0.conda" - hash: - md5: 5ade95e6e99425e3e5916019dcd01e55 - sha256: 70a6cc23b22ea0afdf73605d344062983282e1b2e7c8f9d2b0d70bdf93ba771a - optional: false - category: main -- name: meson-python - version: 0.12.0 - manager: conda - platform: linux-64 - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main -- name: pandas - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py39h2ad29b5_0.conda" - hash: - md5: 3ea96adbbc2a66fa45178102a9cfbecc - sha256: a71fb9584f2b58e260fa565d5f27af763f21ed2afeede79e7d848620691bd765 - optional: false - category: main -- name: pyqt5-sip - version: 12.11.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - packaging: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - sip: "*" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py39h227be39_3.conda" - hash: - md5: 9e381db00691e26bcf670c3586397be1 - sha256: aff0befab89f536c4540dba017543d1616862b2d51350cb6d2875c294bd1b199 - optional: false - category: main -- name: pytest-cov - version: 4.0.0 - manager: conda - platform: linux-64 - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main -- name: pytest-xdist - version: 3.2.0 - manager: conda - platform: linux-64 - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main -- name: stack_data - version: 0.6.2 - manager: conda - platform: linux-64 - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main -- name: wcwidth - version: 0.2.6 - manager: conda - platform: linux-64 - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main -- name: gst-plugins-base - version: 1.22.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - alsa-lib: ">=1.2.8,<1.2.9.0a0" - gettext: ">=0.21.1,<1.0a0" - gstreamer: "==1.22.0 h25f0c4b_0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libopus: ">=1.3.1,<2.0a0" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libvorbis: ">=1.3.7,<1.4.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_0.conda" - hash: - md5: 81c20b15d2281a1ea48eac5b4eee8cfa - sha256: dfa2794ea19248f13a1eb067727c70d11e8bba228b82a4bee18ad6a26fdc99fe - optional: false - category: main -- name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main -- name: pyopenssl - version: 23.0.0 - manager: conda - platform: linux-64 - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main -- name: ipython - version: 8.10.0 - manager: conda - platform: linux-64 - dependencies: - __linux: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" - hash: - md5: 4703355103974293bbd8a32449b3ff28 - sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff - optional: false - category: main -- name: qt-main - version: 5.15.8 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - alsa-lib: ">=1.2.8,<1.2.9.0a0" - dbus: ">=1.13.6,<2.0a0" - expat: ">=2.5.0,<3.0a0" - fontconfig: ">=2.14.2,<3.0a0" - fonts-conda-ecosystem: "*" - freetype: ">=2.12.1,<3.0a0" - gst-plugins-base: ">=1.22.0,<1.23.0a0" - gstreamer: ">=1.22.0,<1.23.0a0" - harfbuzz: ">=6.0.0,<7.0a0" - icu: ">=70.1,<71.0a0" - jpeg: ">=9e,<10a" - krb5: ">=1.20.1,<1.21.0a0" - libclang: ">=15.0.7,<16.0a0" - libclang13: ">=15.0.7" - libcups: ">=2.3.3,<2.4.0a0" - libevent: ">=2.1.10,<2.1.11.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libpng: ">=1.6.39,<1.7.0a0" - libpq: ">=15.1,<16.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libstdcxx-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - libxkbcommon: ">=1.0.3,<2.0a0" - libxml2: ">=2.10.3,<2.11.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - mysql-libs: ">=8.0.32,<8.1.0a0" - nspr: ">=4.35,<5.0a0" - nss: ">=3.82,<4.0a0" - openssl: ">=3.0.8,<4.0a0" - pulseaudio: ">=16.1,<16.2.0a0" - xcb-util: "*" - xcb-util-image: "*" - xcb-util-keysyms: "*" - xcb-util-renderutil: "*" - xcb-util-wm: "*" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda" - hash: - md5: 59c73debd9405771690ddbbad6c57b69 - sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 - optional: false - category: main -- name: urllib3 - version: 1.26.14 - manager: conda - platform: linux-64 - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main -- name: pyqt - version: 5.15.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - pyqt5-sip: "==12.11.0 py39h227be39_3" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - qt-main: ">=5.15.6,<5.16.0a0" - sip: ">=6.7.5,<6.8.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py39h5c7b992_3.conda" - hash: - md5: 19e30314fe824605750da905febb8ee6 - sha256: 1dfa1bff6d1334682790063c889198671b477a95c71a3d73ff656b4d88ea542b - optional: false - category: main -- name: requests - version: 2.28.2 - manager: conda - platform: linux-64 - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main -- name: matplotlib - version: 3.6.3 - manager: conda - platform: linux-64 - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - pyqt: ">=5" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.6.3-py39hf3d152e_0.conda" - hash: - md5: dbef5ffeeca5c5112cc3be8f03e6d1a5 - sha256: b1d70dba47ea0e901084fd4d32b506772063b38a99e1c39c1b0fef4c06e7deef - optional: false - category: main -- name: pooch - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main -- name: sphinx - version: 5.3.0 - manager: conda - platform: linux-64 - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main -- name: breathe - version: 4.34.0 - manager: conda - platform: linux-64 - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main -- name: numpydoc - version: 1.4.0 - manager: conda - platform: linux-64 - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main -- name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: linux-64 - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main -- name: scipy - version: 1.10.0 - manager: conda - platform: linux-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py39h7360e5f_2.conda" - hash: - md5: fbee2ab3fe7729f2ff5c5699d58e40b9 - sha256: d9191b5aa96255c5e6a176a795e304e0806aa31366baa0101e6c242c474341d2 - optional: false - category: main -- name: sphinx-design - version: 0.3.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap index dc47da838..5bc2118ae 100644 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap @@ -3129,7 +3129,7 @@ package: manager: conda platform: linux-64 dependencies: - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" @@ -5632,7 +5632,7 @@ package: manager: conda platform: linux-aarch64 dependencies: - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" @@ -8040,7 +8040,7 @@ package: manager: conda platform: linux-ppc64le dependencies: - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" @@ -10512,7 +10512,7 @@ package: platform: osx-64 dependencies: __osx: ">=10.12" - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" @@ -12968,7 +12968,7 @@ package: manager: conda platform: osx-arm64 dependencies: - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new deleted file mode 100644 index 72be6c432..000000000 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__read_conda_lock.snap.new +++ /dev/null @@ -1,13255 +0,0 @@ ---- -source: crates/rattler_conda_types/src/conda_lock/mod.rs -assertion_line: 499 -expression: conda_lock ---- -metadata: - content_hash: - linux-64: db07b15e6c03c3be1c2b06b6b6c916d625f68bba2d5911b013b31970eaa2e5c3 - linux-aarch64: 6f414a06801d6ece6fd70615551f34886e3f91d1d24b2ba0c9521c6df16ad782 - linux-ppc64le: f3318249d3f3c14c47ee460028c2564af69e10fb1dcbae2620f4c6f4be1f5535 - osx-64: b6acb46a28b7f967cae46043c24a68b7f4bc8850d9bd2f0c7ec53974e4288338 - osx-arm64: 3018a6a775139b008670c5fb8448fd825dc709503966f4aa74652bd64a9240e8 - channels: - - url: conda-forge - used_env_vars: [] - platforms: - - linux-64 - - linux-aarch64 - - linux-ppc64le - - osx-64 - - osx-arm64 - sources: - - /tmp/conda-lock.MczGj6QaAcBP/environment.yml - time_metadata: ~ - git_metadata: ~ - inputs_metadata: ~ - custom_metadata: ~ -package: - - name: _libgcc_mutex - version: "0.1" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2" - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - optional: false - category: main - - name: ca-certificates - version: 2022.12.7 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.12.7-ha878542_0.conda" - hash: - md5: ff9f73d45c4a07d6f424495288a26080 - sha256: 8f6c81b0637771ae0ea73dc03a6d30bec3326ba3927f2a7b91931aa2d59b1789 - optional: false - category: main - - name: font-ttf-dejavu-sans-mono - version: "2.37" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2" - hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - optional: false - category: main - - name: font-ttf-inconsolata - version: "3.000" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2" - hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c - optional: false - category: main - - name: font-ttf-source-code-pro - version: "2.038" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2" - hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 - optional: false - category: main - - name: font-ttf-ubuntu - version: "0.83" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2" - hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e - optional: false - category: main - - name: kernel-headers_linux-64 - version: 2.6.32 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2" - hash: - md5: 5dd5127afd710f91f6a75821bac0a4f0 - sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 - optional: false - category: main - - name: ld_impl_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hcc3a1bd_1.conda" - hash: - md5: 737be0d34c22d24432049ab7a3214de4 - sha256: 3e7f203e33ea497b6e468279cc5fdef7d556473c25e7466b35fd672940392469 - optional: false - category: main - - name: libgcc-devel_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" - hash: - md5: 9b7bdb0b42ce4e4670d32bfe0532b56a - sha256: 70b2c370cc616304f732eeb4014825390dbee044ecbc3875e968b0ea01bd7503 - optional: false - category: main - - name: libgfortran5 - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2" - hash: - md5: 164b4b1acaedc47ee7e658ae6b308ca3 - sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 - optional: false - category: main - - name: libstdcxx-devel_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-11.3.0-h210ce93_19.tar.bz2" - hash: - md5: 8aee006c0662f551f3acef9a7077a5b9 - sha256: abfcbf3a0f770be88eefebf84ae3a901da9e933799c9eecf3e9b06f34b00a0a5 - optional: false - category: main - - name: libstdcxx-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2" - hash: - md5: 1030b1f38c129f2634eae026f704fe60 - sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 - optional: false - category: main - - name: nomkl - version: "1.0" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main - - name: python_abi - version: "3.9" - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-3_cp39.conda" - hash: - md5: 0dd193187d54e585cac7eab942a8847e - sha256: 89e8c4436dd04d8b4a0c13c508e930be56973a480a9714171969de953bdafd3a - optional: false - category: main - - name: tzdata - version: 2022g - manager: conda - platform: linux-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main - - name: fonts-conda-forge - version: "1" - manager: conda - platform: linux-64 - dependencies: - font-ttf-dejavu-sans-mono: "*" - font-ttf-inconsolata: "*" - font-ttf-source-code-pro: "*" - font-ttf-ubuntu: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2" - hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - optional: false - category: main - - name: libgfortran-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - libgfortran5: "==12.2.0 h337968e_19" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2" - hash: - md5: cd7a806282c16e1f2d39a7e80d3a3e0d - sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f - optional: false - category: main - - name: libgomp - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2" - hash: - md5: cedcee7c064c01c403f962c9e8d3c373 - sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e - optional: false - category: main - - name: sysroot_linux-64 - version: "2.12" - manager: conda - platform: linux-64 - dependencies: - kernel-headers_linux-64: "==2.6.32 he073ed8_15" - url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2" - hash: - md5: 66c192522eacf5bb763568b4e415d133 - sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff - optional: false - category: main - - name: _openmp_mutex - version: "4.5" - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - libgomp: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2" - hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - optional: false - category: main - - name: binutils_impl_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - ld_impl_linux-64: "==2.39 hcc3a1bd_1" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-he00db2b_1.conda" - hash: - md5: 3d726e8b51a1f5bfd66892a2b7d9db2d - sha256: 69a7c32141475dab43de2f19b7a67c14596cbb357cdb5891ff866918f8f65a2e - optional: false - category: main - - name: fonts-conda-ecosystem - version: "1" - manager: conda - platform: linux-64 - dependencies: - fonts-conda-forge: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2" - hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - optional: false - category: main - - name: binutils - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: ">=2.39,<2.40.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils-2.39-hdd6e379_1.conda" - hash: - md5: 1276c18b0a562739185dbf5bd14b57b2 - sha256: 8edbd5a01feaf22053d7c02e7d5066a3b35b265deee0a5ad3f69054289bbbd7e - optional: false - category: main - - name: binutils_linux-64 - version: "2.39" - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: 2.39.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2" - hash: - md5: b7d26ab37be17ea4c366a97138684bcb - sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e - optional: false - category: main - - name: libgcc-ng - version: 12.2.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - _openmp_mutex: ">=4.5" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2" - hash: - md5: e4c94f80aef025c17ab0828cd85ef535 - sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 - optional: false - category: main - - name: alsa-lib - version: 1.2.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2" - hash: - md5: be733e69048951df1e4b4b7bb8c7666f - sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd - optional: false - category: main - - name: attr - version: 2.5.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2" - hash: - md5: d9c69a24ad678ffce24c6543a0176b00 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 - optional: false - category: main - - name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2" - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main - - name: expat - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2" - hash: - md5: c4fbad8d4bddeb3c085f18cbf97fbfad - sha256: b44db0b92ae926b3fbbcd57c179fceb64fa11a9f9d09082e03be58b74dcad832 - optional: false - category: main - - name: fftw - version: 3.3.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf0379b8_106.conda" - hash: - md5: d7407e695358f068a2a7f8295cde0567 - sha256: 8b735848df623fab555a6d7fc400636116d6ed5686ae0e50adb7df4c1c3a9cef - optional: false - category: main - - name: gettext - version: 0.21.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2" - hash: - md5: 14947d8770185e5153fdd04d4673ed37 - sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a - optional: false - category: main - - name: graphite2 - version: 1.3.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2" - hash: - md5: 8c54672728e8ec6aa6db90cf2806d220 - sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 - optional: false - category: main - - name: gstreamer-orc - version: 0.4.33 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.33-h166bdaf_0.tar.bz2" - hash: - md5: 879c93426c9d0b84a9de4513fbce5f4f - sha256: c4fdbaaeb66eed280ef6875c6a4b6916ed168166277e9317fbe25b15d3758897 - optional: false - category: main - - name: icu - version: "70.1" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2" - hash: - md5: 87473a15119779e021c314249d4b4aed - sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a - optional: false - category: main - - name: jpeg - version: 9e - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda" - hash: - md5: c7a069243e1fbe9a556ed2ec030e6407 - sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b - optional: false - category: main - - name: keyutils - version: 1.6.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2" - hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - optional: false - category: main - - name: lame - version: "3.100" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2" - hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab - optional: false - category: main - - name: lerc - version: 4.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2" - hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 - optional: false - category: main - - name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 9194c9bf9428035a05352d031462eae4 - sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 - optional: false - category: main - - name: libdb - version: 6.2.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2" - hash: - md5: 3f3258d8f841fbac63b36b75bdac1afd - sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 - optional: false - category: main - - name: libdeflate - version: "1.17" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda" - hash: - md5: 5cc781fd91968b11a8a7fdbee0982676 - sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c - optional: false - category: main - - name: libffi - version: 3.4.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2" - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main - - name: libiconv - version: "1.17" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2" - hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 - optional: false - category: main - - name: libnsl - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2" - hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad - optional: false - category: main - - name: libogg - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2" - hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 - optional: false - category: main - - name: libopenblas - version: 0.3.21 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2" - hash: - md5: 8c5963a49b6035c40646a763293fbb35 - sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 - optional: false - category: main - - name: libopus - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2" - hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - optional: false - category: main - - name: libsanitizer - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.3.0-h239ccf8_19.tar.bz2" - hash: - md5: d17fd55aed84ab6592c5419b6600501c - sha256: 5e53a50c9b5fd04790f4cc63aa74cd6172151246248438b9bc154392ebe0bd17 - optional: false - category: main - - name: libtool - version: 2.4.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda" - hash: - md5: f204c8ba400ec475452737094fb81d52 - sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1 - optional: false - category: main - - name: libudev1 - version: "252" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libudev1-252-h166bdaf_0.tar.bz2" - hash: - md5: 174243089ec111479298a5b7099b64b5 - sha256: e9ef9cb1d34a2f02f68c4778986f1f8be3015fec272523fd2dde3723c120f038 - optional: false - category: main - - name: libuuid - version: 2.32.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2" - hash: - md5: 772d69f030955d9646d3d0eaf21d859d - sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 - optional: false - category: main - - name: libwebp-base - version: 1.2.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2" - hash: - md5: ac2ccf7323d21f2994e4d1f5da664f37 - sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 - optional: false - category: main - - name: libzlib - version: 1.2.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2" - hash: - md5: f3f9de449d32ca9b9c66a22863c96f41 - sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd - optional: false - category: main - - name: lz4-c - version: 1.9.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda" - hash: - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f - optional: false - category: main - - name: mpg123 - version: 1.31.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.2-hcb278e6_0.conda" - hash: - md5: 08efb1e1813f1a151b7a945b972a049b - sha256: cc8cb2097e96d2420dd698951ab524b6c8268fa691d370020a0eae3e65197c04 - optional: false - category: main - - name: ncurses - version: "6.3" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2" - hash: - md5: 4acfc691e64342b9dae57cf2adc63238 - sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 - optional: false - category: main - - name: ninja - version: 1.11.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.0-h924138e_0.tar.bz2" - hash: - md5: 18c563c26253a21c1aa9d662e874b0cd - sha256: 1d3659abc4e3dfa9c8c03a664f6d0323503b75a4506fb9d28f28448be5540fc5 - optional: false - category: main - - name: nspr - version: "4.35" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda" - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - optional: false - category: main - - name: openssl - version: 3.0.8 - manager: conda - platform: linux-64 - dependencies: - ca-certificates: "*" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.8-h0b41bf4_0.conda" - hash: - md5: e043403cd18faf815bf7705ab6c1e092 - sha256: cd981c5c18463bc7a164fcf45c5cf697d58852b780b4dfa5e83c18c1fda6d7cd - optional: false - category: main - - name: pixman - version: 0.40.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2" - hash: - md5: 660e72c82f2e75a6b3fe6a6e75c79f19 - sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 - optional: false - category: main - - name: pkg-config - version: 0.29.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2" - hash: - md5: fbef41ff6a4c8140c30057466a1cdd47 - sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c - optional: false - category: main - - name: pthread-stubs - version: "0.4" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2" - hash: - md5: 22dad4df6e8630e8dff2428f6f6a7036 - sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff - optional: false - category: main - - name: xorg-kbproto - version: 1.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2" - hash: - md5: 4b230e8381279d76131116660f5a241a - sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 - optional: false - category: main - - name: xorg-libice - version: 1.0.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2" - hash: - md5: d6b0b50b49eccfe0be0373be628be0f3 - sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 - optional: false - category: main - - name: xorg-libxau - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2" - hash: - md5: bf6f803a544f26ebbdc3bfff272eb179 - sha256: 9e9b70c24527289ac7ae31925d1eb3b0c1e9a78cb7b8f58a3110cc8bbfe51c26 - optional: false - category: main - - name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2" - hash: - md5: be93aabceefa2fac576e971aef407908 - sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 - optional: false - category: main - - name: xorg-renderproto - version: 0.11.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2" - hash: - md5: 06feff3d2634e3097ce2fe681474b534 - sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 - optional: false - category: main - - name: xorg-xextproto - version: 7.3.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2" - hash: - md5: 1e15f6ad85a7d743a2ac68dae6c82b98 - sha256: d45c4d1c8372c546711eb3863c76d899d03a67c3edb3b5c2c46c9492814cbe03 - optional: false - category: main - - name: xorg-xproto - version: 7.0.31 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2" - hash: - md5: b4a4381d54784606820704f7b5f05a15 - sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d - optional: false - category: main - - name: xz - version: 5.2.6 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2" - hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - optional: false - category: main - - name: doxygen - version: 1.9.5 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libiconv: ">=1.16,<2.0.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.9.5-h583eb01_0.tar.bz2" - hash: - md5: a94d4fb8005f9d8d286e06bbb1bec448 - sha256: f8379387abdb1c51ec72165fbd7e2c54b83c40224ea9eed825a18895ab60273f - optional: false - category: main - - name: gcc_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_impl_linux-64: ">=2.39" - libgcc-devel_linux-64: "==11.3.0 h210ce93_19" - libgcc-ng: ">=11.3.0" - libgomp: ">=11.3.0" - libsanitizer: "==11.3.0 h239ccf8_19" - libstdcxx-ng: ">=11.3.0" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" - hash: - md5: 89ac16d36e66ccb9ca5d34c9217e5799 - sha256: 51c6e39148c9da4a9889d34f0daebdf961ca93f032b1e86f621a67ecff2bd915 - optional: false - category: main - - name: jack - version: 1.9.22 - manager: conda - platform: linux-64 - dependencies: - alsa-lib: ">=1.2.8,<1.2.9.0a0" - libdb: ">=6.2.32,<6.3.0a0" - libgcc-ng: ">=12" - libopus: ">=1.3.1,<2.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h11f4161_0.conda" - hash: - md5: 504fa9e712b99494a9cf4630e3ca7d78 - sha256: 9f173c6633f7ef049b05cd92a9fc028402972ddc44a56d5bb51d8879d73bbde7 - optional: false - category: main - - name: libblas - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: d9b7a8639171f6c6fa0a983edabcfe2b - sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 - optional: false - category: main - - name: libbrotlidec - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlicommon: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 4ae4d7795d33e02bd20f6b23d91caf82 - sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 - optional: false - category: main - - name: libbrotlienc - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlicommon: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 04bac51ba35ea023dc48af73c1c88c25 - sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be - optional: false - category: main - - name: libcap - version: "2.66" - manager: conda - platform: linux-64 - dependencies: - attr: ">=2.5.1,<2.6.0a0" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcap-2.66-ha37c62d_0.tar.bz2" - hash: - md5: 2d7665abd0997f1a6d4b7596bc27b657 - sha256: db113b0bacb45533ec6f5c13a548054af8bd0ca2f7583e8bc5989f17e1e1638b - optional: false - category: main - - name: libedit - version: 3.1.20191231 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - ncurses: ">=6.2,<7.0.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2" - hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - optional: false - category: main - - name: libevent - version: 2.1.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - openssl: ">=3.0.0,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2" - hash: - md5: 4a049fc560e00e43151dc51368915fdd - sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a - optional: false - category: main - - name: libflac - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libgcc-ng: ">=12" - libogg: ">=1.3.4,<1.4.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2" - hash: - md5: 7daf72d8e2a8e848e11d63ed6d1026e0 - sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 - optional: false - category: main - - name: libgpg-error - version: "1.46" - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda" - hash: - md5: 27e745f6f2e4b757e95dd7225fbe6bdb - sha256: a2e3df80a5713b4143f7d276a9354d78f2b2927b22831dc24c3246a82674aaba - optional: false - category: main - - name: libpng - version: 1.6.39 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda" - hash: - md5: e1c890aebdebbfbf87e2c917187b4416 - sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 - optional: false - category: main - - name: libsqlite - version: 3.40.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.40.0-h753d276_0.tar.bz2" - hash: - md5: 2e5f9a37d487e1019fd4d8113adb2f9f - sha256: 6008a0b914bd1a3510a3dba38eada93aa0349ebca3a21e5fa276833c8205bf49 - optional: false - category: main - - name: libvorbis - version: 1.3.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libogg: ">=1.3.4,<1.4.0a0" - libstdcxx-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2" - hash: - md5: 309dec04b70a3cc0f1e84a4013683bc0 - sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 - optional: false - category: main - - name: libxcb - version: "1.13" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2" - hash: - md5: b3653fdc58d03face9724f602218a904 - sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 - optional: false - category: main - - name: libxml2 - version: 2.10.3 - manager: conda - platform: linux-64 - dependencies: - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libiconv: ">=1.17,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2" - hash: - md5: 3b933ea47ef8f330c4c068af25fcd6a8 - sha256: b30713fb4477ff4f722280d956593e7e7a2cb705b7444dcc278de447432b43b1 - optional: false - category: main - - name: mysql-common - version: 8.0.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-ha901b37_0.conda" - hash: - md5: 6a39818710235826181e104aada40c75 - sha256: d7da5c1cc47656394933146ab30f6f3433553e8265ea1a4254bce441ab678199 - optional: false - category: main - - name: openblas - version: 0.3.21 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libopenblas: "==0.3.21 pthreads_h78a6416_3" - url: "https://conda.anaconda.org/conda-forge/linux-64/openblas-0.3.21-pthreads_h320a7e8_3.tar.bz2" - hash: - md5: 29155b9196b9d78022f11d86733e25a7 - sha256: b9986da11c136f4171ce94df6fe5940b529f38b9f13f2746817913071aa51151 - optional: false - category: main - - name: pcre2 - version: "10.40" - manager: conda - platform: linux-64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2" - hash: - md5: 69e2c796349cd9b273890bee0febfe1b - sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a - optional: false - category: main - - name: readline - version: 8.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2" - hash: - md5: db2ebbe2943aae81ed051a6a9af8e0fa - sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 - optional: false - category: main - - name: tk - version: 8.6.12 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2" - hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 - optional: false - category: main - - name: xorg-libsm - version: 1.2.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libuuid: ">=2.32.1,<3.0a0" - xorg-libice: 1.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2" - hash: - md5: 9e856f78d5c80d5a78f61e72d1d473a3 - sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 - optional: false - category: main - - name: zlib - version: 1.2.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libzlib: "==1.2.13 h166bdaf_4" - url: "https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2" - hash: - md5: 4b11e365c0275b808be78b30f904e295 - sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 - optional: false - category: main - - name: zstd - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda" - hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 - optional: false - category: main - - name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlidec: "==1.0.9 h166bdaf_8" - libbrotlienc: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: e5613f2bc717e9945840ff474419b8e4 - sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f - optional: false - category: main - - name: freetype - version: 2.12.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda" - hash: - md5: e1232042de76d24539a436d37597eb06 - sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f - optional: false - category: main - - name: gcc - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc-11.3.0-h02d0930_11.tar.bz2" - hash: - md5: 6037ebe5f1e3054519ce78b11eec9cd4 - sha256: 1946d6c3ea7e98231de51d506c978c00ae97c7b27379ab34a368218d014758c8 - optional: false - category: main - - name: gcc_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.3.0-he6f903b_11.tar.bz2" - hash: - md5: 25f76cb82e483ce96d118b9edffd12c9 - sha256: c0041b6f805b6b3c01bfb51232b606c9a50a8e0154d17bbf61af36d62c600f00 - optional: false - category: main - - name: gfortran_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: ">=11.3.0" - libgcc-ng: ">=4.9" - libgfortran5: ">=11.3.0" - libstdcxx-ng: ">=4.9" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-11.3.0-he34c6f7_19.tar.bz2" - hash: - md5: 3de873ee757f1a2e583416a3583f84c4 - sha256: 3263c7b7d4c9d0c0a25e92ca201b7c014c00257cecf08ac28953dfda43c93803 - optional: false - category: main - - name: gxx_impl_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc_impl_linux-64: "==11.3.0 hab1b70f_19" - libstdcxx-devel_linux-64: "==11.3.0 h210ce93_19" - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.3.0-hab1b70f_19.tar.bz2" - hash: - md5: b73564a352e64bb5f2c9bfd3cd6dd127 - sha256: b86a4d15050c8ad5b8a4273c55f468847d891ceb08f3702408c3a0e921a5b5ea - optional: false - category: main - - name: krb5 - version: 1.20.1 - manager: conda - platform: linux-64 - dependencies: - keyutils: ">=1.6.1,<2.0a0" - libedit: ">=3.1.20191231,<4.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda" - hash: - md5: 89a41adce7106749573d883b2f657d78 - sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 - optional: false - category: main - - name: libcblas - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: "==3.9.0 16_linux64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: 20bae26d0a1db73f758fc3754cab4719 - sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f - optional: false - category: main - - name: libgcrypt - version: 1.10.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=10.3.0" - libgpg-error: ">=1.44,<2.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2" - hash: - md5: f967fc95089cd247ceed56eda31de3a9 - sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a - optional: false - category: main - - name: libglib - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libiconv: ">=1.17,<2.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - pcre2: ">=10.40,<10.41.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h606061b_1.tar.bz2" - hash: - md5: ed5349aa96776e00b34eccecf4a948fe - sha256: 3cbad3d63cff2dd9ac1dc9cce54fd3d657f3aff53df41bfe5bae9d760562a5af - optional: false - category: main - - name: liblapack - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libblas: "==3.9.0 16_linux64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2" - hash: - md5: 955d993f41f9354bf753d29864ea20ad - sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 - optional: false - category: main - - name: libllvm15 - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libxml2: ">=2.10.3,<2.11.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_0.conda" - hash: - md5: 70cbb0c2033665f2a7339bf0ec51a67f - sha256: 3fb9a9cfd2f5c79e8116c67f95d5a9b790ec66807ae0d8cebefc26fda9f836a7 - optional: false - category: main - - name: libsndfile - version: 1.2.0 - manager: conda - platform: linux-64 - dependencies: - lame: ">=3.100,<3.101.0a0" - libflac: ">=1.4.2,<1.5.0a0" - libgcc-ng: ">=12" - libogg: ">=1.3.4,<1.4.0a0" - libopus: ">=1.3.1,<2.0a0" - libstdcxx-ng: ">=12" - libvorbis: ">=1.3.7,<1.4.0a0" - mpg123: ">=1.31.1,<1.32.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda" - hash: - md5: c648d19cd9c8625898d5d370414de7c7 - sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 - optional: false - category: main - - name: libtiff - version: 4.5.0 - manager: conda - platform: linux-64 - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libdeflate: ">=1.17,<1.18.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda" - hash: - md5: 2e648a34072eb39d7c4fc2a9981c5f0c - sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee - optional: false - category: main - - name: libxkbcommon - version: 1.0.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - libxml2: ">=2.9.10,<2.11.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.0.3-he3ba5ed_0.tar.bz2" - hash: - md5: f9dbabc7e01c459ed7a1d1d64b206e9b - sha256: 64d37e16c694714ca08a96f9864a35ba9ee38b8e222f8ee646e10976250d966d - optional: false - category: main - - name: mysql-libs - version: 8.0.32 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - mysql-common: "==8.0.32 ha901b37_0" - openssl: ">=3.0.7,<4.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hd7da12d_0.conda" - hash: - md5: b05d7ea8b76f1172d5fe4f30e03277ea - sha256: 903174761ce605d98410747e0072757da5278d57309148ef175af490aa791f38 - optional: false - category: main - - name: nss - version: "3.88" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libgcc-ng: ">=12" - libsqlite: ">=3.40.0,<4.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - nspr: ">=4.35,<5.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/nss-3.88-he45b914_0.conda" - hash: - md5: d7a81dfb99ad8fbb88872fb7ec646e6c - sha256: a589e916119db06742da1307c3438a5c733cf01006470158c7aae8f2859f6e90 - optional: false - category: main - - name: python - version: 3.9.16 - manager: conda - platform: linux-64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-64: ">=2.36.1" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/python-3.9.16-h2782a2a_0_cpython.conda" - hash: - md5: 95c9b7c96a7fd7342e0c9d0a917b8f78 - sha256: 00bcb28a294aa78bf9d2a2ecaae8cb887188eae710f9197d823d36fb8a5d9767 - optional: false - category: main - - name: xcb-util - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: 384e7fcb3cd162ba3e4aed4b687df566 - sha256: 292dee40f8390aea0e6a0abbf2f255f179c777326831ed9e1ad7db53665c8562 - optional: false - category: main - - name: xcb-util-keysyms - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: 637054603bb7594302e3bf83f0a99879 - sha256: 6a2c0f38b360a2fda57b2349d2cbeeb7583576a4914a3e4ce17977601ac87613 - optional: false - category: main - - name: xcb-util-renderutil - version: 0.3.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2" - hash: - md5: 732e22f1741bccea861f5668cf7342a7 - sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 - optional: false - category: main - - name: xcb-util-wm - version: 0.4.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h166bdaf_0.tar.bz2" - hash: - md5: 0a8e20a8aef954390b9481a527421a8c - sha256: a76af35297f233982b58de1f55f1900d8a8ae44018a55d2a94f3084ab97d6c80 - optional: false - category: main - - name: xorg-libx11 - version: 1.7.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - libxcb: 1.* - xorg-kbproto: "*" - xorg-xproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2" - hash: - md5: 12a61e640b8894504326aadafccbb790 - sha256: ec4641131e3afcb4b34614a5fa298efb34f54c2b2960bf9a73a8d202140d47c4 - optional: false - category: main - - name: alabaster - version: 0.7.13 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main - - name: appdirs - version: 1.4.4 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main - - name: attrs - version: 22.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main - - name: backcall - version: 0.2.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main - - name: backports - version: "1.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main - - name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/backports.zoneinfo-0.2.1-py39hf3d152e_7.tar.bz2" - hash: - md5: b1a72c73acf3527aa5c1e2eed594fa25 - sha256: 1e9ca141550b6b515dec4ff32a7ca32948f6ac01e0fec207d8a14a7170b2973c - optional: false - category: main - - name: brotli - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - brotli-bin: "==1.0.9 h166bdaf_8" - libbrotlidec: "==1.0.9 h166bdaf_8" - libbrotlienc: "==1.0.9 h166bdaf_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2" - hash: - md5: 2ff08978892a3e8b954397c461f18418 - sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 - optional: false - category: main - - name: c-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - binutils: "*" - gcc: "*" - gcc_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda" - hash: - md5: 69afb4e35be6366c2c1f9ed7f49bc3e6 - sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a - optional: false - category: main - - name: certifi - version: 2022.12.7 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main - - name: charset-normalizer - version: 2.1.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main - - name: click - version: 8.1.3 - manager: conda - platform: linux-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - - name: colorama - version: 0.4.6 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main - - name: cycler - version: 0.11.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - - name: cython - version: 0.29.33 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cython-0.29.33-py39h227be39_0.conda" - hash: - md5: 34bab6ef3e8cdf86fe78c46a984d3217 - sha256: 908715a56fe7633df894464c59c3799d88300772fc62011fa96593ce4ad92ef4 - optional: false - category: main - - name: dbus - version: 1.13.6 - manager: conda - platform: linux-64 - dependencies: - expat: ">=2.4.2,<3.0a0" - libgcc-ng: ">=9.4.0" - libglib: ">=2.70.2,<3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2" - hash: - md5: ecfff944ba3960ecb334b9a2663d708d - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 - optional: false - category: main - - name: decorator - version: 5.1.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main - - name: docutils - version: "0.19" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/docutils-0.19-py39hf3d152e_1.tar.bz2" - hash: - md5: adb733ec2ee669f6d010758d054da60f - sha256: 826ae2374fc37a9bb29dd3c7783ba11ffa1e215660a60144e7f759c49686b1af - optional: false - category: main - - name: exceptiongroup - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main - - name: execnet - version: 1.9.0 - manager: conda - platform: linux-64 - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main - - name: executing - version: 1.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main - - name: fontconfig - version: 2.14.2 - manager: conda - platform: linux-64 - dependencies: - expat: ">=2.5.0,<3.0a0" - freetype: ">=2.12.1,<3.0a0" - libgcc-ng: ">=12" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda" - hash: - md5: 0f69b688f52ff6da70bccb7ff7001d1d - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 - optional: false - category: main - - name: gfortran - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc: 11.3.0.* - gcc_impl_linux-64: 11.3.0.* - gfortran_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran-11.3.0-ha859ce3_11.tar.bz2" - hash: - md5: 9a6a0c6fc4d192fddc7347a0ca31a329 - sha256: 9ec8753064dc7379958788952346fc1f0caa18affe093cac62c8a8e267f5f38e - optional: false - category: main - - name: gfortran_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_linux-64: "==11.3.0 he6f903b_11" - gfortran_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-11.3.0-h3c55166_11.tar.bz2" - hash: - md5: f70b169eb69320d71f193758b7df67e8 - sha256: 7c3bc99fc0d32647681f9b8ce44f137f16ae5ec37f040b66506c6634c299f071 - optional: false - category: main - - name: glib-tools - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libglib: "==2.74.1 h606061b_1" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.74.1-h6239696_1.tar.bz2" - hash: - md5: 5f442e6bc9d89ba236eb25a25c5c2815 - sha256: 029533e2e1cb03a80ae07a0a1a6bdd76b524e8f551d82e832a4d846a77b615c9 - optional: false - category: main - - name: gxx - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - gcc: 11.3.0.* - gxx_impl_linux-64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx-11.3.0-h02d0930_11.tar.bz2" - hash: - md5: e47dd4b4e577f03bb6aab18f48be5419 - sha256: 3614201ab2f09f27429b7faea7dcd9e24e089a325bca878f76cdd0dca4676520 - optional: false - category: main - - name: gxx_linux-64 - version: 11.3.0 - manager: conda - platform: linux-64 - dependencies: - binutils_linux-64: "==2.39 h5fc0e48_11" - gcc_linux-64: "==11.3.0 he6f903b_11" - gxx_impl_linux-64: 11.3.0.* - sysroot_linux-64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.3.0-hc203a17_11.tar.bz2" - hash: - md5: 15fbc9079f191d468403639a6515652c - sha256: 7be17e1fdb200e8b9afe8f4e88b3b821740be6024e433565abda94e5d021c9cb - optional: false - category: main - - name: idna - version: "3.4" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - - name: imagesize - version: 1.4.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main - - name: iniconfig - version: 2.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main - - name: kiwisolver - version: 1.4.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2" - hash: - md5: 41679a052a8ce841c74df1ebc802e411 - sha256: eb28254cc7029e702d0059536d986b010221de62f9c8588a5a83e95a00b4e74d - optional: false - category: main - - name: lcms2 - version: "2.14" - manager: conda - platform: linux-64 - dependencies: - jpeg: ">=9e,<10a" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-hfd0df8a_1.conda" - hash: - md5: c2566c2ea5f153ddd6bf4acaf7547d97 - sha256: 632f191ac65bc673f8fcef9947e2c8431b0db6ca357ceebde3bdc4ed187af814 - optional: false - category: main - - name: libclang13 - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libllvm15: ">=15.0.7,<15.1.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h3e3d535_1.conda" - hash: - md5: a3a0f7a6f0885f5e1e0ec691566afb77 - sha256: e48481c37d02aefeddcfac20d48cf13b838c5f7b9018300fa7eac404d30f3d7f - optional: false - category: main - - name: libcups - version: 2.3.3 - manager: conda - platform: linux-64 - dependencies: - krb5: ">=1.20.1,<1.21.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda" - hash: - md5: c9f4416a34bc91e0eb029f912c68f81f - sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 - optional: false - category: main - - name: libpq - version: "15.2" - manager: conda - platform: linux-64 - dependencies: - krb5: ">=1.20.1,<1.21.0a0" - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - openssl: ">=3.0.8,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libpq-15.2-hb675445_0.conda" - hash: - md5: 4654b17eccaba55b8581d6b9c77f53cc - sha256: 5693c492ca0280e62edd114d91b7aa9c81fa60276b594f31d18a852636603f9e - optional: false - category: main - - name: libsystemd0 - version: "252" - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - libcap: ">=2.66,<2.67.0a0" - libgcc-ng: ">=12" - libgcrypt: ">=1.10.1,<2.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-252-h2a991cd_0.tar.bz2" - hash: - md5: 3c5ae9f61f663b3d5e1bf7f7da0c85f5 - sha256: a181e25a04207179da598a5a89747a026642341e193dca125620f5f4e268804a - optional: false - category: main - - name: markupsafe - version: 2.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py39h72bdee0_0.conda" - hash: - md5: 35514f5320206df9f4661c138c02e1c1 - sha256: da31fe95611393bb7dd3dee309a89328448570fd8a3205c2c55c03eb73688b61 - optional: false - category: main - - name: munkres - version: 1.1.4 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main - - name: mypy_extensions - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main - - name: numpy - version: 1.24.2 - manager: conda - platform: linux-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.2-py39h7360e5f_0.conda" - hash: - md5: 757070dc7cc33003254888808cd34f1e - sha256: c0418aa18f4fd37d3ac786058bfa29cca0b5b8eca95a2e0ae2fdd13aefc81ad6 - optional: false - category: main - - name: openjpeg - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda" - hash: - md5: 5ce6a42505c6e9e6151c54c3ec8d68ea - sha256: 3cbfb1fe9bb492dcb672f98f0ddc7b4e029f51f77101d9c301caa3acaea8cba2 - optional: false - category: main - - name: packaging - version: "23.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main - - name: parso - version: 0.8.3 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main - - name: pickleshare - version: 0.7.5 - manager: conda - platform: linux-64 - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main - - name: pluggy - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main - - name: ply - version: "3.11" - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2" - hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 - optional: false - category: main - - name: psutil - version: 5.9.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.4-py39hb9d737c_0.tar.bz2" - hash: - md5: 12184951da572828fb986b06ffb63eed - sha256: 515cf2cfc0504eb5758fa9ddfabc1dcbd7182da7650828aac97c9eee35597c84 - optional: false - category: main - - name: ptyprocess - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main - - name: pure_eval - version: 0.2.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main - - name: pycodestyle - version: 2.7.0 - manager: conda - platform: linux-64 - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main - - name: pycparser - version: "2.21" - manager: conda - platform: linux-64 - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main - - name: pyparsing - version: 3.0.9 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main - - name: pysocks - version: 1.7.1 - manager: conda - platform: linux-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - - name: pytz - version: 2022.7.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main - - name: setuptools - version: 59.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/setuptools-59.2.0-py39hf3d152e_0.tar.bz2" - hash: - md5: 37ef3543fa46bf5d587f23d72b88fbf7 - sha256: 7e74640590ebe3379bb33c0aed17efa8c305c016b85e987d1e864a40a29743aa - optional: false - category: main - - name: six - version: 1.16.0 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - - name: smmap - version: 3.0.5 - manager: conda - platform: linux-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main - - name: snowballstemmer - version: 2.2.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - - name: sortedcontainers - version: 2.4.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main - - name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main - - name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main - - name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main - - name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main - - name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main - - name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main - - name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main - - name: toml - version: 0.10.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main - - name: tomli - version: 2.0.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - - name: tornado - version: "6.2" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py39hb9d737c_1.tar.bz2" - hash: - md5: 8a7d309b08cff6386fe384aa10dd3748 - sha256: 67c3eef0531caf75a81945844288f363cd3b7b029829bd91ed0994bf6b231f34 - optional: false - category: main - - name: traitlets - version: 5.9.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main - - name: typing_extensions - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main - - name: unicodedata2 - version: 15.0.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py39hb9d737c_0.tar.bz2" - hash: - md5: 230d65004135bf312504a1bbcb0c7a08 - sha256: 03c2cf05d1f4f2b01fc1e3ced22d5f331f2f233e335c4a4cd11a31fea1fccc0c - optional: false - category: main - - name: wheel - version: 0.38.4 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main - - name: xcb-util-image - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - xcb-util: ">=0.4.0,<0.5.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2" - hash: - md5: c9b568bd804cb2903c6be6f5f68182e4 - sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 - optional: false - category: main - - name: xorg-libxext - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - xorg-libx11: ">=1.7.0,<2.0a0" - xorg-xextproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2" - hash: - md5: 536cc5db4d0a3ba0630541aec064b5e4 - sha256: cf47ccbf49d46189d7bdadeac1387c826be82deb92ce6badbb03baae4b67ed26 - optional: false - category: main - - name: xorg-libxrender - version: 0.9.10 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=9.3.0" - xorg-libx11: ">=1.7.0,<2.0a0" - xorg-renderproto: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2" - hash: - md5: f59c1242cc1dd93e72c2ee2b360979eb - sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 - optional: false - category: main - - name: zipp - version: 3.13.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main - - name: asttokens - version: 2.2.1 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main - - name: babel - version: 2.11.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main - - name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: linux-64 - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main - - name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main - - name: cairo - version: 1.16.0 - manager: conda - platform: linux-64 - dependencies: - fontconfig: ">=2.13.96,<3.0a0" - fonts-conda-ecosystem: "*" - freetype: ">=2.12.1,<3.0a0" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libglib: ">=2.72.1,<3.0a0" - libpng: ">=1.6.38,<1.7.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - pixman: ">=0.40.0,<1.0a0" - xorg-libice: "*" - xorg-libsm: "*" - xorg-libx11: "*" - xorg-libxext: "*" - xorg-libxrender: "*" - zlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2" - hash: - md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 - sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 - optional: false - category: main - - name: cffi - version: 1.15.1 - manager: conda - platform: linux-64 - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_3.conda" - hash: - md5: 20080319ef73fbad74dcd6d62f2a3ffe - sha256: 485a8f65c58c26c7d48bfea20ed1d6f1493f3329dd2c9c0a888a1c2b7c2365c5 - optional: false - category: main - - name: contourpy - version: 1.0.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py39h4b4f3f3_0.conda" - hash: - md5: c5387f3fb1f5b8b71e1c865fc55f4951 - sha256: 74a767b73686caf0bb1d1186cd62a54f01e03ad5432eaaf0a7babad7634c4067 - optional: false - category: main - - name: coverage - version: 7.1.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/coverage-7.1.0-py39h72bdee0_0.conda" - hash: - md5: 915b100b564875cceb85cbeab61fd678 - sha256: 074f44d601cae7c972183e915e7ea53ea433c59a43cb0c8964bb4d897e514512 - optional: false - category: main - - name: cxx-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - c-compiler: "==1.5.2 h0b41bf4_0" - gxx: "*" - gxx_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda" - hash: - md5: 6b3b19e359824b97df7145c8c878c8be - sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc - optional: false - category: main - - name: fonttools - version: 4.38.0 - manager: conda - platform: linux-64 - dependencies: - brotli: "*" - libgcc-ng: ">=12" - munkres: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2" - hash: - md5: 3f2d104f2fefdd5e8a205dd3aacbf1d7 - sha256: 55dff2dd401ef1d6fc4a27cf8e74af899c609519d35eafff3b097d7fc1836d83 - optional: false - category: main - - name: fortran-compiler - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - binutils: "*" - c-compiler: "==1.5.2 h0b41bf4_0" - gfortran: "*" - gfortran_linux-64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.5.2-hdb1a99f_0.conda" - hash: - md5: 265323e1bd53709aeb739c9b1794b398 - sha256: 985733294fe9b3dc6f126ee95b4b934e097060ca0c12fe469812596a4763228e - optional: false - category: main - - name: gitdb - version: 4.0.10 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main - - name: glib - version: 2.74.1 - manager: conda - platform: linux-64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - glib-tools: "==2.74.1 h6239696_1" - libgcc-ng: ">=12" - libglib: "==2.74.1 h606061b_1" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - python: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/glib-2.74.1-h6239696_1.tar.bz2" - hash: - md5: f3220a9e9d3abcbfca43419a219df7e4 - sha256: bc3f1d84e976a62ae8388e3b44f260d867beb7a307c18147048a8301a3c12e47 - optional: false - category: main - - name: hypothesis - version: 6.68.1 - manager: conda - platform: linux-64 - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main - - name: importlib-metadata - version: 6.0.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main - - name: jedi - version: 0.18.2 - manager: conda - platform: linux-64 - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main - - name: jinja2 - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - - name: libclang - version: 15.0.7 - manager: conda - platform: linux-64 - dependencies: - libclang13: "==15.0.7 default_h3e3d535_1" - libgcc-ng: ">=12" - libllvm15: ">=15.0.7,<15.1.0a0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_had23c3d_1.conda" - hash: - md5: 36c65ed73b7c92589bd9562ef8a6023d - sha256: eba3ed760c72c992a04d86455556ecb90c0e1e3688defcac44b28a848d71651c - optional: false - category: main - - name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main - - name: meson - version: 1.0.0 - manager: conda - platform: linux-64 - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main - - name: mypy - version: "0.981" - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/linux-64/mypy-0.981-py39hb9d737c_0.tar.bz2" - hash: - md5: 726060f54d0a1ae07577a34dda31a868 - sha256: 0cbf2e4018d7694517268c258a7b53b73c4c3a57490352a0792e08b96d8b637f - optional: false - category: main - - name: pexpect - version: 4.8.0 - manager: conda - platform: linux-64 - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main - - name: pillow - version: 9.4.0 - manager: conda - platform: linux-64 - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pillow-9.4.0-py39h2320bf1_1.conda" - hash: - md5: d2f79132b9c8e416058a4cd84ef27b3d - sha256: 77348588ae7cc8034b63e8a71b6695ba22761e1c531678e724cf06a12be3d1e2 - optional: false - category: main - - name: pip - version: "23.0" - manager: conda - platform: linux-64 - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main - - name: pulseaudio - version: "16.1" - manager: conda - platform: linux-64 - dependencies: - alsa-lib: ">=1.2.8,<1.2.9.0a0" - dbus: ">=1.13.6,<2.0a0" - fftw: ">=3.3.10,<4.0a0" - gstreamer-orc: ">=0.4.33,<0.5.0a0" - jack: ">=1.9.21,<1.10.0a0" - libcap: ">=2.66,<2.67.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libsndfile: ">=1.2.0,<1.3.0a0" - libsystemd0: ">=252" - libtool: ">=2.4.7,<3.0a0" - libudev1: ">=252" - openssl: ">=3.0.7,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-16.1-ha8d29e2_1.conda" - hash: - md5: dbfc2a8d63a43a11acf4c704e1ef9d0c - sha256: aa2aa5b5e2430a3c3d8b24574e5e270c47026740cb706e9be31df81b0627afa6 - optional: false - category: main - - name: pygments - version: 2.14.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main - - name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: linux-64 - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main - - name: pytest - version: 7.2.1 - manager: conda - platform: linux-64 - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main - - name: python-dateutil - version: 2.8.2 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main - - name: sip - version: 6.7.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - packaging: "*" - ply: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - toml: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.7-py39h227be39_0.conda" - hash: - md5: 7d9a35091552af3655151f164ddd64a3 - sha256: cbd7ddbe101dfe7d7241c5334e08c56fd9000400a099a2144ba95f63f90b9b45 - optional: false - category: main - - name: typing-extensions - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main - - name: brotlipy - version: 0.7.0 - manager: conda - platform: linux-64 - dependencies: - cffi: ">=1.0.0" - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2" - hash: - md5: a639fdd9428d8b25f8326a3838d54045 - sha256: 293229afcd31e81626e5cfe0478be402b35d29b73aa421a49470645debda5019 - optional: false - category: main - - name: compilers - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - c-compiler: "==1.5.2 h0b41bf4_0" - cxx-compiler: "==1.5.2 hf52228f_0" - fortran-compiler: "==1.5.2 hdb1a99f_0" - url: "https://conda.anaconda.org/conda-forge/linux-64/compilers-1.5.2-ha770c72_0.conda" - hash: - md5: f95226244ee1c487cf53272f971323f4 - sha256: 8ca9a7581c9522fa299782e28ac1e196f67df72b2f01c1e6ed09a2d3a77ec310 - optional: false - category: main - - name: cryptography - version: 39.0.1 - manager: conda - platform: linux-64 - dependencies: - cffi: ">=1.12" - libgcc-ng: ">=12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/cryptography-39.0.1-py39h079d5ae_0.conda" - hash: - md5: 3245013812dfbff6a22e57533ac6f69d - sha256: 4349d5416c718c331454b957e0a077500fb4fb9e8f3b7eadb8777a3842021818 - optional: false - category: main - - name: gitpython - version: 3.1.30 - manager: conda - platform: linux-64 - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main - - name: gstreamer - version: 1.22.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - gettext: ">=0.21.1,<1.0a0" - glib: ">=2.74.1,<3.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_0.conda" - hash: - md5: d764367398de61c0d5531dd912e6cc96 - sha256: ebf7839171f7ae6228c9650b13f551da9812486bbb6cd5e78985574b82dc6bbc - optional: false - category: main - - name: harfbuzz - version: 6.0.0 - manager: conda - platform: linux-64 - dependencies: - cairo: ">=1.16.0,<2.0a0" - freetype: ">=2.12.1,<3.0a0" - graphite2: "*" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda" - hash: - md5: 448fe40d2fed88ccf4d9ded37cbb2b38 - sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 - optional: false - category: main - - name: matplotlib-base - version: 3.6.3 - manager: conda - platform: linux-64 - dependencies: - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.3-py39he190548_0.conda" - hash: - md5: 5ade95e6e99425e3e5916019dcd01e55 - sha256: 70a6cc23b22ea0afdf73605d344062983282e1b2e7c8f9d2b0d70bdf93ba771a - optional: false - category: main - - name: meson-python - version: 0.12.0 - manager: conda - platform: linux-64 - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main - - name: pandas - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.3-py39h2ad29b5_0.conda" - hash: - md5: 3ea96adbbc2a66fa45178102a9cfbecc - sha256: a71fb9584f2b58e260fa565d5f27af763f21ed2afeede79e7d848620691bd765 - optional: false - category: main - - name: pyqt5-sip - version: 12.11.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - packaging: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - sip: "*" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py39h227be39_3.conda" - hash: - md5: 9e381db00691e26bcf670c3586397be1 - sha256: aff0befab89f536c4540dba017543d1616862b2d51350cb6d2875c294bd1b199 - optional: false - category: main - - name: pytest-cov - version: 4.0.0 - manager: conda - platform: linux-64 - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main - - name: pytest-xdist - version: 3.2.0 - manager: conda - platform: linux-64 - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main - - name: stack_data - version: 0.6.2 - manager: conda - platform: linux-64 - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main - - name: wcwidth - version: 0.2.6 - manager: conda - platform: linux-64 - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main - - name: gst-plugins-base - version: 1.22.0 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - alsa-lib: ">=1.2.8,<1.2.9.0a0" - gettext: ">=0.21.1,<1.0a0" - gstreamer: "==1.22.0 h25f0c4b_0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libopus: ">=1.3.1,<2.0a0" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libvorbis: ">=1.3.7,<1.4.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_0.conda" - hash: - md5: 81c20b15d2281a1ea48eac5b4eee8cfa - sha256: dfa2794ea19248f13a1eb067727c70d11e8bba228b82a4bee18ad6a26fdc99fe - optional: false - category: main - - name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main - - name: pyopenssl - version: 23.0.0 - manager: conda - platform: linux-64 - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main - - name: ipython - version: 8.10.0 - manager: conda - platform: linux-64 - dependencies: - __linux: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" - hash: - md5: 4703355103974293bbd8a32449b3ff28 - sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff - optional: false - category: main - - name: qt-main - version: 5.15.8 - manager: conda - platform: linux-64 - dependencies: - __glibc: ">=2.17,<3.0.a0" - alsa-lib: ">=1.2.8,<1.2.9.0a0" - dbus: ">=1.13.6,<2.0a0" - expat: ">=2.5.0,<3.0a0" - fontconfig: ">=2.14.2,<3.0a0" - fonts-conda-ecosystem: "*" - freetype: ">=2.12.1,<3.0a0" - gst-plugins-base: ">=1.22.0,<1.23.0a0" - gstreamer: ">=1.22.0,<1.23.0a0" - harfbuzz: ">=6.0.0,<7.0a0" - icu: ">=70.1,<71.0a0" - jpeg: ">=9e,<10a" - krb5: ">=1.20.1,<1.21.0a0" - libclang: ">=15.0.7,<16.0a0" - libclang13: ">=15.0.7" - libcups: ">=2.3.3,<2.4.0a0" - libevent: ">=2.1.10,<2.1.11.0a0" - libgcc-ng: ">=12" - libglib: ">=2.74.1,<3.0a0" - libpng: ">=1.6.39,<1.7.0a0" - libpq: ">=15.1,<16.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libstdcxx-ng: ">=12" - libxcb: ">=1.13,<1.14.0a0" - libxkbcommon: ">=1.0.3,<2.0a0" - libxml2: ">=2.10.3,<2.11.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - mysql-libs: ">=8.0.32,<8.1.0a0" - nspr: ">=4.35,<5.0a0" - nss: ">=3.82,<4.0a0" - openssl: ">=3.0.8,<4.0a0" - pulseaudio: ">=16.1,<16.2.0a0" - xcb-util: "*" - xcb-util-image: "*" - xcb-util-keysyms: "*" - xcb-util-renderutil: "*" - xcb-util-wm: "*" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda" - hash: - md5: 59c73debd9405771690ddbbad6c57b69 - sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 - optional: false - category: main - - name: urllib3 - version: 1.26.14 - manager: conda - platform: linux-64 - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main - - name: pyqt - version: 5.15.7 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - pyqt5-sip: "==12.11.0 py39h227be39_3" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - qt-main: ">=5.15.6,<5.16.0a0" - sip: ">=6.7.5,<6.8.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py39h5c7b992_3.conda" - hash: - md5: 19e30314fe824605750da905febb8ee6 - sha256: 1dfa1bff6d1334682790063c889198671b477a95c71a3d73ff656b4d88ea542b - optional: false - category: main - - name: requests - version: 2.28.2 - manager: conda - platform: linux-64 - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main - - name: matplotlib - version: 3.6.3 - manager: conda - platform: linux-64 - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - pyqt: ">=5" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.6.3-py39hf3d152e_0.conda" - hash: - md5: dbef5ffeeca5c5112cc3be8f03e6d1a5 - sha256: b1d70dba47ea0e901084fd4d32b506772063b38a99e1c39c1b0fef4c06e7deef - optional: false - category: main - - name: pooch - version: 1.6.0 - manager: conda - platform: linux-64 - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main - - name: sphinx - version: 5.3.0 - manager: conda - platform: linux-64 - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main - - name: breathe - version: 4.34.0 - manager: conda - platform: linux-64 - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main - - name: numpydoc - version: 1.4.0 - manager: conda - platform: linux-64 - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main - - name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: linux-64 - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main - - name: scipy - version: 1.10.0 - manager: conda - platform: linux-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.0-py39h7360e5f_2.conda" - hash: - md5: fbee2ab3fe7729f2ff5c5699d58e40b9 - sha256: d9191b5aa96255c5e6a176a795e304e0806aa31366baa0101e6c242c474341d2 - optional: false - category: main - - name: sphinx-design - version: 0.3.0 - manager: conda - platform: linux-64 - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - - name: ca-certificates - version: 2022.12.7 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2022.12.7-h4fd8a4c_0.conda" - hash: - md5: 2450fbcaf65634e0d071e47e2b8487b4 - sha256: bb4e6340d55775738a5867a16071658c294d46cceff7f652f65d8dc6a495a578 - optional: false - category: main - - name: kernel-headers_linux-aarch64 - version: 4.18.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h5b4a56d_13.tar.bz2" - hash: - md5: a9385e5b11a076c40d75915986f498d7 - sha256: 14e227d98193550f9da275e58e27de104ab569849f1ce16b810fae4d7b351d49 - optional: false - category: main - - name: ld_impl_linux-aarch64 - version: "2.39" - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.39-h16cd69b_1.conda" - hash: - md5: 9daf385ebefaea92087d3a315e398964 - sha256: aae71464a25bc5f32db5211621798a0725fc910a6a2a19a6161dbfcb0a7b1e35 - optional: false - category: main - - name: libgcc-devel_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-devel_linux-aarch64-11.3.0-h02014c4_19.tar.bz2" - hash: - md5: dde2aeef8efee13089f2fbb2bdb4879e - sha256: 40f1288935150ab0b524c030d852aa67826db379ff61350c817006b9ce1b2b97 - optional: false - category: main - - name: libgfortran5 - version: 12.2.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-12.2.0-hf695500_19.tar.bz2" - hash: - md5: bc890809e1f807b51bf04dfbee70ddf5 - sha256: e0496081c3a26c578abd0e292317c80159ebfbd5bb1ecca446894b9adf39abd7 - optional: false - category: main - - name: libgomp - version: 12.2.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-12.2.0-h607ecd0_19.tar.bz2" - hash: - md5: 65b9cb876525dcb2e74a90cf02c6762a - sha256: d802eaceaf6f77fb8cb2e990aacf9b3eaa83361b16369a760fc1585841d7885c - optional: false - category: main - - name: libstdcxx-devel_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-devel_linux-aarch64-11.3.0-h02014c4_19.tar.bz2" - hash: - md5: 1951ddce2b043a2597eb8317f6fee950 - sha256: 83a35253ac31c38d502bcff450457a86a9cd175f164cabc82400ea07ad2679be - optional: false - category: main - - name: libstdcxx-ng - version: 12.2.0 - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-12.2.0-hc13a102_19.tar.bz2" - hash: - md5: 981741cd4321edd5c504b48f74fe91f2 - sha256: db906f0ad19acc6aefcd5409a7a72fea76302f72013dce7593467ae07dbf54f3 - optional: false - category: main - - name: nomkl - version: "1.0" - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main - - name: python_abi - version: "3.9" - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.9-3_cp39.conda" - hash: - md5: b6f330b045cf3425945d536a6b5cd240 - sha256: f9ea2e91bd871899b5c2682e6ef78523b68769a62ea86af86894cfc5d37d1f0a - optional: false - category: main - - name: tzdata - version: 2022g - manager: conda - platform: linux-aarch64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main - - name: _openmp_mutex - version: "4.5" - manager: conda - platform: linux-aarch64 - dependencies: - libgomp: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2" - hash: - md5: 6168d71addc746e8f2b8d57dfd2edcea - sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 - optional: false - category: main - - name: libgfortran-ng - version: 12.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgfortran5: "==12.2.0 hf695500_19" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-12.2.0-he9431aa_19.tar.bz2" - hash: - md5: b5b34211bbf681bd3e7a5a4d80cce77b - sha256: 3ac162edf354bfa46076f52f3bff3a8ac10e626ebb9ed5e01aad954ebd386829 - optional: false - category: main - - name: sysroot_linux-aarch64 - version: "2.17" - manager: conda - platform: linux-aarch64 - dependencies: - kernel-headers_linux-aarch64: "==4.18.0 h5b4a56d_13" - url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h43d7e78_13.tar.bz2" - hash: - md5: 6d8f1fd1e675ba478041892112887949 - sha256: 932f7f8947c206ad4707a18c3bebbe217efdef67fd2cf9e0e94f5ccf0edeee38 - optional: false - category: main - - name: binutils_impl_linux-aarch64 - version: "2.39" - manager: conda - platform: linux-aarch64 - dependencies: - ld_impl_linux-aarch64: "==2.39 h16cd69b_1" - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.39-h48546ad_1.conda" - hash: - md5: 74724e155402aa2391b99fe919b6af17 - sha256: dbdcca1fc9601ebc035d61283ceb317fe9b006dc7a9aa65d696769e9c74c5580 - optional: false - category: main - - name: libgcc-ng - version: 12.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - _openmp_mutex: ">=4.5" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-12.2.0-h607ecd0_19.tar.bz2" - hash: - md5: 8456a29b6d9fc3123ccb9a966b6b2c49 - sha256: 0dd30553f6f38b011c9c81471a50f85e98a79e4dd672fdc1fc97904b54b5419b - optional: false - category: main - - name: binutils - version: "2.39" - manager: conda - platform: linux-aarch64 - dependencies: - binutils_impl_linux-aarch64: ">=2.39,<2.40.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils-2.39-h64c2a2e_1.conda" - hash: - md5: 9c096a144d04d6701d5ecc530e711934 - sha256: 0f37fe063a6111c38272abef6c42b881c7fe71958313638701206c0e8669b2ae - optional: false - category: main - - name: binutils_linux-aarch64 - version: "2.39" - manager: conda - platform: linux-aarch64 - dependencies: - binutils_impl_linux-aarch64: 2.39.* - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.39-h489c705_11.tar.bz2" - hash: - md5: 4b7f9e2048a3b75aca16b9612d7f49c7 - sha256: 21da410295e7e42e7459fa633a72c213b19c88d12a95c6b08599935e975694c4 - optional: false - category: main - - name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2" - hash: - md5: 2d787570a729e273a4e75775ddf3348a - sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 - optional: false - category: main - - name: jpeg - version: 9e - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/jpeg-9e-h2a766a3_3.conda" - hash: - md5: 9530170a461f31c2c04753fc664eb6b0 - sha256: 9a99054cdd1b67bc3319b863d17045045455cfb3ff1a3cb166f2f2a206aedf4d - optional: false - category: main - - name: lerc - version: 4.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2" - hash: - md5: 1a0ffc65e03ce81559dbcb0695ad1476 - sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586 - optional: false - category: main - - name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.0.9-h4e544f5_8.tar.bz2" - hash: - md5: 3cedc3935cfaa2a5303daa25fb12cb1d - sha256: 8eedfeb9097042f1005d4764bda83de0eda907e55d77408654367760ad46053d - optional: false - category: main - - name: libdeflate - version: "1.17" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.17-hb4cce97_0.conda" - hash: - md5: 0a26f36963967687f4cab7c4a017a189 - sha256: 3602858d16549239f036ccb8763e6b0e4a027f2f28e0b2d9d8e65fbbb34a9ded - optional: false - category: main - - name: libffi - version: 3.4.2 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2" - hash: - md5: dddd85f4d52121fab0a8b099c5e06501 - sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c - optional: false - category: main - - name: libiconv - version: "1.17" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h9cdd2b7_0.tar.bz2" - hash: - md5: efc27cfbc82a027f65c02c661832ecfc - sha256: e3c95d751ea71a638f781e82b1498e914e1d11536ea52fc354fecb2e65d3a7d3 - optional: false - category: main - - name: libnsl - version: 2.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.0-hf897c2e_0.tar.bz2" - hash: - md5: 36fdbc05c9d9145ece86f5a63c3f352e - sha256: 182dbc318b7ab3ab10bc5a9d3ca161b143ae8db6df8aa11b65140009e322e642 - optional: false - category: main - - name: libopenblas - version: 0.3.21 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.21-pthreads_h6cb6f83_3.tar.bz2" - hash: - md5: bc66302748a788c3bce59999ed6d737d - sha256: 78a93de015d389597d9bdd470ffcfa3901d4b39b85d6516f242ff71d18dc6607 - optional: false - category: main - - name: libsanitizer - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-11.3.0-hdddb281_19.tar.bz2" - hash: - md5: bd023c6dd60bd0102ce12e1e0257265b - sha256: e1e263d2fc39c329d97b50a20a355e641a37ab7fe724133ffdfedb32ab53cf4d - optional: false - category: main - - name: libuuid - version: 2.32.1 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.32.1-hf897c2e_1000.tar.bz2" - hash: - md5: e038da5ef9095b0d79aac14a311394e7 - sha256: 8f7eead3723c32631b252aea336bb39fbbde433b8d0c5a75745f03eaa980447d - optional: false - category: main - - name: libwebp-base - version: 1.2.4 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.2.4-h4e544f5_0.tar.bz2" - hash: - md5: 9c307c3dba834b9529f6dcd95db543ed - sha256: 831824c213e80a43a0a85318e5967a88a1adbf344b24ed5c4ee9ead8b696f170 - optional: false - category: main - - name: libzlib - version: 1.2.13 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h4e544f5_4.tar.bz2" - hash: - md5: 88596b6277fe6d39f046983aae6044db - sha256: 9803ac96dbdbc27df9c149e06d4436b778c468bd0e6e023fbcb49a6fe9c404b4 - optional: false - category: main - - name: ncurses - version: "6.3" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.3-headf329_1.tar.bz2" - hash: - md5: 486b68148e121bc8bbadc3cefae4c04f - sha256: d410d840cb39175d7edc388690b93b2e3d7613c2e2f5c64b96582dc8b55b2319 - optional: false - category: main - - name: ninja - version: 1.11.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.11.0-hdd96247_0.tar.bz2" - hash: - md5: 836cf12c1e2acba999080766059b20ad - sha256: 56123a84b506452186a1604597f424e3bf366e71fceec113e6292a73bafa2d7e - optional: false - category: main - - name: openssl - version: 3.0.8 - manager: conda - platform: linux-aarch64 - dependencies: - ca-certificates: "*" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.0.8-hb4cce97_0.conda" - hash: - md5: 268fe30a14a3f40fe54da04fc053fd2d - sha256: 19d10fdaee08ab2b5506cdce4399922c5c7d012be7ca7ca93c521748bade3e90 - optional: false - category: main - - name: pkg-config - version: 0.29.2 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pkg-config-0.29.2-hb9de7d4_1008.tar.bz2" - hash: - md5: 1d0a81d5da1378d9b989383556c20eac - sha256: 0d6af1ebd78e231281f570ad7ddd1e2789e485c94fba6b5cef4e8ad23ff7f3bf - optional: false - category: main - - name: pthread-stubs - version: "0.4" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-hb9de7d4_1001.tar.bz2" - hash: - md5: d0183ec6ce0b5aaa3486df25fa5f0ded - sha256: f1d7ff5e06cc515ec82010537813c796369f8e9dde46ce3f4fa1a9f70bc7db7d - optional: false - category: main - - name: xorg-libxau - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.9-h3557bc0_0.tar.bz2" - hash: - md5: e0c187f5ce240897762bbb89a8a407cc - sha256: 898553ead60af45e3b8b2a7be1b21b0df8ce3c20d5772490c05188cce5ec8b55 - optional: false - category: main - - name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.3-h3557bc0_0.tar.bz2" - hash: - md5: a6c9016ae1ca5c47a3603ed4cd65fedd - sha256: 2aad9a0b57796170b8fb40317598fd79cfc7ae27fa7fb68c417d815e44499d59 - optional: false - category: main - - name: xz - version: 5.2.6 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2" - hash: - md5: 83baad393a31d59c20b63ba4da6592df - sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 - optional: false - category: main - - name: doxygen - version: 1.9.5 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libiconv: ">=1.16,<2.0.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.9.5-h04155f4_0.tar.bz2" - hash: - md5: 8b648aebf430cde9aa32cc55a51dc3b2 - sha256: 4ccd5a8f2434ba04fcda419e690dec233f381432e23adceb0f2fe11029b67770 - optional: false - category: main - - name: gcc_impl_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - binutils_impl_linux-aarch64: ">=2.39" - libgcc-devel_linux-aarch64: "==11.3.0 h02014c4_19" - libgcc-ng: ">=11.3.0" - libgomp: ">=11.3.0" - libsanitizer: "==11.3.0 hdddb281_19" - libstdcxx-ng: ">=11.3.0" - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-11.3.0-h771ed3b_19.tar.bz2" - hash: - md5: 3b89b2222e3ade690a36e419e85d4988 - sha256: 9f83e3b05644fd28a681ec9a98a75662299a0643cb5c3697025a6450d19000ae - optional: false - category: main - - name: libblas - version: 3.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-16_linuxaarch64_openblas.tar.bz2" - hash: - md5: 188f02883567d5b7f96c7aa12e7007c9 - sha256: 6fdf73da8b717f207979f77660646ca2d7e17671482435f281b676ac27eb288e - optional: false - category: main - - name: libbrotlidec - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - libbrotlicommon: "==1.0.9 h4e544f5_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.0.9-h4e544f5_8.tar.bz2" - hash: - md5: 319956380b383ec9f6a46d585599c028 - sha256: 5c735e238743bda58f44fcb5bef564dc5262c0ea0219ccdb8cbcb168c98a58e0 - optional: false - category: main - - name: libbrotlienc - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - libbrotlicommon: "==1.0.9 h4e544f5_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.0.9-h4e544f5_8.tar.bz2" - hash: - md5: 56a0a025208af24e2b43b2bbeee79802 - sha256: 2f6617b2ac53ab440d50a062d08e39cb207dc3ac36a5abe61efe0fa11d2205a1 - optional: false - category: main - - name: libpng - version: 1.6.39 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.39-hf9034f9_0.conda" - hash: - md5: 5ec9052384a6ac85e9111e9ac7c5ec4c - sha256: a43ab7cb0a66febe26e33b75e4aef6ce4ce532f69e6336e24ce00235ed000fd9 - optional: false - category: main - - name: libsqlite - version: 3.40.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.40.0-hf9034f9_0.tar.bz2" - hash: - md5: 9afb0d5dbaa403858a660cd0b4a31d29 - sha256: 15e4a4bef065f73c2aae630c0408fd6108f5915d4640c7d97578f2e07b3f5d11 - optional: false - category: main - - name: libxcb - version: "1.13" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.4.0" - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.13-h3557bc0_1004.tar.bz2" - hash: - md5: cc973f5f452272c397546eac588cddb3 - sha256: cf726d6b13e93636312722aff04831a77aa8721b63feb6fc12d3604fe209ff94 - optional: false - category: main - - name: openblas - version: 0.3.21 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libopenblas: "==0.3.21 pthreads_h6cb6f83_3" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openblas-0.3.21-pthreads_h2d9dd7e_3.tar.bz2" - hash: - md5: 17a824cf9bbf0e31998d2c1a2140204c - sha256: b782a114740e74a42e8ac77e57de4ed6d35aad30ec6a07106826e1a1e3d0c274 - optional: false - category: main - - name: readline - version: 8.1.2 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.1.2-h38e3740_0.tar.bz2" - hash: - md5: 3cdbfb7d7b63ae2c2d35bb167d257ecd - sha256: a33bb6e4c93599fb97eb19db0dcca602a90475f2da3c01c14add19b908178fcd - optional: false - category: main - - name: tk - version: 8.6.12 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.12-hd8af866_0.tar.bz2" - hash: - md5: 7894e82ff743bd96c76585ddebe28e2a - sha256: d659316c9e502fb0e1b9a284fb0f0c00e273bff787e9385ab14be9af13dcd0d2 - optional: false - category: main - - name: zstd - version: 1.5.2 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.2-h44f6412_6.conda" - hash: - md5: 6d0d1cd6d184129eabb96bb220afb5b2 - sha256: d06afa18c6789d29f1d74990d0b2b68ada43665a419deb617d6440368bd951fc - optional: false - category: main - - name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - libbrotlidec: "==1.0.9 h4e544f5_8" - libbrotlienc: "==1.0.9 h4e544f5_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.0.9-h4e544f5_8.tar.bz2" - hash: - md5: 0980429a0148a53edd0f1f207ec28a39 - sha256: 30214484976cc0a6f37c6e2473578d4602d66d01acf3ccfd2f97238cbb91621b - optional: false - category: main - - name: freetype - version: 2.12.1 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hbbbf32d_1.conda" - hash: - md5: e0891290982420d67651589c8584eec3 - sha256: f574138dd4fcec3acbd87df049bb9161af95ad194120cf322d884fdf0df477b5 - optional: false - category: main - - name: gcc - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - gcc_impl_linux-aarch64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc-11.3.0-he2d1185_11.tar.bz2" - hash: - md5: 72f1c88a327e40a7bdf030be352e9f49 - sha256: 70ee0c88cec738b6b5932b0e5c72b8d929aa3e167e9cb34823aed40d02a7e233 - optional: false - category: main - - name: gcc_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - binutils_linux-aarch64: "==2.39 h489c705_11" - gcc_impl_linux-aarch64: 11.3.0.* - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-11.3.0-h2cafa97_11.tar.bz2" - hash: - md5: 4cdc6d5a965f658b823d4d5829422e8a - sha256: 35232fa113d8cb3b15217e3b6ff00d0fbc3dff33c742a2851919b73a2cf010e1 - optional: false - category: main - - name: gfortran_impl_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - gcc_impl_linux-aarch64: ">=11.3.0" - libgcc-ng: ">=4.9" - libgfortran5: ">=11.3.0" - libstdcxx-ng: ">=4.9" - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_impl_linux-aarch64-11.3.0-h0a651b8_19.tar.bz2" - hash: - md5: fc45cd438909a1e5e5d39565bd3b3ecd - sha256: 9baf7d7c29ee9dc62638c74414253ad1b5fd2140e108a5d8fb582520ca3d981f - optional: false - category: main - - name: gxx_impl_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - gcc_impl_linux-aarch64: "==11.3.0 h771ed3b_19" - libstdcxx-devel_linux-aarch64: "==11.3.0 h02014c4_19" - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-11.3.0-h771ed3b_19.tar.bz2" - hash: - md5: 567374f76eeac7b755e5d5873459fe98 - sha256: c58c38263c10700cd3af75ce9a847a14dea67fe18cf9948059bb8a6e95dd641a - optional: false - category: main - - name: libcblas - version: 3.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - libblas: "==3.9.0 16_linuxaarch64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-16_linuxaarch64_openblas.tar.bz2" - hash: - md5: 520a3ecbebc63239c27dd6f70c2ababe - sha256: c1d4fa9a99475647c7904009c026fe7f9c0b3159b2f7d2bcecac102751104302 - optional: false - category: main - - name: liblapack - version: 3.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - libblas: "==3.9.0 16_linuxaarch64_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-16_linuxaarch64_openblas.tar.bz2" - hash: - md5: 62990b2d1efc22d0beb394e893d39541 - sha256: 80a809ce2c965b27d8b8b90753ab01d467b9bf2a66467ca98fc363e4a41da5ec - optional: false - category: main - - name: libtiff - version: 4.5.0 - manager: conda - platform: linux-aarch64 - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libdeflate: ">=1.17,<1.18.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.5.0-h4c1066a_2.conda" - hash: - md5: 45b240c8ce410ecc8f82cd085279dce9 - sha256: a0e7bf098114756ef6e675414dde37b24c508816d3e525ba27d271cfbea0ab68 - optional: false - category: main - - name: python - version: 3.9.16 - manager: conda - platform: linux-aarch64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-aarch64: ">=2.36.1" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.9.16-hb363c5e_0_cpython.conda" - hash: - md5: 0a7ef29549eaef817898062eeeefebd3 - sha256: 776e0ad572f4c7c9de53e5f6aaa435eb37162f041866f04fd496d3c91e3c2f47 - optional: false - category: main - - name: alabaster - version: 0.7.13 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main - - name: appdirs - version: 1.4.4 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main - - name: attrs - version: 22.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main - - name: backcall - version: 0.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main - - name: backports - version: "1.0" - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main - - name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/backports.zoneinfo-0.2.1-py39h4420490_7.tar.bz2" - hash: - md5: 81f95bd3b0e4370ac3aef6e19eef8763 - sha256: 340b8c181416f6811c80601d8cdd8a8ba9d0540e31e3bde1f901e8e71d7c56d8 - optional: false - category: main - - name: brotli - version: 1.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - brotli-bin: "==1.0.9 h4e544f5_8" - libbrotlidec: "==1.0.9 h4e544f5_8" - libbrotlienc: "==1.0.9 h4e544f5_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.0.9-h4e544f5_8.tar.bz2" - hash: - md5: 259d82bd990ba225508389509634b157 - sha256: e775343c34d04c6e27b4967b6edeac4793c9f0bd6c843990497c72798f49808f - optional: false - category: main - - name: c-compiler - version: 1.5.2 - manager: conda - platform: linux-aarch64 - dependencies: - binutils: "*" - gcc: "*" - gcc_linux-aarch64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/c-compiler-1.5.2-hb4cce97_0.conda" - hash: - md5: ea29c067379169a815018c1c94a05b9e - sha256: 3c63e0126e5a21e62bff541253a6c235b7130e984f39b2fa6acc3773d744ff23 - optional: false - category: main - - name: certifi - version: 2022.12.7 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main - - name: charset-normalizer - version: 2.1.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main - - name: click - version: 8.1.3 - manager: conda - platform: linux-aarch64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - - name: colorama - version: 0.4.6 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main - - name: cycler - version: 0.11.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - - name: cython - version: 0.29.33 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cython-0.29.33-py39hdcdd789_0.conda" - hash: - md5: 7a94705550f5c09d4a3b069f0488caed - sha256: 9e7162fd241d306a0274c970dc266c9684747b1b31bfee795572ceb232b004bf - optional: false - category: main - - name: decorator - version: 5.1.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main - - name: docutils - version: "0.19" - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/docutils-0.19-py39ha65689a_1.tar.bz2" - hash: - md5: fd0d3cb6620a155e9a1bbb5f0d5f2456 - sha256: 01587e209ffd4f7b9f7ef9988068a9ef6a008f405c397c60a48a95584c30a4a8 - optional: false - category: main - - name: exceptiongroup - version: 1.1.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main - - name: execnet - version: 1.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main - - name: executing - version: 1.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main - - name: gfortran - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - gcc: 11.3.0.* - gcc_impl_linux-aarch64: 11.3.0.* - gfortran_impl_linux-aarch64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran-11.3.0-h6b6addb_11.tar.bz2" - hash: - md5: e918df1fe2a391d9b715a79a5232ea2f - sha256: b6556bd72c554d55ca0cd8f1ab2281838e2a8b817d4276c61f7f1be5546b4edf - optional: false - category: main - - name: gfortran_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - binutils_linux-aarch64: "==2.39 h489c705_11" - gcc_linux-aarch64: "==11.3.0 h2cafa97_11" - gfortran_impl_linux-aarch64: 11.3.0.* - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_linux-aarch64-11.3.0-hff98631_11.tar.bz2" - hash: - md5: a7be589b27f26b2c447a4c703c588244 - sha256: 5ca1326e20b37b2e91dd2d7553a0be569623f96d60fdd740354b2a93be2c948e - optional: false - category: main - - name: gxx - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - gcc: 11.3.0.* - gxx_impl_linux-aarch64: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx-11.3.0-he2d1185_11.tar.bz2" - hash: - md5: 0730f39c40a80d5003c5f8bddd514777 - sha256: bf2a6e358a7256f4d9d65b72c914112b6f1bd4de47d8d2dee5fd62e57d7823ca - optional: false - category: main - - name: gxx_linux-aarch64 - version: 11.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - binutils_linux-aarch64: "==2.39 h489c705_11" - gcc_linux-aarch64: "==11.3.0 h2cafa97_11" - gxx_impl_linux-aarch64: 11.3.0.* - sysroot_linux-aarch64: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-11.3.0-h7ccc656_11.tar.bz2" - hash: - md5: 7b4ebbdadc6c61ce3e98fb2d5605f5dc - sha256: 229f44d96f37b471e5b7b26f7c617a09636dc6f258c13cbdf322ca27f0e6b2f0 - optional: false - category: main - - name: idna - version: "3.4" - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - - name: imagesize - version: 1.4.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main - - name: iniconfig - version: 2.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main - - name: kiwisolver - version: 1.4.4 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.4-py39h110580c_1.tar.bz2" - hash: - md5: 9c045502f6ab8c89bfda6be3c389e503 - sha256: 9bf3781b4f46988b7e97d9fbaeab666340d3818d162d362b11529809349c9741 - optional: false - category: main - - name: lcms2 - version: "2.14" - manager: conda - platform: linux-aarch64 - dependencies: - jpeg: ">=9e,<10a" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.14-h7576be9_1.conda" - hash: - md5: 33f4117db8c2b9ff0888cedd74b2f8e9 - sha256: 1210de1fbb82cc73fb81f8db3e5ea26071855f3695198fe45fd4382c33aaf1c2 - optional: false - category: main - - name: markupsafe - version: 2.1.2 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.2-py39h599bc27_0.conda" - hash: - md5: 13af483192015190404fede49f1a306e - sha256: 4eb2683d7391a984b0f32e9f9fb20c2708b6a674b0e6d901cd80ccb61b491052 - optional: false - category: main - - name: munkres - version: 1.1.4 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main - - name: mypy_extensions - version: 1.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main - - name: numpy - version: 1.24.2 - manager: conda - platform: linux-aarch64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.24.2-py39hafab3e7_0.conda" - hash: - md5: e8d27fa9b6e02d6fba071d9c555d7962 - sha256: 9e527264dc80f537796e72c408f335de71842a00b8cad5abfd4d1f9150b2bca9 - optional: false - category: main - - name: openjpeg - version: 2.5.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.0-h9508984_2.conda" - hash: - md5: 3d56d402a845c243f8c2dd3c8e836029 - sha256: 6cb45c526e9577313081a7d020a278fbdfd91e6df14f42a327276ec1a29a5045 - optional: false - category: main - - name: packaging - version: "23.0" - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main - - name: parso - version: 0.8.3 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main - - name: pickleshare - version: 0.7.5 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main - - name: pluggy - version: 1.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main - - name: psutil - version: 5.9.4 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.4-py39h0fd3b05_0.tar.bz2" - hash: - md5: 2d6fcae2ae9953db962dc3fc1ef456a4 - sha256: e2bb7645fc1875ee0a54f6af2f9355162e4f70b8e11cb2913c43f082d3ef65ee - optional: false - category: main - - name: ptyprocess - version: 0.7.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main - - name: pure_eval - version: 0.2.2 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main - - name: pycodestyle - version: 2.7.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main - - name: pycparser - version: "2.21" - manager: conda - platform: linux-aarch64 - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main - - name: pyparsing - version: 3.0.9 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main - - name: pysocks - version: 1.7.1 - manager: conda - platform: linux-aarch64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - - name: pytz - version: 2022.7.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main - - name: setuptools - version: 59.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/setuptools-59.2.0-py39ha65689a_0.tar.bz2" - hash: - md5: d16c2492792df4ceab4c32d426e49f00 - sha256: 4cc2357f91ebe448287026240be37e717fd5a82cbc1d49fd5ef3ae721672e5e7 - optional: false - category: main - - name: six - version: 1.16.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - - name: smmap - version: 3.0.5 - manager: conda - platform: linux-aarch64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main - - name: snowballstemmer - version: 2.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - - name: sortedcontainers - version: 2.4.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main - - name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main - - name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main - - name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main - - name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main - - name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main - - name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main - - name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main - - name: toml - version: 0.10.2 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main - - name: tomli - version: 2.0.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - - name: tornado - version: "6.2" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.2-py39hb9a1dbb_1.tar.bz2" - hash: - md5: f5f4671e5e76b582263699cb4ab3172c - sha256: 432a7832582bdba4cadda30d82a1115d31de069e236573943f2c429b2b20c46f - optional: false - category: main - - name: traitlets - version: 5.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main - - name: typing_extensions - version: 4.4.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main - - name: unicodedata2 - version: 15.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-15.0.0-py39h0fd3b05_0.tar.bz2" - hash: - md5: 835f1a9631e600e0176593e95e85f73f - sha256: 06d0dd905a8b4555b729d8c5568a8339a385476890d3b3fc2134ec08d0cfc484 - optional: false - category: main - - name: wheel - version: 0.38.4 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main - - name: zipp - version: 3.13.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main - - name: asttokens - version: 2.2.1 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main - - name: babel - version: 2.11.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main - - name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: linux-aarch64 - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main - - name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main - - name: cffi - version: 1.15.1 - manager: conda - platform: linux-aarch64 - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.15.1-py39hb26bf21_3.conda" - hash: - md5: dee0362c4fde8edce396183fd6390d6e - sha256: 0a3690929b3a22c4e2db8001293509e38b5d90eb2ff57d5d71456e81c9c0f8eb - optional: false - category: main - - name: contourpy - version: 1.0.7 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.0.7-py39hd9a2fea_0.conda" - hash: - md5: efa783bf5c2b30aba3cf22599fe0274e - sha256: 0da3e468f4ee6cc3d708e32ab4d1e4d6e8ed899168693e3e33570d1e8ce927d9 - optional: false - category: main - - name: coverage - version: 7.1.0 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/coverage-7.1.0-py39h599bc27_0.conda" - hash: - md5: 642b33264c733811d45640fc5d035a5c - sha256: 7d02e1632234311db52c247b7d59ea8173cc06ac43943147a5291be62885a6c3 - optional: false - category: main - - name: cxx-compiler - version: 1.5.2 - manager: conda - platform: linux-aarch64 - dependencies: - c-compiler: "==1.5.2 hb4cce97_0" - gxx: "*" - gxx_linux-aarch64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cxx-compiler-1.5.2-h4c384f3_0.conda" - hash: - md5: 8ce6c4bc31f879baedd1f726f430fa6a - sha256: a2560d134c72f29f193ec195f25e774a6855c8bc1588427abfdfbb52c6769620 - optional: false - category: main - - name: fonttools - version: 4.38.0 - manager: conda - platform: linux-aarch64 - dependencies: - brotli: "*" - libgcc-ng: ">=12" - munkres: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.38.0-py39h0fd3b05_1.tar.bz2" - hash: - md5: c4eda904dc52f53c948d64d20662525f - sha256: f8160177436c15a924a539f3074d36ad10960b0243340a1b9d79633432fff65e - optional: false - category: main - - name: fortran-compiler - version: 1.5.2 - manager: conda - platform: linux-aarch64 - dependencies: - binutils: "*" - c-compiler: "==1.5.2 hb4cce97_0" - gfortran: "*" - gfortran_linux-aarch64: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/fortran-compiler-1.5.2-h878be85_0.conda" - hash: - md5: 0fc27753a4f9b39286bd58ce8870605e - sha256: e9d8407d1a4030b3faef9a7278cea55de3343f2507680ef673d32dff14d9060b - optional: false - category: main - - name: gitdb - version: 4.0.10 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main - - name: hypothesis - version: 6.68.1 - manager: conda - platform: linux-aarch64 - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main - - name: importlib-metadata - version: 6.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main - - name: jedi - version: 0.18.2 - manager: conda - platform: linux-aarch64 - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main - - name: jinja2 - version: 3.1.2 - manager: conda - platform: linux-aarch64 - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - - name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main - - name: meson - version: 1.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main - - name: mypy - version: "0.981" - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/mypy-0.981-py39h0fd3b05_0.tar.bz2" - hash: - md5: 356d846032061ddec0beb97de9fb4570 - sha256: ca216a2d2022060c3a51fe3bb9b73e250797da3c874bd766f3e4b4223f362495 - optional: false - category: main - - name: pexpect - version: 4.8.0 - manager: conda - platform: linux-aarch64 - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main - - name: pillow - version: 9.4.0 - manager: conda - platform: linux-aarch64 - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-9.4.0-py39h72365ce_1.conda" - hash: - md5: 0cd1a724352e4916a84339500506f61e - sha256: f230a8e3bf559c49163b3adbd64075d3eef7274e98b97800662cb6678746847f - optional: false - category: main - - name: pip - version: "23.0" - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main - - name: pygments - version: 2.14.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main - - name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: linux-aarch64 - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main - - name: pytest - version: 7.2.1 - manager: conda - platform: linux-aarch64 - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main - - name: python-dateutil - version: 2.8.2 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main - - name: typing-extensions - version: 4.4.0 - manager: conda - platform: linux-aarch64 - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main - - name: brotlipy - version: 0.7.0 - manager: conda - platform: linux-aarch64 - dependencies: - cffi: ">=1.0.0" - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/brotlipy-0.7.0-py39h0fd3b05_1005.tar.bz2" - hash: - md5: 5d37ef329c084829d3ff5b172a08b8f9 - sha256: b62b8ba3688978d1344a4ea639b4ab28988fac5318a9842af4e7b9f5feb8374d - optional: false - category: main - - name: compilers - version: 1.5.2 - manager: conda - platform: linux-aarch64 - dependencies: - c-compiler: "==1.5.2 hb4cce97_0" - cxx-compiler: "==1.5.2 h4c384f3_0" - fortran-compiler: "==1.5.2 h878be85_0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/compilers-1.5.2-h8af1aa0_0.conda" - hash: - md5: 3505d3b81bd518ea3fd084f33f6d486f - sha256: 84c71456b39a9693d471c9b279073afa67c47611f5fdaa99b72f069f46454e96 - optional: false - category: main - - name: cryptography - version: 39.0.1 - manager: conda - platform: linux-aarch64 - dependencies: - cffi: ">=1.12" - libgcc-ng: ">=12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-39.0.1-py39h8a84b6a_0.conda" - hash: - md5: 836c852bcc8f60392bfe4f9305f541b7 - sha256: a0918f5094edff472291dc2889431a17aaff4b0ee38ae321ff2ea5b420a4b42a - optional: false - category: main - - name: gitpython - version: 3.1.30 - manager: conda - platform: linux-aarch64 - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main - - name: matplotlib-base - version: 3.6.3 - manager: conda - platform: linux-aarch64 - dependencies: - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.6.3-py39h2983639_0.conda" - hash: - md5: 9e1496189564d3740c20d3aff999a0ee - sha256: 4b51e606ad1e698820d72a247f12eb0c2858e52c87b7b51530f0f386a5672b4b - optional: false - category: main - - name: meson-python - version: 0.12.0 - manager: conda - platform: linux-aarch64 - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main - - name: pandas - version: 1.5.3 - manager: conda - platform: linux-aarch64 - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-1.5.3-py39h1e1c27f_0.conda" - hash: - md5: 13b3d2c17a216d189837df6a2caefb5d - sha256: eeece380a252712eaebbcc12d73abbe7542ff3e25b560afac0f1766f9a1b854b - optional: false - category: main - - name: pytest-cov - version: 4.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main - - name: pytest-xdist - version: 3.2.0 - manager: conda - platform: linux-aarch64 - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main - - name: stack_data - version: 0.6.2 - manager: conda - platform: linux-aarch64 - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main - - name: wcwidth - version: 0.2.6 - manager: conda - platform: linux-aarch64 - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main - - name: matplotlib - version: 3.6.3 - manager: conda - platform: linux-aarch64 - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-3.6.3-py39ha65689a_0.conda" - hash: - md5: 1af8933de795cb23f0a28cba529c544d - sha256: 7adde98e60579550ed3fe3f40f5877b135bacd6b74f59e4d3df25f504033e99f - optional: false - category: main - - name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main - - name: pyopenssl - version: 23.0.0 - manager: conda - platform: linux-aarch64 - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main - - name: ipython - version: 8.10.0 - manager: conda - platform: linux-aarch64 - dependencies: - __linux: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" - hash: - md5: 4703355103974293bbd8a32449b3ff28 - sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff - optional: false - category: main - - name: urllib3 - version: 1.26.14 - manager: conda - platform: linux-aarch64 - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main - - name: requests - version: 2.28.2 - manager: conda - platform: linux-aarch64 - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main - - name: pooch - version: 1.6.0 - manager: conda - platform: linux-aarch64 - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main - - name: sphinx - version: 5.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main - - name: breathe - version: 4.34.0 - manager: conda - platform: linux-aarch64 - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main - - name: numpydoc - version: 1.4.0 - manager: conda - platform: linux-aarch64 - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main - - name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: linux-aarch64 - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main - - name: scipy - version: 1.10.0 - manager: conda - platform: linux-aarch64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.10.0-py39hafab3e7_2.conda" - hash: - md5: c540ebeaba5c037beb48ce709738afcb - sha256: e87204c9a98961e632a37f2ff779b1a3d5bd0477d0981f319e12d8d45f54b26d - optional: false - category: main - - name: sphinx-design - version: 0.3.0 - manager: conda - platform: linux-aarch64 - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - - name: _libgcc_mutex - version: "0.1" - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2" - hash: - md5: e96f48755dc7c9f86c4aecf4cac40477 - sha256: 5dd34b412e6274c0614d01a2f616844376ae873dfb8782c2c67d055779de6df6 - optional: false - category: main - - name: ca-certificates - version: 2022.12.7 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ca-certificates-2022.12.7-h1084571_0.conda" - hash: - md5: e3becd49c6d0e94d1b67c9f9a4d50587 - sha256: 82b77cb085c961b085fbbb5ea3920c1933bda08c2e1dd53685f6f21b16a336ac - optional: false - category: main - - name: kernel-headers_linux-ppc64le - version: 3.10.0 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-ppc64le-3.10.0-h23d7e6c_13.tar.bz2" - hash: - md5: 2c36c739b5b1827404dcc96860f9b7e1 - sha256: 6752a00b9bf73087c90fbc3da9284745ec7fb5f960a132d3189c6a053d59cfb8 - optional: false - category: main - - name: ld_impl_linux-ppc64le - version: "2.39" - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.39-hea198f4_1.conda" - hash: - md5: c7db6cc5b9479df1ed884b6147601613 - sha256: 20d6db1053ae4af65677fc4b4cf9b2d5884ce26ea6b38f7088a5ebad1de62746 - optional: false - category: main - - name: libgcc-devel_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-devel_linux-ppc64le-11.3.0-hcb32637_19.tar.bz2" - hash: - md5: e652f909e48f3e16a1f4c2a26aaa900b - sha256: f4270a73600fe1debf364cfc4b74aac4ca90a052abe9e302301ab62189fc255a - optional: false - category: main - - name: libgfortran5 - version: 12.2.0 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-12.2.0-hda65b67_19.tar.bz2" - hash: - md5: 62f0191db9d8e634ed676c0645aee79b - sha256: 6131391202198279f8a3744fa08e6f3f6513d8211799608410bca8fe6b76bf37 - optional: false - category: main - - name: libstdcxx-devel_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-devel_linux-ppc64le-11.3.0-hcb32637_19.tar.bz2" - hash: - md5: 7c528de8f0dddad1ef05aa11151f66d6 - sha256: f4f4869b24af9d3f37ac15ced5efd51323a0b92886ba0a50fb79d199ba402dd2 - optional: false - category: main - - name: libstdcxx-ng - version: 12.2.0 - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-12.2.0-h99369c6_19.tar.bz2" - hash: - md5: 7fd9892955253a7e5f49ae0e94703dd7 - sha256: 6e630d9cbb4c0680757e4cbe86a09302125283afd791e997d0ae2fc7ce863384 - optional: false - category: main - - name: nomkl - version: "1.0" - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main - - name: python_abi - version: "3.9" - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/python_abi-3.9-3_cp39.conda" - hash: - md5: 4f09b636d43728c2906cf03a18a4e8f6 - sha256: 3321ab95a62cefe8b305da972b8780647fd8063e96ee331e2b6c9070353272c2 - optional: false - category: main - - name: tzdata - version: 2022g - manager: conda - platform: linux-ppc64le - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main - - name: libgfortran-ng - version: 12.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgfortran5: "==12.2.0 hda65b67_19" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-12.2.0-hfdc3801_19.tar.bz2" - hash: - md5: 81d5153ea3ba783743ab08b859fc8e1f - sha256: 5221449383ddf2f73777337f788b7367ae2f035373ff1e9030ea98fe891c73ab - optional: false - category: main - - name: libgomp - version: 12.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-12.2.0-hbc1322c_19.tar.bz2" - hash: - md5: 25647ac31b4d467fce690c6a561a58aa - sha256: 56a43985f648c358c6b3eb949863e393dbdb48d8f017315e03ff703031b8a951 - optional: false - category: main - - name: sysroot_linux-ppc64le - version: "2.17" - manager: conda - platform: linux-ppc64le - dependencies: - kernel-headers_linux-ppc64le: "==3.10.0 h23d7e6c_13" - url: "https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-ppc64le-2.17-h395ec9b_13.tar.bz2" - hash: - md5: c8016c77c47a363566a72ff10a0233e0 - sha256: 50b9204fe2d6b90a6e4092d4e5f60ed24561f7914bf2296f46dbd620631efcaa - optional: false - category: main - - name: _openmp_mutex - version: "4.5" - manager: conda - platform: linux-ppc64le - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - libgomp: ">=7.5.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2" - hash: - md5: 3e41cbaba7e4988d15a24c4e85e6171b - sha256: 4c89c2067cf5e7b0fbbdc3200c3f7affa5896e14812acf10f51575be87ae0c05 - optional: false - category: main - - name: binutils_impl_linux-ppc64le - version: "2.39" - manager: conda - platform: linux-ppc64le - dependencies: - ld_impl_linux-ppc64le: "==2.39 hea198f4_1" - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_impl_linux-ppc64le-2.39-heb37b50_1.conda" - hash: - md5: d4fd843dce0edcc58c63e995b7837293 - sha256: 91e5401f436aa2686f0dfa36066674f4e26e43efade059acaff3d5c4f25d90d1 - optional: false - category: main - - name: binutils - version: "2.39" - manager: conda - platform: linux-ppc64le - dependencies: - binutils_impl_linux-ppc64le: ">=2.39,<2.40.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils-2.39-h7f02139_1.conda" - hash: - md5: 93ad8fe1ef01293548b6fc28169d40fe - sha256: 986d2a9388cb6176b91aacc7cda9f6d317a34e0f61d6d323fc121c3718bc9392 - optional: false - category: main - - name: binutils_linux-ppc64le - version: "2.39" - manager: conda - platform: linux-ppc64le - dependencies: - binutils_impl_linux-ppc64le: 2.39.* - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/binutils_linux-ppc64le-2.39-h5e55cfe_11.tar.bz2" - hash: - md5: cb19199c186994b286cbb1afb447a9d0 - sha256: b6b696f484684ad58e9509cc9414fc65349ea9e6fdb6d84822e39b738fa34ed3 - optional: false - category: main - - name: libgcc-ng - version: 12.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - _libgcc_mutex: "==0.1 conda_forge" - _openmp_mutex: ">=4.5" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-12.2.0-hbc1322c_19.tar.bz2" - hash: - md5: 9ad34f95d6fb05300bbd0f553f3bece4 - sha256: 335a2b7415cb5fbbf05459f6cfcca4dd8bafd43bcbe5bf6aa56bf66b7ed6bf42 - optional: false - category: main - - name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-h4e0d66e_4.tar.bz2" - hash: - md5: 3cbc4e0eede8b25bc53b6a462815aceb - sha256: e0edf3c1804547239de9f678f9b650684d0f215e4c277e1d92c281f4d61559b8 - optional: false - category: main - - name: jpeg - version: 9e - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/jpeg-9e-h4194056_3.conda" - hash: - md5: 90cc27ac2032b05e4131bc62d33635dd - sha256: 41ab5b1f339fb2ab0a8938081bf972111a7d730e106eec3987c718e093ab07a9 - optional: false - category: main - - name: lerc - version: 4.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/lerc-4.0.0-hbbae597_0.tar.bz2" - hash: - md5: fc65ed3c14d2236d5917f11eaf2b949f - sha256: 694594f8344b02e0c18ae80d898b248a5afc228f8033fe0c57cb52d8c1839152 - optional: false - category: main - - name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlicommon-1.0.9-hb283c62_8.tar.bz2" - hash: - md5: 9981d8b1ed12d10234fa31973de47c10 - sha256: 69a03504a38fb6b99322896de35df1b76ac34fd25d01d6fed4cb9de7cb18ceb0 - optional: false - category: main - - name: libdeflate - version: "1.17" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libdeflate-1.17-h4194056_0.conda" - hash: - md5: 02f45219ac7b6b3d2af66fbbb2a7c8e5 - sha256: aa28ce878cbe18757b4acca5341b91bab3531a42ddd092227ebc34c255781135 - optional: false - category: main - - name: libffi - version: 3.4.2 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.4.2-h4e0d66e_5.tar.bz2" - hash: - md5: 79c37a0a50ef77fea4ee5f6d257b8b3c - sha256: 178ca9f82e2144a8834dd01f9af3b4b9b5d482892675931edccff06aee524953 - optional: false - category: main - - name: libiconv - version: "1.17" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.17-hb283c62_0.tar.bz2" - hash: - md5: 4c3d267837da62ef2b79d56729d3fe65 - sha256: 39c0fb8eaec7b378d88b458376da90261afbdb076eb4c6dd11f51de69d36384f - optional: false - category: main - - name: libnsl - version: 2.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libnsl-2.0.0-h4e0d66e_0.tar.bz2" - hash: - md5: e6c718cb0e01f2af330da0a8dbd55b68 - sha256: 2aa6cd044633586588c7105a3702788ee65b679801ab5d00b48d64265ae2f13c - optional: false - category: main - - name: libopenblas - version: 0.3.21 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.21-pthreads_h60f2977_3.tar.bz2" - hash: - md5: 8d9a4d593fea2ccf376b5e459651dd87 - sha256: 5b624bbe5f0de77e1979a508c57f55b052155eabf806756b0153d2f97a1d581c - optional: false - category: main - - name: libsanitizer - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libsanitizer-11.3.0-hc94946d_19.tar.bz2" - hash: - md5: e9d33799921c73fb1af2dfaba774b19e - sha256: b7da522d965117797d9e79e4c83494958cba00b6e5d2c0afba7bcf34385162de - optional: false - category: main - - name: libuuid - version: 2.32.1 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.32.1-h4e0d66e_1000.tar.bz2" - hash: - md5: ceb7466afcb5be47530ffe9aae8650ae - sha256: 58b4f6e27b921ff9171e64b3e382cc644d7da70d5da4e3815b7ceae4b4b452e0 - optional: false - category: main - - name: libwebp-base - version: 1.2.4 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libwebp-base-1.2.4-hb283c62_0.tar.bz2" - hash: - md5: 9d042b84b56f3d719a24cd2837fa5ff8 - sha256: 49a4ec09882f4cc1895c6ba2733fb34fa25cfdb8ee087041254a5ad04cd6a125 - optional: false - category: main - - name: libzlib - version: 1.2.13 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.2.13-hb283c62_4.tar.bz2" - hash: - md5: af99cdd23d3761a569840663bdf0dc0d - sha256: 62073ba865b49db36dc14ffeaa2985711bce65d720b853e3aa4cce0a9e5439d8 - optional: false - category: main - - name: ncurses - version: "6.3" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.3-hab78ccb_1.tar.bz2" - hash: - md5: 775403ae6d617d309d874f9bff20e670 - sha256: 37761927f381de5741d7f176dddc1c3b60876f44db10f7d636ad1133381d1a94 - optional: false - category: main - - name: ninja - version: 1.11.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/ninja-1.11.0-h06f31f1_0.tar.bz2" - hash: - md5: 75122717f0e5f294b581a9d7e93b7bb9 - sha256: fa399deab6926f00c01fb49e3095b341ae53edfa940258b96d65a390a27d4691 - optional: false - category: main - - name: openssl - version: 3.0.8 - manager: conda - platform: linux-ppc64le - dependencies: - ca-certificates: "*" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.0.8-h4194056_0.conda" - hash: - md5: e952dfc7249a48558697f61b41859864 - sha256: 62200f7fa9acb5d9cee24b373695e78ef1d7373bdfd77a50b80e57864b536436 - optional: false - category: main - - name: pkg-config - version: 0.29.2 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=8.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pkg-config-0.29.2-h339bb43_1008.tar.bz2" - hash: - md5: 473f492aa9dff1b35454c461ab1a823e - sha256: 0fb80b8894dd8914dd62fe5b096fcd7bb514bd3846d4d7c068ffc21411e73150 - optional: false - category: main - - name: pthread-stubs - version: "0.4" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=8.4.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pthread-stubs-0.4-h339bb43_1001.tar.bz2" - hash: - md5: 3c08a226d34a1ac3472fdfec4bd9217f - sha256: e6509a0eddb850203bdfc5a01d1ea4a28af732335c99848ec5e27db1f543326f - optional: false - category: main - - name: xorg-libxau - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxau-1.0.9-h4e0d66e_0.tar.bz2" - hash: - md5: 772615b637baddf37b1012ee28fbc70c - sha256: 6e83c6d5d74b20e759766cf34216a21d34d0efbd250fb8d865fbcbd51835c083 - optional: false - category: main - - name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.3.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxdmcp-1.1.3-h4e0d66e_0.tar.bz2" - hash: - md5: 95ac359ec2aea12a08fcbeb86bb48df6 - sha256: 78d953c40eb0b68fa9db8aa059e1f5c899a1ba9b6ca34142400a0dd471d7088a - optional: false - category: main - - name: xz - version: 5.2.6 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/xz-5.2.6-hb283c62_0.tar.bz2" - hash: - md5: a411645e44054e333573ee5280fdb89b - sha256: d03eb2b53dc61ac97c88b3ca023cf19c2b83b97520725b3c2ec0bff2c47f4a98 - optional: false - category: main - - name: doxygen - version: 1.9.5 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libiconv: ">=1.16,<2.0.0a0" - libstdcxx-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/doxygen-1.9.5-hc3812df_0.tar.bz2" - hash: - md5: 1bab180eb34c97ed9814436fecab3a0f - sha256: 4a22d0c893e52ef49dbfbc7f408ff4422aca8d41e40194cab623c580cbb50172 - optional: false - category: main - - name: gcc_impl_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - binutils_impl_linux-ppc64le: ">=2.39" - libgcc-devel_linux-ppc64le: "==11.3.0 hcb32637_19" - libgcc-ng: ">=11.3.0" - libgomp: ">=11.3.0" - libsanitizer: "==11.3.0 hc94946d_19" - libstdcxx-ng: ">=11.3.0" - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_impl_linux-ppc64le-11.3.0-h8f9c6bb_19.tar.bz2" - hash: - md5: 0aeb44f45dbeb26ff69acf55562669de - sha256: b37216b165b1e914111f562fdc30c7c4f132a4ee2e093869f76ee4952aee46b5 - optional: false - category: main - - name: libblas - version: 3.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-16_linuxppc64le_openblas.tar.bz2" - hash: - md5: 762b1dc9aab318ee9ba7386d2418e165 - sha256: 4a4ce4387841e3cf267b61907df06403ded365322fff3926f842f080957f82ee - optional: false - category: main - - name: libbrotlidec - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - libbrotlicommon: "==1.0.9 hb283c62_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlidec-1.0.9-hb283c62_8.tar.bz2" - hash: - md5: 66fb01acc327a224248ab33d16e4b8c0 - sha256: 180aa63160d710e08855b3ff9b30f4321c5674913dd3f0b5c8f54cebdd669cc2 - optional: false - category: main - - name: libbrotlienc - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - libbrotlicommon: "==1.0.9 hb283c62_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlienc-1.0.9-hb283c62_8.tar.bz2" - hash: - md5: 4c4ecee0aec784fe72e73935f5344676 - sha256: bd6247e1ef777d697f546680242c9937dd43339c55077fef0964e6b1a2f2c5b7 - optional: false - category: main - - name: libpng - version: 1.6.39 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libpng-1.6.39-hcc10993_0.conda" - hash: - md5: bcd557c46d754ede06e9a1554eb0c68c - sha256: fd374fc3c1900eeec3bdbdf4426795d8068e910b953fb9b35dffef86e8cd27ac - optional: false - category: main - - name: libsqlite - version: 3.39.4 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.39.4-hcc10993_0.tar.bz2" - hash: - md5: 49799ec532f260e4264705336d01310b - sha256: 93cdea9743cf1f86fdf9e9516061d5c68b9b5c43b99b7db1dd81d5b3452c4759 - optional: false - category: main - - name: libxcb - version: "1.13" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.4.0" - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libxcb-1.13-h4e0d66e_1004.tar.bz2" - hash: - md5: f963aaccf057bb6b3f7c4279b6795c50 - sha256: 99e80c223ed09dda97af0cf067678259ebf21790cb20f8a9ebe07da68ae24d1e - optional: false - category: main - - name: openblas - version: 0.3.21 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=10.4.0" - libopenblas: "==0.3.21 pthreads_h60f2977_3" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openblas-0.3.21-pthreads_h5960496_3.tar.bz2" - hash: - md5: cd3637b6090fb6415c0abd53feb35c71 - sha256: 0e4f4656d5a0f582013bb41313eed5bb64ef4f79ff1d127b2926a6356ae0c64b - optional: false - category: main - - name: readline - version: 8.1.2 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.1.2-h6828edc_0.tar.bz2" - hash: - md5: a8b0d567fd553734fc0fd0ab2447526a - sha256: 37e57caeeb181929648aa898487909b8badad20aa9fb49ab603446cccdb743db - optional: false - category: main - - name: tk - version: 8.6.12 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.12-h41c6715_0.tar.bz2" - hash: - md5: c0490995dc12b45388a01094f9959edd - sha256: 61ef67fe390109aa3423d30b96faddb97b054dfbcc0e6c8a3192331b13d14d92 - optional: false - category: main - - name: zstd - version: 1.5.2 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.2-h7affb48_6.conda" - hash: - md5: ddc6eeb52a9d5e938f96d5dd246341ca - sha256: 7c927e9f2a67f0e546094ebee302acb0b3acde7a511b6a13e44155ef28f5b622 - optional: false - category: main - - name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - libbrotlidec: "==1.0.9 hb283c62_8" - libbrotlienc: "==1.0.9 hb283c62_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-bin-1.0.9-hb283c62_8.tar.bz2" - hash: - md5: 3909235bac04f832ff9b02c764dbee23 - sha256: 98fc147dcdfb2196b4e267a1fd0250934a9ad16fb4ce9dfb2466b4c51cd6123a - optional: false - category: main - - name: freetype - version: 2.12.1 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/freetype-2.12.1-h90753b0_1.conda" - hash: - md5: 55076efce6db8419ba5b1b854f455c4a - sha256: a46c8d870bc41b15e0d8362911fe8fef4d7e6626bf23b1fc53e477788a149582 - optional: false - category: main - - name: gcc - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - gcc_impl_linux-ppc64le: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc-11.3.0-ha746174_11.tar.bz2" - hash: - md5: 6391f876f8572d2de23f5db0a8e863fa - sha256: a5373b326c9cef306250f9e159d1f55d37698bdf74a7b55e5b82dea463484e3f - optional: false - category: main - - name: gcc_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - binutils_linux-ppc64le: "==2.39 h5e55cfe_11" - gcc_impl_linux-ppc64le: 11.3.0.* - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gcc_linux-ppc64le-11.3.0-h89f38ce_11.tar.bz2" - hash: - md5: 814568bab97f272b70b8970bda7d1734 - sha256: 8e7691ff0b96738b6dc627564c000419e33239407879327e1af6309ec6638dbc - optional: false - category: main - - name: gfortran_impl_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - gcc_impl_linux-ppc64le: ">=11.3.0" - libgcc-ng: ">=4.9" - libgfortran5: ">=11.3.0" - libstdcxx-ng: ">=4.9" - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran_impl_linux-ppc64le-11.3.0-h230bcad_19.tar.bz2" - hash: - md5: e1dfcd199291fbe2535186c8ac26c38e - sha256: ea6822fe121d2236d6c1b604cf9566498dc2e5fdf2240cd3de4cb1cd98d0569e - optional: false - category: main - - name: gxx_impl_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - gcc_impl_linux-ppc64le: "==11.3.0 h8f9c6bb_19" - libstdcxx-devel_linux-ppc64le: "==11.3.0 hcb32637_19" - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_impl_linux-ppc64le-11.3.0-h8f9c6bb_19.tar.bz2" - hash: - md5: 6cae39b12f2baaf665838496d09f746e - sha256: d7ff5ce2eec8cf9b95d23c0fc8cf7a1eef64a7f7f2155369d8fd97ec42f20d4b - optional: false - category: main - - name: libcblas - version: 3.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - libblas: "==3.9.0 16_linuxppc64le_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-16_linuxppc64le_openblas.tar.bz2" - hash: - md5: 7c92b1e5f94e656d9d2f4c6164c3dd7d - sha256: f1141c257846202190deebd326b37e6147168e40e2511dffae5db48089c4f201 - optional: false - category: main - - name: liblapack - version: 3.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - libblas: "==3.9.0 16_linuxppc64le_openblas" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-16_linuxppc64le_openblas.tar.bz2" - hash: - md5: 6078295a03db891bce81100c41283109 - sha256: a14d82536cea5d9f1bb64089f371f37172c7070ffe89274c4b38618e75143ba4 - optional: false - category: main - - name: libtiff - version: 4.5.0 - manager: conda - platform: linux-ppc64le - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libdeflate: ">=1.17,<1.18.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/libtiff-4.5.0-h43527b7_2.conda" - hash: - md5: 0d6957963ed574ddd3f2fcf87a1e4169 - sha256: 8d935040dcb5a3ecad23140947dd194069cb0cc5178b8104584e05c4155668fe - optional: false - category: main - - name: python - version: 3.9.16 - manager: conda - platform: linux-ppc64le - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-ppc64le: ">=2.36.1" - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libsqlite: ">=3.39.4,<4.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.9.16-h342c621_0_cpython.conda" - hash: - md5: f5a45d99a97a1a92e41178b4fc787644 - sha256: ed87de2a117baa5341e85ef80b509aea3cce2c0c94c376003cb9c7f77610ff62 - optional: false - category: main - - name: alabaster - version: 0.7.13 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main - - name: appdirs - version: 1.4.4 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main - - name: attrs - version: 22.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main - - name: backcall - version: 0.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main - - name: backports - version: "1.0" - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main - - name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/backports.zoneinfo-0.2.1-py39h0b1cf3c_7.tar.bz2" - hash: - md5: c1167f40e89755cc23c64c6f7fd3dbe3 - sha256: f136781ac1b95d3565c2f2e5b32742d716e1b8bdd5d20d34b300a68a07f6fe2c - optional: false - category: main - - name: brotli - version: 1.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - brotli-bin: "==1.0.9 hb283c62_8" - libbrotlidec: "==1.0.9 hb283c62_8" - libbrotlienc: "==1.0.9 hb283c62_8" - libgcc-ng: ">=12" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-1.0.9-hb283c62_8.tar.bz2" - hash: - md5: f623f277928564629dc18ff3426ac984 - sha256: 8c871a332088e2d1055042a21007426d863cc54e5b7416c9a55d20a6f0a1a236 - optional: false - category: main - - name: c-compiler - version: 1.5.2 - manager: conda - platform: linux-ppc64le - dependencies: - binutils: "*" - gcc: "*" - gcc_linux-ppc64le: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/c-compiler-1.5.2-h4194056_0.conda" - hash: - md5: 906fd28502767b375b9456b4fd59bc4d - sha256: 929e32538223e861d1a4efabf95317278fa24602683852f86189bb03ff76aa62 - optional: false - category: main - - name: certifi - version: 2022.12.7 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main - - name: charset-normalizer - version: 2.1.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main - - name: click - version: 8.1.3 - manager: conda - platform: linux-ppc64le - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - - name: colorama - version: 0.4.6 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main - - name: cycler - version: 0.11.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - - name: cython - version: 0.29.33 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cython-0.29.33-py39h89b8a7f_0.conda" - hash: - md5: ee427d1817a2e2f0683c77bdc0bc6ee9 - sha256: 17ce872a2c27af5fcc84485e65072ce9549b516a14142acedd867edbfc1fc884 - optional: false - category: main - - name: decorator - version: 5.1.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main - - name: docutils - version: "0.19" - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/docutils-0.19-py39hc1b9086_1.tar.bz2" - hash: - md5: b0c85fe5865a2d03afbd2b01ae03e69e - sha256: 490f080af53643f1e61fa042b69594079786a16c8889a151922642a3dec48377 - optional: false - category: main - - name: exceptiongroup - version: 1.1.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main - - name: execnet - version: 1.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main - - name: executing - version: 1.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main - - name: gfortran - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - gcc: 11.3.0.* - gcc_impl_linux-ppc64le: 11.3.0.* - gfortran_impl_linux-ppc64le: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran-11.3.0-h47285a8_11.tar.bz2" - hash: - md5: 6050ddfbd06be074a4a4b31973528c7f - sha256: 07de312619594359318edda76557fdede88c9cdb9df3869465decd4c8dc281b1 - optional: false - category: main - - name: gfortran_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - binutils_linux-ppc64le: "==2.39 h5e55cfe_11" - gcc_linux-ppc64le: "==11.3.0 h89f38ce_11" - gfortran_impl_linux-ppc64le: 11.3.0.* - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gfortran_linux-ppc64le-11.3.0-h7e72f06_11.tar.bz2" - hash: - md5: 5c1a3d92a26afe01e17ebcf99a1b3c11 - sha256: 8ad5addbb3d147189aaa895c954e459dc278dc8da145e482c631038bbff2acee - optional: false - category: main - - name: gxx - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - gcc: 11.3.0.* - gxx_impl_linux-ppc64le: 11.3.0.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx-11.3.0-ha746174_11.tar.bz2" - hash: - md5: 203a2faa2e8aa3f329d0bf0c6ff351dd - sha256: 58b7742cdb4c6c4fa79f9c5e3a70fc4d01dc02cbb57d986a51ab90bd1e9b6a8a - optional: false - category: main - - name: gxx_linux-ppc64le - version: 11.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - binutils_linux-ppc64le: "==2.39 h5e55cfe_11" - gcc_linux-ppc64le: "==11.3.0 h89f38ce_11" - gxx_impl_linux-ppc64le: 11.3.0.* - sysroot_linux-ppc64le: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/gxx_linux-ppc64le-11.3.0-h3c74164_11.tar.bz2" - hash: - md5: a0f1353564cfcbf1310cfd9f744319c8 - sha256: be7f130dba954b876a292ee0039efd0563a60621e6430f486d231775b35c05af - optional: false - category: main - - name: idna - version: "3.4" - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - - name: imagesize - version: 1.4.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main - - name: iniconfig - version: 2.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main - - name: kiwisolver - version: 1.4.4 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/kiwisolver-1.4.4-py39h2bf7372_1.tar.bz2" - hash: - md5: b2e6cbe5c430337f19676048e429d5c6 - sha256: bd998a1dbaaaa9073ee6cfacbb8f28fcd1cec4817683272d9a09c8857276ef64 - optional: false - category: main - - name: lcms2 - version: "2.14" - manager: conda - platform: linux-ppc64le - dependencies: - jpeg: ">=9e,<10a" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/lcms2-2.14-h4cdffb3_1.conda" - hash: - md5: 3dc2f029758b3692b6c0bca31e20f3f6 - sha256: a5ba8adce3919b492527e638897bbf5843e75ea01358bac148f7d3c846c9f38b - optional: false - category: main - - name: markupsafe - version: 2.1.2 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/markupsafe-2.1.2-py39h3c7ea95_0.conda" - hash: - md5: 4b35b03829dc7cd269f7c0bb8b741fea - sha256: 27403dd13b41d2590f52645745d8daf5269fe415b99208d79935c8f5ff8c7911 - optional: false - category: main - - name: munkres - version: 1.1.4 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main - - name: mypy_extensions - version: 1.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main - - name: numpy - version: 1.24.2 - manager: conda - platform: linux-ppc64le - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-1.24.2-py39h27d966d_0.conda" - hash: - md5: 01161f20e96598201f9a9360b4b5f39e - sha256: 16dd1b6975ca3eda91d53b5d1e72f8b0297c3765fc53d156697d29150926a614 - optional: false - category: main - - name: openjpeg - version: 2.5.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libpng: ">=1.6.39,<1.7.0a0" - libstdcxx-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/openjpeg-2.5.0-hbcaec15_2.conda" - hash: - md5: 6d3258c9f7aa73ef7534f6bcbfd493c1 - sha256: 853ad1d97ce95219b41f3fb481dc2a562d83c6808008ff3b154f0452cb21a8ba - optional: false - category: main - - name: packaging - version: "23.0" - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main - - name: parso - version: 0.8.3 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main - - name: pickleshare - version: 0.7.5 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main - - name: pluggy - version: 1.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main - - name: psutil - version: 5.9.4 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/psutil-5.9.4-py39h98ec90c_0.tar.bz2" - hash: - md5: 5bd05c9eb882774901835d43e4c2c365 - sha256: d0bde2a78f967ba275a969a2d5b722d0792ac710c45c5ac74ee7b85f3cf6bb05 - optional: false - category: main - - name: ptyprocess - version: 0.7.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main - - name: pure_eval - version: 0.2.2 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main - - name: pycodestyle - version: 2.7.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main - - name: pycparser - version: "2.21" - manager: conda - platform: linux-ppc64le - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main - - name: pyparsing - version: 3.0.9 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main - - name: pysocks - version: 1.7.1 - manager: conda - platform: linux-ppc64le - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - - name: pytz - version: 2022.7.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main - - name: setuptools - version: 59.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/setuptools-59.2.0-py39hc1b9086_0.tar.bz2" - hash: - md5: 4617e1d24d2f1dff048a836d588fde54 - sha256: ad9e51800a00e3252728011f818d0f227acac77388b1b73a0b8999c1a05944fd - optional: false - category: main - - name: six - version: 1.16.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - - name: smmap - version: 3.0.5 - manager: conda - platform: linux-ppc64le - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main - - name: snowballstemmer - version: 2.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - - name: sortedcontainers - version: 2.4.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main - - name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main - - name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main - - name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main - - name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main - - name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main - - name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main - - name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main - - name: toml - version: 0.10.2 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main - - name: tomli - version: 2.0.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - - name: tornado - version: "6.2" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.2-py39h9ca6cee_1.tar.bz2" - hash: - md5: de4ea4c74f01f9b64e7c7888f7d5c506 - sha256: f4a3e920896c10dbe6247d0b0536acac4141ce28b6e8a1076c21b8563dd072c5 - optional: false - category: main - - name: traitlets - version: 5.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main - - name: typing_extensions - version: 4.4.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main - - name: unicodedata2 - version: 15.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/unicodedata2-15.0.0-py39h98ec90c_0.tar.bz2" - hash: - md5: da1d94fc94f0136d8c23c64e6c66c9fb - sha256: 06b11396a68fc4d93105e4335da1b28b7465a53561a20c309dcecf1ad5795bcd - optional: false - category: main - - name: wheel - version: 0.38.4 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main - - name: zipp - version: 3.13.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main - - name: asttokens - version: 2.2.1 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main - - name: babel - version: 2.11.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main - - name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: linux-ppc64le - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main - - name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main - - name: cffi - version: 1.15.1 - manager: conda - platform: linux-ppc64le - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-1.15.1-py39h1929af6_3.conda" - hash: - md5: ff9e253220ea6ff14aea651d2328396f - sha256: b19050c387389ad2d0f817f3865a6a1f9706da40b53c6657d1fb8cb417457ff7 - optional: false - category: main - - name: contourpy - version: 1.0.7 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/contourpy-1.0.7-py39h9e1b185_0.conda" - hash: - md5: 13b641a7acb57ac3c52747d2cec170e2 - sha256: 017e14b677471c076e978e9e8e625f2ff03e3d0cb88d1807b2b40501adf041e2 - optional: false - category: main - - name: coverage - version: 7.1.0 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/coverage-7.1.0-py39h3c7ea95_0.conda" - hash: - md5: dd671f8adf5a91298fea2aa3f067c910 - sha256: 5cd7aeb415ba5581cf10782b0d41b0b5e30ce236f074267944c21db57fa23569 - optional: false - category: main - - name: cxx-compiler - version: 1.5.2 - manager: conda - platform: linux-ppc64le - dependencies: - c-compiler: "==1.5.2 h4194056_0" - gxx: "*" - gxx_linux-ppc64le: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cxx-compiler-1.5.2-he01d56d_0.conda" - hash: - md5: b3e397799dcf3015c437a3d0ed17abfa - sha256: ce7f60cf80c215d740be900c17599fd635e504ce412f0cecb5918018a9724cc8 - optional: false - category: main - - name: fonttools - version: 4.38.0 - manager: conda - platform: linux-ppc64le - dependencies: - brotli: "*" - libgcc-ng: ">=12" - munkres: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/fonttools-4.38.0-py39h98ec90c_1.tar.bz2" - hash: - md5: 505389efe350445e400f250c35b3a300 - sha256: ef5ce78150a726933e52a5e7f0886edf64eb2f0b9e2eb533d9f58ff5ae851671 - optional: false - category: main - - name: fortran-compiler - version: 1.5.2 - manager: conda - platform: linux-ppc64le - dependencies: - binutils: "*" - c-compiler: "==1.5.2 h4194056_0" - gfortran: "*" - gfortran_linux-ppc64le: 11.* - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/fortran-compiler-1.5.2-hc9fb769_0.conda" - hash: - md5: 0fd7f97c0c750664bd80c0ce33b64184 - sha256: dddb38309e547593b9086eeeda9989b4032e89bbf27a87a3df65b0871df3725a - optional: false - category: main - - name: gitdb - version: 4.0.10 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main - - name: hypothesis - version: 6.68.1 - manager: conda - platform: linux-ppc64le - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main - - name: importlib-metadata - version: 6.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main - - name: jedi - version: 0.18.2 - manager: conda - platform: linux-ppc64le - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main - - name: jinja2 - version: 3.1.2 - manager: conda - platform: linux-ppc64le - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - - name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main - - name: meson - version: 1.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main - - name: mypy - version: "0.981" - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/mypy-0.981-py39h98ec90c_0.tar.bz2" - hash: - md5: 456fb0f78d0244ff31c8095cc042e0d4 - sha256: d0c049919ecf4642373a1447cfb8c2f056e59bbe0df4c11051b1a5e53f27d9e7 - optional: false - category: main - - name: pexpect - version: 4.8.0 - manager: conda - platform: linux-ppc64le - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main - - name: pillow - version: 9.4.0 - manager: conda - platform: linux-ppc64le - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libgcc-ng: ">=12" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pillow-9.4.0-py39h845a511_1.conda" - hash: - md5: c0534e2f92c834acc9d4e8205c418764 - sha256: a24c5f4c66ee54f7fdf7d370a6102b3d47ecbd8d1e0df190ce128605703c9ede - optional: false - category: main - - name: pip - version: "23.0" - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main - - name: pygments - version: 2.14.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main - - name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: linux-ppc64le - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main - - name: pytest - version: 7.2.1 - manager: conda - platform: linux-ppc64le - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main - - name: python-dateutil - version: 2.8.2 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main - - name: typing-extensions - version: 4.4.0 - manager: conda - platform: linux-ppc64le - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main - - name: brotlipy - version: 0.7.0 - manager: conda - platform: linux-ppc64le - dependencies: - cffi: ">=1.0.0" - libgcc-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/brotlipy-0.7.0-py39h98ec90c_1005.tar.bz2" - hash: - md5: d8c035f4b1b28f25bfbcc199aae52d3d - sha256: e534cdeef029b8fb255dd60336e2f6e6a81d011ce231517d5fe6dcd0440c4d08 - optional: false - category: main - - name: compilers - version: 1.5.2 - manager: conda - platform: linux-ppc64le - dependencies: - c-compiler: "==1.5.2 h4194056_0" - cxx-compiler: "==1.5.2 he01d56d_0" - fortran-compiler: "==1.5.2 hc9fb769_0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/compilers-1.5.2-ha3edaa6_0.conda" - hash: - md5: 46edabff80f1b3208e74cc858f733f5a - sha256: da5910e38483edcaf941c6d6c124274a900a899d55c91f82ca3324a68f99608b - optional: false - category: main - - name: cryptography - version: 39.0.1 - manager: conda - platform: linux-ppc64le - dependencies: - cffi: ">=1.12" - libgcc-ng: ">=12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/cryptography-39.0.1-py39h31bd36e_0.conda" - hash: - md5: 83f2e100cadaabaeae02f29dc3263f98 - sha256: 4dd0c3fa9da6b1e542c812ac421b28bbff222906d79587855a8d8f51d64d81e5 - optional: false - category: main - - name: gitpython - version: 3.1.30 - manager: conda - platform: linux-ppc64le - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main - - name: matplotlib-base - version: 3.6.3 - manager: conda - platform: linux-ppc64le - dependencies: - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-base-3.6.3-py39h5497c37_0.conda" - hash: - md5: 269461bf8080174eb1efc68961abc45a - sha256: f439e829ea1775ad93638858597b435aed3d36aaa4b06e93197334272c900e99 - optional: false - category: main - - name: meson-python - version: 0.12.0 - manager: conda - platform: linux-ppc64le - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main - - name: pandas - version: 1.5.3 - manager: conda - platform: linux-ppc64le - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/pandas-1.5.3-py39h3cc8c3b_0.conda" - hash: - md5: e158babd99fc5079be0d87e52cef7466 - sha256: 2c61728511be17f464b673d48713a26703a64ca4a6ad402465a2d805c1ad3089 - optional: false - category: main - - name: pytest-cov - version: 4.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main - - name: pytest-xdist - version: 3.2.0 - manager: conda - platform: linux-ppc64le - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main - - name: stack_data - version: 0.6.2 - manager: conda - platform: linux-ppc64le - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main - - name: wcwidth - version: 0.2.6 - manager: conda - platform: linux-ppc64le - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main - - name: matplotlib - version: 3.6.3 - manager: conda - platform: linux-ppc64le - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-3.6.3-py39hc1b9086_0.conda" - hash: - md5: 773e37213cd47be018f3cd225b9694a5 - sha256: 9d85a0fd853509efc0c2a63e10e56a968069d23552fa8391b667cf52fb6b7c03 - optional: false - category: main - - name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main - - name: pyopenssl - version: 23.0.0 - manager: conda - platform: linux-ppc64le - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main - - name: ipython - version: 8.10.0 - manager: conda - platform: linux-ppc64le - dependencies: - __linux: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyh41d4057_0.conda" - hash: - md5: 4703355103974293bbd8a32449b3ff28 - sha256: 350847af23f964a1002c712547e26a1e144e5bbc1662016263c5fb8fc963dcff - optional: false - category: main - - name: urllib3 - version: 1.26.14 - manager: conda - platform: linux-ppc64le - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main - - name: requests - version: 2.28.2 - manager: conda - platform: linux-ppc64le - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main - - name: pooch - version: 1.6.0 - manager: conda - platform: linux-ppc64le - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main - - name: sphinx - version: 5.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main - - name: breathe - version: 4.34.0 - manager: conda - platform: linux-ppc64le - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main - - name: numpydoc - version: 1.4.0 - manager: conda - platform: linux-ppc64le - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main - - name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: linux-ppc64le - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main - - name: scipy - version: 1.10.0 - manager: conda - platform: linux-ppc64le - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "*" - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.10.0-py39h27d966d_2.conda" - hash: - md5: de117adb37cbb16482bf434d06c68431 - sha256: 8bd3869860945f3d4b3d136e06a431a58abca843cd3deed85824986daa9b5743 - optional: false - category: main - - name: sphinx-design - version: 0.3.0 - manager: conda - platform: linux-ppc64le - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - - name: bzip2 - version: 1.0.8 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2" - hash: - md5: 37edc4e6304ca87316e160f5ca0bd1b5 - sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 - optional: false - category: main - - name: ca-certificates - version: 2022.12.7 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.12.7-h033912b_0.conda" - hash: - md5: af2bdcd68f16ce030ca957cdeb83d88a - sha256: 898276d86de89fb034ecfae05103045d0a0d6a356ced1b6d1832cdbd07a8fc18 - optional: false - category: main - - name: jpeg - version: 9e - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hb7f2c08_3.conda" - hash: - md5: 6b55131ae9445ef38746dc6b080acda9 - sha256: 1ef5f9b4d9817820224c92b016da210b1356250d7272e16901c547e156b3e615 - optional: false - category: main - - name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2" - hash: - md5: 37157d273eaf3bc7d6862104161d9ec9 - sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 - optional: false - category: main - - name: libcxx - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2" - hash: - md5: 208a6a874b073277374de48a782f6b10 - sha256: ebb75dd9f854b1f184a98d0b9128a3faed6cd2f05f83677e1f399c253580afe7 - optional: false - category: main - - name: libdeflate - version: "1.17" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.17-hac1461d_0.conda" - hash: - md5: e3894420cf8b6abbf6c4d3d9742fbb4a - sha256: b322e190fd6fe631e1f4836ef99cbfb8352c03c30b51cb5baa216f7c9124d82e - optional: false - category: main - - name: libffi - version: 3.4.2 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2" - hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - optional: false - category: main - - name: libgfortran-devel_osx-64 - version: 11.3.0 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-11.3.0-h824d247_27.conda" - hash: - md5: 3729d4388eb5a801b148dd4802899dba - sha256: d93b662d07aeb99417be9b62ca511520865e691d1fc224a63e383727791ac3b7 - optional: false - category: main - - name: libiconv - version: "1.17" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2" - hash: - md5: 691d103d11180486154af49c037b7ed9 - sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 - optional: false - category: main - - name: libwebp-base - version: 1.2.4 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2" - hash: - md5: 28807bef802a354f9c164e7ab242c5cb - sha256: ca3eb817054ac2942802b6b51dc671ab2af6564da329bebcb2538cdb31b59fa1 - optional: false - category: main - - name: libzlib - version: 1.2.13 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2" - hash: - md5: 35eb3fce8d51ed3c1fd4122bad48250b - sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 - optional: false - category: main - - name: llvm-openmp - version: 15.0.7 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-15.0.7-h61d9ccf_0.conda" - hash: - md5: 3faa9933dff6e96333b5ca5274674b63 - sha256: cc1586b43b757890b7d1cd24e1582345a36c40acd6cb6f9d9affb91de3c62015 - optional: false - category: main - - name: ncurses - version: "6.3" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2" - hash: - md5: 76217ebfbb163ff2770a261f955a5861 - sha256: 9794a23d03586c99cac49d4ae3d5337faaa6bfc256b31d2662ff4ad5972be143 - optional: false - category: main - - name: nomkl - version: "1.0" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main - - name: pthread-stubs - version: "0.4" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2" - hash: - md5: addd19059de62181cd11ae8f4ef26084 - sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 - optional: false - category: main - - name: python_abi - version: "3.9" - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-3_cp39.conda" - hash: - md5: 021e2768e8eaf24ee8e25aec64d305a1 - sha256: b02e179f015b042510da8ba256c86f5cfb34058a96ec1c548f33f9f8bcdbb78c - optional: false - category: main - - name: tzdata - version: 2022g - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main - - name: xorg-libxau - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2" - hash: - md5: c5049997b2e98edfbcdd294582f66281 - sha256: 6dcdbfcdb87c21cb615cd1a0a7fab7e657a443c771e80c771524f7d9b8443304 - optional: false - category: main - - name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2" - hash: - md5: 86ac76d6bf1cbb9621943eb3bd9ae36e - sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f - optional: false - category: main - - name: xz - version: 5.2.6 - manager: conda - platform: osx-64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2" - hash: - md5: a72f9d4ea13d55d745ff1ed594747f10 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - optional: false - category: main - - name: doxygen - version: 1.9.5 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.4" - libiconv: ">=1.16,<2.0.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.9.5-h6ca31d6_0.tar.bz2" - hash: - md5: 100e85351a872cfc6e5036329a10f589 - sha256: 6900910a349b4a54fd42aa67c940c53efe137e0fe4160ec05aafb15dc9c6903e - optional: false - category: main - - name: gmp - version: 6.2.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=10.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2" - hash: - md5: dedc96914428dae572a39e69ee2a392f - sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 - optional: false - category: main - - name: isl - version: "0.25" - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-64/isl-0.25-hb486fe8_0.tar.bz2" - hash: - md5: 45a9a46c78c0ea5c275b535f7923bde3 - sha256: f0a10b2be179809d4444bee0a60d5aa286b306520d55897b29d22b9848ab71fb - optional: false - category: main - - name: lerc - version: 4.0.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2" - hash: - md5: f9d6a4c82889d5ecedec1d90eb673c55 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 - optional: false - category: main - - name: libbrotlidec - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlicommon: "==1.0.9 hb7f2c08_8" - url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2" - hash: - md5: 7f952a036d9014b4dab96c6ea0f8c2a7 - sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca - optional: false - category: main - - name: libbrotlienc - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlicommon: "==1.0.9 hb7f2c08_8" - url: "https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2" - hash: - md5: b36a3bfe866d9127f25f286506982166 - sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 - optional: false - category: main - - name: libgfortran5 - version: 11.3.0 - manager: conda - platform: osx-64 - dependencies: - llvm-openmp: ">=8.0.0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_27.conda" - hash: - md5: f7602714b2be91be36f00fb75c45cb14 - sha256: 78173905004e7d13501db619391b113f3b96f2c78ba3ed0273152d1340d6a818 - optional: false - category: main - - name: libllvm14 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-h5b596cc_1.tar.bz2" - hash: - md5: c61f692b0e98efc1ef772fdf7d14e81a - sha256: 8e72bb60d707dfecca0cfb7378cbabe43de4537513a938fb0ab75ce58c5c7d91 - optional: false - category: main - - name: libpng - version: 1.6.39 - manager: conda - platform: osx-64 - dependencies: - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda" - hash: - md5: 35e4928794c5391aec14ffdf1deaaee5 - sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 - optional: false - category: main - - name: libsqlite - version: 3.40.0 - manager: conda - platform: osx-64 - dependencies: - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.40.0-ha978bb4_0.tar.bz2" - hash: - md5: ceb13b6726534b96e3b4e3dda91e9050 - sha256: ae19f866188cc0c514fed754468460ae9e8dd763ebbd7b7afc4e818d71844297 - optional: false - category: main - - name: libxcb - version: "1.13" - manager: conda - platform: osx-64 - dependencies: - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2" - hash: - md5: eb7860935e14aec936065cbc21a1a962 - sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 - optional: false - category: main - - name: ninja - version: 1.11.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.0-h1b54a9f_0.tar.bz2" - hash: - md5: 02e4d7a0d1cda051ddf5e83725c4b2a6 - sha256: c7c7de719893c28b3e35fd3afa2ca7f6bf03022df5cf2398e1806c881ce41775 - optional: false - category: main - - name: openssl - version: 3.0.8 - manager: conda - platform: osx-64 - dependencies: - ca-certificates: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/openssl-3.0.8-hfd90126_0.conda" - hash: - md5: 4239d01834a13512079046ea216b6657 - sha256: 750ebd464414b7c4ea5aaa704788f7238a356c0a54ce76b018af246cdb65bf08 - optional: false - category: main - - name: pkg-config - version: 0.29.2 - manager: conda - platform: osx-64 - dependencies: - libiconv: ">=1.16,<2.0.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-ha3d46e9_1008.tar.bz2" - hash: - md5: 352bc6fb446a7ca608c61b33c1d5eb98 - sha256: f60d1c03c7d10e8926e767981872fdd6002d2094925df598a53c58261524c151 - optional: false - category: main - - name: readline - version: 8.1.2 - manager: conda - platform: osx-64 - dependencies: - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2" - hash: - md5: 89fa404901fa8fb7d4f4e07083b8d635 - sha256: c65dc1200a252832db49bdd6836c512a0eaafe97aa914b9f8358b15eebb1d94b - optional: false - category: main - - name: tapi - version: 1100.0.11 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=10.0.0.a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2" - hash: - md5: f9ff42ccf809a21ba6f8607f8de36108 - sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa - optional: false - category: main - - name: tk - version: 8.6.12 - manager: conda - platform: osx-64 - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2" - hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 - optional: false - category: main - - name: zlib - version: 1.2.13 - manager: conda - platform: osx-64 - dependencies: - libzlib: "==1.2.13 hfd90126_4" - url: "https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2" - hash: - md5: be90e6223c74ea253080abae19b3bdb1 - sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 - optional: false - category: main - - name: zstd - version: 1.5.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.6" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda" - hash: - md5: 40a188783d3c425bdccc9ae9104acbb8 - sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f - optional: false - category: main - - name: brotli-bin - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlidec: "==1.0.9 hb7f2c08_8" - libbrotlienc: "==1.0.9 hb7f2c08_8" - url: "https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2" - hash: - md5: aac5ad0d8f747ef7f871508146df75d9 - sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 - optional: false - category: main - - name: freetype - version: 2.12.1 - manager: conda - platform: osx-64 - dependencies: - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda" - hash: - md5: 852224ea3e8991a8342228eab274840e - sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb - optional: false - category: main - - name: libclang-cpp14 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=13.0.1" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp14-14.0.6-default_h55ffa42_0.tar.bz2" - hash: - md5: 9b9bc2f878d47e6846e3d01ca0fcb921 - sha256: 01f7c50ef3414ea00026e5845e6ac8f0395af8ea7d585e4977fd6d7aa3e215d0 - optional: false - category: main - - name: libgfortran - version: 5.0.0 - manager: conda - platform: osx-64 - dependencies: - libgfortran5: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_27.conda" - hash: - md5: 7d25335e67256924aa04de681e68e807 - sha256: 834f1547a41fe53a23563b7702eb83b7156129a88460b5de701e8e019f7933a1 - optional: false - category: main - - name: libtiff - version: 4.5.0 - manager: conda - platform: osx-64 - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libcxx: ">=14.0.6" - libdeflate: ">=1.17,<1.18.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hee9004a_2.conda" - hash: - md5: 35f714269a801f7c3cb522aacd3c0e69 - sha256: 03d00d6a3b1e569e9a8da66a9ad75a29c9c676dc7de6c16771abbb961abded2c - optional: false - category: main - - name: llvm-tools - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - libllvm14: "==14.0.6 h5b596cc_1" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-14.0.6-h5b596cc_1.tar.bz2" - hash: - md5: d99491efd3d672b3496e9fc9273da7c0 - sha256: 70be9ae375316ed616dae92c614763bd930d64765cf256d0f1aa50e3dcdafc58 - optional: false - category: main - - name: mpfr - version: 4.1.0 - manager: conda - platform: osx-64 - dependencies: - gmp: ">=6.2.1,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.1.0-h0f52abe_1.tar.bz2" - hash: - md5: afe26b08c2d2265b4d663d199000e5da - sha256: 68e2d7c06f438f7179b9b0c6f826a33a29c6580233a1e60fa71d4da260d70b8f - optional: false - category: main - - name: python - version: 3.9.16 - manager: conda - platform: osx-64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libffi: ">=3.4,<4.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/python-3.9.16-h709bd14_0_cpython.conda" - hash: - md5: 37f637999bb01d0474492ed14660c34b - sha256: ffff69cde5bce4fadaf1b6fb551d3ffa1f0f8a6dfdc95ec114f9aac02758a71a - optional: false - category: main - - name: sigtool - version: 0.1.3 - manager: conda - platform: osx-64 - dependencies: - openssl: ">=3.0.0,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2" - hash: - md5: fbfb84b9de9a6939cb165c02c69b1865 - sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf - optional: false - category: main - - name: alabaster - version: 0.7.13 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main - - name: appdirs - version: 1.4.4 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main - - name: appnope - version: 0.1.3 - manager: conda - platform: osx-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 54ac328d703bff191256ffa1183126d1 - sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742 - optional: false - category: main - - name: attrs - version: 22.2.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main - - name: backcall - version: 0.2.0 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main - - name: backports - version: "1.0" - manager: conda - platform: osx-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main - - name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/backports.zoneinfo-0.2.1-py39h6e9494a_7.tar.bz2" - hash: - md5: 5727630b9e2234fbe5ba637c763a80c7 - sha256: 4dda0fc050802b0ad30eda1a4b13ad82172627f1601fae9e36344e41de8be5e2 - optional: false - category: main - - name: brotli - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - brotli-bin: "==1.0.9 hb7f2c08_8" - libbrotlidec: "==1.0.9 hb7f2c08_8" - libbrotlienc: "==1.0.9 hb7f2c08_8" - url: "https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2" - hash: - md5: 55f612fe4a9b5f6ac76348b6de94aaeb - sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b - optional: false - category: main - - name: certifi - version: 2022.12.7 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main - - name: charset-normalizer - version: 2.1.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main - - name: clang-14 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - libclang-cpp14: "==14.0.6 default_h55ffa42_0" - libcxx: ">=13.0.1" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/clang-14-14.0.6-default_h55ffa42_0.tar.bz2" - hash: - md5: f4b08faae104f8a5483c06f7c6464b35 - sha256: 8c421568bce373e71ade9768f0f7e3563eaec84cb2cd51a7f2e03c6c3bb7be94 - optional: false - category: main - - name: click - version: 8.1.3 - manager: conda - platform: osx-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - - name: colorama - version: 0.4.6 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main - - name: cycler - version: 0.11.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - - name: cython - version: 0.29.33 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.6" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/cython-0.29.33-py39h7a8716b_0.conda" - hash: - md5: 04be8513f2ce60858396afbd0353688a - sha256: 3ee611cc2d9793089ef54e20d7521655b2ef8017b4c56003f872ffdb16eafee2 - optional: false - category: main - - name: decorator - version: 5.1.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main - - name: docutils - version: "0.19" - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/docutils-0.19-py39h6e9494a_1.tar.bz2" - hash: - md5: d9db9ab3a721b9f36017d6b93060b462 - sha256: 232f045f5935309bd3c7901027a728c1dcfdab385e8ad104f54b6a70c315a219 - optional: false - category: main - - name: exceptiongroup - version: 1.1.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main - - name: execnet - version: 1.9.0 - manager: conda - platform: osx-64 - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main - - name: executing - version: 1.2.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main - - name: idna - version: "3.4" - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - - name: imagesize - version: 1.4.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main - - name: iniconfig - version: 2.0.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main - - name: kiwisolver - version: 1.4.4 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.4" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py39h92daf61_1.tar.bz2" - hash: - md5: 7720e059630e25ab17ab12677e59c615 - sha256: c397173c92ca77678d645bf8ef8064e81b821169db056217963f020acc09d42c - optional: false - category: main - - name: lcms2 - version: "2.14" - manager: conda - platform: osx-64 - dependencies: - jpeg: ">=9e,<10a" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.14-h29502cd_1.conda" - hash: - md5: 1e42174021ffc69545f0814b9478dee3 - sha256: 64efad232b892c2511ba56bbd821e0b1e2e80a7a8ccf3524c20b5f964793ce43 - optional: false - category: main - - name: ld64_osx-64 - version: "609" - manager: conda - platform: osx-64 - dependencies: - libcxx: "*" - libllvm14: ">=14.0.6,<14.1.0a0" - sigtool: "*" - tapi: ">=1100.0.11,<1101.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-hfd63004_11.conda" - hash: - md5: 8881d41cb8fa1104d4545c6b7ddc9671 - sha256: 0c658f698bc12e0c7dc2def81c0b2a45aab810f5a11136dc99a5e944b47a3b97 - optional: false - category: main - - name: libopenblas - version: 0.3.21 - manager: conda - platform: osx-64 - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - url: "https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2" - hash: - md5: 968c46aa7f4032c3f3873f3452ed4c34 - sha256: a5a0b6ccef165ffb38e6a53e7b8808e33c77e081174315d2333ae93b593ae957 - optional: false - category: main - - name: markupsafe - version: 2.1.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.2-py39ha30fb19_0.conda" - hash: - md5: 3b7b34916156e45ec52df74efc3db6e4 - sha256: d5aa88cdd75728fe101f83d0c4a7ab36634044f890e9e41aceb7454500e8af2b - optional: false - category: main - - name: mpc - version: 1.3.1 - manager: conda - platform: osx-64 - dependencies: - gmp: ">=6.2.1,<7.0a0" - mpfr: ">=4.1.0,<5.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h81bd1dd_0.conda" - hash: - md5: c752c0eb6c250919559172c011e5f65b - sha256: 2ae945a15c8a984d581dcfb974ad3b5d877a6527de2c95a3363e6b4490b2f312 - optional: false - category: main - - name: munkres - version: 1.1.4 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main - - name: mypy_extensions - version: 1.0.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main - - name: openjpeg - version: 2.5.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.6" - libpng: ">=1.6.39,<1.7.0a0" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h13ac156_2.conda" - hash: - md5: 299a29af9ac9f550ad459d655739280b - sha256: 2375eafbd5241d8249fb467e2a8e190646e8798c33059c72efa60f197cdf4944 - optional: false - category: main - - name: packaging - version: "23.0" - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main - - name: parso - version: 0.8.3 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main - - name: pickleshare - version: 0.7.5 - manager: conda - platform: osx-64 - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main - - name: pluggy - version: 1.0.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main - - name: psutil - version: 5.9.4 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.4-py39ha30fb19_0.tar.bz2" - hash: - md5: fde4dae8cd4d545d53e20d371ffd4c77 - sha256: 4e81064087ca1938c04d8e9dd1e8be92f686a56f7ebf0da5371beea9fc5f2a24 - optional: false - category: main - - name: ptyprocess - version: 0.7.0 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main - - name: pure_eval - version: 0.2.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main - - name: pycodestyle - version: 2.7.0 - manager: conda - platform: osx-64 - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main - - name: pycparser - version: "2.21" - manager: conda - platform: osx-64 - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main - - name: pyparsing - version: 3.0.9 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main - - name: pysocks - version: 1.7.1 - manager: conda - platform: osx-64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - - name: pytz - version: 2022.7.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main - - name: setuptools - version: 59.2.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/setuptools-59.2.0-py39h6e9494a_0.tar.bz2" - hash: - md5: a0954b685217e8b45fd677da613d4e95 - sha256: 5f0850fae9a651bc448bc50af4550d93f8d966f168ef85a918e51eca6490d8ab - optional: false - category: main - - name: six - version: 1.16.0 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - - name: smmap - version: 3.0.5 - manager: conda - platform: osx-64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main - - name: snowballstemmer - version: 2.2.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - - name: sortedcontainers - version: 2.4.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main - - name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main - - name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main - - name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main - - name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main - - name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main - - name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main - - name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main - - name: toml - version: 0.10.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main - - name: tomli - version: 2.0.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - - name: tornado - version: "6.2" - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/tornado-6.2-py39ha30fb19_1.tar.bz2" - hash: - md5: 07917d8456ca9aa09acf950019bf53b2 - sha256: 1536759eb5feb9fdf9e7974e9fce18a709f0e110a75caff72dd9d83c7192cd86 - optional: false - category: main - - name: traitlets - version: 5.9.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main - - name: typing_extensions - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main - - name: unicodedata2 - version: 15.0.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.0.0-py39ha30fb19_0.tar.bz2" - hash: - md5: 17876b4aebf783fb7bba980a79516892 - sha256: 06ff21e0a28f5acee3719fd8c788c4dffbed408f463c933f7f892399039962fc - optional: false - category: main - - name: wheel - version: 0.38.4 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main - - name: zipp - version: 3.13.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main - - name: asttokens - version: 2.2.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main - - name: babel - version: 2.11.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main - - name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: osx-64 - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main - - name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main - - name: cctools_osx-64 - version: 973.0.1 - manager: conda - platform: osx-64 - dependencies: - ld64_osx-64: ">=609,<610.0a0" - libcxx: "*" - libllvm14: ">=14.0.6,<14.1.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - sigtool: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-hcc6d90d_11.conda" - hash: - md5: f1af817221bc31e7c770e1ea15374355 - sha256: 35c805738300e15a77977849b540b2ba54d8cbc915cb531cf88240a8968fc00d - optional: false - category: main - - name: cffi - version: 1.15.1 - manager: conda - platform: osx-64 - dependencies: - libffi: ">=3.4,<4.0a0" - pycparser: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_3.conda" - hash: - md5: 35c1b89ab4359002865052df70939c48 - sha256: e099e8ce3f35906071035fef85cbca94bbbb90d18f231ba8cd1a88577c7d84b3 - optional: false - category: main - - name: clang - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - clang-14: "==14.0.6 default_h55ffa42_0" - url: "https://conda.anaconda.org/conda-forge/osx-64/clang-14.0.6-h694c41f_0.tar.bz2" - hash: - md5: 77667c3c75b88f12782f628d171ffeda - sha256: dc38927cc81c81c64ab632f3aaa4bb17ed776794b2bfd3fa3375b38ad768ace7 - optional: false - category: main - - name: coverage - version: 7.1.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/coverage-7.1.0-py39ha30fb19_0.conda" - hash: - md5: be24d2d5a14dd95d77376ca68df86e94 - sha256: 7c3ee64099be5aa022f0126b5c5ace87cfb616a19fdcc7d88731ed432595fbc3 - optional: false - category: main - - name: fonttools - version: 4.38.0 - manager: conda - platform: osx-64 - dependencies: - brotli: "*" - munkres: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_1.tar.bz2" - hash: - md5: d4ef9879362c40c8c346a0b6cd79f2e0 - sha256: 6875cb8e44e09332b59f276c3b32be05906206f8a19e773d8c765feeae6dac4b - optional: false - category: main - - name: gfortran_impl_osx-64 - version: 11.3.0 - manager: conda - platform: osx-64 - dependencies: - gmp: ">=6.2.1,<7.0a0" - isl: ">=0.25,<0.26.0a0" - libcxx: ">=14.0.6" - libgfortran-devel_osx-64: 11.3.0.* - libgfortran5: ">=11.3.0" - libiconv: ">=1.17,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - mpc: ">=1.2.1,<2.0a0" - mpfr: ">=4.1.0,<5.0a0" - zlib: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-11.3.0-h1f927f5_27.conda" - hash: - md5: 0bb7f54e22a2136588b33e7b0bf24148 - sha256: e8be46ff4aa486a808e3494cf6b44758cce199d2888d91553261f65bd02cf7f0 - optional: false - category: main - - name: gitdb - version: 4.0.10 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main - - name: hypothesis - version: 6.68.1 - manager: conda - platform: osx-64 - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main - - name: importlib-metadata - version: 6.0.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main - - name: jedi - version: 0.18.2 - manager: conda - platform: osx-64 - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main - - name: jinja2 - version: 3.1.2 - manager: conda - platform: osx-64 - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - - name: ld64 - version: "609" - manager: conda - platform: osx-64 - dependencies: - ld64_osx-64: "==609 hfd63004_11" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/ld64-609-hc6ad406_11.conda" - hash: - md5: 9e14075f26a915bc6180b40789138adf - sha256: fd1d2aa9a08c52599fb03dbd65fe32e788f34bcd6d509f22eac7897233282d60 - optional: false - category: main - - name: libblas - version: 3.9.0 - manager: conda - platform: osx-64 - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2" - hash: - md5: 644d63e9379867490b67bace400b2a0f - sha256: 7678dab49b552957ddfa1fc5ddf3a09963c788bca81adb0cd9626f6385e205c5 - optional: false - category: main - - name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main - - name: meson - version: 1.0.0 - manager: conda - platform: osx-64 - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main - - name: mypy - version: "0.981" - manager: conda - platform: osx-64 - dependencies: - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/osx-64/mypy-0.981-py39ha30fb19_0.tar.bz2" - hash: - md5: b6580642702195bf97ea22c5913a82b9 - sha256: df7bdee4a6f7376bccfede1570bd3338011137d4ba63520b90b56e642ee5f782 - optional: false - category: main - - name: openblas - version: 0.3.21 - manager: conda - platform: osx-64 - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - libopenblas: "==0.3.21 openmp_h429af6e_3" - llvm-openmp: ">=14.0.4" - url: "https://conda.anaconda.org/conda-forge/osx-64/openblas-0.3.21-openmp_hbefa662_3.tar.bz2" - hash: - md5: f0ad8b67cf731e7e375e497305d7cee5 - sha256: 8aaf3165d6b443c48f3a1b2b34330c361801d04ac668d43be5475472c6a4e25f - optional: false - category: main - - name: pexpect - version: 4.8.0 - manager: conda - platform: osx-64 - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main - - name: pillow - version: 9.4.0 - manager: conda - platform: osx-64 - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/pillow-9.4.0-py39h7f5cd59_1.conda" - hash: - md5: d2f1bdaa85fd34020259533efeeb40bb - sha256: b7a6d9e50a212215f76666789b0e9c155756d90e27678b4a8720fc6825621648 - optional: false - category: main - - name: pip - version: "23.0" - manager: conda - platform: osx-64 - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main - - name: pygments - version: 2.14.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main - - name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: osx-64 - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main - - name: pytest - version: 7.2.1 - manager: conda - platform: osx-64 - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main - - name: python-dateutil - version: 2.8.2 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main - - name: typing-extensions - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main - - name: brotlipy - version: 0.7.0 - manager: conda - platform: osx-64 - dependencies: - cffi: ">=1.0.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py39ha30fb19_1005.tar.bz2" - hash: - md5: 201d86c1f0b0132954fc72251b09df8a - sha256: 0204c1d5ab773e956233c0a6941f87faf7e9dc3fe30dec0d34f04091309859d8 - optional: false - category: main - - name: cctools - version: 973.0.1 - manager: conda - platform: osx-64 - dependencies: - cctools_osx-64: "==973.0.1 hcc6d90d_11" - ld64: "==609 hc6ad406_11" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-h76f1dac_11.conda" - hash: - md5: 77d8192c013d7a4a355aee5b0ae1ae20 - sha256: afe5a8d93ae1ecc09d98a15f6edea6b14e0f99fb3f64d4d04501461afb56ccd9 - optional: false - category: main - - name: clangxx - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - clang: "==14.0.6 h694c41f_0" - url: "https://conda.anaconda.org/conda-forge/osx-64/clangxx-14.0.6-default_h55ffa42_0.tar.bz2" - hash: - md5: 6a46064b0506895d090302433e70397b - sha256: 11b6d9f11aae45ac36a4d87d0f5367d00eda6f53c43bac38594024e25a366b04 - optional: false - category: main - - name: cryptography - version: 39.0.1 - manager: conda - platform: osx-64 - dependencies: - cffi: ">=1.12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/cryptography-39.0.1-py39hbeae22c_0.conda" - hash: - md5: fac2793ec157233017912d190fa15f00 - sha256: 3b98fbb4a457fb3136e832079b5cf112063bd3c91b655f640db0b455328b3767 - optional: false - category: main - - name: gitpython - version: 3.1.30 - manager: conda - platform: osx-64 - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main - - name: libcblas - version: 3.9.0 - manager: conda - platform: osx-64 - dependencies: - libblas: "==3.9.0 16_osx64_openblas" - url: "https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2" - hash: - md5: 28592eab0f05bcf9969789e87f754e11 - sha256: 072a214ab1d596b99b985773bdb6f6e5f38774c7f73d70962700e0fc0d77d91f - optional: false - category: main - - name: liblapack - version: 3.9.0 - manager: conda - platform: osx-64 - dependencies: - libblas: "==3.9.0 16_osx64_openblas" - url: "https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2" - hash: - md5: 406ad426aade5578b90544cc2ed4a79b - sha256: 456a6e8bfc2e97846d9e157b5f51c23e0c4e9c922ccf7b2321be5362c835d35f - optional: false - category: main - - name: meson-python - version: 0.12.0 - manager: conda - platform: osx-64 - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main - - name: pytest-cov - version: 4.0.0 - manager: conda - platform: osx-64 - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main - - name: pytest-xdist - version: 3.2.0 - manager: conda - platform: osx-64 - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main - - name: stack_data - version: 0.6.2 - manager: conda - platform: osx-64 - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main - - name: wcwidth - version: 0.2.6 - manager: conda - platform: osx-64 - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main - - name: compiler-rt_osx-64 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - clang: 14.0.6.* - clangxx: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-14.0.6-hab78ec2_0.tar.bz2" - hash: - md5: 4fdde3f4ed31722a1c811723f5db82f0 - sha256: a8351d6a47a8a2cd8267862d36ad5a06f16955c68111140b8b147ee126433712 - optional: false - category: main - - name: numpy - version: 1.24.2 - manager: conda - platform: osx-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.6" - liblapack: ">=3.9.0,<4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.2-py39h6ee2318_0.conda" - hash: - md5: 9b49051072af22354aee82b524f808ff - sha256: 6c4acf04c482a33b7c4a1661ed50c6927f683418b9b61b29f16711f77480485e - optional: false - category: main - - name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main - - name: pyopenssl - version: 23.0.0 - manager: conda - platform: osx-64 - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main - - name: compiler-rt - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - clang: 14.0.6.* - clangxx: 14.0.6.* - compiler-rt_osx-64: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-14.0.6-h613da45_0.tar.bz2" - hash: - md5: b44e0625319f9933e584dc3b96f5baf7 - sha256: 2dea3b5efea587329320c70a335fa5666c3a814e70e76464734b90a40b70e8a8 - optional: false - category: main - - name: contourpy - version: 1.0.7 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.6" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.7-py39h92daf61_0.conda" - hash: - md5: 3b50cfd6ea07613741693ba535fcefda - sha256: e62b248506d690eaea2de499555288665ca0508d54efe63690638f1b39e6e775 - optional: false - category: main - - name: ipython - version: 8.10.0 - manager: conda - platform: osx-64 - dependencies: - __osx: "*" - appnope: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda" - hash: - md5: e67b634578fefbb312cd6cfd34b63d86 - sha256: 5951fbddbd8be803c38b75d7d34ff78d366e57e55a7afa2604be6fd0abacb882 - optional: false - category: main - - name: pandas - version: 1.5.3 - manager: conda - platform: osx-64 - dependencies: - libcxx: ">=14.0.6" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.3-py39hecff1ad_0.conda" - hash: - md5: e7d2a20902a36eea13dea9b0021fbfb4 - sha256: 2fcd5f5ad098fe73089c3d5970f155df75c329cffbdf08c3ad52b2515224fe6a - optional: false - category: main - - name: urllib3 - version: 1.26.14 - manager: conda - platform: osx-64 - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main - - name: clang_osx-64 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - cctools_osx-64: "*" - clang: 14.0.6.* - compiler-rt: 14.0.6.* - ld64_osx-64: "*" - llvm-tools: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-14.0.6-h3113cd8_4.conda" - hash: - md5: e1828ef1597292a9ea25627fdfacb9f3 - sha256: 4cdce8a6e1b1ea671e6f10839548983f93f9c4ab86cb89acf439d414283162b5 - optional: false - category: main - - name: matplotlib-base - version: 3.6.3 - manager: conda - platform: osx-64 - dependencies: - __osx: ">=10.12" - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libcxx: ">=14.0.6" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.6.3-py39hb2f573b_0.conda" - hash: - md5: 2852034caacfeaa91d7258c5712887e2 - sha256: cbf4ca345fbce7bdebbdfc9175f9969af4bb6afb97f73450bf81b90d63389dda - optional: false - category: main - - name: requests - version: 2.28.2 - manager: conda - platform: osx-64 - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main - - name: c-compiler - version: 1.5.2 - manager: conda - platform: osx-64 - dependencies: - cctools: ">=949.0.1" - clang_osx-64: 14.* - ld64: ">=530" - llvm-openmp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.5.2-hbf74d83_0.conda" - hash: - md5: c1413ef5a20d658923e12dd3b566d8f3 - sha256: 0f97b6cc2215f0789ffa2781eb8a6304efaf5c4592c4c619d6e0a63c23f2b877 - optional: false - category: main - - name: clangxx_osx-64 - version: 14.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_osx-64: "==14.0.6 h3113cd8_4" - clangxx: 14.0.6.* - libcxx: ">=14.0.6" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-14.0.6-h6f97653_4.conda" - hash: - md5: f9f2cc37068e5f2f4332793640329fe3 - sha256: 9da6a17e9ae0b51ecc2ab2f25f850a38902f696de1d05cf2ad9374146cfc1d3a - optional: false - category: main - - name: gfortran_osx-64 - version: 11.3.0 - manager: conda - platform: osx-64 - dependencies: - cctools_osx-64: "*" - clang: "*" - clang_osx-64: "*" - gfortran_impl_osx-64: "==11.3.0" - ld64_osx-64: "*" - libgfortran: 5.* - libgfortran-devel_osx-64: "==11.3.0" - libgfortran5: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-11.3.0-h18f7dce_0.tar.bz2" - hash: - md5: 72320d23ed499315d1d1ac332b94bc66 - sha256: 7abe5dd161c8e4cdb67ceefecf27906d208e46bdb86b71e444b71409fc0857a1 - optional: false - category: main - - name: matplotlib - version: 3.6.3 - manager: conda - platform: osx-64 - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.6.3-py39h6e9494a_0.conda" - hash: - md5: 255526eb4dbca981a03b25f0267f2a62 - sha256: bb324a483b9cb30a09bfefe18cb4e42199201940be0ed82f3c0fbdb26ef2950d - optional: false - category: main - - name: pooch - version: 1.6.0 - manager: conda - platform: osx-64 - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main - - name: sphinx - version: 5.3.0 - manager: conda - platform: osx-64 - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main - - name: breathe - version: 4.34.0 - manager: conda - platform: osx-64 - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main - - name: cxx-compiler - version: 1.5.2 - manager: conda - platform: osx-64 - dependencies: - c-compiler: "==1.5.2 hbf74d83_0" - clangxx_osx-64: 14.* - url: "https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.5.2-hb8565cd_0.conda" - hash: - md5: 349ae14723b98f76ea0fcb8e532b2ead - sha256: 91193c9029594d102217457ce8b4fe1cfd4a1e13e652451e94f851e91b45a147 - optional: false - category: main - - name: gfortran - version: 11.3.0 - manager: conda - platform: osx-64 - dependencies: - cctools: "*" - gfortran_osx-64: "*" - ld64: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/gfortran-11.3.0-h2c809b3_0.tar.bz2" - hash: - md5: db5338d1fb1ad08498bdc1b42277a0d5 - sha256: 4f5c1dc5323e888d4fa372eba6f4540b60f557963209502cfad569fdc3d47495 - optional: false - category: main - - name: numpydoc - version: 1.4.0 - manager: conda - platform: osx-64 - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main - - name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: osx-64 - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main - - name: scipy - version: 1.10.0 - manager: conda - platform: osx-64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.6" - libgfortran: 5.* - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-64/scipy-1.10.0-py39h8a15683_2.conda" - hash: - md5: fb37c05f4b9712410daa406ada94d631 - sha256: c44076aade55c5252c46c588692ceea2a98be6d2e44bc0bdafb00f3d7d56d622 - optional: false - category: main - - name: sphinx-design - version: 0.3.0 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - - name: fortran-compiler - version: 1.5.2 - manager: conda - platform: osx-64 - dependencies: - cctools: ">=949.0.1" - gfortran: "*" - gfortran_osx-64: 11.* - ld64: ">=530" - llvm-openmp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.5.2-haad3a49_0.conda" - hash: - md5: 649a324b13eb77c6d5e98d36ea0c59f4 - sha256: db482cbd1f8046a6d51c0af47d98f97e0c157bf9029bbc95b71c72972f3fa01f - optional: false - category: main - - name: compilers - version: 1.5.2 - manager: conda - platform: osx-64 - dependencies: - c-compiler: "==1.5.2 hbf74d83_0" - cxx-compiler: "==1.5.2 hb8565cd_0" - fortran-compiler: "==1.5.2 haad3a49_0" - url: "https://conda.anaconda.org/conda-forge/osx-64/compilers-1.5.2-h694c41f_0.conda" - hash: - md5: 1fdd3bc173dad6e7a0439962c7764ab8 - sha256: fe35c96a228d9e245e9cc05fdff5078e8f31a9ae44bd320f5cb48e6ab0fca139 - optional: false - category: main - - name: bzip2 - version: 1.0.8 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2" - hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 - optional: false - category: main - - name: ca-certificates - version: 2022.12.7 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.12.7-h4653dfc_0.conda" - hash: - md5: 7dc111916edc905957b7417a247583b6 - sha256: a9634dc719fc9cd4c91cf8ad3167532e59051cace3e90ef2ba305a41c316784a - optional: false - category: main - - name: jpeg - version: 9e - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda" - hash: - md5: ef1cce2ab799e0c2f32c3344125ff218 - sha256: 7e21d03917fb535b39c3af0cc7b7115617556a4ca2fe13018c09407987883b34 - optional: false - category: main - - name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2" - hash: - md5: 84eb0c3c995a865079080d092e4a3c06 - sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 - optional: false - category: main - - name: libcxx - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2" - hash: - md5: 716c4b72ff3808ade65748fd9b49cc44 - sha256: 8e199c6956fad3abcbe9a1468c6219d9e95b64b898e9cf009b82d669c3bfdaf6 - optional: false - category: main - - name: libdeflate - version: "1.17" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda" - hash: - md5: cae34d3f6ab02e0abf92ec3caaf0bd39 - sha256: 9a1979b3f6dc155b8c48987cfae6b13ba19b3e176e4470b87f60011e806218f5 - optional: false - category: main - - name: libffi - version: 3.4.2 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2" - hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - optional: false - category: main - - name: libgfortran-devel_osx-arm64 - version: 11.3.0 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-11.3.0-hfe9555d_27.conda" - hash: - md5: 28cf7c6b44b099d8cb4f801dc547cc5c - sha256: e0e304772a9c572081ee04b316327cec0659c77890db26548ea600ab9b20e1c8 - optional: false - category: main - - name: libiconv - version: "1.17" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2" - hash: - md5: 686f9c755574aa221f29fbcf36a67265 - sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec - optional: false - category: main - - name: libwebp-base - version: 1.2.4 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2" - hash: - md5: 23f90b9f28c585445c52184a3388d01d - sha256: 43e9557894d07ddbba76fdacf321ca84f2c6da5a649a32a6a91f23e2761d1df4 - optional: false - category: main - - name: libzlib - version: 1.2.13 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2" - hash: - md5: 780852dc54c4c07e64b276a97f89c162 - sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 - optional: false - category: main - - name: llvm-openmp - version: 15.0.7 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-15.0.7-h7cfbb63_0.conda" - hash: - md5: 358164e15a9320f11b84a53fb8d8e446 - sha256: 6cc4cf021fc1f06df3b97598bf9583fe7a04fad6a4eef9882558f7932f362bc0 - optional: false - category: main - - name: ncurses - version: "6.3" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2" - hash: - md5: db86e5a978380a13f5559f97afdfe99d - sha256: 50ba7c13dd7d05569e7caa98a13a3684450f8547b4965a1e86b54e2f1240debe - optional: false - category: main - - name: nomkl - version: "1.0" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2" - hash: - md5: 9a66894dfd07c4510beb6b3f9672ccc0 - sha256: d38542a151a90417065c1a234866f97fd1ea82a81de75ecb725955ab78f88b4b - optional: false - category: main - - name: pthread-stubs - version: "0.4" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2" - hash: - md5: d3f26c6494d4105d4ecb85203d687102 - sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 - optional: false - category: main - - name: python_abi - version: "3.9" - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-3_cp39.conda" - hash: - md5: f8fb5fb65327a2429b084833c8ff1dbc - sha256: 9434a23c734685db9a5017206dae58f141e2edddec2ee9e1ec10a3fdefa55c0f - optional: false - category: main - - name: tzdata - version: 2022g - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/noarch/tzdata-2022g-h191b570_0.conda" - hash: - md5: 51fc4fcfb19f5d95ffc8c339db5068e8 - sha256: 0bfae0b9962bc0dbf79048f9175b913ed4f53c4310d06708dc7acbb290ad82f6 - optional: false - category: main - - name: xorg-libxau - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2" - hash: - md5: e2fa1f5a28cf0ce02516baf910be132e - sha256: a5810ad0fae16b72ee7cbb22e009c926dd1cd95d82885896e7f20fe911f7195f - optional: false - category: main - - name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2" - hash: - md5: 6738b13f7fadc18725965abdd4129c36 - sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 - optional: false - category: main - - name: xz - version: 5.2.6 - manager: conda - platform: osx-arm64 - dependencies: {} - url: "https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2" - hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - optional: false - category: main - - name: doxygen - version: 1.9.5 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.4" - libiconv: ">=1.16,<2.0.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.9.5-hd78112f_0.tar.bz2" - hash: - md5: 0b5059999731cad5ca96b597f0b6c77b - sha256: 48a4bafdacca69e6ee38ea635d81e300bad86eda34869600fbdeff50ed74976f - optional: false - category: main - - name: gettext - version: 0.21.1 - manager: conda - platform: osx-arm64 - dependencies: - libiconv: ">=1.17,<2.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2" - hash: - md5: 63d2ff6fddfa74e5458488fd311bf635 - sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e - optional: false - category: main - - name: gmp - version: 6.2.1 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=11.0.0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2" - hash: - md5: f8140773b6ca51bf32feec9b4290a8c5 - sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 - optional: false - category: main - - name: isl - version: "0.25" - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.25-h9a09cb3_0.tar.bz2" - hash: - md5: b0c90b63ffeb9e2d045be8f5bc64741c - sha256: 6c6b486de9db1c2c897b24f6b0eb9a1ecdaf355ede1ee2ccb0c1aaee4bd9ef59 - optional: false - category: main - - name: lerc - version: 4.0.0 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2" - hash: - md5: de462d5aacda3b30721b512c5da4e742 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 - optional: false - category: main - - name: libbrotlidec - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlicommon: "==1.0.9 h1a8c8d9_8" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2" - hash: - md5: 640ea7b788cdd0420409bd8479f023f9 - sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 - optional: false - category: main - - name: libbrotlienc - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlicommon: "==1.0.9 h1a8c8d9_8" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2" - hash: - md5: 572907b78be867937c258421bc0807a8 - sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f - optional: false - category: main - - name: libgfortran5 - version: 11.3.0 - manager: conda - platform: osx-arm64 - dependencies: - llvm-openmp: ">=8.0.0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_27.conda" - hash: - md5: 4514d8c30cda679e66ca297965e4b043 - sha256: 88325ae7043712ba02a616281d37bfbab63c4c9b2a7f18ef8410b13d84947350 - optional: false - category: main - - name: libllvm14 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hf6e71e7_1.tar.bz2" - hash: - md5: 2ec0ff9a370305311ce222bcb085b72d - sha256: e3b9eee8abc1e3c315094aa6452e01424e3da8aef8dd42093836183d55f5df4b - optional: false - category: main - - name: libpng - version: 1.6.39 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda" - hash: - md5: 0078e6327c13cfdeae6ff7601e360383 - sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 - optional: false - category: main - - name: libsqlite - version: 3.40.0 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.40.0-h76d750c_0.tar.bz2" - hash: - md5: d090fcec993f4ef0a90e6df7f231a273 - sha256: 5e8992b2099bb4767996e1bed70945ba39f61399ab912ba2a2770d12c165acb5 - optional: false - category: main - - name: libxcb - version: "1.13" - manager: conda - platform: osx-arm64 - dependencies: - pthread-stubs: "*" - xorg-libxau: "*" - xorg-libxdmcp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2" - hash: - md5: 6b3457a192f8091cb413962f65740ac4 - sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb - optional: false - category: main - - name: ninja - version: 1.11.0 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=13.0.1" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.0-hf86a087_0.tar.bz2" - hash: - md5: 1544c2828bb4b2a55997cd77627720ea - sha256: fe04151afa66d9bce6025066201692929aa195fe77fc62505f9b183720de03cb - optional: false - category: main - - name: openssl - version: 3.0.8 - manager: conda - platform: osx-arm64 - dependencies: - ca-certificates: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.0.8-h03a7124_0.conda" - hash: - md5: accdc6784b8ae5dd618a9e76f4c3af36 - sha256: 6d58b0412c4c27669da02368a303f4c4abc1b0edda5f27b2f8155299ab2b45a5 - optional: false - category: main - - name: pcre2 - version: "10.40" - manager: conda - platform: osx-arm64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2" - hash: - md5: 721b7288270bafc83586b0f01c2a67f2 - sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe - optional: false - category: main - - name: readline - version: 8.1.2 - manager: conda - platform: osx-arm64 - dependencies: - ncurses: ">=6.3,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2" - hash: - md5: dc790f296d94409efb3f22af84ee968d - sha256: 2d2a65fcdd91361ea7e40c03eeec18ff7a453c32f6589a1fce64717f6cd7c7b6 - optional: false - category: main - - name: tapi - version: 1100.0.11 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=11.0.0.a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2" - hash: - md5: d83362e7d0513f35f454bc50b0ca591d - sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 - optional: false - category: main - - name: tk - version: 8.6.12 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2" - hash: - md5: 2cb3d18eac154109107f093860bd545f - sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 - optional: false - category: main - - name: zlib - version: 1.2.13 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: "==1.2.13 h03a7124_4" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2" - hash: - md5: 34161cff4e29cc45e536abf2f13fd6b4 - sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 - optional: false - category: main - - name: zstd - version: 1.5.2 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.6" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda" - hash: - md5: 8f346953ef63bf5fb482488a659adcf3 - sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d - optional: false - category: main - - name: brotli-bin - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlidec: "==1.0.9 h1a8c8d9_8" - libbrotlienc: "==1.0.9 h1a8c8d9_8" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2" - hash: - md5: f212620a4f3606ff8f800b8b1077415a - sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 - optional: false - category: main - - name: freetype - version: 2.12.1 - manager: conda - platform: osx-arm64 - dependencies: - libpng: ">=1.6.39,<1.7.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda" - hash: - md5: 33ea6326e26d1da25eb8dfa768195b82 - sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 - optional: false - category: main - - name: libclang-cpp14 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=13.0.1" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp14-14.0.6-default_h81a5282_0.tar.bz2" - hash: - md5: 6cfc1343e167d250367983b1864adc04 - sha256: 86a606d0d76cdae79d3d89c686313cda22ecbbde182b4e906759500078653d6b - optional: false - category: main - - name: libgfortran - version: 5.0.0 - manager: conda - platform: osx-arm64 - dependencies: - libgfortran5: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_27.conda" - hash: - md5: 61d66d1a81d08e3f82049aa279f4cd7f - sha256: fce7eb15948e1fec90508a4a7ca1fa350225f03e46c5a6e6df5b4f7b523db695 - optional: false - category: main - - name: libglib - version: 2.74.1 - manager: conda - platform: osx-arm64 - dependencies: - gettext: ">=0.21.1,<1.0a0" - libcxx: ">=14.0.4" - libffi: ">=3.4,<4.0a0" - libiconv: ">=1.17,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - pcre2: ">=10.40,<10.41.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h4646484_1.tar.bz2" - hash: - md5: 4321cf67e46674567f419e95bae18522 - sha256: c312e93652734424b30ed017743ea9e37a5efcdf42e14d3f78ca96cf64fd266d - optional: false - category: main - - name: libtiff - version: 4.5.0 - manager: conda - platform: osx-arm64 - dependencies: - jpeg: ">=9e,<10a" - lerc: ">=4.0.0,<5.0a0" - libcxx: ">=14.0.6" - libdeflate: ">=1.17,<1.18.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - xz: ">=5.2.6,<6.0a0" - zstd: ">=1.5.2,<1.6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda" - hash: - md5: 8e08eae60de32c940096ee9b4da35685 - sha256: 0207f4234571d393d2f790aedaa1e127dfcd9d7fe3fe886ebdf31c9e7b9f7ce2 - optional: false - category: main - - name: llvm-tools - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libllvm14: "==14.0.6 hf6e71e7_1" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-14.0.6-hf6e71e7_1.tar.bz2" - hash: - md5: e97dcf92f03537c52aa2dcdcaf6ef75c - sha256: 91dc605c32d6b76189c34757c27319800e78fd865d0652acdd5b18ac999988af - optional: false - category: main - - name: mpfr - version: 4.1.0 - manager: conda - platform: osx-arm64 - dependencies: - gmp: ">=6.2.0,<7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.1.0-h6d7a090_1.tar.bz2" - hash: - md5: c37f296f76cfb61d4f91613da93789e6 - sha256: bf44598be1fe9f6310ac0ebcd91dd6b51d4d19fe085c96b4da8297f2fc868f86 - optional: false - category: main - - name: python - version: 3.9.16 - manager: conda - platform: osx-arm64 - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libffi: ">=3.4,<4.0a0" - libsqlite: ">=3.40.0,<4.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.7,<4.0a0" - pip: "*" - readline: ">=8.1.2,<9.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "*" - xz: ">=5.2.6,<6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.16-hea58f1e_0_cpython.conda" - hash: - md5: d2dfc4fe1da1624e020334b1000c6a3d - sha256: 90596405b18cf38e0ae2eebb81fc41da836081f3488ae9f3571a9199664a6032 - optional: false - category: main - - name: sigtool - version: 0.1.3 - manager: conda - platform: osx-arm64 - dependencies: - openssl: ">=3.0.0,<4.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2" - hash: - md5: 4a2cac04f86a4540b8c9b8d8f597848f - sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff - optional: false - category: main - - name: alabaster - version: 0.7.13 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda" - hash: - md5: 06006184e203b61d3525f90de394471e - sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 - optional: false - category: main - - name: appdirs - version: 1.4.4 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 5f095bc6454094e96f146491fd03633b - sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 - optional: false - category: main - - name: appnope - version: 0.1.3 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 54ac328d703bff191256ffa1183126d1 - sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742 - optional: false - category: main - - name: attrs - version: 22.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/attrs-22.2.0-pyh71513ae_0.conda" - hash: - md5: 8b76db7818a4e401ed4486c4c1635cd9 - sha256: 3a58d4a4933fa8735471c782d35326ab78e0bcfce84756408515f82a94e4dec4 - optional: false - category: main - - name: backcall - version: 0.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 6006a6d08a3fa99268a2681c7fb55213 - sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 - optional: false - category: main - - name: backports - version: "1.0" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda" - hash: - md5: 54ca2e08b3220c148a1d8329c2678e02 - sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd - optional: false - category: main - - name: backports.zoneinfo - version: 0.2.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/backports.zoneinfo-0.2.1-py39h2804cbe_7.tar.bz2" - hash: - md5: 53ed254446fa05b6c7efda9cabe03630 - sha256: e149a5598cd38ee3db357a09d16384ea119d56be7d41decd10e078c8d326b28e - optional: false - category: main - - name: brotli - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - brotli-bin: "==1.0.9 h1a8c8d9_8" - libbrotlidec: "==1.0.9 h1a8c8d9_8" - libbrotlienc: "==1.0.9 h1a8c8d9_8" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2" - hash: - md5: e2a5e381ddd6529eb62e7710270b2ec5 - sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 - optional: false - category: main - - name: certifi - version: 2022.12.7 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/certifi-2022.12.7-pyhd8ed1ab_0.conda" - hash: - md5: fb9addc3db06e56abe03e0e9f21a63e6 - sha256: 5e22af4776700200fab2c1df41a2188ab9cfe90a50c4f388592bb978562c88ec - optional: false - category: main - - name: charset-normalizer - version: 2.1.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c1d5b294fbf9a795dec349a6f4d8be8e - sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb - optional: false - category: main - - name: clang-14 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libclang-cpp14: "==14.0.6 default_h81a5282_0" - libcxx: ">=13.0.1" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang-14-14.0.6-default_h81a5282_0.tar.bz2" - hash: - md5: ad7388bad4d7416ce2bbacddb2faa577 - sha256: 20a8d11fca5be934d9d8990b688396c0a4be8bd8cc29be2e79be5e3e4baefbeb - optional: false - category: main - - name: click - version: 8.1.3 - manager: conda - platform: osx-arm64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2" - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - - name: colorama - version: 0.4.6 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 - optional: false - category: main - - name: cycler - version: 0.11.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - - name: cython - version: 0.29.33 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.6" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cython-0.29.33-py39h23fbdae_0.conda" - hash: - md5: 39e8c4d178e2c54e910f8b59624fb796 - sha256: 036c45bf33e0c167b4d518c649722290c1779a067b1f1c197e27b7f735d8af9b - optional: false - category: main - - name: decorator - version: 5.1.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 43afe5ab04e35e17ba28649471dd7364 - sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 - optional: false - category: main - - name: docutils - version: "0.19" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.19-py39h2804cbe_1.tar.bz2" - hash: - md5: 509daec50d39e5f31eb2992d2248752e - sha256: 910ef18f7b43aeef7a6cc51274c68895c64c28b7fa05979dae8917106d9f5cd7 - optional: false - category: main - - name: exceptiongroup - version: 1.1.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.0-pyhd8ed1ab_0.conda" - hash: - md5: a385c3e8968b4cf8fbc426ace915fd1a - sha256: cf668360331552b2903e440cda1b4e47062c3f3775342e4a278ef4d141c28d1d - optional: false - category: main - - name: execnet - version: 1.9.0 - manager: conda - platform: osx-arm64 - dependencies: - python: "==2.7|>=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/execnet-1.9.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0e521f7a5e60d508b121d38b04874fb2 - sha256: 1900bbc1764d01405e55be2e369d1b830fb435eb0f27c57033372c60f34c675c - optional: false - category: main - - name: executing - version: 1.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4c1bc140e2be5c8ba6e3acab99e25c50 - sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 - optional: false - category: main - - name: idna - version: "3.4" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - - name: imagesize - version: 1.4.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.4" - url: "https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 7de5386c8fea29e76b303f37dde4c352 - sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 - optional: false - category: main - - name: iniconfig - version: 2.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda" - hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 - optional: false - category: main - - name: kiwisolver - version: 1.4.4 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.4" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py39haaf3ac1_1.tar.bz2" - hash: - md5: 5f43e4d5437b93606167c640ea2d06c1 - sha256: afe4759ca7572eb98361cd4c68ae3819a16d368c963d1134b926d2963434b3e6 - optional: false - category: main - - name: lcms2 - version: "2.14" - manager: conda - platform: osx-arm64 - dependencies: - jpeg: ">=9e,<10a" - libtiff: ">=4.5.0,<4.6.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.14-h481adae_1.conda" - hash: - md5: aad4fc7ce783e7d109576df5a9bb78c7 - sha256: 65c0a292be935a5e499b1e782b7ddada93b16ec77fef7416e2846aa2b3e16f3b - optional: false - category: main - - name: ld64_osx-arm64 - version: "609" - manager: conda - platform: osx-arm64 - dependencies: - libcxx: "*" - libllvm14: ">=14.0.6,<14.1.0a0" - sigtool: "*" - tapi: ">=1100.0.11,<1101.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-h7167370_11.conda" - hash: - md5: 5158e240a2318c11dba7e8493bf1b42b - sha256: 0a0a9d26eb1e14d1ff4b9ee7a05eb3f338f258dd2c78a6a649d7fe9037ae5f8c - optional: false - category: main - - name: libopenblas - version: 0.3.21 - manager: conda - platform: osx-arm64 - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2" - hash: - md5: 2a980a5d8cc34ce70d339b983f9920de - sha256: 92e341be106c00adf1f1757ec9f9586a3848af94b434554c75dd7c5023f84ea2 - optional: false - category: main - - name: markupsafe - version: 2.1.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.2-py39h02fc5c5_0.conda" - hash: - md5: 525d6fb3283d4b90cd9f92c9811214af - sha256: 33f4eb17d29fe5983f27ac193e1dd071857447649a6a4197f1bb0310f1928f57 - optional: false - category: main - - name: mpc - version: 1.3.1 - manager: conda - platform: osx-arm64 - dependencies: - gmp: ">=6.2.1,<7.0a0" - mpfr: ">=4.1.0,<5.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h91ba8db_0.conda" - hash: - md5: 362af269d860ae49580f8f032a68b0df - sha256: 6d8d4f8befca279f022c1c212241ad6672cb347181452555414e277484ad534c - optional: false - category: main - - name: munkres - version: 1.1.4 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2" - hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 - optional: false - category: main - - name: mypy_extensions - version: 1.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda" - hash: - md5: 4eccaeba205f0aed9ac3a9ea58568ca3 - sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 - optional: false - category: main - - name: openjpeg - version: 2.5.0 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.6" - libpng: ">=1.6.39,<1.7.0a0" - libtiff: ">=4.5.0,<4.6.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda" - hash: - md5: c3e184f0810a4614863569488b1ac709 - sha256: 2bb159e385e633a08cc164f50b4e39fa465b85f54c376a5c20aa15f57ef407b3 - optional: false - category: main - - name: packaging - version: "23.0" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/packaging-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 1ff2e3ca41f0ce16afec7190db28288b - sha256: 00288f5e5e841711e8b8fef1f1242c858d8ef99ccbe5d7e0df4789d5d8d40645 - optional: false - category: main - - name: parso - version: 0.8.3 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 17a565a0c3899244e938cdf417e7b094 - sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 - optional: false - category: main - - name: pickleshare - version: 0.7.5 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3" - url: "https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2" - hash: - md5: 415f0ebb6198cc2801c73438a9fb5761 - sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 - optional: false - category: main - - name: pkg-config - version: 0.29.2 - manager: conda - platform: osx-arm64 - dependencies: - libglib: ">=2.70.2,<3.0a0" - libiconv: ">=1.16,<2.0.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2" - hash: - md5: 8d173d52214679033079d1b0582075aa - sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0 - optional: false - category: main - - name: pluggy - version: 1.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2" - hash: - md5: 7d301a0d25f424d96175f810935f0da9 - sha256: c25e1757e4e90638bb1e778aba3ee5f3c01fae9752e3c3929f9be7d367f6c7f3 - optional: false - category: main - - name: psutil - version: 5.9.4 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.4-py39h02fc5c5_0.tar.bz2" - hash: - md5: bf7577af58a627d4f3c454965b246f18 - sha256: 6c99579a51949c5a74d627c06058fa8a21a54bf088538b06061388ecf56fbe88 - optional: false - category: main - - name: ptyprocess - version: 0.7.0 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2" - hash: - md5: 359eeb6536da0e687af562ed265ec263 - sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a - optional: false - category: main - - name: pure_eval - version: 0.2.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6784285c7e55cb7212efabc79e4c2883 - sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 - optional: false - category: main - - name: pycodestyle - version: 2.7.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 2.7.*|>=3.5 - url: "https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.7.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 0234673eb2ecfbdf4e54574ab4d95f81 - sha256: 5c6aa7a724551d7768930b30bd77e531580f6ddd68a391094e799a21a82b9492 - optional: false - category: main - - name: pycparser - version: "2.21" - manager: conda - platform: osx-arm64 - dependencies: - python: 2.7.*|>=3.4 - url: "https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - optional: false - category: main - - name: pyparsing - version: 3.0.9 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2" - hash: - md5: e8fbc1b54b25f4b08281467bc13b70cc - sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b - optional: false - category: main - - name: pysocks - version: 1.7.1 - manager: conda - platform: osx-arm64 - dependencies: - __unix: "*" - python: ">=3.8" - url: "https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2" - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - - name: pytz - version: 2022.7.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pytz-2022.7.1-pyhd8ed1ab_0.conda" - hash: - md5: f59d49a7b464901cf714b9e7984d01a2 - sha256: 93cfc7a92099e26b0575a343da4a667b52371cc38e4dee4ee264dc041ef77bac - optional: false - category: main - - name: setuptools - version: 59.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/setuptools-59.2.0-py39h2804cbe_0.tar.bz2" - hash: - md5: 71789b9ebc713ccc0ebae4ce8e07bf71 - sha256: 83002349c6ae229f4ffa03ad2e3101121f1d47f1f04654c317d31e14528a4bfc - optional: false - category: main - - name: six - version: 1.16.0 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2" - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - - name: smmap - version: 3.0.5 - manager: conda - platform: osx-arm64 - dependencies: - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/smmap-3.0.5-pyh44b312d_0.tar.bz2" - hash: - md5: 3a8dc70789709aa315325d5df06fb7e4 - sha256: 091de70ee6bfe063e0c0f77336975d124fd1e3f49b9c58d97c0c7b3d287c0002 - optional: false - category: main - - name: snowballstemmer - version: 2.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2" - url: "https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - - name: sortedcontainers - version: 2.4.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6d6552722448103793743dabfbda532d - sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6 - optional: false - category: main - - name: soupsieve - version: 2.3.2.post1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 146f4541d643d48fc8a75cacf69f03ae - sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307 - optional: false - category: main - - name: sphinxcontrib-applehelp - version: 1.0.4 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.4-pyhd8ed1ab_0.conda" - hash: - md5: 5a31a7d564f551d0e6dff52fd8cb5b16 - sha256: 802810d8321d55e5666806d565e72949eabf77ad510fe2758ce1da2441675ef1 - optional: false - category: main - - name: sphinxcontrib-devhelp - version: 1.0.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2" - hash: - md5: 68e01cac9d38d0e717cd5c87bc3d2cc9 - sha256: 66cca7eccb7f92eee53f9f5a552e3e1d643daa3a1ebd03c185e2819e5c491576 - optional: false - category: main - - name: sphinxcontrib-htmlhelp - version: 2.0.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.1-pyhd8ed1ab_0.conda" - hash: - md5: 6c8c4d6eb2325e59290ac6dbbeacd5f0 - sha256: aeff20be994e6f9520a91fc177a33cb3e4d0911cdf8d27e575d001f00afa33fd - optional: false - category: main - - name: sphinxcontrib-jsmath - version: 1.0.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2" - hash: - md5: 67cd9d9c0382d37479b4d306c369a2d4 - sha256: a42415fc789e9f6ae2e18f07ac143d2e9ce73a35a55ecf1dd1b3d055dd1e6dbe - optional: false - category: main - - name: sphinxcontrib-qthelp - version: 1.0.3 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2" - hash: - md5: d01180388e6d1838c3e1ad029590aa7a - sha256: 35d8f01fc798d38b72ae003c040d2dee650d315f904268a1f793d4d59460d1e2 - optional: false - category: main - - name: sphinxcontrib-serializinghtml - version: 1.1.5 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.5-pyhd8ed1ab_2.tar.bz2" - hash: - md5: 9ff55a0901cf952f05c654394de76bf7 - sha256: 890bbf815cff114ddbb618b9876d492fce07d02956c1d7b3d46cb7f835f563f6 - optional: false - category: main - - name: toml - version: 0.10.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=2.7" - url: "https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 - optional: false - category: main - - name: tomli - version: 2.0.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - - name: tornado - version: "6.2" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.2-py39h02fc5c5_1.tar.bz2" - hash: - md5: 54bb01d39f399f9e846530f824db4b03 - sha256: a09467527b27668ac2e474750d499d298053e4a0a8e87b8333359494e9d36877 - optional: false - category: main - - name: traitlets - version: 5.9.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda" - hash: - md5: d0b4f5c87cd35ac3fb3d47b223263a64 - sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d - optional: false - category: main - - name: typing_extensions - version: 4.4.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.4.0-pyha770c72_0.tar.bz2" - hash: - md5: 2d93b130d148d7fc77e583677792fc6a - sha256: 70c57b5ac94cd32e78f1a2fa2c38572bfac85b901a6a99aa254a9e8e126c132d - optional: false - category: main - - name: unicodedata2 - version: 15.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.0.0-py39h02fc5c5_0.tar.bz2" - hash: - md5: 1371c4d91f9c3edf170200a1374cb3e8 - sha256: 3c0454fd960aca8f465db69beb281bbd8b4174e3df48871b625d43b037aea671 - optional: false - category: main - - name: wheel - version: 0.38.4 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/wheel-0.38.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c829cfb8cb826acb9de0ac1a2df0a940 - sha256: bd4f11ff075ff251ade9f57686f31473e25be46ab282d9603f551401250f9f44 - optional: false - category: main - - name: zipp - version: 3.13.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/zipp-3.13.0-pyhd8ed1ab_0.conda" - hash: - md5: 41b09d997939e83b231c4557a90c3b13 - sha256: 0a9a545b8dc46c847658ebfa636257ea5993a355419c1d3b2f14810730ee0a82 - optional: false - category: main - - name: asttokens - version: 2.2.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.5" - six: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda" - hash: - md5: bf7f54dd0f25c3f06ecb82a07341841a - sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c - optional: false - category: main - - name: babel - version: 2.11.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - pytz: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/babel-2.11.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 2ea70fde8d581ba9425a761609eed6ba - sha256: 21a8403d886136c0a80f965ae5387fa1693b19ddd69023bcd0e844f2510d7e2f - optional: false - category: main - - name: backports.functools_lru_cache - version: 1.6.4 - manager: conda - platform: osx-arm64 - dependencies: - backports: "*" - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c5b3edc62d6309088f4970b3eaaa65a6 - sha256: fdea00d4b79990f3fe938e2716bc32bd895eb5c44b6c75b8261db095a1b33c16 - optional: false - category: main - - name: beautifulsoup4 - version: 4.11.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - soupsieve: ">=1.2" - url: "https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.11.2-pyha770c72_0.conda" - hash: - md5: 88b59f6989f0ed5ab3433af0b82555e1 - sha256: deb43944425b3ec7fdfd5e6620cf97a4ed888a279237f90cd67a338d123efd15 - optional: false - category: main - - name: cctools_osx-arm64 - version: 973.0.1 - manager: conda - platform: osx-arm64 - dependencies: - ld64_osx-arm64: ">=609,<610.0a0" - libcxx: "*" - libllvm14: ">=14.0.6,<14.1.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - sigtool: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-hef52d2f_11.conda" - hash: - md5: b4f37afd4ae6d094626d1cd10c4af0a8 - sha256: 434e1ae972a0cd2980c414cb3d9bf2b31518c29dfd5e0124ad30aa6d9219a8f7 - optional: false - category: main - - name: cffi - version: 1.15.1 - manager: conda - platform: osx-arm64 - dependencies: - libffi: ">=3.4,<4.0a0" - pycparser: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_3.conda" - hash: - md5: 259002f955175cc89beb8477de5de291 - sha256: 0fdb684286cb933d398d32f306a2dbbd605acafc4a0f85ebb3c54ff30d604b41 - optional: false - category: main - - name: clang - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - clang-14: "==14.0.6 default_h81a5282_0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang-14.0.6-hce30654_0.tar.bz2" - hash: - md5: 4b60f8635f0d1c6e143551fa82e91945 - sha256: a001a0aee5076c7c64f0f695f171dcc59f23ce21dd61be94352f16598833a1d5 - optional: false - category: main - - name: coverage - version: 7.1.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - tomli: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.1.0-py39h02fc5c5_0.conda" - hash: - md5: abe9ca542c29c3b9963f5baaf64bf827 - sha256: 57bcb6504fee2cc252ed2cec5e5aa07d10b8419f0b611078c56bc156dd7d66a1 - optional: false - category: main - - name: fonttools - version: 4.38.0 - manager: conda - platform: osx-arm64 - dependencies: - brotli: "*" - munkres: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - unicodedata2: ">=14.0.0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_1.tar.bz2" - hash: - md5: bad1666f9a5aa9743e2be7b6818d752a - sha256: 7abe958b39d09b15ec6ec4847525d77a347e43fa05d480c95ce2453f4a394006 - optional: false - category: main - - name: gfortran_impl_osx-arm64 - version: 11.3.0 - manager: conda - platform: osx-arm64 - dependencies: - gmp: ">=6.2.1,<7.0a0" - isl: ">=0.25,<0.26.0a0" - libcxx: ">=14.0.6" - libgfortran-devel_osx-arm64: 11.3.0.* - libgfortran5: ">=11.3.0" - libiconv: ">=1.17,<2.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - mpc: ">=1.2.1,<2.0a0" - mpfr: ">=4.1.0,<5.0a0" - zlib: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-11.3.0-h2a9d086_27.conda" - hash: - md5: 038e7f8ccaa6348bc5da9bd019e1bb61 - sha256: bfe545a666ae47782e0a29eed499d006903f8b374e7c733ba6e559e99d7dc553 - optional: false - category: main - - name: gitdb - version: 4.0.10 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.4" - smmap: ">=3.0.1,<4" - url: "https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.10-pyhd8ed1ab_0.conda" - hash: - md5: 3706d2f3d7cb5dae600c833345a76132 - sha256: 0003ab2b971913380633c711bf49a54dcf06e179986c725b0925854b58878377 - optional: false - category: main - - name: hypothesis - version: 6.68.1 - manager: conda - platform: osx-arm64 - dependencies: - attrs: ">=19.2.0" - backports.zoneinfo: ">=0.2.1" - click: ">=7.0" - exceptiongroup: ">=1.0.0rc8" - python: ">=3.8" - setuptools: "*" - sortedcontainers: ">=2.1.0,<3.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/hypothesis-6.68.1-pyha770c72_0.conda" - hash: - md5: 3c044b3b920eb287f8c095c7f086ba64 - sha256: e3a29c1303b563e450e0f706e4d78a281d1aa519d3e1094fc642305bceff72e1 - optional: false - category: main - - name: importlib-metadata - version: 6.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.8" - zipp: ">=0.5" - url: "https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.0.0-pyha770c72_0.conda" - hash: - md5: 691644becbcdca9f73243450b1c63e62 - sha256: 0062e6ae1719395c25f0b60a21215470b4ea67514fed8a9330869da8604acfca - optional: false - category: main - - name: jedi - version: 0.18.2 - manager: conda - platform: osx-arm64 - dependencies: - parso: ">=0.8.0,<0.9.0" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda" - hash: - md5: b5e695ef9c3f0d27d6cd96bf5adc9e07 - sha256: abe63ae6e1b13f83500608d94004cb8d485b264083511d77f79253e775cd546c - optional: false - category: main - - name: jinja2 - version: 3.1.2 - manager: conda - platform: osx-arm64 - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - - name: ld64 - version: "609" - manager: conda - platform: osx-arm64 - dependencies: - ld64_osx-arm64: "==609 h7167370_11" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h619f069_11.conda" - hash: - md5: 00e421a01015e5246eca89480c6f7264 - sha256: 2dafdecd71c4eb71524d1d9bc4df94bfd456144ddd7d88fec9813eced8993ee2 - optional: false - category: main - - name: libblas - version: 3.9.0 - manager: conda - platform: osx-arm64 - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2" - hash: - md5: 53d6d5097f0d62e24db8c1979a21102e - sha256: 17dd67806f7e31981a1ac8abb63ed004eac416a1061c7737028f5af269430fa6 - optional: false - category: main - - name: matplotlib-inline - version: 0.1.6 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - traitlets: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2" - hash: - md5: b21613793fcc81d944c76c9f2864a7de - sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c - optional: false - category: main - - name: meson - version: 1.0.0 - manager: conda - platform: osx-arm64 - dependencies: - ninja: ">=1.8.2" - python: ">=3.5.2" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-1.0.0-pyhd8ed1ab_0.conda" - hash: - md5: 4de573313958b8da6c526fdd354fffc8 - sha256: 57dc7634aa05f3944314e6b56b2f37e6fb1a52b33de9ca153aee5d9adf83a5d7 - optional: false - category: main - - name: mypy - version: "0.981" - manager: conda - platform: osx-arm64 - dependencies: - mypy_extensions: ">=0.4.3" - psutil: ">=4.0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - tomli: ">=1.1.0" - typing_extensions: ">=3.10" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/mypy-0.981-py39h02fc5c5_0.tar.bz2" - hash: - md5: c9d491f73cc761dcd0f12de0b40c83c5 - sha256: b5537747d9947a0d868d1b814ddc536b9392d4697587d111113c2b685204d524 - optional: false - category: main - - name: openblas - version: 0.3.21 - manager: conda - platform: osx-arm64 - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - libopenblas: "==0.3.21 openmp_hc731615_3" - llvm-openmp: ">=14.0.4" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/openblas-0.3.21-openmp_hf78f355_3.tar.bz2" - hash: - md5: ff5b9fccd5f48f6d1b14c9e3859417b9 - sha256: 536b88e3a11a6d075a182506d969b98efee9d7481caf7daf9bc11ed33cdcbf0f - optional: false - category: main - - name: pexpect - version: 4.8.0 - manager: conda - platform: osx-arm64 - dependencies: - ptyprocess: ">=0.5" - python: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2" - hash: - md5: 330448ce4403cc74990ac07c555942a1 - sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a - optional: false - category: main - - name: pillow - version: 9.4.0 - manager: conda - platform: osx-arm64 - dependencies: - freetype: ">=2.12.1,<3.0a0" - jpeg: ">=9e,<10a" - lcms2: ">=2.14,<3.0a0" - libtiff: ">=4.5.0,<4.6.0a0" - libwebp-base: ">=1.2.4,<2.0a0" - libxcb: ">=1.13,<1.14.0a0" - libzlib: ">=1.2.13,<1.3.0a0" - openjpeg: ">=2.5.0,<3.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - tk: ">=8.6.12,<8.7.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py39h8bd98a6_1.conda" - hash: - md5: 90500f863712b55483294662f1f5f5f1 - sha256: 3005f4fc32c370c380abc692c027a1391ab8248798153cb2eca62dfc569912f7 - optional: false - category: main - - name: pip - version: "23.0" - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.7" - setuptools: "*" - wheel: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pip-23.0-pyhd8ed1ab_0.conda" - hash: - md5: 85b35999162ec95f9f999bac15279c02 - sha256: bbffec284bd0e154363e845121f43007e7e64c80412ff13be21909be907b697d - optional: false - category: main - - name: pygments - version: 2.14.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - setuptools: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pygments-2.14.0-pyhd8ed1ab_0.conda" - hash: - md5: c78cd16b11cd6a295484bd6c8f24bea1 - sha256: e8710e24f60b6a97289468f47914e53610101755088bc237621cc1980edbfcd9 - optional: false - category: main - - name: pyproject-metadata - version: 0.7.1 - manager: conda - platform: osx-arm64 - dependencies: - packaging: ">=19.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pyproject-metadata-0.7.1-pyhd8ed1ab_0.conda" - hash: - md5: dcb27826ffc94d5f04e241322239983b - sha256: 9ec35cffa163f587aeb52d1603df8374659e3be30dbc6db0e980ecb797f21fee - optional: false - category: main - - name: pytest - version: 7.2.1 - manager: conda - platform: osx-arm64 - dependencies: - attrs: ">=19.2.0" - colorama: "*" - exceptiongroup: "*" - iniconfig: "*" - packaging: "*" - pluggy: ">=0.12,<2.0" - python: ">=3.8" - tomli: ">=1.0.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-7.2.1-pyhd8ed1ab_0.conda" - hash: - md5: f0be05afc9c9ab45e273c088e00c258b - sha256: d298dfe6c53555c9fb5662f5f936e621cddd3b0a7031789375b82a1ee3b3a96b - optional: false - category: main - - name: python-dateutil - version: 2.8.2 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - six: ">=1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2" - hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da - optional: false - category: main - - name: typing-extensions - version: 4.4.0 - manager: conda - platform: osx-arm64 - dependencies: - typing_extensions: "==4.4.0 pyha770c72_0" - url: "https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.4.0-hd8ed1ab_0.tar.bz2" - hash: - md5: be969210b61b897775a0de63cd9e9026 - sha256: 6f129b1bc18d111dcf3abaec6fcf6cbee00f1b77bb42d0f0bc8d85f8faa65cf0 - optional: false - category: main - - name: brotlipy - version: 0.7.0 - manager: conda - platform: osx-arm64 - dependencies: - cffi: ">=1.0.0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py39h02fc5c5_1005.tar.bz2" - hash: - md5: cf0b1f6f29ee28e7b20d49cb66bae19e - sha256: d56a680b34d84144d396619eee5331493a9a611ee4ee21bd88a73bcac642abf4 - optional: false - category: main - - name: cctools - version: 973.0.1 - manager: conda - platform: osx-arm64 - dependencies: - cctools_osx-arm64: "==973.0.1 hef52d2f_11" - ld64: "==609 h619f069_11" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hcbb26d4_11.conda" - hash: - md5: fed06888f63eed25f43fdd6a475f9533 - sha256: 2e24a64f78b0362431d1b2f92e1986b4696b08f33cd27b2b17f8e72aa56882dc - optional: false - category: main - - name: clangxx - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - clang: "==14.0.6 hce30654_0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-14.0.6-default_hb7ecf47_0.tar.bz2" - hash: - md5: abb3bf7081791c101fcb2851c64900ca - sha256: 8b54e9ad48eac3d38c82ece984915f096be11d9279a0c59ccc0b9740e26ea58a - optional: false - category: main - - name: cryptography - version: 39.0.1 - manager: conda - platform: osx-arm64 - dependencies: - cffi: ">=1.12" - openssl: ">=3.0.8,<4.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-39.0.1-py39he2a39a8_0.conda" - hash: - md5: 8a645fce995651a072a449b23a713954 - sha256: d7a28a987198925ccc2a6f7d9b2e5e6da0fa97b5f18f844ff4aae1a2c57ec3f7 - optional: false - category: main - - name: gitpython - version: 3.1.30 - manager: conda - platform: osx-arm64 - dependencies: - gitdb: ">=4.0.1,<5" - python: ">=3.7" - typing_extensions: ">=3.7.4.3" - url: "https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.30-pyhd8ed1ab_0.conda" - hash: - md5: 0c217ab2f5ef6925e4e52c70b57cfc4a - sha256: 2ccd8aa401701947398a087b1aa11042b1b088e7331fed574b7ec9909bee09d6 - optional: false - category: main - - name: libcblas - version: 3.9.0 - manager: conda - platform: osx-arm64 - dependencies: - libblas: "==3.9.0 16_osxarm64_openblas" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2" - hash: - md5: c7cfc18378f00d3faf7f8a9a2553be3c - sha256: 99a04c6a273e76b01ace4f3a8f333b96a76b7351a155aaeba179e283da5c264e - optional: false - category: main - - name: liblapack - version: 3.9.0 - manager: conda - platform: osx-arm64 - dependencies: - libblas: "==3.9.0 16_osxarm64_openblas" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2" - hash: - md5: 52d270c579bfca986d6cdd81eb5ed6e7 - sha256: 87204cb0ff22f260b3aa5fc7c938157b471eb2bd287acf1ba7e61a67f86ba959 - optional: false - category: main - - name: meson-python - version: 0.12.0 - manager: conda - platform: osx-arm64 - dependencies: - colorama: "*" - meson: ">=0.63.3" - ninja: "*" - pyproject-metadata: ">=0.6.1" - python: ">=3.7" - tomli: ">=1.0.0" - typing-extensions: ">=3.7.4" - wheel: ">=0.36.0" - url: "https://conda.anaconda.org/conda-forge/noarch/meson-python-0.12.0-pyh71feb2d_0.conda" - hash: - md5: dc566efe9c7af4eb305402b5c6121ca3 - sha256: 2ea6e9b843e7d93283f2bd442f20bc973cf8141ef1876c9fe4353e473265a4da - optional: false - category: main - - name: pytest-cov - version: 4.0.0 - manager: conda - platform: osx-arm64 - dependencies: - coverage: ">=5.2.1" - pytest: ">=4.6" - python: ">=3.6" - toml: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.0.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: c9e3f8bfdb9bfc34aa1836a6ed4b25d7 - sha256: 2e00bbdb00b2514faba50ddcb6ecf1d6e4f2d5af346f9cd1240aacb1b61dccb6 - optional: false - category: main - - name: pytest-xdist - version: 3.2.0 - manager: conda - platform: osx-arm64 - dependencies: - execnet: ">=1.1" - pytest: ">=6.2.0" - python: ">=3.7" - url: "https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.2.0-pyhd8ed1ab_0.conda" - hash: - md5: 70ab87b96126f35d1e68de2ad9fb6423 - sha256: aa81f80bf0a2f53423ab80137ca4fc201473884725a2983a0d79b2e420c2a671 - optional: false - category: main - - name: stack_data - version: 0.6.2 - manager: conda - platform: osx-arm64 - dependencies: - asttokens: "*" - executing: "*" - pure_eval: "*" - python: ">=3.5" - url: "https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda" - hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec - optional: false - category: main - - name: wcwidth - version: 0.2.6 - manager: conda - platform: osx-arm64 - dependencies: - backports.functools_lru_cache: "*" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda" - hash: - md5: 078979d33523cb477bd1916ce41aacc9 - sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1 - optional: false - category: main - - name: compiler-rt_osx-arm64 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - clang: 14.0.6.* - clangxx: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-14.0.6-h48302dc_0.tar.bz2" - hash: - md5: ebcb473032038866101b70f9f270a9a2 - sha256: f9f63e8779ff31368cc92ee668308c8e7e974f68457f62148c5663aa0136a42d - optional: false - category: main - - name: numpy - version: 1.24.2 - manager: conda - platform: osx-arm64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.6" - liblapack: ">=3.9.0,<4.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.2-py39hff61c6a_0.conda" - hash: - md5: 894fca4ee0ea0bfef6ebca15d6d8196e - sha256: 6c0ed2591695627ff4789d14def1868afa43395c7af0db4c97878a6abc27e5e5 - optional: false - category: main - - name: prompt-toolkit - version: 3.0.36 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - wcwidth: "*" - url: "https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.36-pyha770c72_0.conda" - hash: - md5: 4d79ec192e0bfd530a254006d123b9a6 - sha256: 6bd3626799c9467d7aa8ed5f95043e4cea614a1329580980ddcf40cfed3ee860 - optional: false - category: main - - name: pyopenssl - version: 23.0.0 - manager: conda - platform: osx-arm64 - dependencies: - cryptography: ">=38.0.0,<40" - python: ">=3.6" - url: "https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.0.0-pyhd8ed1ab_0.conda" - hash: - md5: d41957700e83bbb925928764cb7f8878 - sha256: adbf8951f22bfa950b9e24394df1ef1d2b2d7dfb194d91c7f42bc11900695785 - optional: false - category: main - - name: compiler-rt - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - clang: 14.0.6.* - clangxx: 14.0.6.* - compiler-rt_osx-arm64: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-14.0.6-h30b49de_0.tar.bz2" - hash: - md5: b88a5457fa7def557e5902046ab56b6e - sha256: 266578ae49450e6b4a778b454f8e7fd988676dd9146bb186093066ab1589ba06 - optional: false - category: main - - name: contourpy - version: 1.0.7 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.6" - numpy: ">=1.16" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.7-py39haaf3ac1_0.conda" - hash: - md5: 221d648082c1ebdd89e6968441b5a9c5 - sha256: 141e4de214f13537aee7acfa3ed49e43346af017d66030794cd0a4f62ceda9e6 - optional: false - category: main - - name: ipython - version: 8.10.0 - manager: conda - platform: osx-arm64 - dependencies: - __osx: "*" - appnope: "*" - backcall: "*" - decorator: "*" - jedi: ">=0.16" - matplotlib-inline: "*" - pexpect: ">4.3" - pickleshare: "*" - prompt-toolkit: ">=3.0.30,<3.1.0" - pygments: ">=2.4.0" - python: ">=3.8" - stack_data: "*" - traitlets: ">=5" - url: "https://conda.anaconda.org/conda-forge/noarch/ipython-8.10.0-pyhd1c38e8_0.conda" - hash: - md5: e67b634578fefbb312cd6cfd34b63d86 - sha256: 5951fbddbd8be803c38b75d7d34ff78d366e57e55a7afa2604be6fd0abacb882 - optional: false - category: main - - name: pandas - version: 1.5.3 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: ">=14.0.6" - numpy: ">=1.20.3,<2.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.8.1" - python_abi: 3.9.* *_cp39 - pytz: ">=2020.1" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.3-py39hde7b980_0.conda" - hash: - md5: 694bdfe194977ddb7588e05f57ce295c - sha256: 1906573ea1ab24667c120984c840b9550a2fab8eba699ae659a49824661fc30c - optional: false - category: main - - name: urllib3 - version: 1.26.14 - manager: conda - platform: osx-arm64 - dependencies: - brotlipy: ">=0.6.0" - certifi: "*" - cryptography: ">=1.3.4" - idna: ">=2.0.0" - pyopenssl: ">=0.14" - pysocks: ">=1.5.6,<2.0,!=1.5.7" - python: "<4.0" - url: "https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.14-pyhd8ed1ab_0.conda" - hash: - md5: 01f33ad2e0aaf6b5ba4add50dad5ad29 - sha256: f2f09c44e47946ce631dbc9a8a79bb463ac0f4122aaafdbcc51f200a1e420ca6 - optional: false - category: main - - name: clang_osx-arm64 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - cctools_osx-arm64: "*" - clang: 14.0.6.* - compiler-rt: 14.0.6.* - ld64_osx-arm64: "*" - llvm-tools: 14.0.6.* - url: "https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-14.0.6-h15773ab_4.conda" - hash: - md5: d0db37e26bfd89ca03a40a5b8ce15635 - sha256: 4d23a3b87660ee13516d9d04da665587d488b791eb8300da1a0e6c93f6d8aaf8 - optional: false - category: main - - name: matplotlib-base - version: 3.6.3 - manager: conda - platform: osx-arm64 - dependencies: - certifi: ">=2020.6.20" - contourpy: ">=1.0.1" - cycler: ">=0.10" - fonttools: ">=4.22.0" - freetype: ">=2.12.1,<3.0a0" - kiwisolver: ">=1.0.1" - libcxx: ">=14.0.6" - numpy: ">=1.20.3,<2.0a0" - packaging: ">=20.0" - pillow: ">=6.2.0" - pyparsing: ">=2.3.1" - python: ">=3.9,<3.10.0a0 *_cpython" - python-dateutil: ">=2.7" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.6.3-py39h35e9e80_0.conda" - hash: - md5: 6699bbc7c73575331a5dc91f83fffc47 - sha256: 3df1794307e98ed49b8c3f8ca14c87b220b79ed56e4fcb7c74b0604ef35b36e0 - optional: false - category: main - - name: requests - version: 2.28.2 - manager: conda - platform: osx-arm64 - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - python: ">=3.7,<4.0" - urllib3: ">=1.21.1,<1.27" - url: "https://conda.anaconda.org/conda-forge/noarch/requests-2.28.2-pyhd8ed1ab_0.conda" - hash: - md5: 11d178fc55199482ee48d6812ea83983 - sha256: 22c081b4cdd023a514400413f50efdf2c378f56f2a5ea9d65666aacf4696490a - optional: false - category: main - - name: c-compiler - version: 1.5.2 - manager: conda - platform: osx-arm64 - dependencies: - cctools: ">=949.0.1" - clang_osx-arm64: 14.* - ld64: ">=530" - llvm-openmp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.5.2-h5008568_0.conda" - hash: - md5: 56a88306583601d05b6eeded173d73d9 - sha256: 54fabbef178e857a639a9c7a302cdab072ca5c2b94052ac939a7ebcf9dad32e4 - optional: false - category: main - - name: clangxx_osx-arm64 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - clang_osx-arm64: "==14.0.6 h15773ab_4" - clangxx: 14.0.6.* - libcxx: ">=14.0.6" - libllvm14: ">=14.0.6,<14.1.0a0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-14.0.6-he29aa18_4.conda" - hash: - md5: 85157d29e430829c4cc5b1f152306f9b - sha256: 87d60f5785f2ab4fe119eb43d7c9ae6a7f6a064ebf95409b0165e0fc6c3a2258 - optional: false - category: main - - name: gfortran_osx-arm64 - version: 11.3.0 - manager: conda - platform: osx-arm64 - dependencies: - cctools_osx-arm64: "*" - clang: "*" - clang_osx-arm64: "*" - gfortran_impl_osx-arm64: "==11.3.0" - ld64_osx-arm64: "*" - libgfortran: 5.* - libgfortran-devel_osx-arm64: "==11.3.0" - libgfortran5: ">=11.3.0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-11.3.0-h57527a5_0.tar.bz2" - hash: - md5: ebf560369c33d9a4f568a2c5b5922b52 - sha256: f8372955a71bef3ae6f06df20d164a9aeb233a4553c7eb92cb8c0d8bae445d6f - optional: false - category: main - - name: matplotlib - version: 3.6.3 - manager: conda - platform: osx-arm64 - dependencies: - matplotlib-base: ">=3.6.3,<3.6.4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - tornado: ">=5" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.6.3-py39hdf13c20_0.conda" - hash: - md5: dc01380d1f0fd2946d0b2b822acf18d6 - sha256: d78938af23d11a6535ffa5bd75be4c43f81079b9d659869781a0d454ca19ff1c - optional: false - category: main - - name: pooch - version: 1.6.0 - manager: conda - platform: osx-arm64 - dependencies: - appdirs: ">=1.3.0" - packaging: ">=20.0" - python: ">=3.6" - requests: ">=2.19.0" - url: "https://conda.anaconda.org/conda-forge/noarch/pooch-1.6.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 6429e1d1091c51f626b5dcfdd38bf429 - sha256: 1f0548105de86fb2eb6fbb8d3d6cc2004079b8442d232258108687d6cc91eb73 - optional: false - category: main - - name: sphinx - version: 5.3.0 - manager: conda - platform: osx-arm64 - dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.14,<0.20" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" - jinja2: ">=3.0" - packaging: ">=21.0" - pygments: ">=2.12" - python: ">=3.7" - requests: ">=2.5.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "*" - sphinxcontrib-devhelp: "*" - sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "*" - sphinxcontrib-qthelp: "*" - sphinxcontrib-serializinghtml: ">=1.1.5" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-5.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: f9e1fcfe235d655900bfeb6aee426472 - sha256: f11fd5fb4ae2c65f41ae86e7408e3ab44844898d928264aa9e89929fffc685c8 - optional: false - category: main - - name: breathe - version: 4.34.0 - manager: conda - platform: osx-arm64 - dependencies: - docutils: ">=0.12" - jinja2: ">=2.7.3" - markupsafe: ">=0.23" - pygments: ">=1.6" - python: ">=3.6" - sphinx: ">=4.0,<6.0.0a" - url: "https://conda.anaconda.org/conda-forge/noarch/breathe-4.34.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: a2a04f8e8c2d91adb08ff929b4d73654 - sha256: 40f86cd741a443363e8928d5d36ba3a49071aaffc26c5a7b24a8167c5bcbba81 - optional: false - category: main - - name: cxx-compiler - version: 1.5.2 - manager: conda - platform: osx-arm64 - dependencies: - c-compiler: "==1.5.2 h5008568_0" - clangxx_osx-arm64: 14.* - url: "https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.5.2-hffc8910_0.conda" - hash: - md5: 3dd2dd956573a59e32711e2e08bb5d8b - sha256: 84f23671f8b18aeabcfd4b5315383442c3bdff3c9194b85c30ec5690d14e721a - optional: false - category: main - - name: gfortran - version: 11.3.0 - manager: conda - platform: osx-arm64 - dependencies: - cctools: "*" - gfortran_osx-arm64: "*" - ld64: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-11.3.0-h1ca8e4b_0.tar.bz2" - hash: - md5: 75b415dac7f64e2af572a24469b581d4 - sha256: 8422479e2ef6937956635ad70303b9dc1aa82d7fde70a49fac4759e73a022464 - optional: false - category: main - - name: numpydoc - version: 1.4.0 - manager: conda - platform: osx-arm64 - dependencies: - jinja2: ">=2.10" - python: ">=3.7" - sphinx: ">=1.8" - url: "https://conda.anaconda.org/conda-forge/noarch/numpydoc-1.4.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: 0aac89c61a466b0f9c4fd0ec44d81f1d - sha256: 11a892cc1678a23d169909e553447fb7e312d6baaa314fdcd719f6abff1c7da6 - optional: false - category: main - - name: pydata-sphinx-theme - version: 0.9.0 - manager: conda - platform: osx-arm64 - dependencies: - beautifulsoup4: "*" - docutils: "!=0.17.0" - packaging: "*" - python: ">=3.7" - sphinx: ">=4.0.2" - url: "https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.9.0-pyhd8ed1ab_1.tar.bz2" - hash: - md5: ed5f1236283219a21207813d387b44bd - sha256: 11d56e0953a8f880d265d18eb3b3adc2f0ba182a33409088141dc84e22dba50c - optional: false - category: main - - name: scipy - version: 1.10.0 - manager: conda - platform: osx-arm64 - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.6" - libgfortran: 5.* - libgfortran5: ">=11.3.0" - liblapack: ">=3.9.0,<4.0a0" - numpy: ">=1.20.3,<2.0a0" - pooch: "*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - url: "https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.10.0-py39h18313fe_2.conda" - hash: - md5: fdd930b6cca23bb9867e4731fa345d6a - sha256: 165e1537c6a7b43e0f112df5e81691aa192d6614f4ff5229721bf9f493ff90ee - optional: false - category: main - - name: sphinx-design - version: 0.3.0 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.6" - sphinx: ">=4,<6" - url: "https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.3.0-pyhd8ed1ab_0.tar.bz2" - hash: - md5: 83d1a712e6d2bab6b298b1d2f42ad355 - sha256: 6b193a483a02bbc7a785dcd28614b4c082d1795fec0a1c48690d8d7a0a876e20 - optional: false - category: main - - name: fortran-compiler - version: 1.5.2 - manager: conda - platform: osx-arm64 - dependencies: - cctools: ">=949.0.1" - gfortran: "*" - gfortran_osx-arm64: 11.* - ld64: ">=530" - llvm-openmp: "*" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.5.2-h2ccabda_0.conda" - hash: - md5: 21d7e4d79b87bf28d865241f7dff5629 - sha256: d5b7b998c28252a1a7ee07d4558c89ba0fa43fa12b27f336ab02115e18add806 - optional: false - category: main - - name: compilers - version: 1.5.2 - manager: conda - platform: osx-arm64 - dependencies: - c-compiler: "==1.5.2 h5008568_0" - cxx-compiler: "==1.5.2 hffc8910_0" - fortran-compiler: "==1.5.2 h2ccabda_0" - url: "https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.5.2-hce30654_0.conda" - hash: - md5: 4bf0aaf590a633d103a70841bb9f2f2e - sha256: 9a21d680350cf836160476852d18f2fdfb3c95ea9556d061dc08422907c02c1e - optional: false - category: main -version: 1 - diff --git a/crates/rattler_conda_types/src/version/flags.rs b/crates/rattler_conda_types/src/version/flags.rs new file mode 100644 index 000000000..1dceead13 --- /dev/null +++ b/crates/rattler_conda_types/src/version/flags.rs @@ -0,0 +1,120 @@ +use std::fmt::{Debug, Formatter}; + +/// Bitmask indicates if the first component stored in a [`super::Version`] refers to an epoch. +const EPOCH_MASK: u8 = 0b1; +const EPOCH_OFFSET: u8 = 0; + +/// Bitmask that indicates what the index is of the first segment that belongs to the local version +/// part. E.g. the part after the '+' sign in `1.2.3+4.5.6`. +const LOCAL_VERSION_MASK: u8 = (1 << 7) - 1; +const LOCAL_VERSION_OFFSET: u8 = 1; + +/// Encodes several edge cases in a single byte. +/// +/// The first bit is used to indicate whether or not there is an explicit epoch present in the +/// version. If the flag is set it means the first entry in the [`Version::components`] array refers +/// to the epoch instead of to the first component of the first segment. +/// +/// The remaining bits are used to encode the index of the first segment that belongs to the local +/// version part instead of to the common part. A value of `0` indicates that there is not local +/// version part. +#[derive(Copy, Clone, Eq, PartialEq, Default)] +#[repr(transparent)] +pub struct Flags(u8); + +impl Debug for Flags { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + f.debug_struct("Flags") + .field("has_epoch", &self.has_epoch()) + .field("local_segment_index", &self.local_segment_index()) + .finish() + } +} + +impl Flags { + /// Sets whether or not the version has an explicit epoch. + #[must_use] + pub fn with_has_epoch(self, has_epoch: bool) -> Self { + let flag = self.0 & !(EPOCH_MASK << EPOCH_OFFSET); + Self( + flag | if has_epoch { + EPOCH_MASK << EPOCH_OFFSET + } else { + 0 + }, + ) + } + + /// Returns true if this instance indicates that an explicit epoch is present. + pub fn has_epoch(self) -> bool { + (self.0 >> EPOCH_OFFSET) & EPOCH_MASK != 0 + } + + /// Sets the index where the local segment starts. Returns `None` if the index is too large to + /// be stored. + #[must_use] + pub fn with_local_segment_index(self, index: u8) -> Option { + if index > LOCAL_VERSION_MASK { + None + } else { + Some(Self( + (self.0 & !(LOCAL_VERSION_MASK << LOCAL_VERSION_OFFSET)) + | (index << LOCAL_VERSION_OFFSET), + )) + } + } + + /// Returns the index of the first segment that belongs to the local part of the version. + pub fn local_segment_index(self) -> u8 { + (self.0 >> LOCAL_VERSION_OFFSET) & LOCAL_VERSION_MASK + } +} + +#[cfg(test)] +mod test { + use crate::version::flags::Flags; + + #[test] + fn test_epoch() { + assert_eq!(Flags::default().has_epoch(), false); + assert_eq!(Flags::default().with_has_epoch(true).has_epoch(), true); + assert_eq!( + Flags::default() + .with_has_epoch(true) + .with_has_epoch(false) + .has_epoch(), + false + ); + } + + #[test] + fn test_local_segment_idx() { + assert_eq!(Flags::default().local_segment_index(), 0); + assert_eq!( + Flags::default() + .with_local_segment_index(42) + .unwrap() + .local_segment_index(), + 42 + ); + assert_eq!( + Flags::default() + .with_local_segment_index(127) + .unwrap() + .local_segment_index(), + 127 + ); + assert_eq!(Flags::default().with_local_segment_index(128), None); + } + + #[test] + fn test_all_elements() { + let flags = Flags::default() + .with_has_epoch(true) + .with_local_segment_index(101) + .unwrap(); + + assert!(flags.has_epoch()); + assert_eq!(flags.local_segment_index(), 101); + } +} diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 37e29e452..0be68777c 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -17,20 +17,13 @@ use smallvec::SmallVec; pub use parse::{ParseVersionError, ParseVersionErrorKind}; +mod flags; mod parse; mod segment; +use flags::Flags; use segment::Segment; -/// Bitmask that should be applied to `Version::flags` to determine if the version contains an epoch. -const EPOCH_MASK: u8 = 0b00000001; - -/// The bitmask to apply to `Version::flags` to get only the local version index. -const LOCAL_VERSION_MASK: u8 = !EPOCH_MASK; - -/// The offset in bits where the the bits of the local version index start. -const LOCAL_VERSION_OFFSET: u8 = 1; - /// This class implements an order relation between version strings. Version strings can contain the /// usual alphanumeric characters (A-Za-z0-9), separated into segments by dots and underscores. /// Empty segments (i.e. two consecutive dots, a leading/trailing underscore) are not permitted. An @@ -135,11 +128,6 @@ const LOCAL_VERSION_OFFSET: u8 = 1; /// 1.0.1_ < 1.0.1a => True # ensure correct ordering for openssl #[derive(Clone, Eq)] pub struct Version { - /// A normed copy of the original version string trimmed and converted to lower case. - /// Also dashes are replaced with underscores if the version string does not contain - /// any underscores. - norm: Option>, - /// Individual components of the version. /// /// We store a maximum of 3 components on the stack. If a version consists of more components @@ -168,7 +156,7 @@ pub struct Version { /// The first bit indicates whether or not this version has an epoch. /// The rest of the bits indicate from which segment the local version starts or 0 if there is /// no local version. - flags: u8, + flags: Flags, } type ComponentVec = SmallVec<[Component; 3]>; @@ -177,20 +165,20 @@ type SegmentVec = SmallVec<[Segment; 4]>; impl Version { /// Returns true if this version has an epoch. pub fn has_epoch(&self) -> bool { - (self.flags & EPOCH_MASK) != 0 + self.flags.has_epoch() } /// Returns true if this version has a local version defined pub fn has_local(&self) -> bool { - ((self.flags & LOCAL_VERSION_MASK) >> LOCAL_VERSION_OFFSET) > 0 + self.flags.local_segment_index() > 0 } /// Returns the index of the first segment that belongs to the local version or `None` if there /// is no local version fn local_segment_index(&self) -> Option { - let index = ((self.flags & LOCAL_VERSION_MASK) >> LOCAL_VERSION_OFFSET) as usize; + let index = self.flags.local_segment_index(); if index > 0 { - Some(index) + Some(index as usize) } else { None } @@ -240,12 +228,12 @@ impl Version { pub fn bump(&self) -> Self { let mut components = ComponentVec::new(); let mut segments = SegmentVec::new(); - let mut flags = 0; + let mut flags = Flags::default(); // Copy the optional epoch. if let Some(epoch) = self.epoch_opt() { components.push(Component::Numeral(epoch)); - flags |= EPOCH_MASK; + flags = flags.with_has_epoch(true); } // Copy over all the segments and bump the last segment. @@ -294,11 +282,12 @@ impl Version { } segments.push(segment_iter.segment); } - flags |= (segment_idx << LOCAL_VERSION_OFFSET) & LOCAL_VERSION_MASK; + flags = flags + .with_local_segment_index(segment_idx) + .expect("this should never fail because no new segments are added") } Self { - norm: None, components, segments, flags, @@ -412,10 +401,12 @@ impl Version { let mut components = SmallVec::<[Component; 3]>::default(); let mut segments = SmallVec::<[Segment; 4]>::default(); + let mut flags = Flags::default(); // Copy the epoch if self.has_epoch() { components.push(self.epoch().into()); + flags = flags.with_has_epoch(true); } // Copy the segments and components of the common version @@ -446,13 +437,14 @@ impl Version { } } - let mut flags = if self.has_epoch() { EPOCH_MASK } else { 0 }; if self.has_local() { - flags |= (local_start_idx as u8) << LOCAL_VERSION_OFFSET; + flags = u8::try_from(local_start_idx) + .ok() + .and_then(|idx| flags.with_local_segment_index(idx)) + .expect("the number of segments must always be smaller so this should never fail"); } Some(Version { - norm: None, components, segments, flags, @@ -486,12 +478,12 @@ impl Version { if self.has_local() { let mut components = SmallVec::<[Component; 3]>::default(); let mut segments = SmallVec::<[Segment; 4]>::default(); - let mut flags = 0; + let mut flags = Flags::default(); // Add the epoch if let Some(epoch) = self.epoch_opt() { components.push(epoch.into()); - flags |= EPOCH_MASK; + flags = flags.with_has_epoch(true); } // Copy the segments @@ -503,7 +495,6 @@ impl Version { } Cow::Owned(Version { - norm: None, components, segments, flags, @@ -601,7 +592,6 @@ impl Hash for Version { impl Debug for Version { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.debug_struct("Version") - .field("norm", &self.norm) .field("epoch", &self.epoch_opt()) .field("version", &SegmentFormatter::from(self.segments())) .field("local", &SegmentFormatter::from(self.local_segments())) @@ -962,9 +952,9 @@ mod test { let ops = versions.iter().map(|&v| { let (op, version) = if let Some((op, version)) = v.trim().split_once(' ') { - (op, version) + (op, version.trim()) } else { - ("", v) + ("", v.trim()) }; let version: Version = version.parse().unwrap(); let op = match op { @@ -1157,7 +1147,7 @@ mod test { #[test] fn size_of_version() { - assert_eq!(std::mem::size_of::(), 128); + assert_eq!(std::mem::size_of::(), 112); } #[test] diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 620f102d7..1457dce7f 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -1,8 +1,7 @@ use super::{Component, Version}; +use crate::version::flags::Flags; use crate::version::segment::Segment; -use crate::version::{ - ComponentVec, SegmentVec, EPOCH_MASK, LOCAL_VERSION_MASK, LOCAL_VERSION_OFFSET, -}; +use crate::version::{ComponentVec, SegmentVec}; use nom::branch::alt; use nom::bytes::complete::{tag_no_case, take_while}; use nom::character::complete::{alpha1, char, digit1, one_of}; @@ -291,7 +290,7 @@ fn final_version_part_parser( pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKind> { let mut components = SmallVec::default(); let mut segments = SmallVec::default(); - let mut flags = 0u8; + let mut flags = Flags::default(); // String must not be empty if input.is_empty() { @@ -302,7 +301,7 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi let (input, epoch) = opt(epoch_parser)(input)?; if let Some(epoch) = epoch { components.push(epoch.into()); - flags |= EPOCH_MASK; + flags = flags.with_has_epoch(true); } // Scan the input to find the version segments. @@ -317,21 +316,25 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi if let Some(local_part) = local_part { let first_local_segment_idx = segments.len(); - // Check if there are not too many segments. - if first_local_segment_idx > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { - // There are too many segments to be able to encode the local segment parts into the - // special `flag` we store. The flags is 8 bits and the first bit is used to - // indicate if there is an epoch or not. The remaining 7 bits are used to indicate - // which segment is the first that belongs to the local version part. We can encode - // at most 127 positions so if there are more segments in the common version part, - // we cannot represent this version. - return Err(nom::Err::Error(ParseVersionErrorKind::TooManySegments)); + // Encode the local segment index into the flags. + match u8::try_from(first_local_segment_idx) + .ok() + .and_then(|idx| flags.with_local_segment_index(idx)) + { + None => { + // There are too many segments to be able to encode the local segment parts into the + // special `flag` we store. The flags is 8 bits and the first bit is used to + // indicate if there is an epoch or not. The remaining 7 bits are used to indicate + // which segment is the first that belongs to the local version part. We can encode + // at most 127 positions so if there are more segments in the common version part, + // we cannot represent this version. + return Err(nom::Err::Error(ParseVersionErrorKind::TooManySegments)); + } + Some(updated_flags) => { + flags = updated_flags; + } } - // Encode that the local version segment starts at the given index. The unwrap is safe - // because we checked that it would fit above. - flags |= (u8::try_from(first_local_segment_idx).unwrap()) << LOCAL_VERSION_OFFSET; - // Parse the segments final_version_part_parser( &mut components, @@ -344,7 +347,6 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi return Ok(( rest, Version { - norm: None, flags, components, segments, @@ -368,192 +370,11 @@ pub fn final_version_parser(input: &str) -> Result bool { - matches!(c, '.'|'+'|'!'|'_'|'0'..='9'|'a'..='z') -} - -/// Returns true if the specified string contains only valid chars for a version string. -fn has_valid_chars(version: &str) -> bool { - version.chars().all(is_valid_char) -} - impl FromStr for Version { type Err = ParseVersionError; - // Implementation taken from https://github.com/conda/conda/blob/0050c514887e6cbbc1774503915b45e8de12e405/conda/models/version.py#L47 - fn from_str(s: &str) -> Result { - return final_version_parser(s).map_err(|kind| ParseVersionError::new(s, kind)); - - // // Version comparison is case-insensitive so normalize everything to lowercase - // let normalized = s.trim().to_lowercase(); - // - // // Basic validity check - // if normalized.is_empty() { - // return Err(ParseVersionError::new(s, ParseVersionErrorKind::Empty)); - // } - // - // // Allow for dashes as long as there are no underscores as well. Dashes are then converted - // // to underscores. - // let lowered = if normalized.contains('-') && !normalized.contains('_') { - // normalized.replace('-', "_") - // } else { - // normalized - // }; - // - // // Ensure the string only contains valid characters - // if !has_valid_chars(&lowered) { - // return Err(ParseVersionError::new( - // s, - // ParseVersionErrorKind::InvalidCharacters, - // )); - // } - // - // // Find epoch - // let (epoch, rest) = if let Some((epoch, rest)) = lowered.split_once('!') { - // let epoch: u64 = epoch.parse().map_err(|e| { - // ParseVersionError::new(s, ParseVersionErrorKind::EpochMustBeInteger(e)) - // })?; - // (Some(epoch), rest) - // } else { - // (None, lowered.as_str()) - // }; - // - // // Ensure the rest of the string no longer contains an epoch - // if rest.find('!').is_some() { - // return Err(ParseVersionError::new( - // s, - // ParseVersionErrorKind::DuplicateEpochSeparator, - // )); - // } - // - // // Find local version string - // let (local, rest) = if let Some((rest, local)) = rest.rsplit_once('+') { - // (local, rest) - // } else { - // ("", rest) - // }; - // - // // Ensure the rest of the string no longer contains a local version separator - // if rest.find('+').is_some() { - // return Err(ParseVersionError::new( - // s, - // ParseVersionErrorKind::DuplicateLocalVersionSeparator, - // )); - // } - // - // // Split the local version by '_' or '.' - // let local_split = local.split(&['.', '_'][..]); - // - // // If the last character of a version is '-' or '_', don't split that out individually. - // // Implements the instructions for openssl-like versions. You can work-around this problem - // // by appending a dash to plain version numbers. - // let version: SmallVec<[String; 6]> = if rest.ends_with('_') { - // let mut versions: SmallVec<[String; 6]> = rest[..(rest.len() as isize - 1) as usize] - // .replace('_', ".") - // .split('.') - // .map(ToOwned::to_owned) - // .collect(); - // if let Some(last) = versions.last_mut() { - // *last += "_"; - // } - // versions - // } else { - // rest.replace('_', ".") - // .split('.') - // .map(ToOwned::to_owned) - // .collect() - // }; - // let version_split = version.iter().map(|s| s.as_str()); - // - // let mut components = SmallVec::default(); - // let mut segments = SmallVec::default(); - // let mut flags = 0u8; - // - // if let Some(epoch) = epoch { - // components.push(epoch.into()); - // flags |= 0x1; // Mark that the version contains an epoch - // } - // - // fn split_component<'a>( - // segments_iter: impl Iterator, - // segments: &mut SegmentVec, - // components: &mut ComponentVec, - // ) -> Result<(), ParseVersionErrorKind> { - // for component in segments_iter { - // let version_split_re = lazy_regex::regex!(r#"([0-9]+|[^0-9]+)"#); - // let mut numeral_or_alpha_split = version_split_re.find_iter(component).peekable(); - // if numeral_or_alpha_split.peek().is_none() { - // return Err(ParseVersionErrorKind::EmptyVersionComponent); - // } - // - // let mut atoms = numeral_or_alpha_split - // .map(|mtch| match mtch.as_str() { - // num if num.chars().all(|c| c.is_ascii_digit()) => num - // .parse() - // .map_err(ParseVersionErrorKind::InvalidNumeral) - // .map(Component::Numeral), - // "post" => Ok(Component::Post), - // "dev" => Ok(Component::Dev), - // ident => Ok(Component::Iden(ident.to_owned().into_boxed_str())), - // }) - // .peekable(); - // - // // A segment must always starts with a numeral - // let has_implicit_default = - // !matches!(atoms.peek(), Some(&Ok(Component::Numeral(_)))); - // - // // Add the components - // let mut component_count = 0u16; - // for component in atoms { - // components.push(component?); - // component_count = component_count - // .checked_add(1) - // .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)?; - // } - // - // // Add the segment information - // segments.push( - // Segment::new(component_count) - // .ok_or(ParseVersionErrorKind::TooManyComponentsInASegment)? - // .with_implicit_default(has_implicit_default), - // ); - // } - // - // Ok(()) - // } - // - // split_component(version_split, &mut segments, &mut components) - // .map_err(|e| ParseVersionError::new(s, e))?; - // - // if !local.is_empty() { - // if segments.len() > (LOCAL_VERSION_MASK >> LOCAL_VERSION_OFFSET) as usize { - // // There are too many segments to be able to encode the local segment parts into the - // // special `flag` we store. The flags is 8 bits and the first bit is used to - // // indicate if there is an epoch or not. The remaining 7 bits are used to indicate - // // which segment is the first that belongs to the local version part. We can encode - // // at most 127 positions so if there are more segments in the common version part, - // // we cannot represent this version. - // return Err(ParseVersionError::new( - // s, - // ParseVersionErrorKind::TooManySegments, - // )); - // } - // - // // Encode that the local version segment starts at the given index. - // flags |= (u8::try_from(segments.len()).unwrap()) << LOCAL_VERSION_OFFSET; - // - // split_component(local_split, &mut segments, &mut components) - // .map_err(|e| ParseVersionError::new(s, e))? - // }; - // - // Ok(Self { - // norm: Some(lowered.into_boxed_str()), - // flags, - // segments, - // components, - // }) + final_version_parser(s).map_err(|kind| ParseVersionError::new(s, kind)) } } diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index 8d02ded34..f88026dbf 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -1,6 +1,5 @@ --- source: crates/rattler_conda_types/src/version/parse.rs -assertion_line: 607 expression: index_map --- { @@ -12,7 +11,6 @@ expression: index_map ), "1!1.2a.3-rc1": Version( Version { - norm: None, epoch: Some( 1, ), @@ -31,7 +29,6 @@ expression: index_map ), "1+2": Version( Version { - norm: None, epoch: None, version: [[1]], local: [[2]], @@ -39,7 +36,6 @@ expression: index_map ), "1-2-3": Version( Version { - norm: None, epoch: None, version: [[1], [2], [3]], local: [], @@ -47,7 +43,6 @@ expression: index_map ), "1-2-3_": Version( Version { - norm: None, epoch: None, version: [[1], [2], [3, _]], local: [], @@ -58,7 +53,6 @@ expression: index_map ), "1.0.1_": Version( Version { - norm: None, epoch: None, version: [[1], [0], [1, _]], local: [], @@ -66,7 +60,6 @@ expression: index_map ), "1.0.1post.za": Version( Version { - norm: None, epoch: None, version: [[1], [0], [1, post], [0, za]], local: [], @@ -77,7 +70,6 @@ expression: index_map ), "1_": Version( Version { - norm: None, epoch: None, version: [[1, _]], local: [], @@ -85,7 +77,6 @@ expression: index_map ), "1_2_3": Version( Version { - norm: None, epoch: None, version: [[1], [2], [3]], local: [], @@ -93,7 +84,6 @@ expression: index_map ), "1_2_3_": Version( Version { - norm: None, epoch: None, version: [[1], [2], [3, _]], local: [], @@ -101,7 +91,6 @@ expression: index_map ), "1__": Version( Version { - norm: None, epoch: None, version: [[1], [0, _]], local: [], From 253497aa33338142f6cdb788510140fc80b6952e Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 30 Jun 2023 17:20:08 +0200 Subject: [PATCH 09/22] fix: removed unused error kinds --- .../rattler_conda_types/src/version/parse.rs | 36 +++---------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 1457dce7f..e59430778 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -33,28 +33,11 @@ pub struct ParseVersionError { impl Display for ParseVersionError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - write!(f, "malformed version string '{}': ", &self.version)?; - match &self.kind { - ParseVersionErrorKind::Empty => write!(f, "empty string"), - ParseVersionErrorKind::InvalidCharacters => write!(f, "invalid character(s)"), - ParseVersionErrorKind::EpochMustBeInteger(e) => { - write!(f, "epoch must be an integer: {}", e) - } - ParseVersionErrorKind::DuplicateEpochSeparator => { - write!(f, "duplicated epoch separator '!'") - } - ParseVersionErrorKind::DuplicateLocalVersionSeparator => { - write!(f, "duplicated local version separator '+'") - } - ParseVersionErrorKind::EmptyVersionComponent => write!(f, "empty version component"), - ParseVersionErrorKind::InvalidNumeral(e) => write!(f, "invalid numeral: {}", e), - ParseVersionErrorKind::TooManySegments => write!(f, "too many segments"), - ParseVersionErrorKind::TooManyComponentsInASegment => write!(f, "too many version components, a single version segment can at most contain {} components", (1<<16)-1), - ParseVersionErrorKind::ExpectedComponent => write!(f, "expected a version component"), - ParseVersionErrorKind::ExpectedSegmentSeparator => write!(f, "expected '.', '-', or '_'"), - ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores => write!(f, "cannot mix and match underscores and dashes"), - ParseVersionErrorKind::Nom(_) => write!(f, "parse error"), - } + write!( + f, + "malformed version string '{}': {}", + &self.version, &self.kind + ) } } @@ -76,21 +59,12 @@ pub enum ParseVersionErrorKind { /// The string was empty #[error("empty string")] Empty, - /// The string contained invalid characters - #[error("invalid characters")] - InvalidCharacters, /// The epoch was not an integer value #[error("epoch is not a number")] EpochMustBeInteger(ParseIntError), /// The string contained an invalid numeral #[error("invalid number")] InvalidNumeral(ParseIntError), - /// The string contained multiple epoch separators - #[error("string contains multiple epoch seperators ('!')")] - DuplicateEpochSeparator, - /// The string contained multiple local version separators - #[error("string contains multiple version seperators ('+')")] - DuplicateLocalVersionSeparator, /// The string contained an empty version component #[error("expected a version component e.g. `2` or `rc`")] EmptyVersionComponent, From 13139f2ee78650fa589d76550f690619b31d82fe Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 12:20:37 +0200 Subject: [PATCH 10/22] test: compare to conda results --- crates/rattler_conda_types/src/version/mod.rs | 37 +- .../rattler_conda_types/src/version/parse.rs | 28 + test-data/versions.txt | 28530 ++++++++++++++++ versions.txt | 28530 ++++++++++++++++ 4 files changed, 57107 insertions(+), 18 deletions(-) create mode 100644 test-data/versions.txt create mode 100644 versions.txt diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 0be68777c..f00212665 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -592,9 +592,11 @@ impl Hash for Version { impl Debug for Version { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.debug_struct("Version") - .field("epoch", &self.epoch_opt()) - .field("version", &SegmentFormatter::from(self.segments())) - .field("local", &SegmentFormatter::from(self.local_segments())) + .field( + "version", + &SegmentFormatter::new(self.epoch_opt(), self.segments()), + ) + .field("local", &SegmentFormatter::new(None, self.local_segments())) .finish() } } @@ -603,29 +605,28 @@ impl Debug for Version { /// where segments are displayed as an array of arrays (e.g. `[[1], [2,3,4]]`) and /// [`std::fmt::Display`] where segments are display in their canonical form (e.g. `1.2-rc2`). struct SegmentFormatter<'v, I: Iterator> + 'v> { - inner: RefCell>, + inner: RefCell, I)>>, } -impl<'v, I: Iterator> + 'v> From for SegmentFormatter<'v, I> { - fn from(value: I) -> Self { +impl<'v, I: Iterator> + 'v> SegmentFormatter<'v, I> { + pub fn new(epoch: Option, iter: I) -> Self { Self { - inner: RefCell::new(Some(value)), + inner: RefCell::new(Some((epoch, iter))), } } } impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatter<'v, I> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - let iter = match self.inner.borrow_mut().take() { + let (epoch, iter) = match self.inner.borrow_mut().take() { Some(iter) => iter, None => panic!("was already formatted once"), }; write!(f, "[")?; - for (idx, segment) in iter.enumerate() { - if idx > 0 { - write!(f, ", ")?; - } + write!(f, "[{}]", epoch.unwrap_or(0))?; + for segment in iter { + write!(f, ", ")?; write!(f, "[{}]", segment.components().format(", "))?; } write!(f, "]")?; @@ -636,7 +637,7 @@ impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatt impl<'v, I: Iterator> + 'v> fmt::Display for SegmentFormatter<'v, I> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - let iter = match self.inner.borrow_mut().take() { + let (_epoch, iter) = match self.inner.borrow_mut().take() { Some(iter) => iter, None => panic!("was already formatted once"), }; @@ -763,9 +764,9 @@ impl Display for Component { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { Component::Numeral(n) => write!(f, "{}", n), - Component::Iden(s) => write!(f, "{}", s), - Component::Post => write!(f, "post"), - Component::Dev => write!(f, "dev"), + Component::Iden(s) => write!(f, "'{}'", s), + Component::Post => write!(f, "inf"), + Component::Dev => write!(f, "'DEV'"), } } } @@ -815,9 +816,9 @@ impl Display for Version { write!(f, "{epoch}!")?; } - write!(f, "{}", SegmentFormatter::from(self.segments()))?; + write!(f, "{}", SegmentFormatter::new(None, self.segments()))?; if self.has_local() { - write!(f, "+{}", SegmentFormatter::from(self.local_segments()))?; + write!(f, "+{}", SegmentFormatter::new(None, self.local_segments()))?; } Ok(()) diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index e59430778..d73c722a5 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -355,9 +355,12 @@ impl FromStr for Version { #[cfg(test)] mod test { use super::{final_version_parser, Version}; + use crate::version::SegmentFormatter; use serde::Serialize; use std::collections::BTreeMap; use std::fmt::{Display, Formatter}; + use std::path::Path; + use std::str::FromStr; #[test] fn test_parse() { @@ -414,4 +417,29 @@ mod test { write!(f, "{:?}", &self.0) } } + + /// Parse a large number of versions and see if parsing succeeded. + /// TODO: This doesnt really verify that the parsing is correct. Maybe we can parse the version + /// with Conda too and verify that the results match? + #[test] + fn test_parse_all() { + let versions = std::fs::read_to_string( + Path::new(env!("CARGO_MANIFEST_DIR")).join("../../test-data/parsed_versions.txt"), + ) + .unwrap(); + for line in versions.lines() { + // Skip comments and empty lines + if line.trim_start().starts_with("#") || line.trim().is_empty() { + continue; + } + + let (version, debug_parsed) = line.split_once('=').unwrap(); + let parsed_version = Version::from_str(version).unwrap(); + let parsed_version_debug_string = format!( + "{:?}", + SegmentFormatter::new(parsed_version.epoch_opt(), parsed_version.segments()) + ); + assert_eq!(parsed_version_debug_string, debug_parsed); + } + } } diff --git a/test-data/versions.txt b/test-data/versions.txt new file mode 100644 index 000000000..07e238e91 --- /dev/null +++ b/test-data/versions.txt @@ -0,0 +1,28530 @@ +0 +0.0 +0.0.0 +0.0.0.0.10 +0.0.0.0.12 +0.0.0.0.8 +0.0.0.5 +0.0.0.6 +0.0.0.9 +0.0.0.9000 +0.0.0.9999 +0.0.0a1 +0.0.0rc0 +0.0.1 +0.0.1.0 +0.0.1.1.1 +0.0.1.1.9 +0.0.1.2 +0.0.1.3 +0.0.1.4 +0.0.1.7 +0.0.1.73 +0.0.1.8 +0.0.1.9000 +0.0.1.dev +0.0.1.post7 +0.0.10 +0.0.10.post1 +0.0.100 +0.0.101 +0.0.102 +0.0.103 +0.0.104 +0.0.107 +0.0.108 +0.0.109 +0.0.10a3 +0.0.11 +0.0.110 +0.0.111 +0.0.112 +0.0.113 +0.0.114 +0.0.115 +0.0.117 +0.0.118 +0.0.119 +0.0.11a3 +0.0.12 +0.0.120 +0.0.121 +0.0.122 +0.0.13 +0.0.13.post0 +0.0.132 +0.0.134 +0.0.137 +0.0.139 +0.0.13a3 +0.0.14 +0.0.14.5 +0.0.14.6 +0.0.14.7 +0.0.14.8 +0.0.140 +0.0.141 +0.0.142 +0.0.144 +0.0.145 +0.0.146 +0.0.148 +0.0.149 +0.0.15 +0.0.15.0 +0.0.15.1 +0.0.15.2 +0.0.15.3 +0.0.15.5 +0.0.15.6 +0.0.15.7 +0.0.15.8 +0.0.15.post1 +0.0.150 +0.0.151 +0.0.152 +0.0.153 +0.0.154 +0.0.155 +0.0.156 +0.0.157 +0.0.158 +0.0.159 +0.0.16 +0.0.16.dev0 +0.0.16.post2 +0.0.160 +0.0.162 +0.0.17 +0.0.171 +0.0.172 +0.0.174 +0.0.175 +0.0.176 +0.0.177 +0.0.178 +0.0.18 +0.0.182 +0.0.184 +0.0.185 +0.0.186 +0.0.187 +0.0.188 +0.0.189 +0.0.19 +0.0.19.post0 +0.0.190 +0.0.191 +0.0.193 +0.0.194 +0.0.196 +0.0.198 +0.0.199 +0.0.1a0 +0.0.1a1 +0.0.1a11 +0.0.1a12 +0.0.1a3 +0.0.1a4 +0.0.1b0 +0.0.1b1 +0.0.1post2 +0.0.1rc2 +0.0.1rc3 +0.0.1rc4 +0.0.1rc5 +0.0.1rc7 +0.0.2 +0.0.2.0 +0.0.2.1 +0.0.2.20.1 +0.0.2.28 +0.0.2.3 +0.0.2.6 +0.0.2.70 +0.0.2.71 +0.0.2.72 +0.0.2.73 +0.0.2.74 +0.0.2.75 +0.0.2.8 +0.0.2.9 +0.0.2.9.9 +0.0.2.post1 +0.0.2.post12 +0.0.2.post2 +0.0.2.post3 +0.0.20 +0.0.200 +0.0.20080929 +0.0.20090618 +0.0.201 +0.0.20120106 +0.0.20161017 +0.0.2017.12.03 +0.0.20170418 +0.0.20180411 +0.0.20180625 +0.0.20190712172645 +0.0.202 +0.0.20200320191924 +0.0.20200720112859 +0.0.20200909083119 +0.0.20210525 +0.0.20210729 +0.0.20220707223719 +0.0.203 +0.0.204 +0.0.205 +0.0.207 +0.0.208 +0.0.209 +0.0.21 +0.0.21.dev0 +0.0.21.post1 +0.0.210 +0.0.211 +0.0.212 +0.0.213 +0.0.215 +0.0.218 +0.0.22 +0.0.22.dev0 +0.0.220 +0.0.23 +0.0.233 +0.0.24 +0.0.24.dev0 +0.0.245 +0.0.247 +0.0.248 +0.0.249 +0.0.25 +0.0.25.dev0 +0.0.25.dev2 +0.0.25.dev3 +0.0.25.dev5 +0.0.25.dev6 +0.0.25.dev7 +0.0.250 +0.0.251 +0.0.257 +0.0.259 +0.0.26 +0.0.260 +0.0.261 +0.0.262 +0.0.264 +0.0.265 +0.0.269 +0.0.27 +0.0.270 +0.0.271 +0.0.28 +0.0.29 +0.0.2a +0.0.2a1 +0.0.2a12 +0.0.2a13 +0.0.2a14 +0.0.2a15 +0.0.2a16 +0.0.2a17 +0.0.2a18 +0.0.2a19 +0.0.2a2 +0.0.2a20 +0.0.2a21 +0.0.2a22 +0.0.2a23 +0.0.2a24 +0.0.2a25 +0.0.2a26 +0.0.2a27 +0.0.2a28 +0.0.2a29 +0.0.2a30 +0.0.2a31 +0.0.2a32 +0.0.2b3 +0.0.3 +0.0.3.0 +0.0.3.1 +0.0.3.2 +0.0.3.3 +0.0.3.post1 +0.0.3.post2 +0.0.30 +0.0.31 +0.0.316 +0.0.317 +0.0.318 +0.0.319 +0.0.32 +0.0.320 +0.0.33 +0.0.34 +0.0.35 +0.0.36 +0.0.37 +0.0.38 +0.0.39 +0.0.39.1 +0.0.3a1 +0.0.3a3 +0.0.3rc6 +0.0.4 +0.0.4.1 +0.0.4.10 +0.0.4.12 +0.0.4.13 +0.0.4.14 +0.0.4.15 +0.0.4.16 +0.0.4.2 +0.0.4.5 +0.0.4.6 +0.0.4.dev0 +0.0.4.dev1 +0.0.4.post1 +0.0.40 +0.0.41 +0.0.42 +0.0.43 +0.0.44 +0.0.45 +0.0.46 +0.0.47 +0.0.48 +0.0.49 +0.0.4a +0.0.4a1 +0.0.4post1 +0.0.5 +0.0.5.1 +0.0.5.9001 +0.0.50 +0.0.51 +0.0.52 +0.0.53 +0.0.54 +0.0.55 +0.0.56 +0.0.57 +0.0.58 +0.0.59 +0.0.5a1 +0.0.5b0 +0.0.6 +0.0.6.1 +0.0.6.3 +0.0.6.dev0 +0.0.60 +0.0.61 +0.0.62 +0.0.63 +0.0.64 +0.0.65 +0.0.66 +0.0.67 +0.0.68 +0.0.69 +0.0.6rc1 +0.0.7 +0.0.7.1 +0.0.7.2 +0.0.7.post1 +0.0.7.post2 +0.0.70 +0.0.71 +0.0.72 +0.0.73 +0.0.74 +0.0.75 +0.0.76 +0.0.77 +0.0.78 +0.0.79 +0.0.8 +0.0.8.1 +0.0.8.dev0 +0.0.8.dev1 +0.0.8.post1 +0.0.80 +0.0.81 +0.0.82 +0.0.83 +0.0.84 +0.0.85 +0.0.86 +0.0.87 +0.0.88 +0.0.89 +0.0.8b0 +0.0.9 +0.0.9.1 +0.0.9.2 +0.0.9.post2 +0.0.90 +0.0.9019 +0.0.91 +0.0.92 +0.0.93 +0.0.94 +0.0.95 +0.0.96 +0.0.97 +0.0.98 +0.0.99 +0.0.9999 +0.0.post129 +0.0.post131 +0.0.post134 +0.0.post136 +0.0.post138 +0.0.post140 +0.000144 +0.000145 +0.001013 +0.0014 +0.002 +0.002006 +0.002009 +0.003 +0.004 +0.004011 +0.005 +0.006 +0.006007 +0.007 +0.008 +0.008002 +0.008004 +0.008005 +0.008006 +0.008007 +0.009 +0.01 +0.010 +0.012 +0.013 +0.014 +0.016 +0.018 +0.02 +0.02.04 +0.020 +0.021 +0.025 +0.026 +0.027 +0.028 +0.029 +0.03 +0.030 +0.031 +0.039 +0.04 +0.04.19 +0.04.20 +0.04.21 +0.048 +0.04_22 +0.5 +0.06 +0.0608 +0.063 +0.07 +0.076 +0.08 +0.09 +0.094002 +0.094003 +0.097 +0.0_1 +0.0_17 +0.0_18 +0.0_18.1 +0.0_2 +0.0_24 +0.0_25 +0.0_26 +0.0_27 +0.0_3 +0.0_4 +0.0_4.1 +0.0_5 +0.0_54 +0.0_54.1 +0.0_54.2 +0.0_55 +0.0_55.1 +0.0_7 +0.0_8 +0.0_86 +0.0_86.1 +0.0_9 +0.0_9_1 +0.0_9_2 +0.0_9_4 +0.0b32 +0.1 +0.1.0 +0.1.0.0 +0.1.0.1 +0.1.0.2 +0.1.0.30 +0.1.0.99 +0.1.0.b1 +0.1.0.beta.6 +0.1.0.dev1 +0.1.0.dev2 +0.1.0.post0 +0.1.0.post10 +0.1.0.post11 +0.1.0.post12 +0.1.0.post13 +0.1.0.post14 +0.1.0.post7 +0.1.0.post8 +0.1.0.post9 +0.1.00e9c9d +0.1.01 +0.1.04 +0.1.5 +0.1.0a +0.1.0a0 +0.1.0a1 +0.1.0a2 +0.1.0a20180905 +0.1.0a3 +0.1.0a4 +0.1.0a5 +0.1.0a6 +0.1.0a65 +0.1.0a66 +0.1.0a67 +0.1.0a70 +0.1.0a71 +0.1.0a72 +0.1.0a73 +0.1.0a74 +0.1.0a75 +0.1.0a77 +0.1.0a79 +0.1.0a80 +0.1.0a83 +0.1.0a84 +0.1.0a85 +0.1.0alpha +0.1.0b0 +0.1.0b2 +0.1.0b4 +0.1.0b5 +0.1.0b7 +0.1.0b8 +0.1.0b9 +0.1.0beta +0.1.0beta3 +0.1.0dev +0.1.0dev0 +0.1.0rc0 +0.1.0rc1 +0.1.0rc2 +0.1.1 +0.1.1.0 +0.1.1.1 +0.1.1.18 +0.1.1.21 +0.1.1.26 +0.1.1.27 +0.1.1.30 +0.1.1.31 +0.1.1.32 +0.1.1.33 +0.1.1.34 +0.1.1.35 +0.1.1.36 +0.1.1.37 +0.1.1.8 +0.1.1.dev0 +0.1.1.dev1 +0.1.1.post0 +0.1.1.post2 +0.1.1.post200513 +0.1.1.post20200531 +0.1.1.post20200602 +0.1.1.post20200603 +0.1.1.post20200604 +0.1.1.post20200605 +0.1.1.post20200606 +0.1.1.post20200608 +0.1.1.post20200609 +0.1.1.post20200610 +0.1.1.post20200611 +0.1.1.post20200612 +0.1.1.post20200615 +0.1.1.post20200616 +0.1.1.post20200617 +0.1.1.post20200620 +0.1.1.post20200622 +0.1.1.post20200623 +0.1.1.post20200630 +0.1.1.post20200704 +0.1.1.post20200711 +0.1.1.post20200715 +0.1.1.post20200716 +0.1.10 +0.1.10.8 +0.1.100 +0.1.101 +0.1.103 +0.1.104 +0.1.11 +0.1.112 +0.1.12 +0.1.13 +0.1.13.1 +0.1.13.2 +0.1.13.3 +0.1.137 +0.1.138 +0.1.139 +0.1.14 +0.1.140 +0.1.141 +0.1.142 +0.1.143 +0.1.144 +0.1.145 +0.1.148 +0.1.149 +0.1.15 +0.1.15.post1 +0.1.150 +0.1.151 +0.1.152 +0.1.16 +0.1.16.0 +0.1.1617247075 +0.1.164 +0.1.167 +0.1.168 +0.1.169 +0.1.17 +0.1.170 +0.1.171 +0.1.173 +0.1.175 +0.1.178 +0.1.18 +0.1.18.0 +0.1.18.3 +0.1.18.4 +0.1.18.post1 +0.1.180 +0.1.182 +0.1.185 +0.1.186 +0.1.189 +0.1.19 +0.1.19.2 +0.1.191 +0.1.192 +0.1.195 +0.1.197 +0.1.1a +0.1.1a1 +0.1.1a2 +0.1.1a3 +0.1.1a6 +0.1.1rc.1 +0.1.1rc0 +0.1.2 +0.1.2.0 +0.1.2.1 +0.1.2.2 +0.1.2.dev24 +0.1.2.dev25 +0.1.2.dev5 +0.1.2.post0 +0.1.2.post1 +0.1.2.post2 +0.1.2.post20200910 +0.1.2.post20200911 +0.1.2.post20200912 +0.1.2.post20200926 +0.1.2.post20200929 +0.1.2.post20201009 +0.1.2.post20201013 +0.1.2.post20201016 +0.1.2.post20201030 +0.1.2.post20201122 +0.1.2.post20201204 +0.1.2.post20201210 +0.1.2.post20201211 +0.1.2.post20201213 +0.1.2.post20201216 +0.1.2.post20201218 +0.1.2.post20210109 +0.1.2.post20210112 +0.1.2.post20210113 +0.1.2.post20210115 +0.1.2.post20210126 +0.1.2.post20210127 +0.1.2.post20210128 +0.1.2.post4 +0.1.20 +0.1.201 +0.1.2018.08.10 +0.1.2018.08.28 +0.1.2019.07.25 +0.1.2019.12.24 +0.1.203 +0.1.204 +0.1.205 +0.1.206 +0.1.207 +0.1.208 +0.1.209 +0.1.21 +0.1.210 +0.1.211 +0.1.213 +0.1.214 +0.1.215 +0.1.216 +0.1.217 +0.1.218 +0.1.219 +0.1.22 +0.1.22.dev0 +0.1.220 +0.1.221 +0.1.222 +0.1.223 +0.1.224 +0.1.225 +0.1.226 +0.1.227 +0.1.228 +0.1.229 +0.1.23 +0.1.23.dev0 +0.1.230 +0.1.231 +0.1.232 +0.1.233 +0.1.234 +0.1.235 +0.1.236 +0.1.237 +0.1.238 +0.1.239 +0.1.24 +0.1.240 +0.1.241 +0.1.242 +0.1.243 +0.1.244 +0.1.245 +0.1.246 +0.1.247 +0.1.248 +0.1.249 +0.1.25 +0.1.250 +0.1.251 +0.1.252 +0.1.253 +0.1.255 +0.1.256 +0.1.257 +0.1.258 +0.1.259 +0.1.26 +0.1.260 +0.1.261 +0.1.262 +0.1.263 +0.1.264 +0.1.265 +0.1.266 +0.1.267 +0.1.268 +0.1.269 +0.1.27 +0.1.270 +0.1.271 +0.1.272 +0.1.273 +0.1.274 +0.1.275 +0.1.277 +0.1.278 +0.1.279 +0.1.28 +0.1.28.2 +0.1.280 +0.1.281 +0.1.282 +0.1.283 +0.1.285 +0.1.286 +0.1.287 +0.1.288 +0.1.29 +0.1.290 +0.1.292 +0.1.293 +0.1.294 +0.1.295 +0.1.296 +0.1.297 +0.1.298 +0.1.299 +0.1.2a0 +0.1.2b0 +0.1.3 +0.1.3.0 +0.1.3.1 +0.1.3.2 +0.1.3.4 +0.1.3.7.0 +0.1.3.post0 +0.1.3.post20210203 +0.1.3.post20210204 +0.1.3.post20210213 +0.1.3.post20210218 +0.1.3.post20210219 +0.1.3.post20210223 +0.1.3.post20210227 +0.1.30 +0.1.300 +0.1.301 +0.1.302 +0.1.303 +0.1.304 +0.1.305 +0.1.306 +0.1.307 +0.1.308 +0.1.309 +0.1.31 +0.1.31.1 +0.1.31.2 +0.1.310 +0.1.311 +0.1.312 +0.1.315 +0.1.316 +0.1.317 +0.1.318 +0.1.319 +0.1.32 +0.1.32.1 +0.1.32.2 +0.1.320 +0.1.321 +0.1.322 +0.1.323 +0.1.324 +0.1.325 +0.1.326 +0.1.327 +0.1.328 +0.1.329 +0.1.33 +0.1.330 +0.1.331 +0.1.332 +0.1.334 +0.1.336 +0.1.337 +0.1.338 +0.1.339 +0.1.34 +0.1.340 +0.1.341 +0.1.342 +0.1.35 +0.1.36 +0.1.37 +0.1.38 +0.1.39 +0.1.3_4 +0.1.3_5 +0.1.3a0 +0.1.3a1 +0.1.3a2 +0.1.4 +0.1.4.0 +0.1.4.1 +0.1.4.2 +0.1.4.3 +0.1.4.5 +0.1.4.6 +0.1.40 +0.1.41 +0.1.42 +0.1.43 +0.1.44 +0.1.45 +0.1.46 +0.1.47 +0.1.48 +0.1.49 +0.1.4a +0.1.5 +0.1.5.1 +0.1.5.2 +0.1.5.3 +0.1.5.4 +0.1.5.5 +0.1.5.6 +0.1.5.7 +0.1.5.8 +0.1.5.9 +0.1.5.post1 +0.1.5.post2 +0.1.5.post20210423 +0.1.5.post20210508 +0.1.5.post20210511 +0.1.5.post20210514 +0.1.5.post20210515 +0.1.5.post20210604 +0.1.5.post20210609 +0.1.5.post20210617 +0.1.5.post20210624 +0.1.5.post20210630 +0.1.5.post20210719 +0.1.5.post20210727 +0.1.5.post20210730 +0.1.5.post20210804 +0.1.5.post20211023 +0.1.5.post20220119 +0.1.5.post20220212 +0.1.5.post20220305 +0.1.5.post20220414 +0.1.5.post20220504 +0.1.5.post20220506 +0.1.5.post20220512 +0.1.5.post20221122 +0.1.5.post20221213 +0.1.5.post20221220 +0.1.5.post20221221 +0.1.5.post3 +0.1.50 +0.1.51 +0.1.52 +0.1.53 +0.1.54 +0.1.55 +0.1.56 +0.1.56.1 +0.1.57 +0.1.57.1 +0.1.57.2 +0.1.57.4 +0.1.57.5 +0.1.58 +0.1.59 +0.1.5a0 +0.1.6 +0.1.60 +0.1.61 +0.1.62 +0.1.63 +0.1.64 +0.1.65 +0.1.66 +0.1.67 +0.1.68 +0.1.69 +0.1.6a0 +0.1.7 +0.1.7.0 +0.1.7.1 +0.1.7.2 +0.1.7.post1 +0.1.7.post2 +0.1.7.post3 +0.1.70 +0.1.71 +0.1.72 +0.1.73 +0.1.74 +0.1.75 +0.1.76 +0.1.77 +0.1.78 +0.1.79 +0.1.7_1 +0.1.8 +0.1.8.0 +0.1.8.1 +0.1.8.1.1 +0.1.8.2 +0.1.8.3 +0.1.8.4 +0.1.8.5 +0.1.8.8 +0.1.8.9 +0.1.8.post1 +0.1.8.post2 +0.1.8.post3 +0.1.80 +0.1.81 +0.1.82 +0.1.83 +0.1.84 +0.1.85 +0.1.86 +0.1.87 +0.1.88 +0.1.89 +0.1.9 +0.1.9.1 +0.1.9.post2 +0.1.90 +0.1.91 +0.1.92 +0.1.93 +0.1.95 +0.1.96 +0.1.97 +0.1.99 +0.1.9_1 +0.1.a1a2bc9 +0.1.dev +0.1.dev0 +0.1.dev1 +0.1.dev109 +0.1.dev11 +0.1.dev12 +0.1.dev2 +0.1.dev200325 +0.1.dev273 +0.1.post +0.1.post1 +0.1.post3 +0.1.post7 +0.1.post8 +0.1.post9 +0.1.pre +0.10 +0.10.0 +0.10.0.dev2 +0.10.0.post1 +0.10.0.post3 +0.10.0a +0.10.0b5 +0.10.0rc1 +0.10.0rc2 +0.10.1 +0.10.1.0.0 +0.10.1.2 +0.10.1.2.0 +0.10.1.2.2 +0.10.1.2729 +0.10.1.2744 +0.10.1.2981 +0.10.1.3049 +0.10.1.3200 +0.10.1.3229 +0.10.1.3266 +0.10.1.3288 +0.10.1.3666 +0.10.1.3751 +0.10.1.3756 +0.10.1.3776 +0.10.10 +0.10.100 +0.10.101 +0.10.103 +0.10.104 +0.10.105 +0.10.106 +0.10.107 +0.10.108 +0.10.109 +0.10.10b0 +0.10.11 +0.10.110 +0.10.111 +0.10.112 +0.10.113 +0.10.114 +0.10.115 +0.10.117 +0.10.118 +0.10.12 +0.10.120 +0.10.122 +0.10.124 +0.10.125 +0.10.126 +0.10.127 +0.10.128 +0.10.129 +0.10.13 +0.10.130 +0.10.131 +0.10.132 +0.10.133 +0.10.14 +0.10.15 +0.10.16 +0.10.17 +0.10.18 +0.10.19 +0.10.1a +0.10.1a0 +0.10.2 +0.10.2.0 +0.10.2.1.0 +0.10.2.2.0 +0.10.20 +0.10.21 +0.10.22 +0.10.23 +0.10.24 +0.10.25 +0.10.26 +0.10.27 +0.10.28 +0.10.29 +0.10.2a +0.10.3 +0.10.3.1 +0.10.3.2 +0.10.3.post1 +0.10.30 +0.10.31 +0.10.32 +0.10.33 +0.10.33.post1 +0.10.34 +0.10.35 +0.10.36 +0.10.37 +0.10.3a +0.10.4 +0.10.4.0 +0.10.4.0.0 +0.10.4.1 +0.10.4.2 +0.10.4.4 +0.10.4.5 +0.10.41 +0.10.42 +0.10.43 +0.10.46 +0.10.47 +0.10.48 +0.10.49 +0.10.4rc1 +0.10.5 +0.10.5.0 +0.10.5.0.0 +0.10.5.2 +0.10.5.post0 +0.10.51 +0.10.52 +0.10.53 +0.10.55 +0.10.56 +0.10.57 +0.10.59 +0.10.6 +0.10.6.0 +0.10.6.0.0 +0.10.60 +0.10.62 +0.10.64 +0.10.65 +0.10.66 +0.10.6b0 +0.10.7 +0.10.7.0.0 +0.10.7.1 +0.10.7.3.0 +0.10.7.5.0 +0.10.71 +0.10.73 +0.10.74 +0.10.75 +0.10.76 +0.10.77 +0.10.7b0 +0.10.8 +0.10.8.1 +0.10.8.1.0 +0.10.8.2 +0.10.8.3 +0.10.8.4 +0.10.8.5 +0.10.81 +0.10.82 +0.10.83 +0.10.84 +0.10.85 +0.10.86 +0.10.8b0 +0.10.9 +0.10.9.0 +0.10.9.2 +0.10.9.3 +0.10.9.4 +0.10.9.5 +0.10.9.6 +0.10.9.7 +0.10.9.9 +0.10.91 +0.10.93 +0.10.94 +0.10.95 +0.10.96 +0.10.99 +0.10.9b0 +0.100 +0.100.0 +0.100.19 +0.100.24 +0.100.30 +0.100.47 +0.100.50 +0.100.54 +0.100005 +0.100006 +0.100052 +0.100054 +0.100055 +0.101.0 +0.1010 +0.1011 +0.102.0 +0.102.1 +0.103.0 +0.104 +0.104.0 +0.104.1 +0.105.0 +0.105.13 +0.105.22 +0.106.0 +0.106.1 +0.106.6 +0.106.8 +0.107.0 +0.107.10 +0.107.14 +0.108 +0.108.0 +0.108.3 +0.108.3.2 +0.108.6 +0.108.7 +0.108.8 +0.109.0 +0.109.2 +0.109.6 +0.10_0 +0.10_1 +0.10_108 +0.10_2 +0.10_40 +0.10_46 +0.10_47 +0.10_48 +0.10_49 +0.10_5 +0.10_50 +0.10_51 +0.10_52 +0.10_53 +0.10_54 +0.10_6 +0.10_7 +0.10_8 +0.10_9 +0.10b0 +0.10rc1 +0.11 +0.11.0 +0.11.0.0 +0.11.0.0.0 +0.11.0.1 +0.11.0.5 +0.11.0.post1 +0.11.0.post2 +0.11.0a +0.11.0rc0 +0.11.0rc1 +0.11.0rc2 +0.11.1 +0.11.1.0 +0.11.1.1 +0.11.1.1.0 +0.11.1.post1 +0.11.10 +0.11.11 +0.11.12 +0.11.13 +0.11.14 +0.11.14.1 +0.11.14.3 +0.11.15 +0.11.16 +0.11.17 +0.11.18 +0.11.19 +0.11.1a +0.11.2 +0.11.2.0.0 +0.11.2.3.1 +0.11.20 +0.11.21 +0.11.22 +0.11.224 +0.11.23 +0.11.24 +0.11.25 +0.11.3 +0.11.3.1 +0.11.3.3 +0.11.3.post1 +0.11.33 +0.11.3793 +0.11.3798 +0.11.3856 +0.11.3876 +0.11.4 +0.11.4.0.1 +0.11.4.2.1 +0.11.4.3.1 +0.11.4.4.0 +0.11.42 +0.11.5 +0.11.6 +0.11.6.post1 +0.11.6.post2 +0.11.6.post3 +0.11.7 +0.11.8 +0.11.84 +0.11.9 +0.11.92 +0.110 +0.110.0 +0.110.2 +0.111 +0.111.0 +0.111.6 +0.1111a +0.1111b +0.112 +0.112.0 +0.113 +0.113.0 +0.114 +0.114.0 +0.114.4 +0.114.5 +0.115.0 +0.116.0 +0.117.0 +0.118.0 +0.119.0 +0.11_0 +0.11_1 +0.11_2 +0.11_5 +0.11_6 +0.11c +0.11rc1 +0.12 +0.12.0 +0.12.0.0 +0.12.0.1 +0.12.0.2 +0.12.0.post2 +0.12.04 +0.12.5 +0.12.06 +0.12.07 +0.12.08 +0.12.09 +0.12.0a +0.12.1 +0.12.1.1 +0.12.1.post1 +0.12.1.post2 +0.12.10 +0.12.11 +0.12.12 +0.12.13 +0.12.14 +0.12.15 +0.12.16 +0.12.17 +0.12.18 +0.12.19 +0.12.1rc1 +0.12.2 +0.12.2.0.0 +0.12.20 +0.12.21 +0.12.22 +0.12.23 +0.12.233 +0.12.24 +0.12.25 +0.12.26 +0.12.27 +0.12.28 +0.12.29 +0.12.3 +0.12.30 +0.12.31 +0.12.32 +0.12.33 +0.12.34 +0.12.35 +0.12.36 +0.12.4 +0.12.4.0.0 +0.12.5 +0.12.6 +0.12.7 +0.12.7a0 +0.12.7a12 +0.12.7a17 +0.12.7a5 +0.12.8 +0.12.8b4 +0.12.8b6 +0.12.8b9 +0.12.9 +0.12.9b0 +0.12.9b1 +0.12.9b5 +0.12.9b7 +0.120.0 +0.1202 +0.121.0 +0.122 +0.122.0 +0.124 +0.124.0 +0.125.0 +0.126.0 +0.127.0 +0.128.0 +0.129.0 +0.12_0 +0.12_1 +0.12_10 +0.12_2 +0.12_4 +0.12a4 +0.12rc1 +0.13 +0.13.0 +0.13.0.0 +0.13.0.3 +0.13.00 +0.13.01 +0.13.04 +0.13.5 +0.13.06 +0.13.1 +0.13.1.0 +0.13.1.1 +0.13.1.2 +0.13.1.3 +0.13.1.4 +0.13.1.5 +0.13.1.6 +0.13.1.7 +0.13.1.8 +0.13.1.9 +0.13.10 +0.13.11 +0.13.12 +0.13.13 +0.13.14 +0.13.15 +0.13.16 +0.13.17 +0.13.18 +0.13.19 +0.13.2 +0.13.2.0 +0.13.2.1 +0.13.2.2 +0.13.2.3 +0.13.2.4 +0.13.2.5 +0.13.20 +0.13.21 +0.13.22 +0.13.23 +0.13.234 +0.13.237 +0.13.238 +0.13.24 +0.13.241 +0.13.25 +0.13.26 +0.13.27 +0.13.28 +0.13.29 +0.13.3 +0.13.3.1 +0.13.3.3 +0.13.3.4 +0.13.3.6 +0.13.30 +0.13.31 +0.13.32 +0.13.33 +0.13.34 +0.13.35 +0.13.36 +0.13.37 +0.13.38 +0.13.39 +0.13.4 +0.13.40 +0.13.41 +0.13.42 +0.13.43 +0.13.44 +0.13.45 +0.13.46 +0.13.47 +0.13.48 +0.13.49 +0.13.5 +0.13.50 +0.13.51 +0.13.52 +0.13.53 +0.13.54 +0.13.55 +0.13.56 +0.13.57 +0.13.58 +0.13.6 +0.13.69 +0.13.7 +0.13.8 +0.13.9 +0.130.0 +0.131.0 +0.132.0 +0.135.0 +0.138.0 +0.13_0 +0.13_1 +0.13_2 +0.13_3 +0.13_4 +0.13_5 +0.13_6 +0.13_7 +0.13_8 +0.13rc1 +0.14 +0.14.0 +0.14.0.1 +0.14.0.10 +0.14.0.2 +0.14.0.3 +0.14.0.4 +0.14.0.5 +0.14.0.6 +0.14.0.7 +0.14.0.8 +0.14.0.9 +0.14.0a0 +0.14.1 +0.14.1.0 +0.14.1.1 +0.14.1.2 +0.14.1.3 +0.14.10 +0.14.11 +0.14.12 +0.14.13 +0.14.14 +0.14.15 +0.14.16 +0.14.17 +0.14.18 +0.14.19 +0.14.2 +0.14.2.1 +0.14.2.10 +0.14.2.2 +0.14.2.3 +0.14.2.4 +0.14.2.5 +0.14.2.6 +0.14.2.7 +0.14.2.8 +0.14.2.9 +0.14.20 +0.14.21 +0.14.22 +0.14.23 +0.14.24 +0.14.244 +0.14.245 +0.14.248 +0.14.25 +0.14.256 +0.14.26 +0.14.260 +0.14.261 +0.14.27 +0.14.28 +0.14.29 +0.14.2_3 +0.14.3 +0.14.3.1 +0.14.3.2 +0.14.3.3 +0.14.3.4 +0.14.3.5 +0.14.3.6 +0.14.31 +0.14.4 +0.14.5 +0.14.51 +0.14.54 +0.14.6 +0.14.6.1 +0.14.6.2 +0.14.6.3 +0.14.7 +0.14.8 +0.14.9 +0.140.0 +0.141.0 +0.144.0 +0.145.0 +0.146.0 +0.147.0 +0.148.0 +0.149.0 +0.14_0 +0.14_1 +0.14rc1 +0.15 +0.15.0 +0.15.0.1 +0.15.0.2 +0.15.07 +0.15.1 +0.15.10 +0.15.100 +0.15.11 +0.15.12 +0.15.13 +0.15.14 +0.15.15 +0.15.16 +0.15.17 +0.15.18 +0.15.19 +0.15.1b +0.15.2 +0.15.20 +0.15.21 +0.15.22 +0.15.23 +0.15.24 +0.15.25 +0.15.26 +0.15.27 +0.15.277 +0.15.28 +0.15.280 +0.15.283 +0.15.285 +0.15.287 +0.15.293 +0.15.3 +0.15.31 +0.15.32 +0.15.33 +0.15.34 +0.15.35 +0.15.36 +0.15.37 +0.15.38 +0.15.39 +0.15.4 +0.15.40 +0.15.41 +0.15.42 +0.15.43 +0.15.44 +0.15.45 +0.15.46 +0.15.47 +0.15.48 +0.15.49 +0.15.5 +0.15.50 +0.15.51 +0.15.52 +0.15.53 +0.15.6 +0.15.61 +0.15.62 +0.15.63 +0.15.64 +0.15.65 +0.15.66 +0.15.67 +0.15.68 +0.15.69 +0.15.7 +0.15.71 +0.15.72 +0.15.73 +0.15.74 +0.15.75 +0.15.76 +0.15.77 +0.15.78 +0.15.79 +0.15.8 +0.15.8.1 +0.15.80 +0.15.81 +0.15.82 +0.15.83 +0.15.84 +0.15.85 +0.15.86 +0.15.87 +0.15.88 +0.15.89 +0.15.9 +0.15.91 +0.15.92 +0.15.93 +0.15.94 +0.15.95 +0.15.96 +0.15.97 +0.15.98 +0.15.99 +0.150.0 +0.151.0 +0.152.0 +0.153.0 +0.154.0 +0.154.1 +0.155.0 +0.155.2 +0.155.3 +0.155.4 +0.156.1 +0.156.2 +0.156.3 +0.156.4 +0.157.0 +0.158.0 +0.158.1 +0.158.2 +0.159.0 +0.15_0 +0.15_4 +0.15b0 +0.15rc1 +0.16 +0.16.0 +0.16.0.post0 +0.16.1 +0.16.1.post1 +0.16.10 +0.16.11 +0.16.12 +0.16.13 +0.16.14 +0.16.15 +0.16.16 +0.16.17 +0.16.18 +0.16.19 +0.16.2 +0.16.20 +0.16.21 +0.16.22 +0.16.23 +0.16.3 +0.16.30 +0.16.31 +0.16.4 +0.16.5 +0.16.6 +0.16.7 +0.16.8 +0.16.9 +0.160.0 +0.161.0 +0.162.0 +0.163.0 +0.164.0 +0.165.0 +0.166.0 +0.167 +0.167.0 +0.168.0 +0.16_0 +0.16_1 +0.16b0 +0.17 +0.17.0 +0.17.0.post1 +0.17.0.post2 +0.17.1 +0.17.1.14 +0.17.10 +0.17.11 +0.17.12 +0.17.13 +0.17.14 +0.17.15 +0.17.16 +0.17.17 +0.17.18 +0.17.19 +0.17.2 +0.17.20 +0.17.21 +0.17.22 +0.17.23 +0.17.24 +0.17.25 +0.17.26 +0.17.27 +0.17.28 +0.17.29 +0.17.3 +0.17.30 +0.17.31 +0.17.32 +0.17.33 +0.17.34 +0.17.4 +0.17.5 +0.17.6 +0.17.7 +0.17.8 +0.17.9 +0.170 +0.170.0 +0.17024 +0.17027 +0.17029 +0.171.0 +0.172.0 +0.173 +0.173.0 +0.174.0 +0.175 +0.175.0 +0.176 +0.176.0 +0.177.0 +0.178.0 +0.179.0 +0.17_6 +0.17_8 +0.17b0 +0.18 +0.18.0 +0.18.0.post1 +0.18.1 +0.18.10 +0.18.103 +0.18.11 +0.18.12 +0.18.13 +0.18.14 +0.18.15 +0.18.16 +0.18.2 +0.18.29 +0.18.3 +0.18.30 +0.18.31 +0.18.32 +0.18.33 +0.18.34 +0.18.35 +0.18.36 +0.18.37 +0.18.38 +0.18.39 +0.18.4 +0.18.40 +0.18.41 +0.18.42 +0.18.43 +0.18.45 +0.18.46 +0.18.47 +0.18.48 +0.18.49 +0.18.5 +0.18.50 +0.18.51 +0.18.52 +0.18.53 +0.18.54 +0.18.55 +0.18.56 +0.18.57 +0.18.6 +0.18.61 +0.18.62 +0.18.63 +0.18.64 +0.18.65 +0.18.66 +0.18.67 +0.18.68 +0.18.69 +0.18.7 +0.18.70 +0.18.71 +0.18.72 +0.18.73 +0.18.74 +0.18.75 +0.18.76 +0.18.77 +0.18.78 +0.18.79 +0.18.8 +0.18.80 +0.18.82 +0.18.83 +0.18.84 +0.18.85 +0.18.86 +0.18.87 +0.18.88 +0.18.9 +0.18.90 +0.180.0 +0.181.0 +0.182 +0.182.0 +0.183 +0.183.0 +0.184 +0.184.0 +0.185 +0.185.0 +0.186 +0.186.0 +0.187 +0.187.0 +0.188 +0.188.0 +0.189 +0.189.0 +0.18_205 +0.18b0 +0.19 +0.19.0 +0.19.0.dev2 +0.19.0.post0 +0.19.0.post1 +0.19.1 +0.19.1.1 +0.19.1.2 +0.19.1.3 +0.19.1.4 +0.19.1.5 +0.19.1.6 +0.19.10 +0.19.11 +0.19.12 +0.19.13 +0.19.14 +0.19.15 +0.19.16 +0.19.17 +0.19.18 +0.19.19 +0.19.2 +0.19.20 +0.19.21 +0.19.22 +0.19.23 +0.19.24 +0.19.25 +0.19.26 +0.19.27 +0.19.28 +0.19.29 +0.19.3 +0.19.30 +0.19.31 +0.19.32 +0.19.33 +0.19.34 +0.19.35 +0.19.36 +0.19.37 +0.19.38 +0.19.39 +0.19.4 +0.19.40 +0.19.41 +0.19.42 +0.19.43 +0.19.44 +0.19.45 +0.19.46 +0.19.47 +0.19.48 +0.19.49 +0.19.5 +0.19.50 +0.19.51 +0.19.52 +0.19.53 +0.19.54 +0.19.55 +0.19.56 +0.19.57 +0.19.6 +0.19.7 +0.19.8 +0.19.8.1 +0.19.9 +0.19.alpha2 +0.19.alpha3 +0.190.0 +0.191.0 +0.192.0 +0.1923 +0.1924 +0.193 +0.193.0 +0.194 +0.194.0 +0.195.0 +0.196.0 +0.198.0 +0.199.0 +0.19_1 +0.19_2 +0.19_3 +0.19_4 +0.1_0 +0.1_1 +0.1_10 +0.1_11 +0.1_12 +0.1_13.1 +0.1_14 +0.1_15 +0.1_17 +0.1_18 +0.1_19 +0.1_2 +0.1_2.1 +0.1_20 +0.1_2017_10_26 +0.1_21 +0.1_22 +0.1_23 +0.1_24 +0.1_25 +0.1_26 +0.1_28 +0.1_29 +0.1_3 +0.1_3.1 +0.1_30 +0.1_32 +0.1_33 +0.1_3_2 +0.1_4 +0.1_40 +0.1_43 +0.1_45 +0.1_47 +0.1_48 +0.1_49 +0.1_5 +0.1_5.1 +0.1_50 +0.1_6 +0.1_7 +0.1_8 +0.1_8.1 +0.1_9 +0.1_97 +0.1_d4ff4aab +0.1a +0.1a0 +0.1a1 +0.1a1.dev11 +0.1a2 +0.1a5 +0.1a6 +0.1b1 +0.1b10 +0.1b11 +0.1b12 +0.1b2 +0.1b3 +0.1b4 +0.1b5 +0.1b6 +0.1b7 +0.1b8 +0.1b9 +0.1dev44 +0.1pre +0.1rc0 +0.1rc1 +0.1rc1.post2 +0.1rc2 +0.1rc3 +0.1rc4 +0.2 +0.2.0 +0.2.0+0.py37fix +0.2.0.0 +0.2.0.1 +0.2.0.12 +0.2.0.13 +0.2.0.14 +0.2.0.2 +0.2.0.3 +0.2.0.5 +0.2.0.dev0 +0.2.0.post0 +0.2.0.post1 +0.2.0.post2 +0.2.00 +0.2.01 +0.2.02 +0.2.0_beta +0.2.0a +0.2.0a0 +0.2.0a1 +0.2.0a13 +0.2.0a14 +0.2.0a15 +0.2.0a2 +0.2.0a8 +0.2.0a9 +0.2.0b0 +0.2.0b1 +0.2.0dev0 +0.2.0rc0 +0.2.0rc2 +0.2.1 +0.2.1.0 +0.2.1.1 +0.2.1.dev0 +0.2.1.dev70 +0.2.1.post0 +0.2.1.post1 +0.2.1.post6 +0.2.10 +0.2.10.0 +0.2.101 +0.2.11 +0.2.11.1 +0.2.11.2 +0.2.11.2022 +0.2.12 +0.2.12.1 +0.2.12.post1 +0.2.13 +0.2.13.1 +0.2.13.2 +0.2.13.post2 +0.2.13post20171012 +0.2.14 +0.2.14.2.1 +0.2.15 +0.2.15.0.1 +0.2.16 +0.2.16.1 +0.2.16.1.1 +0.2.16.2 +0.2.16.3 +0.2.16.4 +0.2.16.5 +0.2.16.6 +0.2.17 +0.2.17.0.1 +0.2.17.1 +0.2.17.2 +0.2.175 +0.2.18 +0.2.18.0.1 +0.2.18.1.1 +0.2.18.2.1 +0.2.19 +0.2.19.0.1 +0.2.19.1 +0.2.1a +0.2.1a0 +0.2.2 +0.2.2.0 +0.2.2.1 +0.2.2.post0 +0.2.2.post1 +0.2.2.post2 +0.2.2.post3 +0.2.20 +0.2.20.1 +0.2.201 +0.2.202 +0.2.203 +0.2.204 +0.2.205 +0.2.21 +0.2.211 +0.2.22 +0.2.23 +0.2.24 +0.2.25 +0.2.26 +0.2.27 +0.2.28 +0.2.29 +0.2.2a1 +0.2.2a2 +0.2.2a3 +0.2.3 +0.2.3.1 +0.2.3.2 +0.2.3.3 +0.2.3.4 +0.2.3.5 +0.2.3.6 +0.2.3.7 +0.2.3.7.4 +0.2.3.7.5 +0.2.3.7.6 +0.2.3.7.7 +0.2.3.post1 +0.2.30 +0.2.31 +0.2.32 +0.2.33 +0.2.333 +0.2.34 +0.2.35 +0.2.36 +0.2.37 +0.2.38 +0.2.39 +0.2.3b0 +0.2.3dev +0.2.3rc +0.2.4 +0.2.4.0 +0.2.4.1 +0.2.4.2 +0.2.4.post1 +0.2.4.post3 +0.2.4.post4 +0.2.40 +0.2.41 +0.2.42 +0.2.43 +0.2.44 +0.2.45 +0.2.46 +0.2.47 +0.2.48 +0.2.49 +0.2.4b0 +0.2.4dev +0.2.5 +0.2.5.0 +0.2.5.1 +0.2.5.2 +0.2.5.3 +0.2.5.4 +0.2.5.5 +0.2.5.6 +0.2.5.7 +0.2.5.post1 +0.2.50 +0.2.51 +0.2.52 +0.2.53 +0.2.54 +0.2.55 +0.2.56 +0.2.57 +0.2.58 +0.2.59 +0.2.6 +0.2.6.0 +0.2.6.3 +0.2.6.5 +0.2.6.post1 +0.2.60 +0.2.61 +0.2.62 +0.2.63 +0.2.66 +0.2.7 +0.2.7.0 +0.2.7.1 +0.2.7.2 +0.2.7.post0 +0.2.77 +0.2.8 +0.2.8.0 +0.2.8.1 +0.2.8.2 +0.2.8.7 +0.2.8.post1 +0.2.9 +0.2.9.0 +0.2.9.1 +0.2.9.2 +0.2.9.3 +0.2.9.4 +0.2.9.5 +0.2.9.9 +0.2.9.post1 +0.2.post +0.2.post0 +0.20 +0.20.0 +0.20.0.1 +0.20.0.post0 +0.20.1 +0.20.10 +0.20.11 +0.20.11.14 +0.20.11.23 +0.20.11.7 +0.20.12 +0.20.12.26 +0.20.12.post2 +0.20.13 +0.20.14 +0.20.15 +0.20.15.post1 +0.20.16 +0.20.17 +0.20.18 +0.20.19 +0.20.2 +0.20.20 +0.20.21 +0.20.22 +0.20.23 +0.20.24 +0.20.25 +0.20.26 +0.20.27 +0.20.28 +0.20.28.post2 +0.20.29 +0.20.3 +0.20.30 +0.20.31 +0.20.32 +0.20.33 +0.20.34 +0.20.35 +0.20.36 +0.20.37 +0.20.38 +0.20.4 +0.20.40 +0.20.41 +0.20.42 +0.20.43 +0.20.44 +0.20.45 +0.20.46 +0.20.5 +0.20.50 +0.20.6 +0.20.6.1 +0.20.7 +0.20.8 +0.20.9 +0.200.0 +0.201 +0.201.0 +0.202.0 +0.2020.5.27 +0.2020.0701 +0.2020.0805 +0.2021.0814 +0.2021.0909 +0.2021.10 +0.2021.11 +0.2021.12 +0.2021.13 +0.2021.14 +0.2021.15 +0.2021.16 +0.2021.17 +0.2021.18 +0.2021.19 +0.2021.20 +0.2021.21 +0.2021.22 +0.2021.23 +0.2021.24 +0.2021.25 +0.2021.26 +0.2021.27 +0.2021.28 +0.2021.29 +0.2021.30 +0.2021.31 +0.2021.32 +0.2021.33 +0.2021.34 +0.2021.35 +0.2021.36 +0.2021.37 +0.2021.38 +0.2021.39 +0.2021.40 +0.2021.41 +0.2021.42 +0.2021.43 +0.2021.44 +0.2021.45 +0.2021.46 +0.2021.47 +0.2021.48 +0.2021.49 +0.2021.50 +0.2021.51 +0.2021.52 +0.2021.6 +0.2021.7 +0.2021.8 +0.2021.9 +0.2022.0421 +0.2022.1 +0.2022.10 +0.2022.11 +0.2022.12 +0.2022.13 +0.2022.14 +0.2022.15 +0.2022.16 +0.2022.17 +0.2022.19 +0.2022.2 +0.2022.20 +0.2022.21 +0.2022.22 +0.2022.23 +0.2022.24 +0.2022.25 +0.2022.26 +0.2022.27 +0.2022.28 +0.2022.29 +0.2022.3 +0.2022.30 +0.2022.31 +0.2022.32 +0.2022.33 +0.2022.34 +0.2022.35 +0.2022.36 +0.2022.37 +0.2022.38 +0.2022.4 +0.2022.40 +0.2022.41 +0.2022.42 +0.2022.43 +0.2022.44 +0.2022.45 +0.2022.46 +0.2022.47 +0.2022.48 +0.2022.49 +0.2022.5 +0.2022.50 +0.2022.51 +0.2022.52 +0.2022.53 +0.2022.6 +0.2022.7 +0.2022.8 +0.2022.8.9 +0.2022.9 +0.2022.9.0 +0.20220715.0 +0.2023.1 +0.2023.10 +0.2023.11 +0.2023.12 +0.2023.13 +0.2023.14 +0.2023.15 +0.2023.16 +0.2023.17 +0.2023.18 +0.2023.19 +0.2023.2 +0.2023.3 +0.2023.4 +0.2023.5 +0.2023.6 +0.2023.7 +0.2023.8 +0.2023.9 +0.203.0 +0.204001 +0.204003 +0.206003 +0.207001 +0.207002 +0.208 +0.20_137 +0.20_17 +0.20_34 +0.20_35 +0.20_38 +0.20_40 +0.20_41 +0.20_44 +0.20_45 +0.21 +0.21.0 +0.21.0_1 +0.21.1 +0.21.10 +0.21.10.24 +0.21.11 +0.21.12 +0.21.13 +0.21.14 +0.21.15 +0.21.16 +0.21.17 +0.21.18 +0.21.19 +0.21.2 +0.21.20 +0.21.21 +0.21.22 +0.21.23 +0.21.24 +0.21.25 +0.21.2b +0.21.3 +0.21.4 +0.21.4.1 +0.21.4.18 +0.21.5 +0.21.5.11 +0.21.5.17 +0.21.5.20 +0.21.5.22 +0.21.5.25 +0.21.6 +0.21.6.10.1 +0.21.6.30 +0.21.7 +0.21.7.24 +0.21.8 +0.21.8.0 +0.21.8a +0.21.8b +0.21.9 +0.21.9.15 +0.21_247 +0.21_247.1 +0.21_8 +0.21b0 +0.22 +0.22.0 +0.22.0a1 +0.22.1 +0.22.10 +0.22.10.20 +0.22.10.4.4 +0.22.11 +0.22.11.4.0 +0.22.12 +0.22.13 +0.22.14 +0.22.15 +0.22.2 +0.22.2.post1 +0.22.3 +0.22.4 +0.22.4.16 +0.22.5 +0.22.6 +0.22.7 +0.22.8 +0.22.8.21.16 +0.22.8.27 +0.22.9 +0.223 +0.22_1 +0.22_11 +0.22_8 +0.22b0 +0.23 +0.23.0 +0.23.1 +0.23.10 +0.23.11 +0.23.12 +0.23.13 +0.23.14 +0.23.15 +0.23.16 +0.23.17 +0.23.18 +0.23.18.1 +0.23.19 +0.23.195983 +0.23.2 +0.23.2.13.2 +0.23.20 +0.23.21 +0.23.22 +0.23.23 +0.23.24 +0.23.25 +0.23.26 +0.23.27 +0.23.28 +0.23.29 +0.23.3 +0.23.30 +0.23.31 +0.23.32 +0.23.33 +0.23.34 +0.23.35 +0.23.37 +0.23.38 +0.23.39 +0.23.4 +0.23.40 +0.23.5 +0.23.6 +0.23.7 +0.23.8 +0.23.9 +0.2304 +0.236 +0.238 +0.239 +0.23_0 +0.23_1 +0.23_4 +0.23_42 +0.23_5 +0.23_6 +0.23b0 +0.23b2 +0.24 +0.24.0 +0.24.0.post1 +0.24.0.post2 +0.24.1 +0.24.10 +0.24.11 +0.24.12 +0.24.13 +0.24.14 +0.24.15 +0.24.16 +0.24.17 +0.24.19 +0.24.2 +0.24.20 +0.24.201332 +0.24.208024 +0.24.21 +0.24.210930 +0.24.3 +0.24.4 +0.24.5 +0.24.6 +0.24.7 +0.24.8 +0.24.9 +0.240 +0.241 +0.24b0 +0.25 +0.25.0 +0.25.1 +0.25.1.1 +0.25.10 +0.25.11 +0.25.2 +0.25.218240 +0.25.222597 +0.25.228311 +0.25.25 +0.25.3 +0.25.36 +0.25.37 +0.25.39 +0.25.4 +0.25.40 +0.25.5 +0.25.6 +0.25.7 +0.25.8 +0.25.9 +0.25_1 +0.25b0 +0.25b1 +0.25b2 +0.26 +0.26.0 +0.26.1 +0.26.10 +0.26.11 +0.26.12 +0.26.2 +0.26.232864 +0.26.233415 +0.26.3 +0.26.4 +0.26.5 +0.26.6 +0.26.7 +0.2614 +0.2620 +0.2621 +0.2622 +0.2623 +0.2624 +0.26_0 +0.26b1 +0.27 +0.27.0 +0.27.0.post1 +0.27.1 +0.27.10 +0.27.11 +0.27.12 +0.27.13 +0.27.14 +0.27.15 +0.27.16 +0.27.2 +0.27.236950 +0.27.238334 +0.27.244707 +0.27.253010 +0.27.258160 +0.27.3 +0.27.4 +0.27.5 +0.27.6 +0.27.7 +0.27.8 +0.27.9 +0.27_2 +0.27b0 +0.28 +0.28.0 +0.28.1 +0.28.10 +0.28.11 +0.28.12 +0.28.13 +0.28.14 +0.28.15 +0.28.16 +0.28.18 +0.28.19 +0.28.2 +0.28.20 +0.28.21 +0.28.22 +0.28.23 +0.28.24 +0.28.3 +0.28.4 +0.28.5 +0.28.6 +0.28.7 +0.28.8 +0.28.9 +0.2800 +0.280230 +0.282.0 +0.283.0 +0.284.0 +0.285.0 +0.285.1 +0.286 +0.286.1 +0.287 +0.287.0 +0.288 +0.288.0 +0.289 +0.289.1 +0.28_0 +0.28_1 +0.28b0 +0.28b1 +0.29 +0.29.0 +0.29.0.gfm.2 +0.29.0.gfm.3 +0.29.0.gfm.4 +0.29.0.gfm.6 +0.29.0.gfm.7 +0.29.0.gfm.8 +0.29.1 +0.29.10 +0.29.11 +0.29.12 +0.29.13 +0.29.14 +0.29.15 +0.29.16 +0.29.17 +0.29.18 +0.29.19 +0.29.2 +0.29.20 +0.29.21 +0.29.22 +0.29.23 +0.29.24 +0.29.25 +0.29.26 +0.29.27 +0.29.28 +0.29.29 +0.29.3 +0.29.30 +0.29.31 +0.29.32 +0.29.33 +0.29.34 +0.29.35 +0.29.4 +0.29.5 +0.29.6 +0.29.7 +0.29.8 +0.29.9 +0.290 +0.290.1 +0.291.1 +0.292 +0.292.0 +0.293 +0.293.0 +0.294 +0.294.0 +0.295.1 +0.296.0 +0.297 +0.297.1 +0.298.1 +0.299.0 +0.29b0 +0.29b1 +0.2_0 +0.2_1 +0.2_10 +0.2_11 +0.2_12 +0.2_13 +0.2_14 +0.2_15 +0.2_16 +0.2_17 +0.2_18 +0.2_19 +0.2_2 +0.2_21 +0.2_22 +0.2_23 +0.2_3 +0.2_357 +0.2_3571 +0.2_4 +0.2_5 +0.2_5.2 +0.2_6 +0.2_6.1 +0.2_7 +0.2_7.1 +0.2_8 +0.2_9 +0.2a1.dev0 +0.2a20201028 +0.2b1.dev0 +0.2rc0 +0.2rc1 +0.2rc1.dev0 +0.2rc2 +0.2rc3 +0.3 +0.3.0 +0.3.0.0 +0.3.0.1 +0.3.0.2 +0.3.0.3 +0.3.0.dev0 +0.3.0.post +0.3.0.post0 +0.3.0.post1 +0.3.0.post3 +0.3.0a +0.3.0a0 +0.3.0a1 +0.3.0a22 +0.3.0b0 +0.3.0dev +0.3.0post0 +0.3.0rc0 +0.3.0rc1 +0.3.0rc2 +0.3.1 +0.3.1.1 +0.3.1.2 +0.3.1.3 +0.3.1.4 +0.3.1.post1 +0.3.1.post2 +0.3.10 +0.3.10.0 +0.3.10.post1 +0.3.10.post2 +0.3.10.post3 +0.3.10.post4 +0.3.10.post5 +0.3.10.post6 +0.3.10.post7 +0.3.11 +0.3.11.0 +0.3.11.post1 +0.3.11.post2 +0.3.11.post3 +0.3.111 +0.3.112 +0.3.113 +0.3.12 +0.3.12.0 +0.3.12.1 +0.3.12.2 +0.3.12.post0 +0.3.13 +0.3.13.0 +0.3.1348 +0.3.14 +0.3.14.0 +0.3.14.post1 +0.3.14.post2 +0.3.14.post3 +0.3.14.post4 +0.3.14b +0.3.15 +0.3.15.1 +0.3.15.2 +0.3.16 +0.3.16.0 +0.3.17 +0.3.18 +0.3.19 +0.3.1_1 +0.3.1a +0.3.2 +0.3.2.0 +0.3.2.1 +0.3.2.2 +0.3.2.9.1 +0.3.2.post0 +0.3.2.post1 +0.3.2.post2 +0.3.2.post3 +0.3.20 +0.3.21 +0.3.22 +0.3.23 +0.3.24 +0.3.25 +0.3.26 +0.3.27 +0.3.28 +0.3.28.860c495 +0.3.29 +0.3.2_1 +0.3.2_2 +0.3.2b1 +0.3.2rc1 +0.3.3 +0.3.3.0 +0.3.3.1 +0.3.3.2 +0.3.3.4 +0.3.3.4.0 +0.3.3.5.0 +0.3.3.7.0 +0.3.3.9.1 +0.3.3.9.2 +0.3.3.9.3 +0.3.3.dev0 +0.3.3.dev1 +0.3.3.post0 +0.3.3.post1 +0.3.3.post2 +0.3.3.post3 +0.3.3.post4 +0.3.3.post5 +0.3.3.post6 +0.3.3.post7 +0.3.30 +0.3.31 +0.3.32 +0.3.33 +0.3.34 +0.3.35 +0.3.36 +0.3.37 +0.3.38 +0.3.39 +0.3.3rc1 +0.3.4 +0.3.4.0 +0.3.4.0.1 +0.3.4.0.2 +0.3.4.0.2.6 +0.3.4.0.3 +0.3.4.0.4 +0.3.4.0.5 +0.3.4.0.6 +0.3.4.1 +0.3.4.1.1 +0.3.4.2 +0.3.4.3 +0.3.4.5 +0.3.4.7 +0.3.4.8 +0.3.4.9 +0.3.4.post0 +0.3.4.post1 +0.3.4.post2 +0.3.40 +0.3.41 +0.3.42 +0.3.43 +0.3.44 +0.3.45 +0.3.46 +0.3.47 +0.3.48 +0.3.49 +0.3.4_1 +0.3.4a7 +0.3.5 +0.3.5.0 +0.3.5.0.1 +0.3.5.0.2 +0.3.5.1 +0.3.5.3 +0.3.5.post1 +0.3.50 +0.3.51 +0.3.54 +0.3.543 +0.3.55 +0.3.56 +0.3.57 +0.3.58 +0.3.59 +0.3.5_1 +0.3.5a +0.3.6 +0.3.6.0 +0.3.6.1 +0.3.6.1.1 +0.3.6.1.2 +0.3.6.2 +0.3.6.2.1 +0.3.6.3 +0.3.6.4 +0.3.6.4.1 +0.3.6.post2 +0.3.60 +0.3.61 +0.3.63 +0.3.65 +0.3.68 +0.3.69 +0.3.6_1 +0.3.7 +0.3.7.0 +0.3.7.1 +0.3.7.2 +0.3.8 +0.3.8.1 +0.3.8.2 +0.3.8.3 +0.3.8.4 +0.3.8_1 +0.3.9 +0.3.9.0 +0.3.95 +0.3.dev16 +0.3.dev2130 +0.3.dev2147 +0.3.dev2199 +0.3.dev2206 +0.3.dev2227 +0.3.dev2231 +0.3.post +0.3.post2 +0.3.post4 +0.3.pre +0.3.rc5 +0.30 +0.30.0 +0.30.1 +0.30.10 +0.30.11 +0.30.12 +0.30.13 +0.30.14 +0.30.2 +0.30.3 +0.30.4 +0.30.5 +0.30.6 +0.30.7 +0.30.8 +0.30.9 +0.300 +0.300.1 +0.301 +0.301.1 +0.302 +0.302.1 +0.303.1 +0.304 +0.304.1 +0.305 +0.305.0 +0.306 +0.306.0 +0.307.0 +0.308.0 +0.309.0 +0.30b0 +0.30b1 +0.31 +0.31.0 +0.31.1 +0.31.10 +0.31.11 +0.31.12 +0.31.2 +0.31.3 +0.31.4 +0.31.5 +0.31.6 +0.31.7 +0.31.8 +0.31.9 +0.310.0 +0.311.0 +0.312.0 +0.313.0 +0.314 +0.314.0 +0.315.0 +0.316.0 +0.317.0 +0.318.0 +0.318.1 +0.319.0 +0.319.2 +0.31b0 +0.32 +0.32.0 +0.32.1 +0.32.12 +0.32.14 +0.32.16 +0.32.2 +0.32.21 +0.32.3 +0.32.4 +0.32.5 +0.32.6 +0.32.7 +0.32.8 +0.320.0 +0.321.0 +0.321.1 +0.322.0 +0.322.1 +0.323.0 +0.324.1 +0.325.1 +0.326.1 +0.327 +0.327.1 +0.328 +0.328.0 +0.329 +0.329.0 +0.32b0 +0.33 +0.33.0 +0.33.0rc1 +0.33.1 +0.33.10 +0.33.11 +0.33.12 +0.33.2 +0.33.3 +0.33.4 +0.33.5 +0.33.6 +0.33.7 +0.33.8 +0.33.9 +0.330 +0.330.0 +0.331 +0.331.0 +0.332 +0.33b0 +0.34 +0.34.0 +0.34.0rc1 +0.34.0rc2 +0.34.1 +0.34.10 +0.34.11 +0.34.12 +0.34.2 +0.34.3 +0.34.4 +0.34.5 +0.34.6 +0.34.7 +0.34.8 +0.34.9 +0.35 +0.35.0 +0.35.1 +0.35.10 +0.35.11 +0.35.12 +0.35.13 +0.35.14 +0.35.16 +0.35.17 +0.35.18 +0.35.19 +0.35.2 +0.35.20 +0.35.3 +0.35.4 +0.35.5 +0.35.6 +0.35.7 +0.35.8 +0.35.9 +0.36 +0.36.0 +0.36.1 +0.36.10 +0.36.11 +0.36.12 +0.36.13 +0.36.2 +0.36.3 +0.36.4 +0.36.5 +0.36.6 +0.36.7 +0.36.8 +0.36.9 +0.36b0 +0.37 +0.37.0 +0.37.1 +0.37.2 +0.37.3 +0.37.4 +0.37.5 +0.37.6 +0.37.7 +0.37.8 +0.37.9 +0.37a +0.37b0 +0.38 +0.38.0 +0.38.1 +0.38.1.post1 +0.38.10 +0.38.11 +0.38.12 +0.38.196 +0.38.2 +0.38.3 +0.38.4 +0.38.5 +0.38.6 +0.38.7 +0.38.8 +0.38.9 +0.39 +0.39.0 +0.39.1 +0.39.10 +0.39.11 +0.39.12 +0.39.13 +0.39.2 +0.39.3 +0.39.4 +0.39.5 +0.39.6 +0.39.7 +0.39.8 +0.39.9 +0.3_0 +0.3_0.1 +0.3_1 +0.3_14 +0.3_16 +0.3_17 +0.3_18 +0.3_19 +0.3_2 +0.3_2.1 +0.3_2.2 +0.3_2.3 +0.3_20 +0.3_21 +0.3_3 +0.3_3.1 +0.3_4 +0.3_40 +0.3_41 +0.3_42 +0.3_43 +0.3_48 +0.3_5 +0.3_5.1 +0.3_54 +0.3_56 +0.3_57 +0.3_58 +0.3_59 +0.3_6 +0.3_60 +0.3_61 +0.3_62 +0.3_63 +0.3_64 +0.3_7 +0.3_8 +0.3_81 +0.3_819 +0.3_8196 +0.3_9 +0.3a1 +0.3dev +0.3rc1 +0.4 +0.4.0 +0.4.0.0 +0.4.0.1 +0.4.0.7 +0.4.0.dev3 +0.4.0.post +0.4.0.post0 +0.4.0.post1 +0.4.0.post2 +0.4.0.post3 +0.4.00 +0.4.0a +0.4.0a1 +0.4.0a4 +0.4.0a5 +0.4.0b1 +0.4.0b2 +0.4.0b4 +0.4.0b6 +0.4.0b7 +0.4.0b8 +0.4.0b9 +0.4.0rc0 +0.4.0rc3 +0.4.0rc4 +0.4.1 +0.4.1.1 +0.4.1.dev0 +0.4.1.post0 +0.4.1.post1 +0.4.1.post2 +0.4.1.post3 +0.4.1.post4 +0.4.1.post5 +0.4.1.post6 +0.4.10 +0.4.100 +0.4.101 +0.4.102 +0.4.103 +0.4.104 +0.4.105 +0.4.106 +0.4.107 +0.4.108 +0.4.109 +0.4.11 +0.4.110 +0.4.111 +0.4.112 +0.4.113 +0.4.114 +0.4.115 +0.4.116 +0.4.117 +0.4.118 +0.4.119 +0.4.12 +0.4.120 +0.4.121 +0.4.122 +0.4.123 +0.4.124 +0.4.125 +0.4.126 +0.4.127 +0.4.128 +0.4.129 +0.4.13 +0.4.130 +0.4.131 +0.4.132 +0.4.133 +0.4.14 +0.4.1432 +0.4.1456 +0.4.1475 +0.4.1488 +0.4.15 +0.4.15.1 +0.4.15.2 +0.4.15.3 +0.4.15.4 +0.4.15.5 +0.4.15.6 +0.4.15.7 +0.4.15.8 +0.4.1500 +0.4.1520 +0.4.1525 +0.4.1527 +0.4.1536 +0.4.1545 +0.4.1555 +0.4.16 +0.4.1602 +0.4.1612 +0.4.1620 +0.4.1647b01 +0.4.1650 +0.4.17 +0.4.18 +0.4.19 +0.4.1a1 +0.4.1a4 +0.4.1dev +0.4.2 +0.4.2.1 +0.4.2.2 +0.4.2.3 +0.4.2.5 +0.4.2.post0 +0.4.2.post1 +0.4.2.post2 +0.4.2.post3 +0.4.2.post4 +0.4.2.post5 +0.4.20 +0.4.21 +0.4.22 +0.4.23 +0.4.24 +0.4.25 +0.4.26 +0.4.27 +0.4.28 +0.4.29 +0.4.2_1 +0.4.2a0 +0.4.2a3 +0.4.2b13 +0.4.3 +0.4.3.1 +0.4.3.2 +0.4.3.3 +0.4.3.4 +0.4.3.5 +0.4.3.post0 +0.4.3.post1 +0.4.3.post2 +0.4.3.post3 +0.4.3.post4 +0.4.3.post5 +0.4.30 +0.4.31 +0.4.32 +0.4.33 +0.4.34 +0.4.35 +0.4.38 +0.4.39 +0.4.3a0 +0.4.3a1 +0.4.4 +0.4.4.1 +0.4.4.2 +0.4.4.3 +0.4.4.4 +0.4.4.5 +0.4.4.6 +0.4.4.dev4 +0.4.4.post1 +0.4.40 +0.4.41 +0.4.4_1 +0.4.5 +0.4.5.1 +0.4.5.post0 +0.4.5.post1 +0.4.5.post10 +0.4.5.post11 +0.4.5.post12 +0.4.5.post13 +0.4.5.post16 +0.4.5.post2 +0.4.5.post3 +0.4.5.post4 +0.4.5.post5 +0.4.5.post6 +0.4.5.post7 +0.4.5.post8 +0.4.5.post9 +0.4.51 +0.4.56 +0.4.57 +0.4.58 +0.4.59 +0.4.6 +0.4.6.1 +0.4.6.2 +0.4.6.post0 +0.4.6.post1 +0.4.6.post2 +0.4.6.post3 +0.4.63 +0.4.65 +0.4.66 +0.4.67 +0.4.68 +0.4.7 +0.4.7.1 +0.4.7.2 +0.4.7.4 +0.4.7.post0 +0.4.8 +0.4.8.1 +0.4.8.post1 +0.4.86 +0.4.87 +0.4.88 +0.4.89 +0.4.8_1 +0.4.9 +0.4.9.1 +0.4.9.11 +0.4.9.14 +0.4.9.15 +0.4.9.18 +0.4.9.3 +0.4.90 +0.4.96 +0.4.99 +0.4.9_3 +0.4.dev0 +0.4.p0 +0.4.post1 +0.4.post2 +0.40 +0.40.0 +0.40.1 +0.40.2 +0.40.3 +0.40.4 +0.40.5 +0.40.6 +0.40.dev0 +0.400 +0.401 +0.403 +0.41 +0.41.0 +0.41.1 +0.41.3 +0.41.5 +0.41.6 +0.41.7 +0.41_2 +0.41_24 +0.42 +0.42.0 +0.42.1 +0.42.10 +0.42.11 +0.42.12 +0.42.13 +0.42.14 +0.42.15 +0.42.16 +0.42.18 +0.42.19 +0.42.2 +0.42.3 +0.42.4 +0.42.5 +0.42.6 +0.42.7 +0.42.8 +0.4224 +0.4231 +0.4232 +0.4234 +0.428 +0.43 +0.43.0 +0.43.1 +0.43.2 +0.43.3 +0.430 +0.44 +0.44.0 +0.44.1 +0.44.2 +0.44.3 +0.44.4 +0.44.5 +0.44.6 +0.45 +0.45.0 +0.45.1 +0.45.10 +0.45.11 +0.45.13 +0.45.14 +0.45.15 +0.45.16 +0.45.17 +0.45.18 +0.45.2 +0.45.3 +0.45.4 +0.45.5 +0.45.6 +0.45.7 +0.45.8 +0.45.9 +0.46 +0.46.0 +0.46.1 +0.46.2 +0.46.3 +0.46.4 +0.46.5 +0.46.6 +0.46.7 +0.47 +0.47.0 +0.47.1 +0.47.2 +0.47.3 +0.47.4 +0.47.5 +0.47.6 +0.47_3 +0.47_4 +0.48 +0.48.0 +0.48.1 +0.48.2 +0.48.3 +0.48.4 +0.48.5 +0.48.8 +0.48_3 +0.49 +0.49.0 +0.49.1 +0.49.10 +0.49.11 +0.49.12 +0.49.13 +0.49.14 +0.49.15 +0.49.16 +0.49.17 +0.49.18 +0.49.2 +0.49.3 +0.49.4 +0.49.5 +0.49.6 +0.49.8 +0.49.9 +0.49_1 +0.49_2 +0.4_0 +0.4_0.1 +0.4_1 +0.4_1.2 +0.4_10 +0.4_11 +0.4_11.1 +0.4_11.2 +0.4_12 +0.4_12.1 +0.4_12.2 +0.4_12.3 +0.4_12.4 +0.4_124 +0.4_1245 +0.4_13 +0.4_14 +0.4_14.1 +0.4_15 +0.4_16 +0.4_17 +0.4_18 +0.4_18.1 +0.4_18.2 +0.4_2 +0.4_20 +0.4_22 +0.4_23 +0.4_24 +0.4_25 +0.4_26 +0.4_27 +0.4_3 +0.4_31 +0.4_39 +0.4_4 +0.4_40 +0.4_41 +0.4_43 +0.4_44 +0.4_45 +0.4_5 +0.4_6 +0.4_7 +0.4_8 +0.4_8.6 +0.4_9 +0.4_93 +0.4_94 +0.4_94.1 +0.4_95 +0.4a1 +0.4a2 +0.4b2 +0.4rc1 +0.5 +0.5.0 +0.5.0.0 +0.5.0.1 +0.5.0.2 +0.5.0.5 +0.5.0.post0 +0.5.0.post1 +0.5.0.pre +0.5.0a +0.5.0b3 +0.5.0rc0 +0.5.0rc1 +0.5.0rc2 +0.5.1 +0.5.1.0 +0.5.1.1 +0.5.1.post0 +0.5.1.post1 +0.5.10 +0.5.10.1 +0.5.10.2 +0.5.10.3 +0.5.10.4 +0.5.10.5 +0.5.10.6 +0.5.10.7 +0.5.11 +0.5.12 +0.5.12.1 +0.5.13 +0.5.1360 +0.5.14 +0.5.1447 +0.5.15 +0.5.16 +0.5.17 +0.5.18 +0.5.19 +0.5.19_1 +0.5.19b0 +0.5.1_2 +0.5.1dev +0.5.2 +0.5.2.1 +0.5.2.dev1 +0.5.2.post0 +0.5.2.post1 +0.5.20 +0.5.20140801 +0.5.20191212 +0.5.20200222 +0.5.21 +0.5.21.1 +0.5.21.3 +0.5.22 +0.5.23 +0.5.23.1 +0.5.24 +0.5.24.1 +0.5.24.4 +0.5.25 +0.5.26 +0.5.27 +0.5.28 +0.5.28.1 +0.5.29 +0.5.29.1 +0.5.29.2 +0.5.29.3 +0.5.29.4 +0.5.29.5 +0.5.2b +0.5.3 +0.5.3+git20220429 +0.5.3.2 +0.5.3.post1 +0.5.3.post2 +0.5.30 +0.5.31 +0.5.32 +0.5.32.1 +0.5.32.2 +0.5.32.3 +0.5.32.4 +0.5.32.5 +0.5.32.7 +0.5.32.8 +0.5.33 +0.5.34 +0.5.35 +0.5.36 +0.5.37 +0.5.38 +0.5.39 +0.5.3dev +0.5.4 +0.5.4.1 +0.5.4.post1 +0.5.40 +0.5.41 +0.5.42 +0.5.43 +0.5.44 +0.5.45 +0.5.46 +0.5.47 +0.5.48 +0.5.49 +0.5.5 +0.5.5.2 +0.5.50 +0.5.51 +0.5.52 +0.5.53 +0.5.54 +0.5.56 +0.5.57 +0.5.6 +0.5.6.1 +0.5.61 +0.5.62 +0.5.7 +0.5.8 +0.5.9 +0.5.9.1 +0.5.9.2 +0.5.9.4 +0.5.9.5 +0.5.p0 +0.5.post1 +0.50 +0.50.0 +0.50.1 +0.50.10 +0.50.11 +0.50.12 +0.50.13 +0.50.14 +0.50.16 +0.50.17 +0.50.2 +0.50.20 +0.50.21 +0.50.22 +0.50.23 +0.50.3 +0.50.4 +0.50.5 +0.50.6 +0.50.7 +0.50.8 +0.500 +0.5001 +0.501 +0.50_1 +0.51 +0.51.0 +0.51.1 +0.51.2 +0.51.4 +0.51.5 +0.51_1 +0.51_2 +0.51_3 +0.52 +0.52.0 +0.52.1 +0.52.2 +0.52.20 +0.52.21 +0.52.23 +0.52.9 +0.53 +0.53.0 +0.53.1 +0.53.2 +0.53.3 +0.54 +0.54.0 +0.54.1 +0.54.2 +0.54.3 +0.55 +0.55.0 +0.55.1 +0.55.2 +0.55.3 +0.55.4 +0.550 +0.56 +0.56.0 +0.56.1 +0.56.2 +0.56.3 +0.56.4 +0.560 +0.57 +0.57.0 +0.57.1 +0.57.2 +0.57.3 +0.570 +0.58 +0.58.0 +0.58.1 +0.58.2 +0.58.3 +0.58.4 +0.58.5 +0.59 +0.59.0 +0.59.0b0 +0.59.1 +0.59.2 +0.59.3 +0.59.4 +0.59.7 +0.59.8 +0.590 +0.5_0 +0.5_0.0 +0.5_0.1 +0.5_0.2 +0.5_1 +0.5_10 +0.5_10.1 +0.5_11 +0.5_13.1 +0.5_13.2 +0.5_13.4 +0.5_13.5 +0.5_13.6 +0.5_14 +0.5_2 +0.5_2.1 +0.5_23.1097 +0.5_3 +0.5_3.0 +0.5_4 +0.5_4.1 +0.5_4.2 +0.5_4.3 +0.5_4.4 +0.5_5 +0.5_6 +0.5_7 +0.5_8 +0.5_9 +0.5rc1 +0.6 +0.6.0 +0.6.0.0 +0.6.0.1 +0.6.0.2 +0.6.0.3 +0.6.0.4 +0.6.0.5 +0.6.0.6 +0.6.0.7 +0.6.0.8 +0.6.0.post0 +0.6.0.post1 +0.6.0.post2 +0.6.0.post20220126 +0.6.0.post3 +0.6.0.post4 +0.6.0a +0.6.0a1 +0.6.0a4 +0.6.0a6 +0.6.0a8 +0.6.0b3 +0.6.0rc0 +0.6.0rc1 +0.6.1 +0.6.1.0 +0.6.1.1 +0.6.1.1.3 +0.6.1.2 +0.6.1.3 +0.6.10 +0.6.10.0 +0.6.10.1 +0.6.10.2 +0.6.10.3 +0.6.10.4 +0.6.10.5 +0.6.11 +0.6.11.1 +0.6.11.2 +0.6.11.3 +0.6.11.4 +0.6.11.5 +0.6.11.6 +0.6.12 +0.6.12.0 +0.6.12.1 +0.6.12.2 +0.6.12.3 +0.6.12.4 +0.6.13 +0.6.13.0 +0.6.13.1 +0.6.13.2 +0.6.13.3 +0.6.14 +0.6.14.1 +0.6.14.2 +0.6.14.4 +0.6.14.6 +0.6.14.7 +0.6.14a1 +0.6.15 +0.6.15.1 +0.6.15.3 +0.6.16 +0.6.16.1 +0.6.16.2 +0.6.16.3 +0.6.16.4 +0.6.17 +0.6.17.3 +0.6.17.4 +0.6.17.6 +0.6.17.7 +0.6.18 +0.6.18.1 +0.6.18.2 +0.6.18.6 +0.6.19 +0.6.19.1 +0.6.19.3 +0.6.19.4 +0.6.19.5 +0.6.19.6 +0.6.19.7 +0.6.1a +0.6.1a1 +0.6.1rc0 +0.6.1rc1 +0.6.2 +0.6.2.1 +0.6.2.1.0 +0.6.2.1.1 +0.6.2.1.2 +0.6.2.1.3 +0.6.2.2 +0.6.2.3 +0.6.2.5 +0.6.2.post0 +0.6.20 +0.6.21 +0.6.22 +0.6.22.post1 +0.6.23 +0.6.24 +0.6.25 +0.6.26 +0.6.27 +0.6.28 +0.6.29 +0.6.2a +0.6.3 +0.6.3.1 +0.6.3.1.0 +0.6.3.1.1 +0.6.30 +0.6.31 +0.6.32 +0.6.33 +0.6.34 +0.6.35 +0.6.36 +0.6.37 +0.6.38 +0.6.39 +0.6.3a +0.6.4 +0.6.4.1 +0.6.4.2 +0.6.40 +0.6.42 +0.6.43 +0.6.44 +0.6.45 +0.6.46 +0.6.47 +0.6.48 +0.6.49 +0.6.4b1 +0.6.4b2 +0.6.5 +0.6.50 +0.6.51 +0.6.52 +0.6.53 +0.6.54 +0.6.55 +0.6.56 +0.6.57 +0.6.58 +0.6.59 +0.6.5a0 +0.6.5a1 +0.6.5a2 +0.6.5a3 +0.6.5a4 +0.6.6 +0.6.6.a0 +0.6.6.post1 +0.6.61 +0.6.64 +0.6.7 +0.6.7.2 +0.6.7.post0 +0.6.7.post2 +0.6.70 +0.6.71 +0.6.72 +0.6.73 +0.6.74 +0.6.75 +0.6.76 +0.6.77 +0.6.78 +0.6.79 +0.6.7_1 +0.6.8 +0.6.8.1 +0.6.8.2 +0.6.8.3 +0.6.8.4 +0.6.80 +0.6.9 +0.6.9.0 +0.6.9.1 +0.6.9.12 +0.6.9.14 +0.6.9.16 +0.6.9.2 +0.6.9.3 +0.6.9.4 +0.6.9.6 +0.6.94 +0.6.pre +0.60 +0.60.0 +0.60.0b0 +0.60.1 +0.60.1b0 +0.60.2 +0.60.3 +0.60.4 +0.60.6 +0.60.7 +0.60.8 +0.600 +0.60_10 +0.60_11 +0.60_13 +0.60_14 +0.60_15 +0.60_16 +0.60_17 +0.61 +0.61.0 +0.61.0b0 +0.61.1 +0.61.1b0 +0.61.2 +0.61.3 +0.61.4 +0.61.5 +0.610 +0.62 +0.62.0 +0.62.0b0 +0.62.1 +0.62.1b0 +0.62.2 +0.620 +0.625 +0.63 +0.63.0 +0.63.0b0 +0.63.1 +0.63.2 +0.63.3 +0.63.4 +0.630 +0.64 +0.64.0 +0.64.0b0 +0.64.1 +0.64.2 +0.641 +0.65 +0.65.0 +0.65.0b0 +0.65.1 +0.65.2 +0.65.3 +0.650 +0.66 +0.66.0 +0.66.0b0 +0.66.1 +0.66.10 +0.66.11 +0.66.1b0 +0.66.2 +0.66.3 +0.66.4 +0.66.5 +0.66.6 +0.66.7 +0.66.8 +0.66.9 +0.660 +0.67 +0.67.0 +0.67.0b0 +0.67.1 +0.67.2b0 +0.670 +0.68 +0.68.0 +0.68.1 +0.68.2 +0.69 +0.69.0 +0.69.1 +0.69.6 +0.69.8 +0.6_0 +0.6_1 +0.6_10 +0.6_11 +0.6_12 +0.6_13 +0.6_14 +0.6_15 +0.6_2 +0.6_2.1 +0.6_2.2 +0.6_2.3 +0.6_22 +0.6_26 +0.6_28 +0.6_29 +0.6_3 +0.6_3.3 +0.6_3.4 +0.6_30 +0.6_4 +0.6_5 +0.6_6 +0.6_7 +0.6_70 +0.6_8 +0.6_9 +0.6_9.1 +0.6_9.2 +0.6_99 +0.6a2 +0.6rc1 +0.7 +0.7.0 +0.7.0.0 +0.7.0.5 +0.7.0.7 +0.7.0.post4 +0.7.0.pre +0.7.0a +0.7.0a4 +0.7.0a5 +0.7.0a6 +0.7.0b0 +0.7.0rc0 +0.7.0rc1 +0.7.1 +0.7.1.0 +0.7.1.1 +0.7.1.post2 +0.7.1.post3 +0.7.1.post4 +0.7.1.post6 +0.7.1.post7 +0.7.10 +0.7.11 +0.7.11.post0 +0.7.12 +0.7.13 +0.7.14 +0.7.15 +0.7.16 +0.7.17 +0.7.17.dev1 +0.7.18 +0.7.19 +0.7.1_1 +0.7.1a +0.7.2 +0.7.2.0 +0.7.2.1 +0.7.2.2 +0.7.20 +0.7.20170805 +0.7.21 +0.7.22 +0.7.23 +0.7.24 +0.7.25 +0.7.26 +0.7.27 +0.7.28 +0.7.29 +0.7.3 +0.7.3.1 +0.7.3.2 +0.7.30 +0.7.31 +0.7.35 +0.7.36 +0.7.37 +0.7.39 +0.7.3b0 +0.7.4 +0.7.4.1 +0.7.4.2 +0.7.4.3 +0.7.4.4 +0.7.40 +0.7.41 +0.7.42 +0.7.43 +0.7.44 +0.7.45 +0.7.46 +0.7.47 +0.7.48 +0.7.49 +0.7.5 +0.7.5.2 +0.7.5.3 +0.7.5.4 +0.7.51 +0.7.52 +0.7.53 +0.7.54 +0.7.55 +0.7.56 +0.7.57 +0.7.58 +0.7.59 +0.7.6 +0.7.6.1 +0.7.60 +0.7.61 +0.7.63 +0.7.64 +0.7.66 +0.7.7 +0.7.7.1 +0.7.71 +0.7.72 +0.7.74 +0.7.8 +0.7.800.2.0 +0.7.9 +0.7.90 +0.7.post3 +0.7.post4 +0.70 +0.70.0 +0.70.1 +0.70.10 +0.70.11 +0.70.11.1 +0.70.12.1 +0.70.12.2 +0.70.13 +0.70.14 +0.70.2 +0.70.3 +0.70.4 +0.70.5 +0.70.6 +0.70.6.1 +0.70.7 +0.70.8 +0.70.9 +0.700 +0.701 +0.71 +0.71.0 +0.71.1 +0.710 +0.711 +0.72 +0.72.0 +0.72.1 +0.72.10 +0.72.2 +0.72.3 +0.72.4 +0.72.5 +0.72.6 +0.72.7 +0.72.8 +0.720 +0.722 +0.73 +0.73.0 +0.73.0.debian_1.sage_2016_08_02 +0.73.1 +0.73.2 +0.73.3 +0.73.4 +0.73.debian_1.sage_2016_08_02 +0.730 +0.74 +0.74.0 +0.74.1 +0.74.10 +0.74.11 +0.74.2 +0.74.3 +0.74.4 +0.74.5 +0.74.6 +0.74.7 +0.74.8 +0.74.9 +0.740 +0.75 +0.75.0 +0.75.1 +0.75.2 +0.75.3 +0.750 +0.75_7 +0.76 +0.76.0 +0.76.1 +0.761 +0.76_0 +0.77 +0.77.0 +0.77.1 +0.77.2 +0.77.3 +0.770 +0.78 +0.78.0 +0.78.1 +0.78.5 +0.780 +0.7807 +0.781 +0.7811 +0.782 +0.79 +0.79.0 +0.79.1 +0.790 +0.7905 +0.7_0 +0.7_1 +0.7_10 +0.7_103 +0.7_11 +0.7_12 +0.7_2 +0.7_25 +0.7_3 +0.7_4 +0.7_47 +0.7_5 +0.7_6 +0.7_7 +0.7_70 +0.7_8 +0.7_80 +0.7_9 +0.7_90 +0.7dev +0.7rc1 +0.8 +0.8.0 +0.8.0.0 +0.8.0.1 +0.8.0.3 +0.8.03 +0.8.0a +0.8.0a2 +0.8.0b4 +0.8.0dev +0.8.0rc +0.8.0rc2 +0.8.0rc3 +0.8.0rc4 +0.8.1 +0.8.1.0 +0.8.1.1 +0.8.1.2 +0.8.1.4 +0.8.1.5 +0.8.1.post1 +0.8.10 +0.8.11 +0.8.12 +0.8.13 +0.8.13b +0.8.14 +0.8.15 +0.8.16 +0.8.17 +0.8.18 +0.8.19 +0.8.2 +0.8.2.0 +0.8.2.1 +0.8.2.post0 +0.8.20 +0.8.21 +0.8.21.post7 +0.8.22 +0.8.23 +0.8.2337 +0.8.24 +0.8.25 +0.8.26 +0.8.27 +0.8.28 +0.8.29 +0.8.3 +0.8.3.1 +0.8.3.2 +0.8.3.post1 +0.8.30 +0.8.31 +0.8.32 +0.8.33 +0.8.34 +0.8.35 +0.8.36 +0.8.37 +0.8.38 +0.8.39 +0.8.4 +0.8.4.1 +0.8.4.2 +0.8.4.3 +0.8.4.4 +0.8.4.5 +0.8.4.6 +0.8.4.post0 +0.8.40 +0.8.5 +0.8.5.2 +0.8.5.3 +0.8.5.4 +0.8.5.5 +0.8.5.6 +0.8.5.7 +0.8.500.0 +0.8.5_2 +0.8.5_3 +0.8.5_4 +0.8.5prealpha +0.8.6 +0.8.6.2 +0.8.7 +0.8.8 +0.8.8.1 +0.8.9 +0.8.95 +0.8.95.1 +0.8.95.2 +0.8.95.3 +0.8.95.4 +0.8.95.5 +0.8.post1 +0.8.rc1 +0.80 +0.80.0 +0.800 +0.8000 +0.8001 +0.806 +0.807 +0.808 +0.81 +0.81.0 +0.81.1 +0.81.3 +0.812 +0.82 +0.82.0 +0.82.1 +0.82.10 +0.82.2 +0.82.3 +0.82.4 +0.82.5 +0.82.6 +0.82.7 +0.82.8 +0.82.9 +0.83 +0.83.0 +0.84 +0.84.0 +0.84.1 +0.84.2 +0.85 +0.85.0 +0.85.1 +0.85.2 +0.86 +0.86.0 +0.86.2 +0.86.4 +0.86.5 +0.87 +0.87.0 +0.88 +0.88.0 +0.89 +0.89.0 +0.89.1 +0.8_0 +0.8_1 +0.8_104 +0.8_14 +0.8_16 +0.8_18 +0.8_19 +0.8_2 +0.8_29 +0.8_3 +0.8_30 +0.8_31 +0.8_32 +0.8_34 +0.8_35 +0.8_4 +0.8_5 +0.8_6 +0.8_67 +0.8_7 +0.8_71 +0.8_72 +0.8_73 +0.8_74 +0.8_75 +0.8_76 +0.8_79 +0.8_8 +0.8_80 +0.8_81 +0.8_82 +0.8_83 +0.8_84 +0.8_9 +0.8rc1 +0.9 +0.9.0 +0.9.0.0 +0.9.0.1 +0.9.0.post0 +0.9.0.post1 +0.9.0.post4 +0.9.0a +0.9.0b5 +0.9.1 +0.9.1.0 +0.9.1.1 +0.9.1.post0 +0.9.1.post1 +0.9.10 +0.9.10.0 +0.9.10.1 +0.9.10.2 +0.9.10.3 +0.9.100 +0.9.100.5.0 +0.9.11 +0.9.12 +0.9.12.post1 +0.9.12_2 +0.9.12_4.2 +0.9.12_4.3 +0.9.12_4.4 +0.9.13 +0.9.13.1 +0.9.13.4 +0.9.13.5 +0.9.14 +0.9.14.0 +0.9.15 +0.9.16 +0.9.16.post1 +0.9.16.post2 +0.9.16.post3 +0.9.17 +0.9.17.post1 +0.9.18 +0.9.18_1 +0.9.19 +0.9.1_4 +0.9.1_5 +0.9.1_8 +0.9.1_9 +0.9.1b5 +0.9.1post0 +0.9.2 +0.9.2.0 +0.9.2.1 +0.9.2.dev2 +0.9.20 +0.9.200.7.0 +0.9.20000 +0.9.2015 +0.9.21 +0.9.22 +0.9.23 +0.9.24 +0.9.25 +0.9.26 +0.9.27 +0.9.28 +0.9.29 +0.9.2_0 +0.9.2_1 +0.9.2_2 +0.9.2b5 +0.9.3 +0.9.3.0 +0.9.3.1 +0.9.3.2543 +0.9.3.2600 +0.9.3.post0 +0.9.3.post1 +0.9.3.post2 +0.9.30 +0.9.300.2.0 +0.9.31 +0.9.32 +0.9.33 +0.9.34 +0.9.35 +0.9.36 +0.9.37 +0.9.38 +0.9.39 +0.9.4 +0.9.4.0 +0.9.4.4 +0.9.4.6 +0.9.4.post0 +0.9.4.post1 +0.9.40 +0.9.400.2.0 +0.9.41 +0.9.42 +0.9.43 +0.9.44 +0.9.45 +0.9.46 +0.9.47 +0.9.48 +0.9.49 +0.9.4b5 +0.9.5 +0.9.5.1 +0.9.5.2 +0.9.5.3 +0.9.5.5 +0.9.5.6 +0.9.5.7 +0.9.50 +0.9.500.2.0 +0.9.51 +0.9.52 +0.9.53 +0.9.54 +0.9.55 +0.9.56 +0.9.57 +0.9.58 +0.9.59 +0.9.5_1 +0.9.5b6 +0.9.6 +0.9.6.1 +0.9.6.1.post1 +0.9.6.2 +0.9.6.3 +0.9.6.4 +0.9.6.5 +0.9.60 +0.9.61 +0.9.62 +0.9.63 +0.9.64 +0.9.65 +0.9.66 +0.9.67 +0.9.68 +0.9.69 +0.9.6b7 +0.9.7 +0.9.7.1 +0.9.7.2 +0.9.7.3 +0.9.7.6 +0.9.7.7 +0.9.7.post1 +0.9.7.post6 +0.9.70 +0.9.700.2.0 +0.9.71 +0.9.72 +0.9.73 +0.9.74 +0.9.75 +0.9.76 +0.9.77 +0.9.78 +0.9.79 +0.9.8 +0.9.8.0 +0.9.8.1 +0.9.8.2 +0.9.8.3 +0.9.8.4 +0.9.8.5 +0.9.8.dev57 +0.9.8.post1 +0.9.8.post2 +0.9.80 +0.9.800.1.0 +0.9.800.3.0 +0.9.800.4.0 +0.9.81 +0.9.82 +0.9.83 +0.9.84 +0.9.85 +0.9.850.1.0 +0.9.86 +0.9.860.2.0 +0.9.87 +0.9.870.2.0 +0.9.88 +0.9.880.1.0 +0.9.89 +0.9.9 +0.9.9.0 +0.9.9.1 +0.9.9.2 +0.9.9.3 +0.9.9.4 +0.9.9.7 +0.9.9.8 +0.9.9.9 +0.9.9.92 +0.9.9.dev57 +0.9.9.post1 +0.9.90 +0.9.900.1.0 +0.9.900.2.0 +0.9.900.3.0 +0.9.91 +0.9.92 +0.9.921 +0.9.93 +0.9.94 +0.9.95 +0.9.96 +0.9.97 +0.9.98 +0.9.99 +0.9.dev0 +0.90 +0.90.0 +0.90.1 +0.90.2 +0.90.3 +0.90.7 +0.900 +0.902 +0.91 +0.91.0 +0.91.1 +0.91.3 +0.91.4 +0.910 +0.92 +0.92.0 +0.92.1 +0.92.6 +0.920 +0.928 +0.92_7 +0.93 +0.93.0 +0.93.1 +0.93.2 +0.93.31 +0.93.4 +0.93.41 +0.93.42 +0.93.43 +0.930 +0.931 +0.93_2 +0.93_5 +0.93_6 +0.93_7 +0.93_8 +0.93_9 +0.94 +0.94.0 +0.94.01 +0.94.02 +0.94.04 +0.94.5 +0.94.1 +0.94.11 +0.94.2 +0.94.3 +0.940 +0.941 +0.942 +0.95 +0.95.0 +0.95.01 +0.950 +0.95_0 +0.95_1 +0.96 +0.96.0 +0.96.1 +0.96.2 +0.96.8 +0.960 +0.961 +0.97 +0.97.0 +0.97.1 +0.97.10 +0.97.11 +0.97.2 +0.97.4 +0.97.5 +0.97.7 +0.97.8 +0.97.9 +0.9704 +0.971 +0.9725 +0.98 +0.98.0 +0.98.1 +0.98.10 +0.98.11 +0.98.12 +0.98.13 +0.98.14 +0.98.15 +0.98.16 +0.98.17 +0.98.18 +0.98.19 +0.98.2 +0.98.3 +0.98.4 +0.98.5 +0.98.6 +0.98.7 +0.98.8 +0.98.9 +0.981 +0.982 +0.987 +0.988 +0.989 +0.99 +0.99.0 +0.99.1 +0.99.10 +0.99.11 +0.99.12 +0.99.14 +0.99.15 +0.99.16 +0.99.17 +0.99.18 +0.99.2 +0.99.20 +0.99.24 +0.99.25 +0.99.26 +0.99.27 +0.99.28 +0.99.29 +0.99.3 +0.99.31.3 +0.99.31.6 +0.99.32 +0.99.33 +0.99.34 +0.99.35 +0.99.36 +0.99.37 +0.99.38 +0.99.39 +0.99.4 +0.99.40 +0.99.41 +0.99.42 +0.99.43 +0.99.44 +0.99.45 +0.99.46 +0.99.47 +0.99.48 +0.99.49 +0.99.4a0 +0.99.5 +0.99.55 +0.99.6 +0.99.7 +0.99.8 +0.99.9 +0.99.9901 +0.990 +0.991 +0.9929 +0.996 +0.997004 +0.999 +0.9999.3 +0.9999999 +0.999999999 +0.999_16 +0.999_19 +0.999_19.1 +0.999_2 +0.999_20 +0.999_3 +0.999_4 +0.999_5 +0.999_6 +0.999_7 +0.99_0 +0.99_2 +0.99_3 +0.99b6 +0.9_0 +0.9_04 +0.9_1 +0.9_1.1 +0.9_10 +0.9_106 +0.9_107 +0.9_11 +0.9_12 +0.9_13 +0.9_14 +0.9_15.1 +0.9_16 +0.9_17 +0.9_18 +0.9_19 +0.9_2 +0.9_2.1 +0.9_20 +0.9_21 +0.9_22 +0.9_23 +0.9_25 +0.9_26 +0.9_27 +0.9_29 +0.9_3 +0.9_30 +0.9_31 +0.9_32 +0.9_35 +0.9_36 +0.9_37 +0.9_38 +0.9_39 +0.9_4 +0.9_40 +0.9_5 +0.9_50 +0.9_51 +0.9_52 +0.9_55 +0.9_57 +0.9_6 +0.9_6.1 +0.9_69 +0.9_69_3 +0.9_7 +0.9_7.1 +0.9_70 +0.9_73 +0.9_74 +0.9_75 +0.9_77 +0.9_78 +0.9_79 +0.9_8 +0.9_80 +0.9_81 +0.9_81_2 +0.9_9 +0.9b0 +0.9rc2 +0.9rc3 +0.post0.dev1081 +022 +04Sep15.e78 +09.04.2017 +094h +0_2004.04.21 +1 +1!0.94i +1!0.94j +1!0.94m +1!1.0.0 +1!152.20180717 +1!152.20180806 +1!161.3030 +1!164.3095 +1!2.0.1 +1!2.0.2 +1!2.2.3 +1!3.0.0 +1.0 +1.0.0 +1.0.0.0 +1.0.0.1 +1.0.0.2 +1.0.0.20181017 +1.0.0.3 +1.0.0.b3 +1.0.0.beta.2 +1.0.0.beta.3 +1.0.0.beta.4 +1.0.0.beta.5 +1.0.0.beta1 +1.0.0.dev0 +1.0.0.dev2 +1.0.0.post1 +1.0.0.post2 +1.0.0.post3 +1.0.0.post4 +1.0.007 +1.0.0a0 +1.0.0a1 +1.0.0a2 +1.0.0a23 +1.0.0a3 +1.0.0a4 +1.0.0a5 +1.0.0a6 +1.0.0a9 +1.0.0b +1.0.0b0 +1.0.0b1 +1.0.0b11 +1.0.0b19 +1.0.0b2 +1.0.0b20 +1.0.0b24 +1.0.0b26 +1.0.0b27 +1.0.0b28 +1.0.0b29 +1.0.0b3 +1.0.0b30 +1.0.0b31 +1.0.0b32 +1.0.0b4 +1.0.0b5 +1.0.0b6 +1.0.0b7 +1.0.0b9 +1.0.0beta10 +1.0.0beta11 +1.0.0beta12 +1.0.0beta13 +1.0.0beta14 +1.0.0beta15 +1.0.0beta16 +1.0.0beta17 +1.0.0beta18 +1.0.0beta4 +1.0.0beta5 +1.0.0beta6 +1.0.0beta7 +1.0.0beta8 +1.0.0beta9 +1.0.0rc0 +1.0.0rc1 +1.0.0rc10 +1.0.0rc12 +1.0.0rc2 +1.0.0rc3.post1 +1.0.0rc3.post2 +1.0.0rc4 +1.0.0rc6 +1.0.0rc7 +1.0.0rc8 +1.0.0rc9 +1.0.0rc92 +1.0.0rc93 +1.0.1 +1.0.1.0 +1.0.1.1 +1.0.1.1518 +1.0.1.1597 +1.0.1.2 +1.0.1.20181028 +1.0.1.20181030 +1.0.1.20190102 +1.0.1.20190122 +1.0.1.20190823 +1.0.1.20191029 +1.0.1.3 +1.0.1.4 +1.0.1.5 +1.0.1.9 +1.0.1.beta1 +1.0.1.dev0 +1.0.1.post0 +1.0.10 +1.0.11 +1.0.12 +1.0.13 +1.0.14 +1.0.15 +1.0.157409 +1.0.16 +1.0.1628549850 +1.0.1629029818 +1.0.1650254349 +1.0.1650280980 +1.0.1655855963 +1.0.1655946639 +1.0.17 +1.0.18 +1.0.19 +1.0.19.1 +1.0.19.2 +1.0.19.3 +1.0.19.4 +1.0.19.5 +1.0.1_2 +1.0.1b0 +1.0.2 +1.0.2.0 +1.0.2.1 +1.0.2.2 +1.0.2.3 +1.0.2.dev0 +1.0.2.g +1.0.2.post1 +1.0.2.post2 +1.0.20 +1.0.20.10 +1.0.20171215 +1.0.20180209171722 +1.0.20180225105849 +1.0.20180601100346 +1.0.20180622 +1.0.20181114 +1.0.20181201184214 +1.0.20181217162649 +1.0.20190228134645 +1.0.20190228155703 +1.0.20190410 +1.0.20190720 +1.0.20190902 +1.0.20190906054215 +1.0.20190906212748 +1.0.20190915164430 +1.0.20191022103248 +1.0.20191225192155 +1.0.20201102 +1.0.20201224 +1.0.20210317 +1.0.20211006 +1.0.2021_05_05 +1.0.20220720 +1.0.20230411 +1.0.21 +1.0.22 +1.0.221505 +1.0.225602 +1.0.2275031 +1.0.23 +1.0.23.1 +1.0.2309030 +1.0.24 +1.0.25 +1.0.26 +1.0.26.0 +1.0.260601 +1.0.2652 +1.0.27 +1.0.28 +1.0.2878 +1.0.29 +1.0.2_2 +1.0.2_2.1 +1.0.2b0 +1.0.2b1 +1.0.2b6 +1.0.2b7 +1.0.2b9 +1.0.2h +1.0.2k +1.0.2l +1.0.2m +1.0.2n +1.0.2o +1.0.2p +1.0.2q +1.0.2r +1.0.2rc3 +1.0.2t +1.0.2u +1.0.3 +1.0.3.0 +1.0.3.1 +1.0.3.2 +1.0.3.3 +1.0.3.4 +1.0.3.5 +1.0.3.beta1 +1.0.3.dev20161029 +1.0.30 +1.0.3032 +1.0.3041 +1.0.31 +1.0.3151 +1.0.32 +1.0.33 +1.0.3342 +1.0.3390 +1.0.34 +1.0.3445 +1.0.3471 +1.0.35 +1.0.3529 +1.0.3586 +1.0.36 +1.0.3606021 +1.0.3627 +1.0.3698 +1.0.37 +1.0.3771 +1.0.38 +1.0.3826 +1.0.3c +1.0.4 +1.0.4.0.0.0 +1.0.4.2 +1.0.4.3 +1.0.4.4 +1.0.4.5 +1.0.4.6 +1.0.4.7 +1.0.4.beta1 +1.0.4.dev0 +1.0.40 +1.0.400 +1.0.4053 +1.0.4062 +1.0.41 +1.0.410 +1.0.4111 +1.0.4154 +1.0.4155 +1.0.42 +1.0.4241 +1.0.43 +1.0.4312 +1.0.47 +1.0.4_1 +1.0.5 +1.0.5.1 +1.0.5.2 +1.0.5.2.1 +1.0.5.post2 +1.0.51 +1.0.53 +1.0.5_1 +1.0.6 +1.0.6.1 +1.0.6.2 +1.0.6.dev0 +1.0.61 +1.0.62 +1.0.63 +1.0.64 +1.0.65 +1.0.66 +1.0.67 +1.0.6712 +1.0.68 +1.0.6812 +1.0.6909 +1.0.7 +1.0.7.1 +1.0.7.6 +1.0.7.post1 +1.0.7041 +1.0.8 +1.0.8.0 +1.0.8.1 +1.0.8.2 +1.0.8.3 +1.0.8.dev0 +1.0.8.post0 +1.0.8.post1 +1.0.81 +1.0.82 +1.0.84 +1.0.85 +1.0.86 +1.0.9 +1.0.9.2 +1.0.9.post0 +1.0.90 +1.0.91 +1.0.beta +1.0.dev1 +1.0.post1 +1.0.rev20May22.818 +1.00 +1.00.0 +1.00.44 +1.00.78 +1.00.81 +1.00.89 +1.000 +1.000036 +1.000037 +1.0002 +1.0007 +1.001 +1.001002 +1.002 +1.002001 +1.002002 +1.002005 +1.003 +1.004 +1.004000 +1.004003 +1.004004 +1.005 +1.006 +1.007001 +1.007002 +1.007003 +1.01 +1.010 +1.012.2 +1.012004 +1.012005 +1.013 +1.014 +1.014000 +1.016 +1.016002 +1.016006 +1.016007 +1.018.1 +1.01_2 +1.02 +1.022 +1.023 +1.02r6 +1.03 +1.03.00 +1.03.1 +1.03.2 +1.031 +1.033 +1.04 +1.043 +1.045 +1.5 +1.06 +1.07 +1.07.1 +1.08 +1.09 +1.0_0 +1.0_0.0 +1.0_0.2 +1.0_1 +1.0_1.1 +1.0_10 +1.0_10.0 +1.0_10.1 +1.0_11 +1.0_11.0 +1.0_12 +1.0_12.1 +1.0_13 +1.0_14 +1.0_15 +1.0_15.1 +1.0_16 +1.0_17 +1.0_18 +1.0_19 +1.0_2 +1.0_2.1 +1.0_2.2 +1.0_20 +1.0_20160527 +1.0_21 +1.0_22 +1.0_23 +1.0_24 +1.0_27 +1.0_29 +1.0_3 +1.0_3.1 +1.0_30 +1.0_31 +1.0_32 +1.0_33 +1.0_39 +1.0_4 +1.0_40 +1.0_41 +1.0_42 +1.0_43 +1.0_5 +1.0_6 +1.0_6.1 +1.0_7 +1.0_8 +1.0_8.1 +1.0_9 +1.0_9.5 +1.0a0 +1.0a1 +1.0a16 +1.0a17 +1.0b +1.0b1 +1.0b10 +1.0b13 +1.0b17 +1.0b19 +1.0b2 +1.0b20 +1.0b22 +1.0b23 +1.0b24 +1.0b25 +1.0b26 +1.0b29 +1.0b3 +1.0b30 +1.0b5 +1.0b5.1 +1.0b6 +1.0b9 +1.0rc1 +1.0rc2 +1.0rc3 +1.1 +1.1.0 +1.1.0.0 +1.1.0.1 +1.1.0.11 +1.1.0.12 +1.1.0.14 +1.1.0.2 +1.1.0.3 +1.1.0.4 +1.1.0.6 +1.1.0.7 +1.1.0.8 +1.1.0.9 +1.1.0.beta1 +1.1.0.post +1.1.0.post1 +1.1.0.post3 +1.1.0_1 +1.1.0_rc2 +1.1.0b0 +1.1.0b2 +1.1.0pre +1.1.0rc1 +1.1.0rc2 +1.1.0se +1.1.1 +1.1.1.0 +1.1.1.1 +1.1.1.2 +1.1.1.3 +1.1.1.4 +1.1.1.5 +1.1.1.6 +1.1.1.beta1 +1.1.1.post54 +1.1.10 +1.1.10.8 +1.1.10.9 +1.1.11 +1.1.1106 +1.1.12 +1.1.12.1 +1.1.12.2 +1.1.13 +1.1.14 +1.1.145 +1.1.15 +1.1.16 +1.1.17 +1.1.18 +1.1.180 +1.1.19 +1.1.1_3 +1.1.1_5 +1.1.1_6 +1.1.1_7 +1.1.1_9 +1.1.1a +1.1.1b +1.1.1b0 +1.1.1c +1.1.1d +1.1.1e +1.1.1f +1.1.1g +1.1.1h +1.1.1i +1.1.1j +1.1.1k +1.1.1l +1.1.1n +1.1.1o +1.1.1p +1.1.1q +1.1.1s +1.1.1t +1.1.1u +1.1.2 +1.1.2.1 +1.1.2.2 +1.1.2.3 +1.1.2.dev0 +1.1.2.dev2 +1.1.2.post1 +1.1.20 +1.1.21 +1.1.22 +1.1.224.post0 +1.1.224.post1 +1.1.225 +1.1.226 +1.1.228 +1.1.229 +1.1.23 +1.1.231 +1.1.232 +1.1.233 +1.1.234 +1.1.236 +1.1.237 +1.1.238 +1.1.239 +1.1.24 +1.1.241 +1.1.242 +1.1.244 +1.1.247 +1.1.248 +1.1.25 +1.1.250 +1.1.251 +1.1.253 +1.1.254 +1.1.255 +1.1.256 +1.1.257 +1.1.258 +1.1.259 +1.1.26 +1.1.260 +1.1.262 +1.1.263 +1.1.264 +1.1.265 +1.1.266 +1.1.267 +1.1.268 +1.1.269 +1.1.27 +1.1.270 +1.1.271 +1.1.272 +1.1.273 +1.1.274 +1.1.275 +1.1.276 +1.1.277 +1.1.278 +1.1.279 +1.1.28 +1.1.280 +1.1.281 +1.1.282 +1.1.283 +1.1.284 +1.1.285 +1.1.286 +1.1.287 +1.1.288 +1.1.29 +1.1.291 +1.1.292 +1.1.293 +1.1.294 +1.1.295 +1.1.296 +1.1.297 +1.1.298 +1.1.299 +1.1.3 +1.1.3.1 +1.1.3.2 +1.1.3.post0 +1.1.30 +1.1.301 +1.1.302 +1.1.303 +1.1.304 +1.1.305 +1.1.306 +1.1.307 +1.1.308 +1.1.309 +1.1.310 +1.1.311 +1.1.313 +1.1.32 +1.1.33 +1.1.35 +1.1.37 +1.1.39_2 +1.1.39_3 +1.1.4 +1.1.4.1 +1.1.4.2 +1.1.4.3 +1.1.4.4 +1.1.4.5 +1.1.4.6 +1.1.4.7 +1.1.4.8 +1.1.4.post0 +1.1.4.post1 +1.1.5 +1.1.5.0 +1.1.5.1 +1.1.5.2 +1.1.5.post0 +1.1.5.post1 +1.1.57_1 +1.1.57_2 +1.1.57_3 +1.1.6 +1.1.6.0 +1.1.6.1 +1.1.6.post1 +1.1.6.post2 +1.1.6.post3 +1.1.6a +1.1.7 +1.1.7.2 +1.1.8 +1.1.8.0 +1.1.8.3 +1.1.8.4 +1.1.9 +1.1.beta +1.1.post1 +1.10 +1.10.0 +1.10.0.0 +1.10.0.1 +1.10.0.2 +1.10.0.3 +1.10.0.post137 +1.10.0.post152 +1.10.0.post154 +1.10.0.post156 +1.10.0.post196 +1.10.0.post220 +1.10.0.post228 +1.10.0.post230 +1.10.0.post249 +1.10.0.post259 +1.10.0.post266 +1.10.0.post94 +1.10.0a0 +1.10.1 +1.10.1.0 +1.10.1.4 +1.10.1.post0 +1.10.1.post20200504175005 +1.10.10 +1.10.11 +1.10.12 +1.10.13 +1.10.14 +1.10.15 +1.10.16 +1.10.17 +1.10.18 +1.10.19 +1.10.2 +1.10.2.4 +1.10.2.post1 +1.10.20 +1.10.21 +1.10.22 +1.10.23 +1.10.24 +1.10.25 +1.10.26 +1.10.27 +1.10.28 +1.10.29 +1.10.3 +1.10.3.14 +1.10.3.39 +1.10.3.41 +1.10.3.43 +1.10.3.5 +1.10.3.50 +1.10.3.52 +1.10.3.54 +1.10.3.56 +1.10.3.65 +1.10.30 +1.10.31 +1.10.32 +1.10.33 +1.10.34 +1.10.35 +1.10.3585 +1.10.36 +1.10.3616 +1.10.3626 +1.10.3651 +1.10.3653 +1.10.37 +1.10.38 +1.10.39 +1.10.3post1 +1.10.3post2 +1.10.4 +1.10.4.1 +1.10.4.11 +1.10.4.7 +1.10.40 +1.10.41 +1.10.42 +1.10.43 +1.10.44 +1.10.45 +1.10.46 +1.10.47 +1.10.48 +1.10.49 +1.10.5 +1.10.5.1 +1.10.50 +1.10.51 +1.10.52 +1.10.53 +1.10.54 +1.10.55 +1.10.56 +1.10.57 +1.10.58 +1.10.59 +1.10.6 +1.10.60 +1.10.61 +1.10.62 +1.10.63 +1.10.64 +1.10.65 +1.10.66 +1.10.67 +1.10.68 +1.10.69 +1.10.7 +1.10.70 +1.10.71 +1.10.72 +1.10.73 +1.10.74 +1.10.75 +1.10.76 +1.10.77 +1.10.78 +1.10.79 +1.10.8 +1.10.80 +1.10.81 +1.10.82 +1.10.83 +1.10.84 +1.10.9 +1.100 +1.100.0 +1.100.1 +1.100.2 +1.1006 +1.100602 +1.100603 +1.101 +1.101.0 +1.102 +1.103 +1.103.1 +1.104 +1.105 +1.106 +1.107 +1.107.2 +1.107.3 +1.109 +1.10_0 +1.10_1 +1.10_2 +1.10_4 +1.10_7 +1.10rc1 +1.11 +1.11.0 +1.11.0.0 +1.11.0.post18 +1.11.0.post19 +1.11.1 +1.11.1.1 +1.11.1.post3 +1.11.10 +1.11.10.40 +1.11.10.59 +1.11.11 +1.11.12 +1.11.12.31 +1.11.12.5 +1.11.12.56 +1.11.12.92 +1.11.120 +1.11.13 +1.11.14 +1.11.14.1 +1.11.15 +1.11.16 +1.11.17 +1.11.18 +1.11.182 +1.11.19 +1.11.2 +1.11.2.1 +1.11.20 +1.11.21 +1.11.22 +1.11.223 +1.11.23 +1.11.24 +1.11.25 +1.11.26 +1.11.27 +1.11.28 +1.11.29 +1.11.3 +1.11.30 +1.11.31 +1.11.32 +1.11.33 +1.11.34 +1.11.35 +1.11.36 +1.11.3697 +1.11.37 +1.11.3731 +1.11.3744 +1.11.3747 +1.11.3755 +1.11.3762 +1.11.3776 +1.11.38 +1.11.39 +1.11.4 +1.11.40 +1.11.41 +1.11.42 +1.11.43 +1.11.44 +1.11.45 +1.11.46 +1.11.47 +1.11.48 +1.11.49 +1.11.5 +1.11.5.post0 +1.11.54 +1.11.55 +1.11.56 +1.11.57 +1.11.58 +1.11.59 +1.11.6 +1.11.6.20 +1.11.6.7 +1.11.60 +1.11.61 +1.11.62 +1.11.63 +1.11.64 +1.11.65 +1.11.66 +1.11.67 +1.11.68 +1.11.7 +1.11.70 +1.11.8 +1.11.9 +1.110 +1.111 +1.112 +1.113 +1.114 +1.115 +1.116 +1.117 +1.118 +1.11_1 +1.11_2 +1.11rc1 +1.12 +1.12.0 +1.12.0.13 +1.12.0.9 +1.12.1 +1.12.10 +1.12.100 +1.12.101 +1.12.102 +1.12.103 +1.12.104 +1.12.105 +1.12.106 +1.12.107 +1.12.108 +1.12.109 +1.12.11 +1.12.110 +1.12.111 +1.12.112 +1.12.113 +1.12.114 +1.12.115 +1.12.116 +1.12.117 +1.12.118 +1.12.119 +1.12.12 +1.12.120 +1.12.121 +1.12.122 +1.12.123 +1.12.124 +1.12.125 +1.12.126 +1.12.127 +1.12.128 +1.12.129 +1.12.13 +1.12.130 +1.12.131 +1.12.132 +1.12.133 +1.12.134 +1.12.135 +1.12.136 +1.12.137 +1.12.138 +1.12.139 +1.12.14 +1.12.140 +1.12.141 +1.12.142 +1.12.143 +1.12.144 +1.12.145 +1.12.146 +1.12.147 +1.12.148 +1.12.149 +1.12.15 +1.12.150 +1.12.151 +1.12.152 +1.12.153 +1.12.154 +1.12.155 +1.12.156 +1.12.157 +1.12.158 +1.12.159 +1.12.16 +1.12.160 +1.12.161 +1.12.162 +1.12.163 +1.12.164 +1.12.165 +1.12.166 +1.12.167 +1.12.168 +1.12.169 +1.12.17 +1.12.170 +1.12.171 +1.12.172 +1.12.173 +1.12.174 +1.12.175 +1.12.176 +1.12.177 +1.12.178 +1.12.179 +1.12.18 +1.12.180 +1.12.181 +1.12.182 +1.12.183 +1.12.184 +1.12.185 +1.12.186 +1.12.187 +1.12.188 +1.12.189 +1.12.19 +1.12.190 +1.12.191 +1.12.192 +1.12.193 +1.12.194 +1.12.195 +1.12.196 +1.12.197 +1.12.198 +1.12.199 +1.12.1_1 +1.12.2 +1.12.2.12 +1.12.2.13 +1.12.2.20 +1.12.2.5 +1.12.20 +1.12.200 +1.12.201 +1.12.202 +1.12.203 +1.12.204 +1.12.205 +1.12.206 +1.12.207 +1.12.208 +1.12.209 +1.12.21 +1.12.210 +1.12.211 +1.12.212 +1.12.213 +1.12.214 +1.12.215 +1.12.216 +1.12.217 +1.12.218 +1.12.219 +1.12.22 +1.12.220 +1.12.221 +1.12.222 +1.12.223 +1.12.224 +1.12.225 +1.12.226 +1.12.227 +1.12.228 +1.12.229 +1.12.23 +1.12.230 +1.12.231 +1.12.232 +1.12.233 +1.12.234 +1.12.235 +1.12.236 +1.12.237 +1.12.238 +1.12.239 +1.12.24 +1.12.240 +1.12.241 +1.12.242 +1.12.243 +1.12.244 +1.12.245 +1.12.246 +1.12.247 +1.12.248 +1.12.249 +1.12.25 +1.12.250 +1.12.251 +1.12.252 +1.12.253 +1.12.26 +1.12.27 +1.12.28 +1.12.29 +1.12.2_1 +1.12.3 +1.12.30 +1.12.31 +1.12.32 +1.12.33 +1.12.34 +1.12.35 +1.12.36 +1.12.37 +1.12.38 +1.12.3806 +1.12.39 +1.12.4 +1.12.4.11 +1.12.40 +1.12.41 +1.12.42 +1.12.43 +1.12.44 +1.12.45 +1.12.46 +1.12.47 +1.12.48 +1.12.49 +1.12.5 +1.12.50 +1.12.51 +1.12.52 +1.12.53 +1.12.54 +1.12.55 +1.12.56 +1.12.57 +1.12.58 +1.12.59 +1.12.6 +1.12.6.15 +1.12.6.32 +1.12.6.50 +1.12.6.53 +1.12.6.59 +1.12.6.66 +1.12.6.8 +1.12.60 +1.12.61 +1.12.62 +1.12.63 +1.12.64 +1.12.65 +1.12.66 +1.12.67 +1.12.68 +1.12.69 +1.12.7 +1.12.70 +1.12.71 +1.12.72 +1.12.73 +1.12.74 +1.12.75 +1.12.76 +1.12.77 +1.12.78 +1.12.79 +1.12.8 +1.12.8.4 +1.12.80 +1.12.81 +1.12.82 +1.12.83 +1.12.84 +1.12.85 +1.12.86 +1.12.87 +1.12.88 +1.12.89 +1.12.9 +1.12.90 +1.12.91 +1.12.92 +1.12.93 +1.12.94 +1.12.95 +1.12.96 +1.12.97 +1.12.98 +1.12.99 +1.12.post1 +1.122.0 +1.123 +1.125 +1.128 +1.128.1 +1.12_0 +1.12_2 +1.12rc1 +1.13 +1.13.0 +1.13.0.1 +1.13.0.16 +1.13.0.28 +1.13.0.4 +1.13.0.44 +1.13.0.49 +1.13.0.55 +1.13.0.61 +1.13.0.64 +1.13.1 +1.13.1.post0 +1.13.1.post1 +1.13.10 +1.13.11 +1.13.12 +1.13.13 +1.13.14 +1.13.15 +1.13.16 +1.13.17 +1.13.18 +1.13.19 +1.13.2 +1.13.2.107 +1.13.2.13 +1.13.2.32 +1.13.2.36 +1.13.20 +1.13.21 +1.13.22 +1.13.23 +1.13.24 +1.13.25 +1.13.26 +1.13.27 +1.13.28 +1.13.29 +1.13.3 +1.13.30 +1.13.31 +1.13.32 +1.13.33 +1.13.34 +1.13.35 +1.13.36 +1.13.37 +1.13.38 +1.13.39 +1.13.4 +1.13.40 +1.13.41 +1.13.42 +1.13.43 +1.13.44 +1.13.45 +1.13.46 +1.13.47 +1.13.48 +1.13.49 +1.13.5 +1.13.50 +1.13.6 +1.13.7 +1.13.8 +1.13.9 +1.130 +1.135.1 +1.138.1 +1.139.1 +1.13_0 +1.13_1 +1.13a +1.13rc1 +1.14 +1.14.0 +1.14.0.post0 +1.14.0rc1 +1.14.1 +1.14.1.post0 +1.14.10 +1.14.10.1 +1.14.11 +1.14.12 +1.14.13 +1.14.14 +1.14.15 +1.14.16 +1.14.17 +1.14.18 +1.14.19 +1.14.2 +1.14.20 +1.14.20.0 +1.14.21 +1.14.22 +1.14.23 +1.14.24 +1.14.25 +1.14.26 +1.14.27 +1.14.27.0 +1.14.28 +1.14.29 +1.14.29.0 +1.14.3 +1.14.30 +1.14.30.0 +1.14.31 +1.14.31.0 +1.14.32 +1.14.32.0 +1.14.33 +1.14.33.0 +1.14.34 +1.14.34.0 +1.14.35 +1.14.35.0 +1.14.36 +1.14.36.0 +1.14.37 +1.14.37.0 +1.14.38 +1.14.38.0 +1.14.39 +1.14.39.0 +1.14.4 +1.14.40 +1.14.40.0 +1.14.41 +1.14.41.0 +1.14.42 +1.14.42.0 +1.14.43 +1.14.43.0 +1.14.44 +1.14.44.0 +1.14.45 +1.14.45.0 +1.14.46 +1.14.46.0 +1.14.47 +1.14.47.0 +1.14.48 +1.14.48.0 +1.14.49 +1.14.49.0 +1.14.5 +1.14.50 +1.14.50.0 +1.14.51 +1.14.51.0 +1.14.52 +1.14.52.1 +1.14.53 +1.14.53.0 +1.14.54 +1.14.54.0 +1.14.54.1 +1.14.55 +1.14.55.0 +1.14.55.2 +1.14.56 +1.14.56.0 +1.14.57 +1.14.57.0 +1.14.58 +1.14.58.0 +1.14.59 +1.14.59.0 +1.14.59.1 +1.14.6 +1.14.60 +1.14.60.0 +1.14.61 +1.14.61.0 +1.14.62 +1.14.62.0 +1.14.63 +1.14.63.0 +1.14.64 +1.14.65 +1.14.66 +1.14.67 +1.14.68 +1.14.69 +1.14.6_1 +1.14.7 +1.14.70 +1.14.8 +1.14.9 +1.14.post1 +1.141 +1.143.1 +1.143.3 +1.14_4 +1.14a1.dev37 +1.14a1.dev48 +1.14rc1 +1.15 +1.15.0 +1.15.0.0 +1.15.08.25 +1.15.1 +1.15.1.0 +1.15.10 +1.15.10.0 +1.15.11 +1.15.11.0 +1.15.12 +1.15.12.0 +1.15.12.1 +1.15.13 +1.15.13.0 +1.15.13.1 +1.15.14 +1.15.14.0 +1.15.15 +1.15.15.0 +1.15.16 +1.15.16.0 +1.15.17 +1.15.17.0 +1.15.18 +1.15.18.0 +1.15.19 +1.15.2 +1.15.2.0 +1.15.20 +1.15.21 +1.15.22 +1.15.23 +1.15.24 +1.15.25 +1.15.26 +1.15.27 +1.15.28 +1.15.29 +1.15.3 +1.15.3.0 +1.15.30 +1.15.31 +1.15.32 +1.15.33 +1.15.34 +1.15.35 +1.15.36 +1.15.37 +1.15.38 +1.15.39 +1.15.4 +1.15.4.0 +1.15.40 +1.15.41 +1.15.42 +1.15.43 +1.15.44 +1.15.45 +1.15.46 +1.15.47 +1.15.48 +1.15.49 +1.15.5 +1.15.5.0 +1.15.50 +1.15.51 +1.15.52 +1.15.53 +1.15.54 +1.15.55 +1.15.56 +1.15.57 +1.15.58 +1.15.59 +1.15.6 +1.15.6.0 +1.15.60 +1.15.61 +1.15.62 +1.15.63 +1.15.64 +1.15.65 +1.15.66 +1.15.67 +1.15.68 +1.15.69 +1.15.7 +1.15.7.0 +1.15.70 +1.15.71 +1.15.72 +1.15.73 +1.15.74 +1.15.75 +1.15.76 +1.15.77 +1.15.78 +1.15.79 +1.15.8 +1.15.8.0 +1.15.80 +1.15.81 +1.15.82 +1.15.83 +1.15.84 +1.15.85 +1.15.9 +1.15.9.0 +1.15_0 +1.15rc1 +1.16 +1.16.0 +1.16.0.0 +1.16.0.2 +1.16.1 +1.16.1.0 +1.16.10 +1.16.10.0 +1.16.100 +1.16.101 +1.16.102 +1.16.103 +1.16.104 +1.16.105 +1.16.106 +1.16.107 +1.16.108 +1.16.109 +1.16.11 +1.16.110 +1.16.111 +1.16.112 +1.16.113 +1.16.114 +1.16.115 +1.16.116 +1.16.117 +1.16.118 +1.16.119 +1.16.12 +1.16.120 +1.16.121 +1.16.122 +1.16.123 +1.16.124 +1.16.125 +1.16.126 +1.16.127 +1.16.128 +1.16.129 +1.16.13 +1.16.13.0 +1.16.130 +1.16.131 +1.16.132 +1.16.133 +1.16.134 +1.16.135 +1.16.136 +1.16.137 +1.16.138 +1.16.139 +1.16.14 +1.16.140 +1.16.141 +1.16.142 +1.16.143 +1.16.144 +1.16.145 +1.16.146 +1.16.147 +1.16.148 +1.16.149 +1.16.15 +1.16.15.0 +1.16.150 +1.16.151 +1.16.152 +1.16.153 +1.16.154 +1.16.155 +1.16.156 +1.16.157 +1.16.158 +1.16.159 +1.16.16 +1.16.16.0 +1.16.160 +1.16.161 +1.16.162 +1.16.163 +1.16.164 +1.16.165 +1.16.166 +1.16.167 +1.16.168 +1.16.169 +1.16.17 +1.16.17.0 +1.16.170 +1.16.171 +1.16.172 +1.16.173 +1.16.174 +1.16.175 +1.16.176 +1.16.177 +1.16.178 +1.16.179 +1.16.18 +1.16.18.0 +1.16.180 +1.16.181 +1.16.182 +1.16.183 +1.16.184 +1.16.185 +1.16.186 +1.16.187 +1.16.188 +1.16.189 +1.16.19 +1.16.19.0 +1.16.190 +1.16.191 +1.16.192 +1.16.193 +1.16.194 +1.16.195 +1.16.196 +1.16.197 +1.16.198 +1.16.199 +1.16.1_1 +1.16.2 +1.16.2.0 +1.16.20 +1.16.20.0 +1.16.200 +1.16.201 +1.16.202 +1.16.203 +1.16.204 +1.16.205 +1.16.206 +1.16.207 +1.16.208 +1.16.209 +1.16.21 +1.16.21.0 +1.16.21.1 +1.16.21.2 +1.16.21.3 +1.16.21.4 +1.16.21.5 +1.16.21.6 +1.16.210 +1.16.211 +1.16.212 +1.16.213 +1.16.214 +1.16.215 +1.16.216 +1.16.217 +1.16.218 +1.16.219 +1.16.22 +1.16.22.0 +1.16.220 +1.16.221 +1.16.222 +1.16.223 +1.16.224 +1.16.225 +1.16.226 +1.16.227 +1.16.228 +1.16.229 +1.16.23 +1.16.23.0 +1.16.23.1 +1.16.230 +1.16.231 +1.16.232 +1.16.233 +1.16.234 +1.16.235 +1.16.236 +1.16.237 +1.16.238 +1.16.239 +1.16.24 +1.16.24.0 +1.16.240 +1.16.241 +1.16.242 +1.16.243 +1.16.244 +1.16.245 +1.16.246 +1.16.247 +1.16.248 +1.16.249 +1.16.25 +1.16.25.0 +1.16.250 +1.16.251 +1.16.252 +1.16.253 +1.16.254 +1.16.255 +1.16.256 +1.16.257 +1.16.258 +1.16.259 +1.16.26 +1.16.26.0 +1.16.26.1 +1.16.260 +1.16.261 +1.16.262 +1.16.263 +1.16.264 +1.16.265 +1.16.266 +1.16.267 +1.16.268 +1.16.269 +1.16.27 +1.16.27.0 +1.16.270 +1.16.271 +1.16.272 +1.16.273 +1.16.274 +1.16.275 +1.16.276 +1.16.277 +1.16.278 +1.16.279 +1.16.28 +1.16.28.0 +1.16.28.1 +1.16.280 +1.16.281 +1.16.282 +1.16.283 +1.16.284 +1.16.285 +1.16.286 +1.16.287 +1.16.288 +1.16.289 +1.16.29 +1.16.29.0 +1.16.290 +1.16.291 +1.16.292 +1.16.293 +1.16.294 +1.16.295 +1.16.296 +1.16.297 +1.16.298 +1.16.299 +1.16.3 +1.16.3.0 +1.16.30 +1.16.30.0 +1.16.300 +1.16.301 +1.16.302 +1.16.303 +1.16.304 +1.16.305 +1.16.306 +1.16.307 +1.16.308 +1.16.309 +1.16.31 +1.16.31.0 +1.16.31.1 +1.16.310 +1.16.311 +1.16.312 +1.16.313 +1.16.314 +1.16.32 +1.16.32.0 +1.16.33 +1.16.33.0 +1.16.34 +1.16.34.0 +1.16.35 +1.16.35.0 +1.16.36 +1.16.36.0 +1.16.37 +1.16.38 +1.16.38.0 +1.16.39 +1.16.39.0 +1.16.4 +1.16.4.0 +1.16.40 +1.16.40.0 +1.16.41 +1.16.41.0 +1.16.42 +1.16.42.0 +1.16.43 +1.16.43.0 +1.16.44 +1.16.44.0 +1.16.45 +1.16.45.0 +1.16.46 +1.16.46.0 +1.16.47 +1.16.47.0 +1.16.48 +1.16.48.0 +1.16.49 +1.16.49.0 +1.16.5 +1.16.5.0 +1.16.5.1 +1.16.50 +1.16.50.0 +1.16.51 +1.16.51.0 +1.16.52 +1.16.52.0 +1.16.53 +1.16.53.0 +1.16.54 +1.16.54.0 +1.16.55 +1.16.55.0 +1.16.56 +1.16.56.0 +1.16.57 +1.16.57.0 +1.16.58 +1.16.58.0 +1.16.59 +1.16.59.0 +1.16.6 +1.16.6.0 +1.16.60 +1.16.60.0 +1.16.61 +1.16.61.0 +1.16.62 +1.16.62.0 +1.16.63 +1.16.63.0 +1.16.64 +1.16.65 +1.16.66 +1.16.67 +1.16.68 +1.16.69 +1.16.7 +1.16.70 +1.16.71 +1.16.72 +1.16.73 +1.16.74 +1.16.75 +1.16.76 +1.16.77 +1.16.78 +1.16.79 +1.16.8 +1.16.80 +1.16.81 +1.16.82 +1.16.83 +1.16.84 +1.16.85 +1.16.86 +1.16.87 +1.16.88 +1.16.89 +1.16.9 +1.16.90 +1.16.91 +1.16.92 +1.16.93 +1.16.94 +1.16.95 +1.16.96 +1.16.97 +1.16.98 +1.16.99 +1.160.0 +1.16_3 +1.16rc1 +1.17 +1.17.0 +1.17.0.0 +1.17.0.1 +1.17.0.2 +1.17.08.31 +1.17.1 +1.17.1.0 +1.17.1.1 +1.17.1.2 +1.17.1.3 +1.17.1.4 +1.17.10 +1.17.10.0 +1.17.100 +1.17.101 +1.17.101.post1 +1.17.102 +1.17.102.post1 +1.17.103 +1.17.103.post1 +1.17.104 +1.17.105 +1.17.106 +1.17.107 +1.17.108 +1.17.109 +1.17.11 +1.17.11.0 +1.17.110 +1.17.111 +1.17.112 +1.17.12 +1.17.12.0 +1.17.13 +1.17.13.0 +1.17.14 +1.17.14.0 +1.17.15 +1.17.15.0 +1.17.16 +1.17.16.0 +1.17.17 +1.17.17.0 +1.17.18 +1.17.18.0 +1.17.19 +1.17.19.0 +1.17.2 +1.17.2.0 +1.17.2.1 +1.17.20 +1.17.20.0 +1.17.21 +1.17.21.0 +1.17.22 +1.17.22.0 +1.17.23 +1.17.23.0 +1.17.24 +1.17.24.0 +1.17.25 +1.17.25.0 +1.17.26 +1.17.26.0 +1.17.27 +1.17.27.0 +1.17.28 +1.17.28.0 +1.17.29 +1.17.29.0 +1.17.3 +1.17.3.0 +1.17.30 +1.17.30.0 +1.17.31 +1.17.31.0 +1.17.32 +1.17.32.0 +1.17.33 +1.17.33.0 +1.17.34 +1.17.35 +1.17.35.0 +1.17.36 +1.17.36.0 +1.17.37 +1.17.37.0 +1.17.38 +1.17.38.0 +1.17.39 +1.17.39.0 +1.17.4 +1.17.4.0 +1.17.40 +1.17.40.0 +1.17.41 +1.17.41.0 +1.17.42 +1.17.42.0 +1.17.43 +1.17.43.0 +1.17.44 +1.17.44.0 +1.17.45 +1.17.45.0 +1.17.46 +1.17.46.0 +1.17.47 +1.17.47.0 +1.17.48 +1.17.48.0 +1.17.49 +1.17.49.0 +1.17.5 +1.17.5.0 +1.17.50 +1.17.50.0 +1.17.50.1 +1.17.51 +1.17.51.0 +1.17.52 +1.17.52.0 +1.17.53 +1.17.53.0 +1.17.53.1 +1.17.54 +1.17.54.0 +1.17.55 +1.17.55.0 +1.17.56 +1.17.56.0 +1.17.57 +1.17.57.0 +1.17.58 +1.17.58.0 +1.17.59 +1.17.59.0 +1.17.6 +1.17.6.0 +1.17.60 +1.17.60.0 +1.17.60.1 +1.17.61 +1.17.61.0 +1.17.62 +1.17.62.0 +1.17.63 +1.17.64 +1.17.64.1 +1.17.64.2 +1.17.65 +1.17.65.0 +1.17.66 +1.17.66.0 +1.17.67 +1.17.67.0 +1.17.68 +1.17.68.0 +1.17.69 +1.17.69.0 +1.17.7 +1.17.7.0 +1.17.70 +1.17.70.post2 +1.17.71 +1.17.71.post1 +1.17.72 +1.17.72.post1 +1.17.73 +1.17.74 +1.17.75 +1.17.76 +1.17.77 +1.17.78 +1.17.79 +1.17.8 +1.17.8.0 +1.17.8.1 +1.17.8.2 +1.17.80 +1.17.81 +1.17.82 +1.17.83 +1.17.84 +1.17.85 +1.17.86 +1.17.87 +1.17.88 +1.17.88.post1 +1.17.89 +1.17.9 +1.17.9.0 +1.17.90 +1.17.90.post1 +1.17.91 +1.17.92 +1.17.92.post1 +1.17.93 +1.17.94 +1.17.95 +1.17.96 +1.17.97 +1.17.98 +1.17.99 +1.17_0 +1.17rc1 +1.18 +1.18.0 +1.18.0.post0 +1.18.06.29 +1.18.1 +1.18.10 +1.18.100 +1.18.101 +1.18.102 +1.18.103 +1.18.104 +1.18.105 +1.18.106 +1.18.107 +1.18.108 +1.18.109 +1.18.11 +1.18.110 +1.18.111 +1.18.112 +1.18.113 +1.18.114 +1.18.115 +1.18.116 +1.18.117 +1.18.118 +1.18.119 +1.18.12 +1.18.120 +1.18.121 +1.18.122 +1.18.123 +1.18.124 +1.18.125 +1.18.126 +1.18.127 +1.18.128 +1.18.129 +1.18.13 +1.18.130 +1.18.131 +1.18.132 +1.18.133 +1.18.134 +1.18.135 +1.18.136 +1.18.137 +1.18.138 +1.18.139 +1.18.14 +1.18.140 +1.18.141 +1.18.142 +1.18.143 +1.18.144 +1.18.145 +1.18.146 +1.18.147 +1.18.148 +1.18.149 +1.18.15 +1.18.150 +1.18.151 +1.18.152 +1.18.153 +1.18.154 +1.18.155 +1.18.156 +1.18.157 +1.18.158 +1.18.159 +1.18.16 +1.18.160 +1.18.161 +1.18.162 +1.18.163 +1.18.164 +1.18.165 +1.18.166 +1.18.167 +1.18.168 +1.18.169 +1.18.17 +1.18.170 +1.18.171 +1.18.172 +1.18.173 +1.18.174 +1.18.175 +1.18.176 +1.18.177 +1.18.178 +1.18.179 +1.18.18 +1.18.180 +1.18.181 +1.18.182 +1.18.183 +1.18.184 +1.18.185 +1.18.186 +1.18.187 +1.18.188 +1.18.189 +1.18.19 +1.18.190 +1.18.191 +1.18.192 +1.18.193 +1.18.194 +1.18.196 +1.18.197 +1.18.198 +1.18.199 +1.18.2 +1.18.2.post1 +1.18.20 +1.18.200 +1.18.201 +1.18.202 +1.18.203 +1.18.204 +1.18.205 +1.18.206 +1.18.207 +1.18.208 +1.18.209 +1.18.21 +1.18.210 +1.18.211 +1.18.212 +1.18.213 +1.18.214 +1.18.215 +1.18.216 +1.18.217 +1.18.218 +1.18.219 +1.18.22 +1.18.220 +1.18.221 +1.18.222 +1.18.223 +1.18.23 +1.18.24 +1.18.25 +1.18.26 +1.18.27 +1.18.28 +1.18.29 +1.18.3 +1.18.30 +1.18.31 +1.18.32 +1.18.33 +1.18.34 +1.18.35 +1.18.36 +1.18.37 +1.18.38 +1.18.39 +1.18.4 +1.18.40 +1.18.41 +1.18.42 +1.18.43 +1.18.44 +1.18.45 +1.18.46 +1.18.47 +1.18.48 +1.18.49 +1.18.5 +1.18.50 +1.18.51 +1.18.52 +1.18.53 +1.18.54 +1.18.55 +1.18.56 +1.18.57 +1.18.58 +1.18.59 +1.18.6 +1.18.60 +1.18.61 +1.18.62 +1.18.63 +1.18.64 +1.18.65 +1.18.66 +1.18.67 +1.18.68 +1.18.69 +1.18.7 +1.18.70 +1.18.71 +1.18.72 +1.18.73 +1.18.74 +1.18.75 +1.18.76 +1.18.77 +1.18.78 +1.18.79 +1.18.8 +1.18.80 +1.18.81 +1.18.82 +1.18.83 +1.18.84 +1.18.85 +1.18.86 +1.18.87 +1.18.88 +1.18.89 +1.18.9 +1.18.90 +1.18.91 +1.18.92 +1.18.93 +1.18.94 +1.18.95 +1.18.96 +1.18.97 +1.18.98 +1.18.99 +1.182770 +1.186.0 +1.18_1 +1.18rc1 +1.19 +1.19.0 +1.19.1 +1.19.1.post1 +1.19.10 +1.19.100 +1.19.101 +1.19.102 +1.19.103 +1.19.104 +1.19.105 +1.19.106 +1.19.107 +1.19.108 +1.19.109 +1.19.11 +1.19.110 +1.19.111 +1.19.112 +1.19.12 +1.19.13 +1.19.14 +1.19.15 +1.19.16 +1.19.17 +1.19.18 +1.19.19 +1.19.2 +1.19.20 +1.19.21 +1.19.22 +1.19.23 +1.19.24 +1.19.25 +1.19.26 +1.19.27 +1.19.28 +1.19.29 +1.19.3 +1.19.30 +1.19.31 +1.19.32 +1.19.33 +1.19.34 +1.19.35 +1.19.36 +1.19.37 +1.19.38 +1.19.39 +1.19.4 +1.19.40 +1.19.41 +1.19.42 +1.19.43 +1.19.44 +1.19.45 +1.19.46 +1.19.47 +1.19.48 +1.19.49 +1.19.5 +1.19.50 +1.19.51 +1.19.52 +1.19.53 +1.19.54 +1.19.55 +1.19.56 +1.19.57 +1.19.58 +1.19.59 +1.19.6 +1.19.60 +1.19.61 +1.19.62 +1.19.63 +1.19.64 +1.19.65 +1.19.66 +1.19.67 +1.19.68 +1.19.69 +1.19.7 +1.19.70 +1.19.71 +1.19.72 +1.19.73 +1.19.74 +1.19.75 +1.19.76 +1.19.77 +1.19.78 +1.19.79 +1.19.8 +1.19.80 +1.19.81 +1.19.82 +1.19.83 +1.19.84 +1.19.85 +1.19.86 +1.19.87 +1.19.88 +1.19.89 +1.19.9 +1.19.90 +1.19.91 +1.19.92 +1.19.93 +1.19.94 +1.19.95 +1.19.96 +1.19.97 +1.19.98 +1.19.99 +1.1903 +1.196.0 +1.19rc1 +1.1_0 +1.1_0.1 +1.1_1 +1.1_1.1 +1.1_10 +1.1_11 +1.1_12 +1.1_13 +1.1_14 +1.1_15 +1.1_15.1 +1.1_15.2 +1.1_18_1 +1.1_19 +1.1_2 +1.1_21 +1.1_221 +1.1_221.1 +1.1_221.2 +1.1_23 +1.1_24 +1.1_25 +1.1_26 +1.1_27 +1.1_27.1 +1.1_28 +1.1_29 +1.1_3 +1.1_30 +1.1_31 +1.1_32 +1.1_33 +1.1_4 +1.1_4.1 +1.1_4.2 +1.1_4.3 +1.1_5 +1.1_6 +1.1_7 +1.1_7.3 +1.1_7.4 +1.1_8 +1.1_8.1 +1.1_9 +1.1_9.4 +1.1_9.5 +1.1_9.7 +1.1b +1.1rc0 +1.1rc3 +1.2 +1.2.0 +1.2.0.0 +1.2.0.1 +1.2.0.10 +1.2.0.11 +1.2.0.12 +1.2.0.13 +1.2.0.16 +1.2.0.19 +1.2.0.2 +1.2.0.23 +1.2.0.24 +1.2.0.26 +1.2.0.27 +1.2.0.29 +1.2.0.3 +1.2.0.30 +1.2.0.31 +1.2.0.33 +1.2.0.35 +1.2.0.36 +1.2.0.37 +1.2.0.38 +1.2.0.39 +1.2.0.4 +1.2.0.40 +1.2.0.43 +1.2.0.44 +1.2.0.45 +1.2.0.46 +1.2.0.47 +1.2.0.48 +1.2.0.49 +1.2.0.5 +1.2.0.50 +1.2.0.51 +1.2.0.53 +1.2.0.54 +1.2.0.56 +1.2.0.57 +1.2.0.58 +1.2.0.60 +1.2.0.61 +1.2.0.62 +1.2.0.7 +1.2.0.beta1 +1.2.0.post0 +1.2.0.pre +1.2.5 +1.2.0a1 +1.2.0b0 +1.2.0c +1.2.1 +1.2.1.1 +1.2.1.2 +1.2.1.beta1 +1.2.1.post1 +1.2.1.post2 +1.2.1.post2205 +1.2.1.post2206 +1.2.1.post2207 +1.2.1.post2208 +1.2.10 +1.2.100 +1.2.101 +1.2.102 +1.2.103 +1.2.105 +1.2.106 +1.2.107 +1.2.108 +1.2.109 +1.2.11 +1.2.110 +1.2.111 +1.2.112 +1.2.113 +1.2.114 +1.2.116 +1.2.118 +1.2.119 +1.2.12 +1.2.120 +1.2.121 +1.2.122 +1.2.123 +1.2.124 +1.2.125 +1.2.126 +1.2.127 +1.2.128 +1.2.129 +1.2.13 +1.2.130 +1.2.131 +1.2.132 +1.2.133 +1.2.133.2 +1.2.134 +1.2.135 +1.2.136 +1.2.137 +1.2.138 +1.2.139 +1.2.14 +1.2.140 +1.2.141 +1.2.15 +1.2.16 +1.2.17 +1.2.17.1 +1.2.18 +1.2.19 +1.2.1a6 +1.2.1b0 +1.2.1post1 +1.2.2 +1.2.2.1 +1.2.2.2 +1.2.2.3 +1.2.2.5 +1.2.2.beta1 +1.2.20 +1.2.21 +1.2.22 +1.2.23 +1.2.24 +1.2.25 +1.2.26 +1.2.27 +1.2.28 +1.2.29 +1.2.295.0 +1.2.3 +1.2.3.2 +1.2.3.25 +1.2.3.beta1 +1.2.30 +1.2.31 +1.2.312.0 +1.2.32 +1.2.323.0 +1.2.33 +1.2.331.0 +1.2.335 +1.2.339.0 +1.2.34 +1.2.35 +1.2.36 +1.2.37 +1.2.38 +1.2.39 +1.2.398.0 +1.2.3_1 +1.2.3_6 +1.2.3a +1.2.4 +1.2.4.1 +1.2.4.2 +1.2.4.beta1 +1.2.41 +1.2.42 +1.2.43 +1.2.44 +1.2.45 +1.2.46 +1.2.463.0 +1.2.47 +1.2.475 +1.2.48 +1.2.49 +1.2.5 +1.2.5.2 +1.2.5.beta1 +1.2.50 +1.2.51 +1.2.52 +1.2.53 +1.2.54 +1.2.55 +1.2.56 +1.2.58 +1.2.59 +1.2.6 +1.2.6.1 +1.2.6.2 +1.2.6.3 +1.2.6.4 +1.2.6.beta1 +1.2.60 +1.2.61 +1.2.62 +1.2.63 +1.2.64 +1.2.65 +1.2.66 +1.2.67 +1.2.68 +1.2.69 +1.2.6rc49 +1.2.7 +1.2.7.1 +1.2.7.2 +1.2.7.3 +1.2.7.4 +1.2.7.5 +1.2.7.beta1 +1.2.7.post13 +1.2.7.post20 +1.2.7.post8 +1.2.70 +1.2.71 +1.2.73 +1.2.75 +1.2.76 +1.2.77 +1.2.78 +1.2.7a1 +1.2.7a13 +1.2.7a20 +1.2.7a31 +1.2.7a37 +1.2.7a38 +1.2.7a43 +1.2.7a45 +1.2.7a5 +1.2.8 +1.2.8.1 +1.2.8.post0 +1.2.8.post1 +1.2.8.post6 +1.2.81 +1.2.82 +1.2.83 +1.2.84 +1.2.86 +1.2.87 +1.2.88 +1.2.89 +1.2.9 +1.2.9.1 +1.2.9.post1 +1.2.9.post2 +1.2.9.post3 +1.2.90 +1.2.91 +1.2.92 +1.2.93 +1.2.94 +1.2.95 +1.2.96 +1.2.97 +1.2.98 +1.20 +1.20.0 +1.20.1 +1.20.10 +1.20.10.07 +1.20.100 +1.20.101 +1.20.102 +1.20.103 +1.20.104 +1.20.105 +1.20.106 +1.20.107 +1.20.108 +1.20.109 +1.20.11 +1.20.110 +1.20.111 +1.20.112 +1.20.12 +1.20.13 +1.20.14 +1.20.15 +1.20.16 +1.20.17 +1.20.18 +1.20.19 +1.20.2 +1.20.20 +1.20.21 +1.20.22 +1.20.23 +1.20.24 +1.20.25 +1.20.26 +1.20.27 +1.20.28 +1.20.29 +1.20.3 +1.20.30 +1.20.31 +1.20.32 +1.20.33 +1.20.34 +1.20.35 +1.20.35.post1 +1.20.36 +1.20.37 +1.20.38 +1.20.39 +1.20.4 +1.20.40 +1.20.41 +1.20.42 +1.20.43 +1.20.44 +1.20.45 +1.20.46 +1.20.46.post1 +1.20.47 +1.20.48 +1.20.49 +1.20.49.post1 +1.20.5 +1.20.50 +1.20.50.post1 +1.20.51 +1.20.52 +1.20.53 +1.20.54 +1.20.55 +1.20.56 +1.20.57 +1.20.58 +1.20.59 +1.20.6 +1.20.60 +1.20.61 +1.20.62 +1.20.63 +1.20.64 +1.20.65 +1.20.66 +1.20.67 +1.20.68 +1.20.69 +1.20.7 +1.20.70 +1.20.71 +1.20.72 +1.20.73 +1.20.74 +1.20.75 +1.20.76 +1.20.77 +1.20.78 +1.20.79 +1.20.8 +1.20.80 +1.20.81 +1.20.82 +1.20.83 +1.20.84 +1.20.85 +1.20.86 +1.20.87 +1.20.88 +1.20.89 +1.20.9 +1.20.90 +1.20.91 +1.20.92 +1.20.93 +1.20.94 +1.20.95 +1.20.96 +1.20.97 +1.20.98 +1.20.99 +1.200 +1.201 +1.20151229 +1.2019.2 +1.2019.3 +1.20190531 +1.20190621 +1.2021.7 +1.2022.12 +1.2022.13 +1.2022.14 +1.2022.2 +1.2022.3 +1.2022.4 +1.2022.5 +1.2022.6 +1.2022.7 +1.2022.8 +1.2022.9 +1.20221004 +1.20221012 +1.20221116 +1.2023.0 +1.2023.1 +1.2023.2 +1.2023.5 +1.2023.6 +1.2023.7 +1.2023.8 +1.2023.9 +1.20230424 +1.20230427 +1.204.0 +1.207.0 +1.20_1 +1.20_2 +1.20rc1 +1.21 +1.21.0 +1.21.1 +1.21.10 +1.21.11 +1.21.12 +1.21.13 +1.21.14 +1.21.15 +1.21.16 +1.21.17 +1.21.18 +1.21.19 +1.21.2 +1.21.20 +1.21.21 +1.21.22 +1.21.23 +1.21.23.post1 +1.21.23.post2 +1.21.24 +1.21.25 +1.21.26 +1.21.27 +1.21.27.post1 +1.21.28 +1.21.29 +1.21.3 +1.21.30 +1.21.30.post1 +1.21.31 +1.21.32 +1.21.33 +1.21.34 +1.21.34.post1 +1.21.35 +1.21.36 +1.21.37 +1.21.38 +1.21.39 +1.21.4 +1.21.40 +1.21.41 +1.21.42 +1.21.43 +1.21.44 +1.21.45 +1.21.46 +1.21.47 +1.21.48 +1.21.49 +1.21.5 +1.21.50 +1.21.51 +1.21.52 +1.21.53 +1.21.54 +1.21.55 +1.21.56 +1.21.57 +1.21.58 +1.21.59 +1.21.6 +1.21.60 +1.21.61 +1.21.62 +1.21.63 +1.21.64 +1.21.65 +1.21.7 +1.21.8 +1.21.9 +1.210.1 +1.21_3 +1.21_45 +1.21rc1 +1.22 +1.22.0 +1.22.0.post1 +1.22.1 +1.22.1.post1 +1.22.10 +1.22.100 +1.22.101 +1.22.11 +1.22.12 +1.22.13 +1.22.14 +1.22.15 +1.22.16 +1.22.17 +1.22.18 +1.22.19 +1.22.1_1 +1.22.1_2 +1.22.2 +1.22.20 +1.22.21 +1.22.22 +1.22.23 +1.22.24 +1.22.25 +1.22.26 +1.22.27 +1.22.28 +1.22.29 +1.22.3 +1.22.30 +1.22.31 +1.22.32 +1.22.33 +1.22.34 +1.22.35 +1.22.36 +1.22.37 +1.22.38 +1.22.39 +1.22.4 +1.22.40 +1.22.41 +1.22.42 +1.22.43 +1.22.44 +1.22.45 +1.22.46 +1.22.47 +1.22.48 +1.22.49 +1.22.5 +1.22.50 +1.22.51 +1.22.52 +1.22.53 +1.22.54 +1.22.55 +1.22.56 +1.22.57 +1.22.58 +1.22.59 +1.22.6 +1.22.60 +1.22.61 +1.22.62 +1.22.63 +1.22.64 +1.22.65 +1.22.66 +1.22.67 +1.22.68 +1.22.69 +1.22.7 +1.22.70 +1.22.71 +1.22.72 +1.22.73 +1.22.74 +1.22.75 +1.22.76 +1.22.77 +1.22.78 +1.22.79 +1.22.8 +1.22.8.post1 +1.22.80 +1.22.81 +1.22.82 +1.22.83 +1.22.84 +1.22.85 +1.22.86 +1.22.87 +1.22.88 +1.22.89 +1.22.9 +1.22.90 +1.22.91 +1.22.92 +1.22.93 +1.22.94 +1.22.95 +1.22.96 +1.22.97 +1.22.98 +1.22.99 +1.22_1 +1.22_2 +1.22_3 +1.23 +1.23.0 +1.23.0.449_ga04d081 +1.23.0.post1 +1.23.1 +1.23.10 +1.23.11 +1.23.12 +1.23.120.1 +1.23.13 +1.23.14 +1.23.15 +1.23.16 +1.23.17 +1.23.18 +1.23.19 +1.23.2 +1.23.20 +1.23.21 +1.23.22 +1.23.23 +1.23.24 +1.23.25 +1.23.26 +1.23.27 +1.23.28 +1.23.29 +1.23.3 +1.23.30 +1.23.31 +1.23.32 +1.23.33 +1.23.34 +1.23.35 +1.23.35.post1 +1.23.36 +1.23.37 +1.23.38 +1.23.39 +1.23.4 +1.23.40 +1.23.41 +1.23.42 +1.23.43 +1.23.44 +1.23.45 +1.23.46 +1.23.46.post1 +1.23.47 +1.23.48 +1.23.49 +1.23.49.post1 +1.23.5 +1.23.50 +1.23.50.post1 +1.23.51 +1.23.52 +1.23.53 +1.23.54 +1.23.6 +1.23.7 +1.23.8 +1.23.9 +1.231 +1.234.0 +1.236 +1.236.0 +1.237.0 +1.23_002 +1.23_1 +1.24 +1.24.0 +1.24.0.121_g864ba1fb +1.24.0.122_gbc6a7b9e +1.24.0.126_gccbb0fb2 +1.24.0.130_g21895fa6 +1.24.0.132_gc74611b1 +1.24.0.37_g3f461da1 +1.24.0.39_gde1ec7f7 +1.24.1 +1.24.10 +1.24.11 +1.24.11.post3 +1.24.12 +1.24.13 +1.24.14 +1.24.15 +1.24.16 +1.24.17 +1.24.18 +1.24.19 +1.24.2 +1.24.20 +1.24.21 +1.24.22 +1.24.23 +1.24.23.post2 +1.24.24 +1.24.24.post1 +1.24.25 +1.24.26 +1.24.27 +1.24.28 +1.24.29 +1.24.3 +1.24.30 +1.24.31 +1.24.32 +1.24.33 +1.24.34 +1.24.35 +1.24.36 +1.24.36.post1 +1.24.37 +1.24.38 +1.24.39 +1.24.4 +1.24.40 +1.24.41 +1.24.42 +1.24.43 +1.24.43.post1 +1.24.44 +1.24.45 +1.24.46 +1.24.47 +1.24.48 +1.24.49 +1.24.5 +1.24.50 +1.24.51 +1.24.52 +1.24.53 +1.24.54 +1.24.55 +1.24.55.post1 +1.24.56 +1.24.57 +1.24.58 +1.24.59 +1.24.6 +1.24.60 +1.24.60.post1 +1.24.61 +1.24.62 +1.24.63 +1.24.64 +1.24.65 +1.24.66 +1.24.67 +1.24.68 +1.24.69 +1.24.7 +1.24.70 +1.24.71 +1.24.72 +1.24.73 +1.24.74 +1.24.75 +1.24.76 +1.24.77 +1.24.78 +1.24.79 +1.24.8 +1.24.80 +1.24.81 +1.24.82 +1.24.83 +1.24.84 +1.24.85 +1.24.86 +1.24.87 +1.24.88 +1.24.89 +1.24.9 +1.24.90 +1.24.91 +1.24.92 +1.24.93 +1.24.94 +1.24.95 +1.24.96 +1.25 +1.25.0 +1.25.1 +1.25.1.post0 +1.25.10 +1.25.11 +1.25.12 +1.25.13 +1.25.14 +1.25.15 +1.25.16 +1.25.17 +1.25.18 +1.25.19 +1.25.2 +1.25.20 +1.25.21 +1.25.22 +1.25.23 +1.25.24 +1.25.25 +1.25.26 +1.25.27 +1.25.28 +1.25.29 +1.25.3 +1.25.30 +1.25.31 +1.25.32 +1.25.33 +1.25.34 +1.25.35 +1.25.36 +1.25.37 +1.25.38 +1.25.39 +1.25.4 +1.25.40 +1.25.41 +1.25.42 +1.25.43 +1.25.44 +1.25.45 +1.25.46 +1.25.47 +1.25.48 +1.25.49 +1.25.5 +1.25.50 +1.25.51 +1.25.52 +1.25.53 +1.25.54 +1.25.55 +1.25.56 +1.25.57 +1.25.58 +1.25.59 +1.25.6 +1.25.60 +1.25.61 +1.25.62 +1.25.63 +1.25.64 +1.25.65 +1.25.66 +1.25.67 +1.25.68 +1.25.69 +1.25.7 +1.25.70 +1.25.71 +1.25.72 +1.25.73 +1.25.74 +1.25.75 +1.25.76 +1.25.77 +1.25.78 +1.25.79 +1.25.8 +1.25.8.post1 +1.25.80 +1.25.81 +1.25.82 +1.25.83 +1.25.84 +1.25.85 +1.25.86 +1.25.87 +1.25.88 +1.25.89 +1.25.9 +1.25.90 +1.25.91 +1.25.92 +1.25.93 +1.25.94 +1.25.95 +1.25.96 +1.25.97 +1.251 +1.252 +1.26 +1.26.0 +1.26.0.post0 +1.26.0.post1 +1.26.1 +1.26.10 +1.26.11 +1.26.11.post1 +1.26.12 +1.26.13 +1.26.13.post11 +1.26.13.post12 +1.26.13.post16 +1.26.14 +1.26.15 +1.26.16 +1.26.17 +1.26.18 +1.26.19 +1.26.2 +1.26.20 +1.26.21 +1.26.22 +1.26.23 +1.26.24 +1.26.25 +1.26.25.1 +1.26.25.3 +1.26.25.4 +1.26.25.5 +1.26.25.7 +1.26.25.8 +1.26.26 +1.26.27 +1.26.28 +1.26.29 +1.26.3 +1.26.30 +1.26.31 +1.26.32 +1.26.33 +1.26.34 +1.26.35 +1.26.35.post1 +1.26.36 +1.26.37 +1.26.38 +1.26.39 +1.26.4 +1.26.40 +1.26.41 +1.26.42 +1.26.43 +1.26.44 +1.26.45 +1.26.46 +1.26.47 +1.26.47.post1 +1.26.48 +1.26.49 +1.26.5 +1.26.50 +1.26.51 +1.26.52 +1.26.53 +1.26.54 +1.26.55 +1.26.56 +1.26.57 +1.26.58 +1.26.59 +1.26.6 +1.26.60 +1.26.61 +1.26.62 +1.26.63 +1.26.64 +1.26.65 +1.26.66 +1.26.67 +1.26.68 +1.26.69 +1.26.7 +1.26.70 +1.26.71 +1.26.72 +1.26.73 +1.26.74 +1.26.75 +1.26.76 +1.26.77 +1.26.78 +1.26.79 +1.26.8 +1.26.8.post1 +1.26.80 +1.26.81 +1.26.82 +1.26.83 +1.26.84 +1.26.9 +1.27 +1.27.0 +1.27.0.post1 +1.27.1 +1.27.10 +1.27.100 +1.27.101 +1.27.102 +1.27.103 +1.27.104 +1.27.105 +1.27.106 +1.27.107 +1.27.108 +1.27.109 +1.27.11 +1.27.110 +1.27.111 +1.27.112 +1.27.113 +1.27.114 +1.27.115 +1.27.116 +1.27.117 +1.27.118 +1.27.119 +1.27.12 +1.27.120 +1.27.121 +1.27.122 +1.27.123 +1.27.124 +1.27.125 +1.27.126 +1.27.127 +1.27.128 +1.27.129 +1.27.13 +1.27.130 +1.27.131 +1.27.132 +1.27.133 +1.27.134 +1.27.135 +1.27.136 +1.27.137 +1.27.138 +1.27.139 +1.27.14 +1.27.140 +1.27.141 +1.27.142 +1.27.143 +1.27.144 +1.27.145 +1.27.146 +1.27.147 +1.27.148 +1.27.149 +1.27.15 +1.27.150 +1.27.151 +1.27.152 +1.27.153 +1.27.154 +1.27.155 +1.27.16 +1.27.17 +1.27.18 +1.27.19 +1.27.2 +1.27.20 +1.27.21 +1.27.22 +1.27.23 +1.27.24 +1.27.24.post1 +1.27.25 +1.27.26 +1.27.27 +1.27.28 +1.27.29 +1.27.3 +1.27.30 +1.27.31 +1.27.32 +1.27.33 +1.27.34 +1.27.35 +1.27.36 +1.27.37 +1.27.38 +1.27.39 +1.27.4 +1.27.40 +1.27.41 +1.27.42 +1.27.42.post3 +1.27.43 +1.27.44 +1.27.45 +1.27.46 +1.27.47 +1.27.48 +1.27.49 +1.27.5 +1.27.50 +1.27.51 +1.27.52 +1.27.53 +1.27.54 +1.27.55 +1.27.56 +1.27.57 +1.27.58 +1.27.59 +1.27.6 +1.27.60 +1.27.61 +1.27.62 +1.27.63 +1.27.64 +1.27.65 +1.27.66 +1.27.67 +1.27.68 +1.27.69 +1.27.7 +1.27.70 +1.27.71 +1.27.72 +1.27.73 +1.27.74 +1.27.75 +1.27.76 +1.27.77 +1.27.78 +1.27.79 +1.27.8 +1.27.80 +1.27.81 +1.27.82 +1.27.83 +1.27.84 +1.27.85 +1.27.86 +1.27.87 +1.27.88 +1.27.89 +1.27.9 +1.27.90 +1.27.91 +1.27.92 +1.27.93 +1.27.94 +1.27.95 +1.27.96 +1.27.97 +1.27.98 +1.27.99 +1.271 +1.272 +1.28 +1.28.0 +1.28.1 +1.28.2 +1.28.3 +1.28.4 +1.28.5 +1.28.6 +1.28.7 +1.29 +1.29.0 +1.29.0.post0 +1.29.1 +1.29.10 +1.29.11 +1.29.12 +1.29.13 +1.29.14 +1.29.15 +1.29.16 +1.29.17 +1.29.18 +1.29.19 +1.29.2 +1.29.2.post1 +1.29.2.post2 +1.29.20 +1.29.21 +1.29.22 +1.29.23 +1.29.24 +1.29.25 +1.29.26 +1.29.27 +1.29.28 +1.29.29 +1.29.3 +1.29.3.post1 +1.29.30 +1.29.31 +1.29.32 +1.29.33 +1.29.34 +1.29.35 +1.29.36 +1.29.37 +1.29.38 +1.29.39 +1.29.4 +1.29.40 +1.29.41 +1.29.42 +1.29.43 +1.29.44 +1.29.45 +1.29.46 +1.29.47 +1.29.48 +1.29.49 +1.29.5 +1.29.50 +1.29.51 +1.29.52 +1.29.53 +1.29.54 +1.29.55 +1.29.56 +1.29.57 +1.29.58 +1.29.59 +1.29.6 +1.29.60 +1.29.61 +1.29.62 +1.29.63 +1.29.64 +1.29.65 +1.29.66 +1.29.67 +1.29.68 +1.29.69 +1.29.7 +1.29.7.post1 +1.29.70 +1.29.71 +1.29.72 +1.29.73 +1.29.74 +1.29.75 +1.29.76 +1.29.77 +1.29.78 +1.29.79 +1.29.8 +1.29.80 +1.29.81 +1.29.82 +1.29.83 +1.29.84 +1.29.9 +1.2_0 +1.2_0.1 +1.2_1 +1.2_1.1 +1.2_10 +1.2_11 +1.2_12 +1.2_13 +1.2_14 +1.2_15 +1.2_16 +1.2_17 +1.2_18 +1.2_19 +1.2_2 +1.2_20 +1.2_21 +1.2_21.1 +1.2_22 +1.2_3 +1.2_4 +1.2_5 +1.2_6 +1.2_60 +1.2_7 +1.2_7.1 +1.2_8 +1.2_9 +1.2b0_20160930b0 +1.2b0_20160930b1 +1.2rc2 +1.2rc3 +1.3 +1.3.0 +1.3.0.0 +1.3.0.1 +1.3.0.2 +1.3.0.20190205182514 +1.3.0.20190206223817 +1.3.0.20190221150417 +1.3.0.3 +1.3.0.post +1.3.0.post1 +1.3.0.post2 +1.3.0.post2209 +1.3.0.post2210 +1.3.0.post2211 +1.3.0.post2212 +1.3.0.post2301 +1.3.0.post2302 +1.3.0.post2303 +1.3.0.post3 +1.3.0.post4 +1.3.0.pre +1.3.0_1 +1.3.0_2 +1.3.0rc1 +1.3.1 +1.3.1.1 +1.3.1.3 +1.3.1.post0 +1.3.1.post1 +1.3.10 +1.3.1000 +1.3.11 +1.3.11.post3 +1.3.11.post4 +1.3.12 +1.3.13 +1.3.13.post0 +1.3.13.post1 +1.3.14 +1.3.14.post0 +1.3.14.post1 +1.3.14.post2 +1.3.14.post3 +1.3.14.post4 +1.3.15 +1.3.15.1 +1.3.16 +1.3.17 +1.3.18 +1.3.19 +1.3.190304ac +1.3.1_10 +1.3.1_2 +1.3.1_3 +1.3.1_4 +1.3.1_5 +1.3.1_6 +1.3.1_7 +1.3.1_8 +1.3.1_9 +1.3.1a1 +1.3.2 +1.3.2.1 +1.3.2.2 +1.3.2.3 +1.3.2.4 +1.3.2.5 +1.3.2.6 +1.3.2.post0 +1.3.2.post1 +1.3.2.post2 +1.3.20 +1.3.21 +1.3.216.0 +1.3.22 +1.3.23 +1.3.231.1 +1.3.239.0 +1.3.24 +1.3.243.0 +1.3.25 +1.3.250.0 +1.3.26 +1.3.27 +1.3.28 +1.3.29 +1.3.2_1 +1.3.2b1.post4 +1.3.2b3 +1.3.3 +1.3.3.0 +1.3.3.1 +1.3.3.2 +1.3.3.dev0 +1.3.3.post0 +1.3.30 +1.3.31 +1.3.32 +1.3.33 +1.3.34 +1.3.340 +1.3.35 +1.3.353 +1.3.36 +1.3.361 +1.3.37 +1.3.38 +1.3.39 +1.3.3_1 +1.3.3e +1.3.4 +1.3.4.0 +1.3.4.1 +1.3.40 +1.3.41 +1.3.42 +1.3.43 +1.3.44 +1.3.49.5 +1.3.5 +1.3.5.1 +1.3.6 +1.3.6.1 +1.3.6.2 +1.3.7 +1.3.7.1 +1.3.7.post0 +1.3.8 +1.3.8.1 +1.3.8.1.1 +1.3.8.1.2 +1.3.8.1.3 +1.3.8.2 +1.3.9 +1.3.93 +1.3.99 +1.3.993 +1.3.dev +1.3.post1 +1.30 +1.30.0 +1.30.1 +1.30.10 +1.30.12 +1.30.13 +1.30.14 +1.30.15 +1.30.16 +1.30.17 +1.30.18 +1.30.19 +1.30.2 +1.30.20 +1.30.3 +1.30.4 +1.30.5 +1.30.6 +1.30.7 +1.30.8 +1.30.9 +1.300 +1.302075 +1.302164 +1.302188 +1.302189 +1.302190 +1.302191 +1.31 +1.31.0 +1.31.1 +1.31.2 +1.31.3 +1.31.4 +1.31.5 +1.31.6 +1.310 +1.32 +1.32.0 +1.32.1 +1.32.3 +1.32.8 +1.33 +1.33.0 +1.33.1 +1.33.2 +1.33.3 +1.33.4 +1.34 +1.34.0 +1.34.1 +1.34.2 +1.34.3 +1.34.5 +1.34.6 +1.34.8 +1.35 +1.35.0 +1.35.1 +1.35.2 +1.35.3 +1.35.4 +1.35.4.post0 +1.35.5 +1.35.6 +1.36 +1.36.0 +1.36.1 +1.36.2 +1.36.3 +1.36.4 +1.37 +1.37.0 +1.37.1 +1.37.2 +1.37.5 +1.373 +1.38 +1.38.0 +1.38.1 +1.38.11 +1.38.12 +1.38.13 +1.38.14 +1.38.15 +1.38.16 +1.38.18 +1.38.19 +1.38.2 +1.38.20 +1.38.21 +1.38.22 +1.38.24 +1.38.25 +1.38.27 +1.38.28 +1.38.29 +1.38.3 +1.38.30 +1.38.31 +1.38.32 +1.38.48 +1.38.5 +1.38.6 +1.38.9 +1.38_03 +1.39 +1.39.0 +1.39.1 +1.3_0 +1.3_1 +1.3_1.1 +1.3_1.2 +1.3_1.3 +1.3_1.4 +1.3_1.5 +1.3_1.6 +1.3_1.7 +1.3_1.8 +1.3_10 +1.3_11 +1.3_12 +1.3_13 +1.3_14 +1.3_15 +1.3_16 +1.3_17 +1.3_18 +1.3_19 +1.3_2 +1.3_20 +1.3_21 +1.3_22 +1.3_23 +1.3_24 +1.3_25 +1.3_26 +1.3_27 +1.3_28 +1.3_28.1 +1.3_3 +1.3_4 +1.3_5 +1.3_6 +1.3_7 +1.3_8 +1.3_9 +1.3_9.1 +1.3a1 +1.3rc2 +1.4 +1.4.0 +1.4.0.0 +1.4.0.1 +1.4.0.2 +1.4.0.20210127.165413 +1.4.0.6 +1.4.0.post0 +1.4.0.post1 +1.4.0.pre +1.4.07 +1.4.0_1 +1.4.0a1 +1.4.0rc1 +1.4.1 +1.4.1.0 +1.4.1.1 +1.4.1.dev +1.4.1.post1 +1.4.1.post3 +1.4.10 +1.4.102 +1.4.105 +1.4.107 +1.4.108 +1.4.109 +1.4.11 +1.4.111 +1.4.112 +1.4.114 +1.4.116 +1.4.119 +1.4.12 +1.4.12.post1 +1.4.120 +1.4.122 +1.4.126 +1.4.13 +1.4.13.post1 +1.4.131 +1.4.132 +1.4.133 +1.4.134 +1.4.138 +1.4.14 +1.4.142 +1.4.145 +1.4.15 +1.4.150 +1.4.154 +1.4.16 +1.4.160 +1.4.162 +1.4.165 +1.4.166 +1.4.17 +1.4.17.post1 +1.4.18 +1.4.19 +1.4.2 +1.4.2.0 +1.4.2.220626 +1.4.2.post1 +1.4.2.post2 +1.4.20 +1.4.21 +1.4.22 +1.4.23 +1.4.24 +1.4.25 +1.4.26 +1.4.27 +1.4.28 +1.4.28.3 +1.4.29 +1.4.3 +1.4.3.0 +1.4.3.01 +1.4.3.1 +1.4.3.2 +1.4.3.220702 +1.4.3.220703 +1.4.3.220704 +1.4.3.220710 +1.4.3.220718 +1.4.3.220724 +1.4.3.220801 +1.4.3.220807 +1.4.3.220815 +1.4.3.220822 +1.4.3.220829 +1.4.3.post0 +1.4.30 +1.4.31 +1.4.32 +1.4.33 +1.4.34 +1.4.35 +1.4.36 +1.4.37 +1.4.38 +1.4.39 +1.4.3_1 +1.4.4 +1.4.4.1 +1.4.4.220906 +1.4.4.220912 +1.4.4.220919 +1.4.4.post0 +1.4.4.post1 +1.4.40 +1.4.41 +1.4.42 +1.4.43 +1.4.44 +1.4.45 +1.4.46 +1.4.48 +1.4.49 +1.4.5 +1.4.5.0 +1.4.5.1 +1.4.5.2 +1.4.5.3 +1.4.50 +1.4.51 +1.4.52 +1.4.53 +1.4.54 +1.4.56 +1.4.58 +1.4.59 +1.4.6 +1.4.6.0 +1.4.6.1 +1.4.62 +1.4.64 +1.4.68.19.3.27 +1.4.7 +1.4.70 +1.4.71 +1.4.72 +1.4.73 +1.4.75 +1.4.76 +1.4.77 +1.4.78 +1.4.8 +1.4.8.1 +1.4.8.7 +1.4.81 +1.4.84 +1.4.85 +1.4.87 +1.4.88 +1.4.9 +1.4.9.0 +1.4.9.1 +1.4.9.57 +1.4.9.post1 +1.4.90 +1.4.91 +1.4.92 +1.4.93 +1.4.97 +1.4.98 +1.4.99 +1.40 +1.40.0 +1.40.1 +1.40.14 +1.40.2 +1.40.3 +1.40.4 +1.40.6 +1.40.7 +1.40_2 +1.40_3 +1.40_5 +1.41 +1.41.0 +1.41.1 +1.412 +1.413 +1.414 +1.41_6 +1.42 +1.42.0 +1.42.1 +1.42.2 +1.42.3 +1.42.4 +1.43 +1.43.0 +1.43.1 +1.43.10 +1.43.14 +1.43.15 +1.43.17 +1.43.2 +1.43.4 +1.43.4.post1 +1.43.5 +1.43.6 +1.43.7 +1.43.8 +1.44 +1.44.0 +1.44.1 +1.44.2 +1.44.3 +1.44.4 +1.44.5 +1.44.6 +1.44.7 +1.443 +1.44_9 +1.45 +1.45.0 +1.45.1 +1.45.2 +1.45.6 +1.45.7 +1.45_11 +1.46 +1.46.0 +1.46.1 +1.46.2 +1.46.3 +1.46.4 +1.46_2 +1.47 +1.47.0 +1.47.1 +1.47.10 +1.47.11 +1.47.12 +1.47.13 +1.47.14 +1.47.15 +1.47.16 +1.47.17 +1.47.3 +1.47.4 +1.47.6 +1.47.8 +1.47.9 +1.47_9 +1.48 +1.48.0 +1.48.1 +1.48.10 +1.48.3 +1.48.4 +1.48.5 +1.48.6 +1.48.7 +1.48.8 +1.48.9 +1.48_1 +1.49 +1.49.0 +1.49.1 +1.49.2 +1.49.3 +1.49.4 +1.4_0 +1.4_1 +1.4_10 +1.4_11 +1.4_12 +1.4_13 +1.4_14 +1.4_15 +1.4_16 +1.4_17 +1.4_18 +1.4_19 +1.4_2 +1.4_2.1 +1.4_20 +1.4_22 +1.4_3 +1.4_4 +1.4_5 +1.4_6 +1.4_7 +1.4_8 +1.4_9 +1.4dev2 +1.4rc1 +1.5 +1.5.0 +1.5.0.0 +1.5.0.1 +1.5.0.2 +1.5.0.20221221.150433 +1.5.0.220926 +1.5.0.221003 +1.5.0.221010 +1.5.0.221012 +1.5.0.3 +1.5.0.37 +1.5.0.4 +1.5.0.59 +1.5.0.6 +1.5.0.63 +1.5.0.87 +1.5.0.post1 +1.5.0.pre +1.5.00 +1.5.0_1 +1.5.0_beta20160623 +1.5.0_beta20161122 +1.5.0beta +1.5.0rc0 +1.5.0rc1 +1.5.1 +1.5.1.1 +1.5.1.2 +1.5.1.221024 +1.5.1.post0 +1.5.1.post1 +1.5.1.post2 +1.5.10 +1.5.11 +1.5.12 +1.5.13 +1.5.14 +1.5.15 +1.5.16 +1.5.17 +1.5.18 +1.5.19 +1.5.1b +1.5.2 +1.5.2.221124 +1.5.2.230105 +1.5.20 +1.5.21 +1.5.21.1 +1.5.21.2 +1.5.21.3 +1.5.22 +1.5.23 +1.5.24 +1.5.25 +1.5.26 +1.5.27 +1.5.28 +1.5.29 +1.5.2_1 +1.5.3 +1.5.3.1 +1.5.3.230203 +1.5.3.230214 +1.5.30 +1.5.31 +1.5.32 +1.5.33 +1.5.34 +1.5.35 +1.5.36 +1.5.37 +1.5.38 +1.5.39 +1.5.3_4 +1.5.4 +1.5.5 +1.5.5.1 +1.5.5.3 +1.5.55 +1.5.5_1 +1.5.6 +1.5.69.6 +1.5.7 +1.5.8 +1.5.8.1 +1.5.8.2 +1.5.8.3 +1.5.8.4 +1.5.82 +1.5.83 +1.5.84 +1.5.86 +1.5.87 +1.5.88 +1.5.9 +1.5.90 +1.5.91 +1.5.92 +1.50 +1.50.0 +1.50.1 +1.50.10 +1.50.11 +1.50.12 +1.50.13 +1.50.14 +1.50.2 +1.50.3 +1.50.4 +1.50.5 +1.50.6 +1.50.7 +1.50.8 +1.50.9 +1.502 +1.503 +1.504 +1.51 +1.51.0 +1.51.07 +1.51.1 +1.51.2 +1.51.3 +1.51.5 +1.52 +1.52.0 +1.52.1 +1.52.2 +1.52.3 +1.52.4 +1.52.5 +1.53 +1.53.0 +1.53.0.dev20210324 +1.53.1 +1.53.2 +1.53.3 +1.53.4 +1.53.5 +1.54 +1.54.0 +1.54.1 +1.54.2 +1.54.3 +1.54.4 +1.54_0 +1.55 +1.55.0 +1.55.1 +1.55.2 +1.55.3 +1.55.4 +1.56 +1.56.0 +1.56.1 +1.56.2 +1.56.3 +1.56.4 +1.56_0 +1.57 +1.57.0 +1.57.1 +1.57_1 +1.58 +1.58.0 +1.58.1 +1.58.2 +1.58.3 +1.59 +1.59.0 +1.59.1 +1.59.2 +1.59.3 +1.5_0 +1.5_0.1 +1.5_1 +1.5_10 +1.5_11 +1.5_12 +1.5_12.2 +1.5_14 +1.5_15 +1.5_16 +1.5_17 +1.5_18 +1.5_2 +1.5_21 +1.5_23 +1.5_28 +1.5_29 +1.5_3 +1.5_32 +1.5_4 +1.5_4.1 +1.5_5 +1.5_6 +1.5_7 +1.5_8 +1.5_9 +1.5_9.1 +1.5_9.2 +1.5_9.4 +1.5_9.5 +1.5_9.6 +1.5_9.7 +1.5_9.8 +1.6 +1.6.0 +1.6.0.1 +1.6.0.2 +1.6.0.3 +1.6.0.47 +1.6.0.post0 +1.6.0.post1 +1.6.0.post2 +1.6.0a +1.6.0rc0 +1.6.1 +1.6.1.0 +1.6.1.5 +1.6.10 +1.6.10.43 +1.6.11 +1.6.12 +1.6.12.post0 +1.6.13 +1.6.14 +1.6.14.post0 +1.6.15 +1.6.16 +1.6.17 +1.6.17.0 +1.6.18 +1.6.19 +1.6.2 +1.6.2.0 +1.6.2.3 +1.6.20 +1.6.20180829 +1.6.21 +1.6.22 +1.6.22.post0 +1.6.23 +1.6.23.post0 +1.6.24 +1.6.25 +1.6.26 +1.6.28 +1.6.2_1 +1.6.3 +1.6.3.0 +1.6.3.1 +1.6.3.4 +1.6.34 +1.6.35 +1.6.36 +1.6.37 +1.6.38 +1.6.39 +1.6.3rc4 +1.6.4 +1.6.4.0 +1.6.4.1 +1.6.4.2 +1.6.4.4 +1.6.4.6 +1.6.4.7.1 +1.6.4.9 +1.6.5 +1.6.5.0 +1.6.5rc5 +1.6.6 +1.6.6.0 +1.6.6.1 +1.6.6.2 +1.6.6.3 +1.6.6.4 +1.6.6_1 +1.6.6rc1 +1.6.7 +1.6.7.post1 +1.6.7.post2 +1.6.7rc1 +1.6.7rc2 +1.6.7rc3 +1.6.7rc4 +1.6.8 +1.6.8.0 +1.6.8.1 +1.6.8.2 +1.6.9 +1.6.9.0 +1.6.9.2 +1.6.9.5 +1.6.9.7 +1.6.9.9 +1.6.905 +1.60 +1.60.0 +1.60.1 +1.60.2 +1.601 +1.60_1 +1.61 +1.61.0 +1.61.1 +1.61.3 +1.61_0 +1.62 +1.62.0 +1.62.0_1 +1.62.1 +1.62.2 +1.62_2 +1.63 +1.63.0 +1.63.1 +1.63.2 +1.63_0 +1.63_1 +1.63_2 +1.63_3 +1.64 +1.64.0 +1.64.1 +1.643 +1.64_1 +1.65.0 +1.65.0_1 +1.65.1 +1.65_3 +1.65_5 +1.66.0 +1.66.0_1 +1.66.1 +1.6611 +1.67 +1.67.0 +1.67.1 +1.68 +1.68.0 +1.68.2 +1.69 +1.69.0 +1.69.0_1 +1.6_0 +1.6_0.10 +1.6_0.11 +1.6_0.12 +1.6_1 +1.6_1.1 +1.6_2 +1.6_3 +1.6_4 +1.6_5 +1.6_6 +1.6_7 +1.6_8 +1.7 +1.7.0 +1.7.0.0 +1.7.0.1 +1.7.0.181 +1.7.0.221 +1.7.0.251 +1.7.0.261 +1.7.0.4 +1.7.0.6 +1.7.1 +1.7.1.0 +1.7.1.1 +1.7.1.2 +1.7.1.4 +1.7.1.8 +1.7.10 +1.7.100 +1.7.11 +1.7.12 +1.7.13 +1.7.14 +1.7.143 +1.7.145 +1.7.149 +1.7.15 +1.7.154 +1.7.159 +1.7.16 +1.7.160 +1.7.164 +1.7.17 +1.7.18 +1.7.19 +1.7.1_1 +1.7.2 +1.7.2.0 +1.7.2.1 +1.7.2.2 +1.7.2.post0 +1.7.20 +1.7.21 +1.7.22 +1.7.23 +1.7.24 +1.7.25 +1.7.26 +1.7.266 +1.7.27 +1.7.28 +1.7.29 +1.7.299 +1.7.2_1 +1.7.3 +1.7.3.0 +1.7.3.1 +1.7.3.2 +1.7.3.21 +1.7.3.3 +1.7.3.4 +1.7.3.5 +1.7.30 +1.7.309 +1.7.31 +1.7.310 +1.7.32 +1.7.33 +1.7.34 +1.7.35 +1.7.36 +1.7.37 +1.7.38 +1.7.39 +1.7.3_1 +1.7.4 +1.7.4.0 +1.7.4.1 +1.7.4.3 +1.7.40 +1.7.41 +1.7.42 +1.7.43 +1.7.44 +1.7.45 +1.7.46 +1.7.47 +1.7.48 +1.7.49 +1.7.4_0 +1.7.4_1 +1.7.5 +1.7.5.0 +1.7.5.1 +1.7.5.2 +1.7.5.3 +1.7.5.4 +1.7.50 +1.7.51 +1.7.52 +1.7.53 +1.7.54 +1.7.55 +1.7.56 +1.7.57 +1.7.58 +1.7.59 +1.7.5b +1.7.6 +1.7.6.0 +1.7.6.1 +1.7.6.5 +1.7.6.6 +1.7.60 +1.7.61 +1.7.62 +1.7.63 +1.7.64 +1.7.65 +1.7.66 +1.7.67 +1.7.68 +1.7.69 +1.7.7 +1.7.7.0 +1.7.70 +1.7.71 +1.7.72 +1.7.73 +1.7.74 +1.7.75 +1.7.76 +1.7.77 +1.7.78 +1.7.79 +1.7.8 +1.7.80 +1.7.81 +1.7.82 +1.7.83 +1.7.84 +1.7.9 +1.7.9.2 +1.70 +1.70.0 +1.7043 +1.7045 +1.7046 +1.71 +1.71.0 +1.710 +1.72 +1.72.0 +1.72.0_2 +1.72.0_3 +1.72.2 +1.73 +1.73.0 +1.73.1 +1.74 +1.74.0 +1.75 +1.75.0 +1.75.0_0 +1.75.1 +1.76 +1.76.0 +1.76.1 +1.76.2 +1.77 +1.77.0 +1.77.1 +1.77.2 +1.77.3 +1.78 +1.78.0 +1.78.0_0 +1.78.1 +1.79 +1.79.0 +1.79.2 +1.79.3 +1.7_0 +1.7_1 +1.7_10 +1.7_11 +1.7_12 +1.7_13 +1.7_14 +1.7_15 +1.7_16 +1.7_17 +1.7_18 +1.7_19 +1.7_2 +1.7_20 +1.7_22 +1.7_23 +1.7_28 +1.7_29 +1.7_3 +1.7_3.1 +1.7_4 +1.7_5 +1.7_5.2 +1.7_5.2.1 +1.7_5.2.2 +1.7_6 +1.7_7 +1.7_8 +1.7_9 +1.8 +1.8.0 +1.8.0.1 +1.8.1 +1.8.1.2 +1.8.1.2c +1.8.10 +1.8.11 +1.8.12 +1.8.122 +1.8.124 +1.8.126 +1.8.127 +1.8.13 +1.8.130 +1.8.134 +1.8.138 +1.8.14 +1.8.144 +1.8.15 +1.8.151 +1.8.152 +1.8.157 +1.8.16 +1.8.17 +1.8.18 +1.8.186 +1.8.19 +1.8.1_1 +1.8.1rc1 +1.8.2 +1.8.2.1 +1.8.2.2 +1.8.2.3 +1.8.2.post2 +1.8.20 +1.8.21 +1.8.22 +1.8.23 +1.8.28 +1.8.3 +1.8.32 +1.8.36 +1.8.37 +1.8.38 +1.8.39 +1.8.4 +1.8.4.2 +1.8.40 +1.8.41 +1.8.42 +1.8.43 +1.8.44 +1.8.45 +1.8.46 +1.8.47 +1.8.48 +1.8.49 +1.8.4_1 +1.8.5 +1.8.50 +1.8.52 +1.8.54 +1.8.56 +1.8.59 +1.8.6 +1.8.6.0 +1.8.6.5 +1.8.63 +1.8.7 +1.8.7.0 +1.8.70 +1.8.74 +1.8.8 +1.8.8.0 +1.8.9 +1.8.9.0 +1.8.9.post2 +1.80 +1.80.0 +1.80.1 +1.80.4 +1.80.5 +1.81 +1.81.0 +1.81.0_1 +1.81.1 +1.82.0 +1.83.0 +1.83.0.dev13 +1.837 +1.84 +1.84.0 +1.840 +1.84_6.1 +1.84_6.2 +1.85 +1.85.0 +1.85.1 +1.855 +1.856 +1.857 +1.858 +1.86 +1.86.0 +1.87 +1.87.0 +1.87.1 +1.876 +1.878 +1.879 +1.88 +1.88.0 +1.881 +1.89 +1.89.0 +1.8_0 +1.8_1 +1.8_10 +1.8_11 +1.8_12 +1.8_13 +1.8_17 +1.8_2 +1.8_24 +1.8_26 +1.8_27 +1.8_28 +1.8_29 +1.8_3 +1.8_31 +1.8_32 +1.8_33 +1.8_34 +1.8_35 +1.8_36 +1.8_37 +1.8_38 +1.8_39 +1.8_4 +1.8_40 +1.8_41 +1.8_42 +1.8_5 +1.8_6 +1.8_7 +1.8_8 +1.8_9 +1.8rc1 +1.8rc2 +1.9 +1.9.0 +1.9.0.0 +1.9.0.1 +1.9.0.2 +1.9.0.21 +1.9.0.3 +1.9.0.4 +1.9.0.post1 +1.9.0.post145 +1.9.0.post25 +1.9.0.post84 +1.9.0a3 +1.9.1 +1.9.1.0 +1.9.1.1 +1.9.10 +1.9.10.1 +1.9.100 +1.9.101 +1.9.102 +1.9.103 +1.9.104 +1.9.105 +1.9.106 +1.9.107 +1.9.108 +1.9.109 +1.9.11 +1.9.110 +1.9.111 +1.9.112 +1.9.113 +1.9.114 +1.9.115 +1.9.116 +1.9.117 +1.9.118 +1.9.119 +1.9.12 +1.9.12.31 +1.9.120 +1.9.121 +1.9.122 +1.9.123 +1.9.124 +1.9.125 +1.9.126 +1.9.127 +1.9.128 +1.9.129 +1.9.13 +1.9.130 +1.9.131 +1.9.132 +1.9.133 +1.9.134 +1.9.135 +1.9.136 +1.9.137 +1.9.138 +1.9.139 +1.9.14 +1.9.140 +1.9.141 +1.9.142 +1.9.143 +1.9.144 +1.9.145 +1.9.146 +1.9.147 +1.9.148 +1.9.149 +1.9.15 +1.9.150 +1.9.151 +1.9.152 +1.9.153 +1.9.154 +1.9.155 +1.9.156 +1.9.157 +1.9.158 +1.9.159 +1.9.16 +1.9.160 +1.9.161 +1.9.162 +1.9.163 +1.9.164 +1.9.165 +1.9.166 +1.9.167 +1.9.168 +1.9.169 +1.9.17 +1.9.170 +1.9.171 +1.9.172 +1.9.173 +1.9.174 +1.9.175 +1.9.176 +1.9.177 +1.9.178 +1.9.179 +1.9.18 +1.9.180 +1.9.181 +1.9.182 +1.9.183 +1.9.184 +1.9.185 +1.9.186 +1.9.187 +1.9.188 +1.9.189 +1.9.19 +1.9.190 +1.9.191 +1.9.192 +1.9.193 +1.9.194 +1.9.195 +1.9.196 +1.9.197 +1.9.198 +1.9.199 +1.9.2 +1.9.2.1 +1.9.2.4 +1.9.2.6 +1.9.2.8 +1.9.20 +1.9.200 +1.9.201 +1.9.202 +1.9.20220401 +1.9.203 +1.9.204 +1.9.205 +1.9.206 +1.9.207 +1.9.208 +1.9.209 +1.9.21 +1.9.210 +1.9.211 +1.9.212 +1.9.213 +1.9.214 +1.9.215 +1.9.216 +1.9.217 +1.9.218 +1.9.219 +1.9.22 +1.9.220 +1.9.221 +1.9.222 +1.9.223 +1.9.224 +1.9.225 +1.9.226 +1.9.227 +1.9.228 +1.9.229 +1.9.23 +1.9.230 +1.9.231 +1.9.232 +1.9.233 +1.9.234 +1.9.235 +1.9.236 +1.9.237 +1.9.238 +1.9.239 +1.9.24 +1.9.240 +1.9.241 +1.9.242 +1.9.243 +1.9.244 +1.9.245 +1.9.246 +1.9.247 +1.9.248 +1.9.249 +1.9.25 +1.9.250 +1.9.251 +1.9.252 +1.9.253 +1.9.254 +1.9.255 +1.9.256 +1.9.257 +1.9.258 +1.9.259 +1.9.26 +1.9.261 +1.9.262 +1.9.263 +1.9.264 +1.9.265 +1.9.268 +1.9.269 +1.9.27 +1.9.270 +1.9.271 +1.9.272 +1.9.273 +1.9.274 +1.9.275 +1.9.276 +1.9.277 +1.9.278 +1.9.279 +1.9.28 +1.9.280 +1.9.281 +1.9.282 +1.9.283 +1.9.284 +1.9.285 +1.9.286 +1.9.287 +1.9.288 +1.9.289 +1.9.29 +1.9.290 +1.9.291 +1.9.292 +1.9.293 +1.9.294 +1.9.296 +1.9.297 +1.9.298 +1.9.299 +1.9.3 +1.9.3.0 +1.9.3.2 +1.9.3.4 +1.9.3.6 +1.9.3.8 +1.9.30 +1.9.300 +1.9.301 +1.9.302 +1.9.303 +1.9.304 +1.9.305 +1.9.306 +1.9.307 +1.9.308 +1.9.309 +1.9.31 +1.9.310 +1.9.311 +1.9.312 +1.9.313 +1.9.314 +1.9.315 +1.9.316 +1.9.317 +1.9.318 +1.9.319 +1.9.32 +1.9.320 +1.9.321 +1.9.326 +1.9.327 +1.9.328 +1.9.33 +1.9.330 +1.9.331 +1.9.332 +1.9.333 +1.9.334 +1.9.335 +1.9.336 +1.9.337 +1.9.338 +1.9.339 +1.9.34 +1.9.340 +1.9.341 +1.9.342 +1.9.343 +1.9.344 +1.9.345 +1.9.346 +1.9.347 +1.9.348 +1.9.349 +1.9.35 +1.9.350 +1.9.351 +1.9.352 +1.9.353 +1.9.354 +1.9.356 +1.9.357 +1.9.358 +1.9.359 +1.9.36 +1.9.361 +1.9.362 +1.9.363 +1.9.364 +1.9.365 +1.9.366 +1.9.367 +1.9.368 +1.9.369 +1.9.37 +1.9.370 +1.9.371 +1.9.372 +1.9.373 +1.9.374 +1.9.375 +1.9.376 +1.9.377 +1.9.378 +1.9.379 +1.9.38 +1.9.39 +1.9.4 +1.9.4.0 +1.9.4.4 +1.9.40 +1.9.41 +1.9.42 +1.9.43 +1.9.44 +1.9.45 +1.9.46 +1.9.47 +1.9.48 +1.9.49 +1.9.5 +1.9.5.0 +1.9.5.1 +1.9.5.6 +1.9.5.8 +1.9.5.post0 +1.9.50 +1.9.51 +1.9.52 +1.9.53 +1.9.54 +1.9.55 +1.9.56 +1.9.57 +1.9.58 +1.9.59 +1.9.6 +1.9.6.0 +1.9.6.2 +1.9.6.4 +1.9.6.8 +1.9.60 +1.9.61 +1.9.62 +1.9.63 +1.9.64 +1.9.65 +1.9.66 +1.9.67 +1.9.68 +1.9.69 +1.9.7 +1.9.7.0 +1.9.7.1 +1.9.7.2 +1.9.7.4 +1.9.7.6 +1.9.70 +1.9.71 +1.9.72 +1.9.73 +1.9.74 +1.9.75 +1.9.76 +1.9.77 +1.9.78 +1.9.79 +1.9.8 +1.9.8.11 +1.9.8.15 +1.9.8.20 +1.9.8.8 +1.9.80 +1.9.81 +1.9.82 +1.9.83 +1.9.84 +1.9.85 +1.9.86 +1.9.87 +1.9.88 +1.9.89 +1.9.9 +1.9.9.0 +1.9.9.1 +1.9.9.11 +1.9.9.18 +1.9.9.38 +1.9.9.44 +1.9.90 +1.9.91 +1.9.92 +1.9.93 +1.9.94 +1.9.95 +1.9.96 +1.9.97 +1.9.98 +1.9.99 +1.90 +1.90.0 +1.900.1 +1.91 +1.91.0 +1.92 +1.92.0 +1.93 +1.93.0 +1.93.4 +1.93.5 +1.94.0 +1.95.1 +1.95_4.11 +1.95_4.12 +1.95_4.13 +1.95_4.8 +1.96.0 +1.96.1 +1.96.2 +1.96.3 +1.967015 +1.97.0 +1.98 +1.98.0 +1.98_1.1 +1.98_1.10 +1.98_1.12 +1.98_1.2 +1.98_1.3 +1.98_1.4 +1.98_1.5 +1.98_1.6 +1.98_1.7 +1.98_1.8 +1.98_1.9 +1.99.0 +1.99.8 +1.991 +1.992 +1.993 +1.999816 +1.999829 +1.999830 +1.999831 +1.999832 +1.999833 +1.999835 +1.999836 +1.999837 +1.9_0 +1.9_1 +1.9_10.3 +1.9_12 +1.9_13 +1.9_15 +1.9_16 +1.9_19 +1.9_2 +1.9_2.1 +1.9_3 +1.9_61 +1.9_7 +1.9_73 +1.9_74 +1.9rc1 +10 +10.0 +10.0.0 +10.0.0.2020.03.26 +10.0.0.post2 +10.0.1 +10.0.10 +10.0.11 +10.0.130 +10.0.15 +10.0.17134.0 +10.0.17763.0 +10.0.2 +10.0.20348.0 +10.0.22621.0 +10.0.26.0 +10.0.26.1 +10.0.3 +10.0.4 +10.0.5 +10.0.6 +10.0.7 +10.0.8 +10.0.9 +10.0_1 +10.1 +10.1.0 +10.1.1 +10.1.1.70.5 +10.1.1.70.6 +10.1.2 +10.1.243 +10.1.3 +10.1.4 +10.1.5 +10.10.0 +10.11.0 +10.12.0 +10.13.0 +10.14.0 +10.14.1 +10.15.0 +10.15.1 +10.15.2 +10.15.3 +10.16.0 +10.16.1 +10.16.2 +10.16.3 +10.2 +10.2.0 +10.2.0.post1 +10.2.1 +10.2.10 +10.2.11 +10.2.13 +10.2.15 +10.2.16 +10.2.2 +10.2.3 +10.2.4 +10.2.5 +10.2.6 +10.2.7 +10.2.89 +10.2.9 +10.20220121 +10.20220127 +10.20220128 +10.20220222 +10.20220223 +10.20220322 +10.20220504 +10.20220505 +10.20220525 +10.20220526 +10.20220624 +10.20220724 +10.20220725 +10.20220822 +10.20220927 +10.20230126 +10.20230227 +10.20230407 +10.21 +10.22.0 +10.23 +10.3 +10.3.0 +10.3.0.71.0 +10.3.1 +10.3.1.50 +10.3.2 +10.3.3 +10.3.4 +10.30 +10.31 +10.34 +10.35 +10.36 +10.37 +10.4 +10.4.0 +10.4.1 +10.4.11 +10.4.12 +10.4.13 +10.4.14 +10.4.15 +10.4.16 +10.4.17 +10.4.18 +10.4.19 +10.4.2 +10.4.20 +10.4.21 +10.4.22 +10.4.23 +10.4.3 +10.4.4 +10.4.5 +10.4.6 +10.4.7 +10.4.8 +10.4.9 +10.40 +10.5 +10.5.0 +10.5.1 +10.5.10 +10.5.2 +10.5.3 +10.5.4 +10.5.5 +10.5.6 +10.5.7 +10.5.9 +10.6 +10.6.0 +10.6.0.patch2 +10.6.0.pre4 +10.6.1 +10.6.2 +10.6.3 +10.7.0 +10.7.1 +10.7.2 +10.7.3 +10.7.4 +10.7.5 +10.7.6 +10.73.28 +10.73.29 +10.73.30 +10.73.31 +10.73.32 +10.73.33 +10.73.34 +10.73.35 +10.73.36 +10.73.37 +10.73.38 +10.73.39 +10.73.40 +10.73.41 +10.73.42 +10.73.43 +10.8.0 +10.8.1 +10.8.2 +10.8.3 +10.8.4 +10.9.0 +100 +100.0 +100.0.2 +100.0.4896.20.0 +100.0.4896.60.0 +100.1 +100.1.1 +100.2 +100.2.0 +100.2.1 +100.3 +100.3.0 +100.3.1 +100.4 +100.4.0 +100.4.1 +100.5.0 +100.5.1 +100.5.2 +100.5.3 +100.5.4 +100.6.0 +100.6.1 +100.7.0 +100.7.2 +1000.10.8 +101 +101.0 +101.0.4951.15.0 +101.0.4951.41.0 +102 +102.0 +102.0.1esr +102.0.5005.27.0 +102.0.5005.61.0 +102.10.0esr +102.11.0esr +102.2.0esr +102.3.0esr +102.4.0esr +102.5.0esr +102.6.0esr +102.7.0esr +102.8.0esr +102.9.0esr +103 +103.0 +103.0.0 +103.0.5060.24.0 +103.0.5060.53.0 +103.1 +104 +104.0 +104.0.0 +104.0.1 +104.0.2 +104.0.5112.20.0 +104.0.5112.29.0 +104.1 +104.1.1 +104.2 +104.2019.3.20.13.47.8 +104.2020.8.19.11.8.18 +104.2020.8.20.0.32.20 +104.2021.3.22.15.7.51 +104.2022.2.8.21.41.41 +104.2022.3.2.14.39.8 +104.2022.7 +104.3 +105 +105.0 +105.0.0 +105.0.5195.19.0 +105.0.5195.52.0 +106 +106.0 +106.0.5249.21.0 +106.0.5249.61.0 +106.1 +107 +107.0 +107.0.0 +107.0.5304.18.0 +107.0.5304.18.1 +107.0.5304.62.0 +108 +108.0 +108.0.0 +108.0.1 +108.0.2 +108.0.5359.22.0 +108.0.5359.71.0 +108.1 +108.2 +109.0 +109.0.0 +109.0.5414.25.0 +109.0.5414.74.0 +10r0p1 +11 +11.0 +11.0.0 +11.0.0.21 +11.0.0.dev0 +11.0.0.rc1 +11.0.1 +11.0.1.dev0 +11.0.10 +11.0.10.0 +11.0.10.1 +11.0.11 +11.0.15 +11.0.2 +11.0.3 +11.0.4 +11.0.5 +11.0.6 +11.0.7 +11.0.8 +11.0.9 +11.0.9.1 +11.01 +11.1 +11.1.0 +11.1.1 +11.1.2 +11.1.3 +11.1.5 +11.1.5.0 +11.1.5.1 +11.1.5.2 +11.10.0 +11.10.1 +11.10.2 +11.11.0 +11.12.0 +11.13.0 +11.13.1 +11.13.2 +11.13.3 +11.14.0 +11.15.0 +11.16.0 +11.17.0 +11.18.0 +11.19.0 +11.2 +11.2.0 +11.2.1 +11.2.2 +11.2.3 +11.2.4 +11.2.6 +11.20.0 +11.22.0 +11.23.0 +11.24.0 +11.25.0 +11.25.1 +11.26.0 +11.27.0 +11.28.0 +11.29.0 +11.3 +11.3.0 +11.3.1 +11.3.1.1 +11.3.1.2 +11.3.2 +11.30.0 +11.31.0 +11.32.0 +11.33.0 +11.34.0 +11.35.0 +11.36.0 +11.4 +11.4.0 +11.4.1 +11.4.2 +11.4.2.57 +11.4.3 +11.4.4 +11.450.129 +11.450.51 +11.460.79 +11.470.66 +11.495.46 +11.5 +11.5.0 +11.5.1 +11.5.2 +11.50 +11.510.69 +11.515.48 +11.515.75 +11.525.84 +11.6 +11.6.0 +11.6.1 +11.6.2 +11.7 +11.7.0 +11.7.1 +11.7.2 +11.7.3 +11.8 +11.8.0 +11.8.1 +11.8.2 +11.9.0 +11.9.1 +11.96 +11.99 +110 +110.0 +110.0.0 +110.0.1 +110.0.5481.30.0 +110.0.5481.77.0 +1100.0.11 +111 +111.0 +111.0.5563.19.0 +111.0.5563.41.0 +111.0.5563.64.0 +111.1.0 +111.2.0 +112 +112.0 +112.0.5615.28.0 +112.0.5615.49.0 +113 +113.0 +113.0.2 +113.0.3 +113.0.4 +113.0.5672.24.0 +113.0.5672.63.0 +114 +114.0 +114.0.5735.16.0 +114.0.5735.90.0 +115 +116 +116.1.0 +116.1.1 +116.1.2 +116.2.1 +116.6.1 +117 +118 +119 +12 +12.0 +12.0.0 +12.0.0.28 +12.0.0.30 +12.0.0.76 +12.0.1 +12.0.1.189 +12.0.10 +12.0.107 +12.0.11 +12.0.12 +12.0.13 +12.0.14 +12.0.16.0 +12.0.2 +12.0.25 +12.0.26 +12.0.3 +12.0.30 +12.0.31 +12.0.32 +12.0.33 +12.0.34 +12.0.36 +12.0.37 +12.0.4 +12.0.41 +12.0.42 +12.0.5 +12.0.6 +12.0.7 +12.0.76 +12.0.8 +12.0.90 +12.1 +12.1.0 +12.1.1 +12.1.2 +12.1.4 +12.10.0 +12.10.1 +12.10.2 +12.11.0 +12.11.1 +12.12.0 +12.12.1 +12.13.0 +12.13.1 +12.13.2 +12.14.0 +12.14.1 +12.14.2 +12.15.0 +12.16.0 +12.16.1 +12.16.2 +12.17.2 +12.18.0 +12.18.1 +12.18.3 +12.19.0 +12.2 +12.2.0 +12.2.1 +12.2.2 +12.2.3 +12.20.0 +12.20.1 +12.21.0 +12.22.0 +12.22.1 +12.22.2 +12.22.6 +12.23.0 +12.24.0 +12.25.0 +12.26.0 +12.26.1 +12.27.1 +12.3 +12.3.0 +12.3.1 +12.3.2 +12.3.3 +12.30 +12.30.0 +12.32.0 +12.4.0 +12.4.1 +12.4.2 +12.4.3 +12.4.4 +12.42 +12.5 +12.5.0 +12.5.1 +12.5.3 +12.5.4 +12.5.5 +12.5.6 +12.50 +12.6.0 +12.6.3 +12.7 +12.7.0 +12.7.1 +12.7.2 +12.8 +12.8.0 +12.8.1 +12.9.0 +12.9.1 +120 +121 +122 +122.c2f5d13 +123 +124 +125 +126 +128 +129 +13 +13.0 +13.0.0 +13.0.0.post2 +13.0.1 +13.0.10 +13.0.11 +13.0.12 +13.0.13 +13.0.14 +13.0.15 +13.0.16 +13.0.17 +13.0.18 +13.0.19 +13.0.2 +13.0.20 +13.0.21 +13.0.3 +13.0.4 +13.0.5 +13.0.6 +13.0.7 +13.0.8 +13.0.9 +13.02 +13.09.2016 +13.1 +13.1.0 +13.1.1 +13.1.2 +13.10 +13.10.0 +13.10.1 +13.11 +13.11.0 +13.11.1 +13.12.0 +13.13 +13.13.0 +13.14.0 +13.15 +13.15.0 +13.15.1 +13.16.0 +13.17.0 +13.18.0 +13.18.2 +13.19.0 +13.2 +13.2.0 +13.2.1 +13.2.2 +13.2.3 +13.2.4 +13.20.0 +13.20.1 +13.21.0 +13.23.0 +13.24.0 +13.24.1 +13.24.3 +13.24.4 +13.25.0 +13.25.1 +13.26.0 +13.27.0 +13.28.0 +13.28.1 +13.28.2 +13.29.1 +13.3 +13.3.0 +13.3.1 +13.3.2 +13.3.3 +13.3.4 +13.3.5 +13.30.0 +13.30.1 +13.30.2 +13.31.0 +13.32.0 +13.33.0 +13.34.0 +13.35.0 +13.36.0 +13.37.1 +13.37.2 +13.38.0 +13.39.0 +13.39.1 +13.4 +13.4.0 +13.4.1 +13.4.2 +13.4.3 +13.4.4 +13.4.5 +13.4.6 +13.4.7 +13.41.0 +13.42.0 +13.42.1 +13.42.2 +13.43.0 +13.43.1 +13.43.2 +13.5 +13.5.0 +13.5.1 +13.5.2 +13.5.3 +13.6 +13.6.0 +13.6.1 +13.6.2 +13.6.3 +13.6.4 +13.7 +13.7.0 +13.8 +13.8.0 +13.9 +13.9.0 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +14 +14.0 +14.0.0 +14.0.1 +14.0.11 +14.0.12 +14.0.13 +14.0.14 +14.0.16 +14.0.17 +14.0.18 +14.0.19 +14.0.2 +14.0.21 +14.0.22 +14.0.24 +14.0.25 +14.0.26 +14.0.27 +14.0.29 +14.0.3 +14.0.30 +14.0.31 +14.0.32 +14.0.33 +14.0.34 +14.0.4 +14.0.5 +14.0.6 +14.0.7 +14.0.8 +14.0.9 +14.1 +14.1.0 +14.1.1 +14.1.2 +14.10.0 +14.10.1 +14.11.0 +14.11.1 +14.11.2 +14.11.25547 +14.12.0 +14.13.0 +14.13.1 +14.13.2 +14.13.3 +14.14.0 +14.14.26423 +14.15.0 +14.15.1 +14.15.4 +14.16.0 +14.16.27012 +14.16.27023 +14.16.27033 +14.17.0 +14.17.1 +14.17.4 +14.18.0 +14.18.3 +14.19.0 +14.19.1 +14.19.2 +14.19.3 +14.2 +14.2.0 +14.2.1 +14.2.2 +14.2.3 +14.2.4 +14.20.0 +14.20.1 +14.21.0 +14.22.0 +14.22.1 +14.23.0 +14.24.0 +14.25.1 +14.25.2 +14.26.0 +14.27.0 +14.28.0 +14.28.29325 +14.29.0 +14.29.1 +14.29.15 +14.29.30037 +14.29.30133 +14.29.30139 +14.3 +14.3.0 +14.3.1 +14.3.2 +14.3.3 +14.3.4 +14.3.5 +14.3.6 +14.3.7 +14.31.14 +14.31.3 +14.32.10 +14.32.31332 +14.32.6 +14.32.8 +14.32.9 +14.34.31931 +14.34.31933 +14.4 +14.4.0 +14.4.2 +14.5 +14.5.0 +14.5.1 +14.6.0 +14.6.1 +14.6.11 +14.6.3 +14.6.4 +14.6.5 +14.7.0 +14.7.9 +14.8.0 +14.8.1 +14.9.0 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +15 +15.0 +15.0.0 +15.0.1 +15.0.2 +15.0.3 +15.0.4 +15.0.5 +15.0.6 +15.0.7 +15.1 +15.1.0 +15.1.1 +15.1.2 +15.1.3 +15.1.4 +15.10.0 +15.11.0 +15.12.0 +15.13.0 +15.14.0 +15.2 +15.2.0 +15.2.1 +15.3 +15.3.0 +15.3.1 +15.3.2 +15.3.3 +15.3.4 +15.4.0 +15.5.0 +15.6.0 +15.8.0 +15.8.2 +15.e7622f6 +150 +151 +152 +153 +154 +16 +16.0 +16.0.0 +16.0.1 +16.0.2 +16.0.3 +16.0.4 +16.0.5 +16.0.6 +16.02 +16.07.26 +16.1 +16.1.0 +16.1.1 +16.1.2 +16.1.3 +16.1.4 +16.1.6 +16.10.0 +16.11.1 +16.12.0 +16.12.2 +16.13.0 +16.13.2 +16.14.2 +16.15.0 +16.15.1 +16.16.0 +16.17.0 +16.17.1 +16.18.0 +16.18.1 +16.19.0 +16.2.0 +16.3.0 +16.3.1 +16.4.0 +16.4.1 +16.5.0 +16.5.1 +16.6.0 +16.6.1 +16.6.2 +16.7 +16.7.0 +16.7.1 +16.7.2 +16.7.3 +16.7.5 +16.8 +16.8.1 +16.9.0 +166 +17 +17.0 +17.0.0 +17.0.3 +17.0.5.8 +17.0.7 +17.02 +17.1 +17.1.0 +17.1.1 +17.1.2 +17.1.4 +17.10.0 +17.10.1 +17.12.0 +17.12.1 +17.17.0 +17.2 +17.2.0 +17.2.1 +17.3 +17.3.0 +17.3.1 +17.3.9 +17.4 +17.4.0 +17.5 +17.5.0 +17.5.1 +17.6.0 +17.6.2 +17.7.0 +17.7.1 +17.7.2 +17.8.0 +17.9.0 +17.9.3 +170 +177 +178 +179 +18.0 +18.0.0 +18.0.1 +18.0.2 +18.0.3 +18.0.5 +18.08 +18.1 +18.1.0 +18.1.1 +18.1.10 +18.1.11 +18.1.13 +18.1.2 +18.1.7 +18.1.8 +18.10.0 +18.10.1 +18.11.0 +18.11.12 +18.11.2 +18.12.0 +18.12.1 +18.12.8 +18.13.0 +18.14.0 +18.14.1 +18.14.2 +18.15.0 +18.169 +18.2.0 +18.20.0 +18.20.1 +18.3 +18.3.0 +18.3.1 +18.3.4 +18.4.0 +18.4.1 +18.4a4 +18.5.0 +18.5.1 +18.5.13 +18.5.2 +18.5.26 +18.5.30 +18.5b0 +18.5b1 +18.6.0 +18.6.1 +18.6a6 +18.6b2 +18.6b4 +18.7.0 +18.7.1 +18.8.0 +18.8.1 +18.8.2 +18.9.0 +18.9.1 +18.9.2 +18.9b0 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +19 +19.0 +19.0.0 +19.0.1 +19.0.2 +19.0.3 +19.00 +19.01.0 +19.03.11 +19.03.12 +19.03.13 +19.03.14 +19.03.5 +19.04.0 +19.04.1 +19.07.0 +19.07.1 +19.08.3 +19.1 +19.1.0 +19.1.1 +19.1.2 +19.10 +19.10.0 +19.10.1 +19.10b0 +19.11 +19.11.0 +19.11.1 +19.11.2 +19.12.0 +19.12.2 +19.15.0 +19.15.1 +19.15.26726 +19.16.27032.1 +19.16.27033 +19.17 +19.18 +19.19 +19.2 +19.2.0 +19.2.1 +19.2.2 +19.2.3 +19.2.5 +19.2.6 +19.2.7 +19.20 +19.20.0 +19.21 +19.21.0 +19.21.1 +19.22 +19.22.0 +19.23 +19.23.0 +19.23.1 +19.24 +19.24.0 +19.24.1 +19.24.2 +19.28.29325 +19.29.30037 +19.29.30139 +19.3 +19.3.0 +19.3.1 +19.3.2 +19.3.3 +19.3.4 +19.3.6.5 +19.33.31629 +19.34.31933 +19.35.32217 +19.38.14237 +19.39.14278 +19.3b0 +19.4 +19.4.0 +19.4.1 +19.43.14583 +19.49.15055 +19.5.0 +19.5.1 +19.5.2 +19.50.15079 +19.51.15145 +19.52.15209 +19.6.0 +19.6.1 +19.6.2 +19.6.3 +19.7 +19.7.0 +19.7.1 +19.7.15 +19.7.2 +19.8.0 +19.8.0.0.0 +19.8.1 +19.8.18 +19.9 +19.9.0 +19.9.1 +19.9.2 +19.9.3 +190 +1903 +192 +193 +194 +195 +196 +197 +198 +199 +1_0 +2 +2.0 +2.0.0 +2.0.0.0 +2.0.0.1 +2.0.0.2 +2.0.0.3 +2.0.0.beta.5 +2.0.0.dev0 +2.0.0.dev5 +2.0.0.post0 +2.0.0.post1 +2.0.0.post2 +2.0.0.post6 +2.0.0_dev.1 +2.0.0_dev.2 +2.0.0a0 +2.0.0a1 +2.0.0a3 +2.0.0a4 +2.0.0a5 +2.0.0b0 +2.0.0b1 +2.0.0b10 +2.0.0b11 +2.0.0b12 +2.0.0b13 +2.0.0b14 +2.0.0b15 +2.0.0b17 +2.0.0b2 +2.0.0b3 +2.0.0b4 +2.0.0b5 +2.0.0b6 +2.0.0b7 +2.0.0b8 +2.0.0b9 +2.0.0beta +2.0.0beta2 +2.0.0edge +2.0.0rc.1 +2.0.0rc0 +2.0.0rc1 +2.0.0rc1.post9 +2.0.0rc10 +2.0.0rc11 +2.0.0rc12 +2.0.0rc13 +2.0.0rc14 +2.0.0rc15 +2.0.0rc16 +2.0.0rc17 +2.0.0rc18 +2.0.0rc19 +2.0.0rc2 +2.0.0rc20 +2.0.0rc21 +2.0.0rc22 +2.0.0rc23 +2.0.0rc24 +2.0.0rc25 +2.0.0rc26 +2.0.0rc3 +2.0.0rc4 +2.0.0rc5 +2.0.0rc6 +2.0.0rc7 +2.0.0rc8 +2.0.0rc9 +2.0.1 +2.0.1.0 +2.0.1.14 +2.0.1.2 +2.0.1.3 +2.0.1.7 +2.0.1.post1 +2.0.10 +2.0.10.2 +2.0.100 +2.0.101 +2.0.102 +2.0.103 +2.0.104 +2.0.105 +2.0.106 +2.0.107 +2.0.108 +2.0.109 +2.0.11 +2.0.110 +2.0.111 +2.0.113 +2.0.12 +2.0.13 +2.0.14 +2.0.15 +2.0.16 +2.0.17 +2.0.17.1 +2.0.17.2 +2.0.18 +2.0.19 +2.0.19.1 +2.0.1a1 +2.0.2 +2.0.20 +2.0.20191003 +2.0.20191007 +2.0.20191013 +2.0.20200107113851 +2.0.20200122124526 +2.0.20200126090152 +2.0.20200219182542 +2.0.20200220223835 +2.0.20200224214940 +2.0.20200312183052 +2.0.21 +2.0.22 +2.0.22.2 +2.0.23 +2.0.24 +2.0.25 +2.0.26 +2.0.27 +2.0.28 +2.0.29 +2.0.2a4 +2.0.3 +2.0.3.0 +2.0.3.1 +2.0.3.2 +2.0.30 +2.0.31 +2.0.32 +2.0.33 +2.0.34 +2.0.35 +2.0.36 +2.0.37 +2.0.38 +2.0.39 +2.0.3_b +2.0.4 +2.0.4.1 +2.0.4.2 +2.0.4.4 +2.0.4.5 +2.0.4.6 +2.0.40 +2.0.41 +2.0.42 +2.0.43 +2.0.44 +2.0.45 +2.0.46 +2.0.47 +2.0.48 +2.0.5 +2.0.5.1 +2.0.5.post1 +2.0.5.post2 +2.0.50 +2.0.52 +2.0.53 +2.0.54 +2.0.56 +2.0.57 +2.0.58 +2.0.59 +2.0.6 +2.0.6.1 +2.0.6.2 +2.0.6.3 +2.0.6.4 +2.0.60 +2.0.61 +2.0.62 +2.0.63 +2.0.67 +2.0.69 +2.0.7 +2.0.7.1 +2.0.7.post1 +2.0.70 +2.0.71 +2.0.72 +2.0.73 +2.0.74 +2.0.75 +2.0.76 +2.0.77 +2.0.78 +2.0.785 +2.0.79 +2.0.7_1 +2.0.8 +2.0.8.1 +2.0.80 +2.0.81 +2.0.83 +2.0.84 +2.0.85 +2.0.866 +2.0.87 +2.0.872 +2.0.873 +2.0.874 +2.0.875 +2.0.876 +2.0.877 +2.0.878 +2.0.879 +2.0.88 +2.0.880 +2.0.881 +2.0.882 +2.0.883 +2.0.884 +2.0.885 +2.0.886 +2.0.887 +2.0.889 +2.0.89 +2.0.9 +2.0.9.1 +2.0.9.post2 +2.0.90 +2.0.900 +2.0.901 +2.0.902 +2.0.903 +2.0.904 +2.0.905 +2.0.906 +2.0.907 +2.0.908 +2.0.909 +2.0.910 +2.0.92 +2.0.931 +2.0.935 +2.0.94 +2.0.95 +2.0.96 +2.0.97 +2.0.98 +2.0.99 +2.0.alpha +2.0.beta +2.00 +2.00.1833 +2.000005 +2.000008 +2.000024 +2.000028 +2.000029 +2.001 +2.0016 +2.002 +2.002004 +2.003004 +2.004 +2.005004 +2.006003 +2.006006 +2.01 +2.013 +2.016 +2.017008 +2.01_40 +2.01_42 +2.01_43 +2.02 +2.02.187 +2.023.3 +2.023.4 +2.023.6 +2.03 +2.030 +2.034 +2.035 +2.038 +2.04 +2.043 +2.046 +2.5 +2.5.1 +2.06 +2.06.07 +2.06.11 +2.064 +2.065.0 +2.066 +2.07 +2.074 +2.075 +2.08 +2.09 +2.09.1 +2.09.2 +2.098.1 +2.099.0 +2.099.1 +2.0_0 +2.0_0.1 +2.0_1 +2.0_1.1 +2.0_10 +2.0_11 +2.0_12 +2.0_16 +2.0_18 +2.0_19 +2.0_2 +2.0_22 +2.0_23 +2.0_24 +2.0_25 +2.0_26 +2.0_28 +2.0_3 +2.0_33 +2.0_4 +2.0_5 +2.0_5.1 +2.0_6 +2.0_7 +2.0_7.2 +2.0_7.3 +2.0_8 +2.0_9 +2.0a0_20170929a0 +2.0a1 +2.0a2 +2.0a3 +2.0a4 +2.0a5 +2.0a6 +2.0b0 +2.0b1 +2.0b2 +2.0b3 +2.0rc1 +2.0rc2 +2.0rc3 +2.0rc6 +2.1 +2.1.0 +2.1.0.0 +2.1.0.1 +2.1.0.2 +2.1.0.post1 +2.1.0_b +2.1.0b0 +2.1.0b1 +2.1.0b5 +2.1.0rc0 +2.1.0rc1 +2.1.0rc2 +2.1.0rc3 +2.1.1 +2.1.1.1 +2.1.1.2 +2.1.1.5 +2.1.10 +2.1.11 +2.1.12 +2.1.13 +2.1.14 +2.1.15 +2.1.16 +2.1.17 +2.1.1706216 +2.1.18 +2.1.19 +2.1.1_b +2.1.2 +2.1.2.1 +2.1.2.2 +2.1.20 +2.1.21 +2.1.22 +2.1.26 +2.1.27 +2.1.29 +2.1.2_b +2.1.3 +2.1.3.1 +2.1.3.dev8 +2.1.3.post1 +2.1.3.post16 +2.1.30 +2.1.32 +2.1.33 +2.1.34 +2.1.35 +2.1.36 +2.1.39 +2.1.3_b +2.1.4 +2.1.4.1 +2.1.4.2 +2.1.4.3 +2.1.4.4 +2.1.4.5 +2.1.41 +2.1.44 +2.1.45 +2.1.46 +2.1.48 +2.1.49 +2.1.4_b +2.1.5 +2.1.5.1 +2.1.5.2 +2.1.5.3 +2.1.5.4 +2.1.5.post1 +2.1.51 +2.1.52 +2.1.54 +2.1.57 +2.1.58 +2.1.6 +2.1.7 +2.1.8 +2.1.8.1 +2.1.81 +2.1.815 +2.1.817 +2.1.818 +2.1.9 +2.1.post0 +2.10 +2.10.0 +2.10.1 +2.10.10 +2.10.11 +2.10.12 +2.10.13 +2.10.14 +2.10.15 +2.10.16 +2.10.17 +2.10.18 +2.10.2 +2.10.3 +2.10.3.1 +2.10.4 +2.10.5 +2.10.6 +2.10.67 +2.10.68 +2.10.7 +2.10.8 +2.10.9 +2.100.0 +2.100.0.84 +2.100.2 +2.101 +2.101.0 +2.101.1 +2.101.2 +2.102.0 +2.102.1 +2.102.2 +2.103 +2.103.0 +2.103.1 +2.104 +2.104.0 +2.105 +2.105.0 +2.106 +2.106.0 +2.106.1.88 +2.107 +2.107.0 +2.108 +2.108.0 +2.109 +2.109.0 +2.10_0 +2.10_12 +2.10_22 +2.10_8 +2.11 +2.11.0 +2.11.0.1 +2.11.0.2 +2.11.0.4 +2.11.06 +2.11.08 +2.11.1 +2.11.1.0 +2.11.1.1 +2.11.1.2 +2.11.1.3 +2.11.1.4 +2.11.1.5 +2.11.2 +2.11.2.1 +2.11.2.3 +2.11.2.4 +2.11.2.6 +2.11.3 +2.11.3.1 +2.11.3.2 +2.11.348 +2.11.4 +2.11.4.1 +2.11.5 +2.11.6 +2.11.7 +2.11.8 +2.11.9 +2.110 +2.111 +2.112 +2.113 +2.114 +2.115 +2.116 +2.117 +2.12 +2.12.0 +2.12.0.0 +2.12.0.1 +2.12.0.2 +2.12.0.3 +2.12.02 +2.12.1 +2.12.10 +2.12.10.1 +2.12.11 +2.12.12 +2.12.12.1 +2.12.13 +2.12.14 +2.12.16 +2.12.2 +2.12.3 +2.12.30 +2.12.4 +2.12.5 +2.12.6 +2.12.7 +2.12.7.1 +2.12.8 +2.12.9 +2.13 +2.13.0 +2.13.02 +2.13.1 +2.13.10 +2.13.11 +2.13.12 +2.13.13 +2.13.14 +2.13.15 +2.13.16 +2.13.17 +2.13.18 +2.13.19 +2.13.2 +2.13.20 +2.13.21 +2.13.22 +2.13.23 +2.13.24 +2.13.25 +2.13.26 +2.13.27 +2.13.28 +2.13.29 +2.13.3 +2.13.30 +2.13.31 +2.13.32 +2.13.33 +2.13.34 +2.13.35 +2.13.36 +2.13.4 +2.13.4.1 +2.13.466 +2.13.5 +2.13.6 +2.13.7 +2.13.8 +2.13.9 +2.13.94 +2.13.96 +2.14 +2.14.0 +2.14.0.0 +2.14.0.1 +2.14.0.2 +2.14.0.3 +2.14.02 +2.14.0_1 +2.14.0b0 +2.14.1 +2.14.10 +2.14.11 +2.14.12 +2.14.13 +2.14.14 +2.14.17 +2.14.19 +2.14.2 +2.14.3 +2.14.3.1 +2.14.4 +2.14.5 +2.14.6 +2.14.7 +2.14.8 +2.14.9 +2.140 +2.140640 +2.15 +2.15.0 +2.15.0.0 +2.15.0.1 +2.15.5 +2.15.0_1 +2.15.1 +2.15.1.1 +2.15.10 +2.15.2 +2.15.2.post1 +2.15.3 +2.15.4 +2.15.5 +2.15.5.1 +2.15.6 +2.15.7 +2.15.8 +2.15.9 +2.150010 +2.16 +2.16.0 +2.16.0.0 +2.16.0_1 +2.16.1 +2.16.11 +2.16.11.2 +2.16.17 +2.16.2 +2.16.2.post1 +2.16.3 +2.16.4 +2.16.5 +2.16.6 +2.16.7 +2.1692_vsc1.39.2 +2.1698_vsc1.41.1 +2.16_0 +2.17 +2.17.0 +2.17.0.0 +2.17.0.1 +2.17.1 +2.17.1.0 +2.17.1.1 +2.17.10 +2.17.11 +2.17.2 +2.17.3 +2.17.4 +2.17.5 +2.17.6 +2.17.7 +2.17_0 +2.18 +2.18.0 +2.18.0.1 +2.18.0_1 +2.18.1 +2.18.1.1 +2.18.10 +2.18.11 +2.18.12 +2.18.13 +2.18.14 +2.18.15 +2.18.16 +2.18.17 +2.18.18 +2.18.19 +2.18.1_10 +2.18.2 +2.18.20 +2.18.21 +2.18.22 +2.18.23 +2.18.25 +2.18.26 +2.18.27 +2.18.29 +2.18.3 +2.18.4 +2.18.5 +2.18.7 +2.18.8 +2.18.9 +2.183 +2.19 +2.19.0 +2.19.0.0 +2.19.1 +2.19.1.1 +2.19.10 +2.19.11 +2.19.2 +2.19.3 +2.19.4 +2.19.5 +2.19.6 +2.19.7 +2.19.8 +2.19.9 +2.1905 +2.1_0 +2.1_1 +2.1_10 +2.1_11 +2.1_11.1 +2.1_12 +2.1_2 +2.1_20230119 +2.1_21 +2.1_3 +2.1_3.1 +2.1_4 +2.1_5 +2.1_6 +2.1_7 +2.1_7.1 +2.1_8 +2.2 +2.2.0 +2.2.0.2 +2.2.0.3 +2.2.0.4 +2.2.0.5 +2.2.0.6 +2.2.0.post3 +2.2.0_2 +2.2.0_3 +2.2.0_b +2.2.1 +2.2.1+boost170 +2.2.1.1 +2.2.1.post0 +2.2.1.post1 +2.2.1.post2 +2.2.10 +2.2.11 +2.2.12 +2.2.13 +2.2.14 +2.2.15 +2.2.16 +2.2.17 +2.2.18 +2.2.18.04.06 +2.2.19 +2.2.1_5 +2.2.1_7 +2.2.2 +2.2.2.1 +2.2.20 +2.2.20210901154959 +2.2.20211116163652 +2.2.20220521103021 +2.2.21 +2.2.22 +2.2.23 +2.2.24 +2.2.25 +2.2.26 +2.2.27 +2.2.27.27 +2.2.27.6 +2.2.28 +2.2.2a +2.2.2b +2.2.2c +2.2.2d +2.2.3 +2.2.31 +2.2.4 +2.2.4.1 +2.2.5 +2.2.5.0 +2.2.6 +2.2.6.1 +2.2.7 +2.2.8 +2.2.9 +2.2.post0 +2.2.post1 +2.20 +2.20.0 +2.20.1 +2.20.10 +2.20.12 +2.20.13 +2.20.14 +2.20.15 +2.20.17 +2.20.18 +2.20.19 +2.20.2 +2.20.20 +2.20.3 +2.20.35 +2.20.36 +2.20.36.1 +2.20.36.2 +2.20.36.3 +2.20.4 +2.20.5 +2.20.6 +2.20.7 +2.20.8 +2.20.9 +2.2006 +2.201 +2.20170703 +2.20191221 +2.202 +2.21 +2.21.0 +2.21.0_1 +2.21.0_3 +2.21.0_5 +2.21.0_6 +2.21.0_7 +2.21.1 +2.21.2 +2.21.3 +2.21.4 +2.21.5 +2.21.6 +2.21.7 +2.21.8 +2.21.9 +2.216 +2.218 +2.22 +2.22.0 +2.22.1 +2.22.2 +2.22.213 +2.22.3 +2.22.4 +2.22.5 +2.22.6 +2.22.7 +2.22.8 +2.22.9 +2.2203 +2.2207 +2.2207.1 +2.2207.2 +2.2207.3 +2.23 +2.23.0 +2.23.1 +2.23.2 +2.23.222 +2.23.3 +2.23.4 +2.23.4.post0 +2.23.5 +2.23.6 +2.23.7 +2.23.8 +2.23.9 +2.23_15 +2.23_16 +2.23_17 +2.23_18 +2.23_20 +2.23_21 +2.24 +2.24.0 +2.24.1 +2.24.2 +2.24.23 +2.24.231 +2.24.232 +2.24.3 +2.24.31 +2.24.32 +2.24.33 +2.24.4 +2.24.5 +2.25 +2.25.0 +2.25.1 +2.25.10 +2.25.11 +2.25.12 +2.25.2 +2.25.236 +2.25.3 +2.25.4 +2.25.5 +2.25.6 +2.25.7 +2.25.8 +2.25.9 +2.25.90 +2.25_5 +2.26 +2.26.0 +2.26.0.post1 +2.26.1 +2.26.10 +2.26.11 +2.26.2 +2.26.25 +2.26.26 +2.26.27 +2.26.3 +2.26.4 +2.26.5 +2.26.6 +2.26.7 +2.26.8 +2.26.9 +2.27 +2.27.0 +2.27.1 +2.27.10 +2.27.11 +2.27.12 +2.27.13 +2.27.14 +2.27.15 +2.27.16 +2.27.17 +2.27.18 +2.27.19 +2.27.2 +2.27.20 +2.27.22 +2.27.23 +2.27.24 +2.27.25 +2.27.26 +2.27.27 +2.27.28 +2.27.29 +2.27.3 +2.27.30 +2.27.31 +2.27.4 +2.27.5 +2.27.6 +2.27.7 +2.27.8 +2.27.9 +2.27_62 +2.28 +2.28.0 +2.28.1 +2.28.10 +2.28.11 +2.28.11.1 +2.28.11.11 +2.28.11.12 +2.28.11.13 +2.28.11.14 +2.28.11.15 +2.28.11.2 +2.28.11.3 +2.28.11.4 +2.28.11.5 +2.28.11.6 +2.28.11.7 +2.28.11.8 +2.28.11.9 +2.28.2 +2.28.2.1 +2.28.2.2 +2.28.3 +2.28.4 +2.28.5 +2.28.6 +2.28.6.1 +2.28.7 +2.28.8 +2.28.9 +2.29 +2.29.0 +2.29.1 +2.29.2 +2.294.0 +2.295.0 +2.296.0 +2.296.1 +2.296.2 +2.297.0 +2.298.2 +2.299.1 +2.2_0 +2.2_0.1 +2.2_1 +2.2_10 +2.2_11 +2.2_13 +2.2_14 +2.2_14.2 +2.2_16 +2.2_17 +2.2_18 +2.2_18.1 +2.2_2 +2.2_3 +2.2_32 +2.2_39 +2.2_4 +2.2_40 +2.2_47 +2.2_5 +2.2_5.4 +2.2_5.6 +2.2_5.7 +2.2_5.7.1 +2.2_54 +2.2_6 +2.2_7 +2.2_8 +2.2_9 +2.3 +2.3.0 +2.3.0.0 +2.3.0.1 +2.3.0.2 +2.3.0.post1 +2.3.0_b +2.3.0b0 +2.3.1 +2.3.1.post1 +2.3.10 +2.3.11 +2.3.12 +2.3.13 +2.3.14 +2.3.15 +2.3.16 +2.3.17 +2.3.18 +2.3.19 +2.3.1a1 +2.3.2 +2.3.2.0 +2.3.2.post1 +2.3.20 +2.3.21 +2.3.22 +2.3.24 +2.3.25 +2.3.26 +2.3.27 +2.3.28 +2.3.29 +2.3.2a1 +2.3.3 +2.3.3.post0 +2.3.4 +2.3.4.post1 +2.3.4.post2 +2.3.4.post3 +2.3.4.post4 +2.3.5 +2.3.5.1 +2.3.6 +2.3.6.1 +2.3.6.2 +2.3.7 +2.3.7.post0 +2.3.7.post1 +2.3.7.rc1 +2.3.8 +2.3.9 +2.3.b1 +2.3.beta2 +2.3.post0 +2.30 +2.30.0 +2.30.0.2 +2.30.1 +2.30.2 +2.30.3 +2.30.36 +2.30.39 +2.30.43 +2.30.46 +2.30.50 +2.30.51 +2.30.52 +2.30.54 +2.30.55 +2.30.62 +2.300.0 +2.300.2 +2.301.0 +2.301.1 +2.302.1 +2.303.0 +2.304.0 +2.30_0 +2.31 +2.31.0 +2.31.1 +2.31.10 +2.31.11 +2.31.15 +2.31.19 +2.31.20 +2.31.21 +2.31.24 +2.31.25 +2.31.26 +2.31.31 +2.31.33 +2.31.36 +2.31.37 +2.31.38 +2.31.39 +2.31.42 +2.31.43 +2.31.46 +2.31.48 +2.31.50 +2.31.52 +2.31.54 +2.31.6 +2.32 +2.32.0 +2.32.1 +2.32.10 +2.32.11 +2.32.2 +2.32.3 +2.32.5 +2.32.6 +2.32.8 +2.33 +2.33.0 +2.33.1 +2.33.11 +2.33.12 +2.33.14 +2.33.15 +2.33.18 +2.33.19 +2.33.2 +2.33.21 +2.33.22 +2.33.23 +2.33.25 +2.33.26 +2.33.27 +2.33.28 +2.33.29 +2.33.3 +2.33.33 +2.33.34 +2.33.36 +2.33.37 +2.33.38 +2.33.39 +2.33.4 +2.33.40 +2.33.41 +2.33.43 +2.33.5 +2.34 +2.34.0 +2.34.1 +2.34.14 +2.34.2 +2.34.3 +2.34.4 +2.34.7 +2.34.8 +2.34.9 +2.35 +2.35.0 +2.35.1 +2.35.10 +2.35.13 +2.35.14 +2.35.15 +2.35.17 +2.35.18 +2.35.2 +2.35.21 +2.35.23 +2.35.24 +2.35.26 +2.35.28 +2.35.3 +2.35.32 +2.35.33 +2.35.34 +2.35.36 +2.35.39 +2.35.4 +2.35.40 +2.35.41 +2.35.42 +2.35.44 +2.35.47 +2.35.49 +2.35.5 +2.35.6 +2.35.7 +2.36 +2.36.0 +2.36.1 +2.36.12 +2.36.13 +2.36.17 +2.36.2 +2.36.22 +2.36.23 +2.36.24 +2.36.25 +2.36.27 +2.36.28 +2.36.29 +2.36.3 +2.36.30 +2.36.32 +2.36.36 +2.36.4 +2.36.6 +2.36.7 +2.36.9 +2.37 +2.37.0 +2.37.1 +2.37.16 +2.37.2 +2.37.20 +2.37.21 +2.37.22 +2.37.24 +2.37.25 +2.37.27 +2.37.29 +2.37.3 +2.37.32 +2.37.34 +2.37.35 +2.37.41 +2.37.44 +2.37.47 +2.37.48 +2.37.5 +2.37.6 +2.37.7 +2.38 +2.38.0 +2.38.1 +2.38.13 +2.38.14 +2.38.15 +2.38.17 +2.38.19 +2.38.2 +2.38.20 +2.38.21 +2.38.24 +2.38.26 +2.38.27 +2.38.29 +2.38.30 +2.38.33 +2.38.34 +2.38.37 +2.38.38 +2.38.40 +2.38.42 +2.38.8 +2.39 +2.39.0 +2.39.0.post0 +2.39.1 +2.39.2 +2.3_0 +2.3_1 +2.3_13 +2.3_14 +2.3_15 +2.3_17 +2.3_18 +2.3_2 +2.3_3 +2.3_4 +2.3_5 +2.3_50 +2.3_53 +2.3_54 +2.3_55 +2.3_56 +2.3_57 +2.3_58 +2.3_59 +2.3_6 +2.3_6.1 +2.3_60 +2.3_61 +2.4 +2.4.0 +2.4.0.0 +2.4.0.2 +2.4.0.post1 +2.4.0.post12 +2.4.0.post5 +2.4.0.post6 +2.4.0.post7 +2.4.0.post8 +2.4.0.r4736 +2.4.0.snapshot_2015_02_13 +2.4.1 +2.4.1.0 +2.4.1.1 +2.4.1.3 +2.4.1.post5 +2.4.10 +2.4.100 +2.4.102 +2.4.103 +2.4.104 +2.4.105 +2.4.106 +2.4.107 +2.4.108 +2.4.109 +2.4.11 +2.4.111 +2.4.112 +2.4.113 +2.4.114 +2.4.12 +2.4.13 +2.4.13.4 +2.4.14 +2.4.15 +2.4.16 +2.4.17 +2.4.18 +2.4.2 +2.4.2.post1 +2.4.2.post2 +2.4.20 +2.4.21 +2.4.22 +2.4.23 +2.4.24 +2.4.25 +2.4.27 +2.4.29 +2.4.2a0 +2.4.3 +2.4.3+10.3 +2.4.3+9.6.3 +2.4.3+9.6.7 +2.4.3+9.6.8 +2.4.31 +2.4.33 +2.4.35 +2.4.37 +2.4.39 +2.4.393442.3710985 +2.4.3rc2 +2.4.4 +2.4.4.0 +2.4.4.1 +2.4.4.2 +2.4.404381.4453942 +2.4.41 +2.4.417127.4579844 +2.4.42 +2.4.44 +2.4.46 +2.4.47 +2.4.48 +2.4.5 +2.4.5.0 +2.4.5.1 +2.4.5.2 +2.4.5.3 +2.4.5.4 +2.4.52 +2.4.53 +2.4.54 +2.4.55 +2.4.56 +2.4.58 +2.4.59 +2.4.6 +2.4.6.1 +2.4.6.2 +2.4.6.3 +2.4.6.4 +2.4.65 +2.4.7 +2.4.7.1 +2.4.8 +2.4.8.1 +2.4.9 +2.4.91 +2.4.96 +2.4.97 +2.4.98 +2.4.99 +2.4.rc4 +2.40 +2.40.0 +2.40.1 +2.40.19 +2.40.2 +2.40.3 +2.40_1 +2.41 +2.41.0 +2.42 +2.42.0 +2.42.1 +2.42.10 +2.42.2 +2.42.3 +2.42.4 +2.42.6 +2.42.8 +2.42_6 +2.43 +2.43.0 +2.43_3 +2.44 +2.44.0 +2.44.1 +2.44.13 +2.44.14 +2.44.15 +2.44.3 +2.44.5 +2.44.7 +2.44_01 +2.44_1.1 +2.45 +2.45.0 +2.45.1 +2.46 +2.46.0 +2.46.1 +2.46.2 +2.46.3 +2.46.4 +2.47 +2.47.0 +2.47.1 +2.47.12 +2.47.14 +2.47.2 +2.47.2.post0 +2.47.3 +2.48 +2.48.0 +2.48.1 +2.48.19205 +2.48.2 +2.48.3 +2.48.4 +2.49 +2.49.0 +2.49.1 +2.49.10 +2.49.11 +2.49.12 +2.49.13 +2.49.14 +2.49.15 +2.49.16 +2.49.17 +2.49.18 +2.49.18.1 +2.49.18.2 +2.49.18.3 +2.49.18.4 +2.49.18.5 +2.49.18.6 +2.49.2 +2.49.3 +2.49.4 +2.49.5 +2.49.6 +2.49.7 +2.49.8 +2.49.9 +2.4_0 +2.4_1 +2.4_2 +2.4_21 +2.4_3 +2.4_4 +2.4_5 +2.4_8 +2.5 +2.5.0 +2.5.0.1 +2.5.0.17080.65c939c +2.5.0.2 +2.5.0.21 +2.5.0.23 +2.5.0.3 +2.5.0.post1 +2.5.0a1 +2.5.0a2 +2.5.0a3 +2.5.0b1 +2.5.1 +2.5.1.post0 +2.5.10 +2.5.11 +2.5.12 +2.5.13 +2.5.14 +2.5.15 +2.5.16 +2.5.17 +2.5.17.0 +2.5.18 +2.5.2 +2.5.20 +2.5.21 +2.5.22 +2.5.25 +2.5.3 +2.5.39 +2.5.4 +2.5.5 +2.5.6 +2.5.6.1 +2.5.7 +2.5.7.1 +2.5.8 +2.5.9 +2.50 +2.50.0 +2.50.1 +2.50.2 +2.50.3 +2.50.4 +2.50.5 +2.50.7 +2.51 +2.51.0 +2.51.4 +2.52 +2.52.0 +2.52.1 +2.52.2 +2.52.3 +2.52.4 +2.52.5 +2.53 +2.53.0 +2.53.1 +2.53.5 +2.54 +2.54.0 +2.54.1 +2.54.3 +2.54.4 +2.55 +2.55.0 +2.56.0 +2.56.1 +2.56.2 +2.57.0 +2.58 +2.58.0 +2.58.1 +2.58.2 +2.58.3 +2.59.0 +2.59.1 +2.59.4 +2.5_0 +2.5_1 +2.5_2 +2.5_3 +2.5_4 +2.5_5 +2.5_6 +2.5_7 +2.5_8 +2.6 +2.6.0 +2.6.0.1 +2.6.0.10 +2.6.0.13 +2.6.0.2 +2.6.0.3 +2.6.0.4 +2.6.0.5 +2.6.0.6 +2.6.0.7 +2.6.0.8 +2.6.0.9 +2.6.5 +2.6.1 +2.6.1.post1 +2.6.10 +2.6.11 +2.6.12 +2.6.13 +2.6.14 +2.6.15 +2.6.16 +2.6.17 +2.6.18 +2.6.2 +2.6.2.post1 +2.6.3 +2.6.32 +2.6.4 +2.6.4.1 +2.6.4.2 +2.6.4.3 +2.6.4.4 +2.6.5 +2.6.6 +2.6.7 +2.6.8 +2.6.9 +2.60 +2.60.0 +2.61 +2.61.0 +2.62 +2.62.0 +2.62.1 +2.62.2 +2.63 +2.63.0 +2.63.2 +2.63.3 +2.64 +2.64.0 +2.64.1 +2.64.2 +2.64.3 +2.64.6 +2.65 +2.65.0 +2.65.1 +2.66 +2.66.0 +2.66.1 +2.66.2 +2.66.3 +2.66.4 +2.66.5 +2.66.6 +2.66.7 +2.67 +2.67.0 +2.68 +2.68.0 +2.68.0.50 +2.68.1 +2.68.2 +2.68.3 +2.68.4 +2.69 +2.69.0 +2.69.1 +2.6_0 +2.6_1 +2.6_10 +2.6_2 +2.6_4 +2.6_5 +2.6_7 +2.6_8 +2.6_9 +2.6a1 +2.6a2 +2.6a4 +2.6r7 +2.7 +2.7.0 +2.7.0.rc +2.7.1 +2.7.1.1 +2.7.10 +2.7.11 +2.7.12 +2.7.13 +2.7.14 +2.7.15 +2.7.16 +2.7.17 +2.7.18 +2.7.19 +2.7.2 +2.7.20 +2.7.20180809223002 +2.7.21 +2.7.22 +2.7.23 +2.7.24 +2.7.25 +2.7.26 +2.7.27 +2.7.29 +2.7.3 +2.7.3.1 +2.7.3.2 +2.7.32 +2.7.4 +2.7.5 +2.7.5.1 +2.7.5.2 +2.7.5.3 +2.7.5.4 +2.7.6 +2.7.6.1 +2.7.7 +2.7.7.2 +2.7.8 +2.7.8.1 +2.7.9 +2.7.dev2 +2.7.dev3 +2.7.dev5 +2.7.dev6 +2.7.dev7 +2.7.dev8 +2.70 +2.70.0 +2.70.1 +2.70.2 +2.70.3 +2.71 +2.71.0 +2.71.1 +2.72 +2.72.0 +2.72.1 +2.72.1.53 +2.72.2 +2.72.3 +2.73 +2.73.0 +2.74.0 +2.74.1 +2.74.2 +2.75.0 +2.75.1 +2.75.3 +2.76.0 +2.76.1 +2.76.2 +2.76.3 +2.77.0 +2.77.1 +2.78.0 +2.79 +2.79.0 +2.79.1 +2.7_0 +2.7_1 +2.7_2 +2.7_3 +2.7_4 +2.7_5 +2.7_6 +2.8 +2.8.0 +2.8.0.1 +2.8.0.2 +2.8.0.3 +2.8.0.4 +2.8.0.5 +2.8.0.post2 +2.8.1 +2.8.1.1 +2.8.10 +2.8.101 +2.8.102 +2.8.103 +2.8.104 +2.8.105 +2.8.106 +2.8.108 +2.8.109 +2.8.11 +2.8.110 +2.8.117 +2.8.118 +2.8.119 +2.8.12 +2.8.120 +2.8.121 +2.8.122 +2.8.123 +2.8.13 +2.8.14 +2.8.15 +2.8.16 +2.8.17 +2.8.18 +2.8.19 +2.8.19.1 +2.8.19.10 +2.8.19.2 +2.8.19.3 +2.8.19.4 +2.8.19.5 +2.8.19.6 +2.8.19.7 +2.8.19.8 +2.8.19.9 +2.8.2 +2.8.2.post0 +2.8.20 +2.8.21 +2.8.23 +2.8.29 +2.8.3 +2.8.3.1 +2.8.30 +2.8.31 +2.8.32 +2.8.33 +2.8.34 +2.8.35 +2.8.36 +2.8.4 +2.8.4.1 +2.8.40 +2.8.5 +2.8.6 +2.8.6.post0 +2.8.6.post1 +2.8.6.post2 +2.8.7 +2.8.78 +2.8.8 +2.8.82 +2.8.83 +2.8.85 +2.8.86 +2.8.87 +2.8.88 +2.8.89 +2.8.9 +2.8.9.1 +2.8.91 +2.8.92 +2.8.93 +2.8.96 +2.8.97 +2.8.98 +2.8.99 +2.80.0 +2.80.1 +2.81.0 +2.81.1 +2.82.0 +2.82.1 +2.82.2 +2.83.0 +2.83.1 +2.84 +2.84.0 +2.85.0 +2.86 +2.86.0 +2.86.1 +2.86.2 +2.87 +2.87.0 +2.88 +2.88.0 +2.88.1 +2.88.1.73 +2.88.2 +2.88.3 +2.89 +2.89.0 +2.8_0 +2.8_1 +2.8_19 +2.8_3 +2.8_4 +2.8_5 +2.8_5.1 +2.8_6 +2.8_7 +2.8_7.1 +2.8_8 +2.9 +2.9.0 +2.9.1 +2.9.1.1 +2.9.10 +2.9.11 +2.9.12 +2.9.13 +2.9.14 +2.9.15 +2.9.16 +2.9.17 +2.9.18 +2.9.19 +2.9.2 +2.9.2.0.1 +2.9.2.0.2 +2.9.2.1 +2.9.2.1.1 +2.9.2.1.2 +2.9.20 +2.9.20rc2 +2.9.21 +2.9.21.1 +2.9.21.2 +2.9.21.4 +2.9.21.5 +2.9.21.6 +2.9.21.7 +2.9.21.8 +2.9.22 +2.9.3 +2.9.4 +2.9.41 +2.9.42 +2.9.43 +2.9.44 +2.9.45 +2.9.5 +2.9.5857 +2.9.5987 +2.9.6 +2.9.6.1 +2.9.6621 +2.9.6753 +2.9.7 +2.9.7.1 +2.9.8 +2.9.8.1 +2.9.9 +2.9.9.1 +2.90.0 +2.90.1 +2.90.2 +2.90.3 +2.90.4 +2.91.0 +2.91.1 +2.92.0 +2.92.1 +2.92.2 +2.93.0 +2.93.1 +2.94.0 +2.95.0 +2.96 +2.96.0 +2.96.1 +2.97 +2.97.0 +2.98.0 +2.99.0 +2.9_0 +2.9_1 +2.9_2 +2.9_2.1 +2.9_3 +2.9_4 +2.9_5 +2.9_6 +2.9_7 +20 +20.0 +20.0.0 +20.0.0.post0 +20.0.1 +20.0.1.post0 +20.0.1.post1 +20.0.1.post2 +20.0.2 +20.0.20 +20.0.3 +20.0.33 +20.0.34 +20.0.35 +20.0.4 +20.0.5 +20.0.6 +20.0.7 +20.0.8 +20.0.9 +20.01.0 +20.010 +20.02.15268 +20.03 +20.04.1 +20.07.1 +20.07.15711 +20.08.15750 +20.09.0 +20.09.15980 +20.1 +20.1.0 +20.1.1 +20.1.2 +20.1.3 +20.1.4 +20.1.5 +20.10 +20.10.0 +20.10.08 +20.10.18 +20.10.29 +20.10.8 +20.10.9 +20.11 +20.11.0 +20.11.1 +20.11.16158 +20.11.2 +20.12 +20.12.0 +20.12.1 +20.12.2 +20.12.3 +20.13 +20.13.0 +20.13.1 +20.13.2 +20.13.3 +20.13.4 +20.14 +20.14.0 +20.14.1 +20.15 +20.15.0 +20.15.1 +20.16.0 +20.16.1 +20.16.2 +20.16.3 +20.16.4 +20.16.5 +20.16.6 +20.16.7 +20.17.0 +20.17.1 +20.18.0 +20.19.0 +20.2 +20.2.0 +20.2.1 +20.2.2 +20.2.3 +20.2.4 +20.20.0 +20.3 +20.3.0 +20.3.1 +20.3.2 +20.3.3 +20.3.4 +20.36.0 +20.37.0 +20.38.0 +20.39.0 +20.4 +20.4.0 +20.4.1 +20.4.2 +20.4.24 +20.4.3 +20.4.4 +20.4.5 +20.4.6 +20.4.7 +20.40.0 +20.41.0 +20.42.0 +20.43.0 +20.44.0 +20.5 +20.5.0 +20.5.1 +20.5.2 +20.6 +20.6.0 +20.6.1 +20.6.2 +20.6.3 +20.7 +20.7.0 +20.7.1 +20.7.3 +20.8 +20.8.0 +20.8.1 +20.8b1 +20.9 +20.9.0 +20.9.1 +200 +20070912 +201 +2010.002 +201008 +20120220 +20120904 +20121119 +2013 +2013.03.29 +2013.03.29.1 +2013.523 +2013.8.7 +2013.9.3 +2013.9_1 +20131217 +20131218 +2013_2.21 +2014.10_1 +2014.11_1 +20140328 +20140424 +20140630 +20140910.003 +20140914 +2015.12_1.1 +2015.2 +2015.2.1 +2015.3_1 +2015.8.7 +2015.e +20150426 +20150526 +20150908 +20151101.12.0 +20151101.14.0 +20151101.16.0 +20151101.18.0 +20151101.19.0 +20151101.20.0 +20151101.22.0 +20151101.24.0 +20151101.27.0 +2016.03.31 +2016.04 +2016.04.25 +2016.5.15 +2016.06.19 +2016.06.23 +2016.06.24 +2016.07.21 +2016.08.27 +2016.09.22 +2016.1 +2016.1.0 +2016.1.2 +2016.1.3 +2016.10 +2016.10.12 +2016.10.22 +2016.10.25 +2016.11.01 +2016.11.18 +2016.12.27 +2016.2 +2016.2.0 +2016.2.1 +2016.2.2 +2016.2.28 +2016.2.3 +2016.2.4 +2016.2.5 +2016.2.6 +2016.3 +2016.3.0 +2016.3.28 +2016.4 +2016.6.1 +2016.6.4 +2016.66 +2016.67 +2016.68 +2016.69 +2016.7 +2016.70 +2016.8.2 +2016.8.31 +2016.8.8 +2016.8_1 +2016.8_1.1 +2016.8_2 +2016.9 +2016.9.26 +20160102 +20160103 +20160127 +20160418 +20160520 +20160523b +20160614 +20160825 +20161019 +20161026 +2016_8.8 +2017.01.01 +2017.01.17 +2017.02.08 +2017.03.31 +2017.04.5 +2017.04.23 +2017.04.29 +2017.5.26 +2017.06.07 +2017.06.20 +2017.06.23 +2017.07.11 +2017.07.21 +2017.07.28 +2017.09.01 +2017.09.23 +2017.09.27 +2017.09.3 +2017.1 +2017.1.0 +2017.1.1 +2017.1.16.14.45 +2017.1.2 +2017.1.23 +2017.1.3 +2017.1.4 +2017.1.9.21.24 +2017.10 +2017.10.22 +2017.10_1 +2017.11.09 +2017.11.5 +2017.12.5 +2017.12.12 +2017.12.31 +2017.12_1 +2017.2 +2017.2.0 +2017.2.1 +2017.2.2 +2017.3 +2017.3.1 +2017.4 +2017.4.1 +2017.4.17 +2017.5 +2017.6 +2017.7.27.1 +2017.9 +2017.9.19 +2017.9.3 +20170122 +20170220 +20170330 +20170419 +20170520 +2017060201 +20170625 +20170720 +20171003 +20171108 +20171219 +20171222 +20171231 +2017_20160722 +2017_20160916 +2017_20161004 +2017_20161128 +2017_20170226 +2017_20170412 +2017_20170604 +2017_7.18 +2018.0.3 +2018.0.4 +2018.0.5 +2018.01.10 +2018.02.08 +2018.02.15 +2018.02.21 +2018.03.1 +2018.03.13 +2018.03.16 +2018.03.2 +2018.03.3 +2018.03.4 +2018.04.01 +2018.04.18 +2018.5.22 +2018.5.22.1 +2018.06.06 +2018.06.09 +2018.06.21 +2018.06.29 +2018.07.01 +2018.07.11 +2018.07.26 +2018.08.01 +2018.08.17 +2018.08.29 +2018.09.01 +2018.09.1 +2018.09.2 +2018.09.3 +2018.1 +2018.1.0 +2018.1.0_0.5 +2018.1.0_0.8 +2018.1.1 +2018.1.18 +2018.1.2 +2018.1.3 +2018.10 +2018.10.0 +2018.10.01 +2018.10.1 +2018.10.1.22.5.32 +2018.10.15 +2018.10.17 +2018.10.2 +2018.10.26 +2018.10.29 +2018.10.3 +2018.10.5 +2018.11 +2018.11.02 +2018.11.03 +2018.11.06 +2018.11.07 +2018.11.18 +2018.11.22 +2018.11.23 +2018.11.29 +2018.11.3 +2018.11.3.1.0.41 +2018.11.7 +2018.12.01 +2018.12.1 +2018.12.12 +2018.12.13 +2018.12.17 +2018.12.3 +2018.12.31 +2018.12.9 +2018.2 +2018.2.1 +2018.2.2 +2018.2.22 +2018.2.26 +2018.2.3 +2018.2.5 +2018.2_1 +2018.3 +2018.3.10 +2018.3.25.2110 +2018.4 +2018.4.16 +2018.4.16.17.4.9 +2018.4.25 +2018.4.26.9.35.2 +2018.5 +2018.5.1 +2018.5.10.13.50.12 +2018.5.16.9.16.21 +2018.5.18 +2018.5.2 +2018.5.2.21.39.8 +2018.5.31.16.8.42 +2018.5.9.12.22.4 +2018.5.9.21.48.54 +2018.6 +2018.6.18.16.33.12 +2018.6.2 +2018.7 +2018.7.21 +2018.7.23 +2018.7.29 +2018.7.4 +2018.7.5.21.55.13 +2018.8.13 +2018.8.22 +2018.8.24 +2018.8.28 +2018.8.4 +2018.8.8 +2018.8_25 +2018.9 +2018.9.1 +2018.9.18 +2018.9.2 +2018.9.26 +2018.9.3 +2018.9.4 +2018.9.8 +20180117 +20180222 +20180322 +20180414 +20180501 +20180522 +20180523.0 +20180710 +20180712 +20180815 +20180828 +20180922 +20181022 +20181108 +20181111 +20181205 +2018_06_28 +2018_2.13_1 +2018_20170726 +2018_20170919 +2018_20171205 +2018_4.17 +2018_4.17.1 +2018_7.10 +2018g +2019.0 +2019.001 +2019.01.01 +2019.01.15 +2019.01.16 +2019.01.18 +2019.01.20 +2019.01.21 +2019.01.24 +2019.01.29 +2019.02.03 +2019.02.5 +2019.02.06 +2019.02.07 +2019.02.11 +2019.02.13 +2019.02.15 +2019.02.18 +2019.02.20 +2019.02.21 +2019.02.24 +2019.02.28 +2019.03.04 +2019.03.09 +2019.03.1 +2019.03.10 +2019.03.11 +2019.03.12 +2019.03.13 +2019.03.14 +2019.03.15 +2019.03.17 +2019.03.2 +2019.03.3 +2019.03.4 +2019.04.01 +2019.04.09 +2019.04.10 +2019.04.11 +2019.04.12 +2019.04.14 +2019.04.18 +2019.04.22 +2019.04.24 +2019.04.25 +2019.5.06 +2019.5.11 +2019.5.21 +2019.5.25 +2019.5.26 +2019.5.29 +2019.5.31 +2019.06.01 +2019.06.02 +2019.06.04 +2019.06.5 +2019.06.06 +2019.06.08 +2019.06.09 +2019.06.17 +2019.06.18 +2019.06.19 +2019.06.27 +2019.06.28 +2019.07 +2019.07.01 +2019.07.02.16.09 +2019.07.03 +2019.07.04 +2019.07.10 +2019.07.11 +2019.07.12 +2019.07.13 +2019.07.15 +2019.07.19 +2019.07.20 +2019.07.22 +2019.07.23 +2019.07.25 +2019.07.26 +2019.08.01 +2019.08.07 +2019.08.08 +2019.08.09 +2019.08.11 +2019.08.12 +2019.08.19 +2019.08.22 +2019.08.27 +2019.09.01 +2019.09.08 +2019.09.1 +2019.09.2 +2019.09.24 +2019.09.25 +2019.09.27 +2019.09.3 +2019.1 +2019.1.0 +2019.1.1 +2019.1.10 +2019.1.144 +2019.1.16 +2019.1.17 +2019.1.2 +2019.1.27 +2019.1.3 +2019.1.30 +2019.1.30.1 +2019.1.4 +2019.1.5 +2019.1.8 +2019.10.01 +2019.10.5.12.26 +2019.10.08 +2019.10.11 +2019.10.13 +2019.10.15 +2019.10.16 +2019.10.22 +2019.10.25 +2019.10.26 +2019.10.28 +2019.10.28.11.59.32 +2019.10.29 +2019.10.3 +2019.10.3.10.26.21 +2019.10.30 +2019.10.4 +2019.10_1 +2019.11 +2019.11.0 +2019.11.01 +2019.11.03 +2019.11.1 +2019.11.11 +2019.11.12 +2019.11.13 +2019.11.14 +2019.11.18 +2019.11.19 +2019.11.20 +2019.11.22 +2019.11.23 +2019.11.25 +2019.11.26 +2019.11.28 +2019.11.30 +2019.11.4 +2019.11.5 +2019.11.9 +2019.12 +2019.12.01 +2019.12.02 +2019.12.09 +2019.12.11.13.26.16 +2019.12.11.22.25.52 +2019.12.13 +2019.12.17 +2019.12.18 +2019.12.19 +2019.12.2 +2019.12.20 +2019.12.22 +2019.12.25 +2019.12.3 +2019.12.5 +2019.12.6 +2019.12.9 +2019.12_10 +2019.2 +2019.2.0 +2019.2.1 +2019.2.10 +2019.2.18 +2019.2.28 +2019.2.32 +2019.2.8 +2019.3 +2019.3.1 +2019.3.16 +2019.3.18 +2019.3.18.14.33.20 +2019.3.20.17.25.52 +2019.3.21.12.25.52 +2019.3.21.21.27.29 +2019.3.28 +2019.3.9 +2019.4 +2019.4.1 +2019.4.11 +2019.4.14 +2019.4.17 +2019.4.17.13.51.39 +2019.4.18 +2019.4.20 +2019.4.24 +2019.4.26.1 +2019.4.27 +2019.4.30 +2019.4.7 +2019.4_25 +2019.5 +2019.5.1 +2019.5.11 +2019.5.20 +2019.5.30 +2019.6 +2019.6.11.17.26.3 +2019.6.16 +2019.6.21 +2019.6.26.0.0.13 +2019.6.26.13.52.49 +2019.6.26.15.8.24 +2019.6.27 +2019.6.5.13.20.47 +2019.6.8 +2019.7 +2019.7.12 +2019.7.12.23.25.11 +2019.7.14 +2019.7.15.12.50.36 +2019.7.16 +2019.7.2 +2019.7.21 +2019.7.22.22.13.57 +2019.7.23.15.26.49 +2019.7.26 +2019.7.26.2 +2019.7.27 +2019.7.3.22.46.7 +2019.7.30 +2019.8 +2019.8.1 +2019.8.13 +2019.8.14 +2019.8.18 +2019.8.2 +2019.8.20 +2019.8.23 +2019.8.24 +2019.8.5 +2019.8.9.16.54.31 +2019.9 +2019.9.1 +2019.9.11 +2019.9.12 +2019.9.16 +2019.9.19.23.25.28 +2019.9.23 +2019.9.26 +2019.9.28 +2019.9.30.17.47.33 +2019.9.8 +2019.9.9.23.27.50 +20190110 +20190115 +20190122 +20190201 +20190207 +20190212 +20190226 +20190318 +20190321 +20190322 +20190417 +201904251722 +20190522 +20190722 +20190808 +20190909 +20190922 +20191020 +20191026 +20191106 +20191111 +20191115 +20191122 +20191125 +2019_11.26 +2019_12.16 +2019_12.4 +2019a +202 +2020.0 +2020.0.0 +2020.0.1 +2020.0.2 +2020.0.3 +2020.0.6 +2020.0.6rc2 +2020.0.7 +2020.01 +2020.01.01 +2020.01.5 +2020.01.06 +2020.01.07 +2020.01.08 +2020.01.10 +2020.01.15 +2020.01.16 +2020.01.21 +2020.01.22 +2020.01.24 +2020.01.27 +2020.01.28 +2020.02 +2020.02.5 +2020.02.06 +2020.02.12 +2020.02.19 +2020.02.20 +2020.02.24 +2020.03 +2020.03.01 +2020.03.02 +2020.03.03 +2020.03.04 +2020.03.5 +2020.03.06 +2020.03.09 +2020.03.1 +2020.03.10 +2020.03.12 +2020.03.13 +2020.03.14 +2020.03.15.13.27 +2020.03.16 +2020.03.19 +2020.03.2 +2020.03.20 +2020.03.22 +2020.03.23 +2020.03.24 +2020.03.27 +2020.03.28 +2020.03.3 +2020.03.30 +2020.03.4 +2020.03.5 +2020.03.6 +2020.04.01 +2020.04.02 +2020.04.03 +2020.04.04 +2020.04.06 +2020.04.07 +2020.04.08 +2020.04.09 +2020.04.10 +2020.04.10.14.16.24 +2020.04.10.14.21.26 +2020.04.10.14.22.02 +2020.04.10.14.33.34 +2020.04.10.16.51.29 +2020.04.10.18.29.06 +2020.04.10.23.07.47 +2020.04.12.13.56.44 +2020.04.14 +2020.04.14.00.23.16 +2020.04.14.12.02.49 +2020.04.15.00.37.28 +2020.04.15.16.20.31 +2020.04.15.22.14.52 +2020.04.15.23.38.20 +2020.04.16.03.28.28 +2020.04.16.07.55.54 +2020.04.16.16.23.46 +2020.04.17.01.00.32 +2020.04.17.09.06.29 +2020.04.17.11.22.12 +2020.04.17.11.45.02 +2020.04.17.22.20.20 +2020.04.18.00.00.57 +2020.04.20.03.17.56 +2020.04.21.12.59.15 +2020.04.22.02.5.22 +2020.04.22.03.51.02 +2020.04.23 +2020.04.23.5.37.39 +2020.04.23.13.54.59 +2020.04.23.16.40.11 +2020.04.23.22.5.54 +2020.04.24.08.48.19 +2020.04.24.22.48.20 +2020.04.24.22.56.04 +2020.04.25 +2020.04.26.12.54.30 +2020.04.26.19.17.14 +2020.04.27.17.45.41 +2020.04.28 +2020.04.28.13.02.26 +2020.04.29 +2020.04.30.12.38.06 +2020.04.30.13.04.49 +2020.04.30.15.17.54 +2020.04.30.15.41.11 +2020.04.30.22.10.16 +2020.04.30.22.51.59 +2020.5 +2020.5.01 +2020.5.01.13.16.44 +2020.5.01.18.41.01 +2020.5.01.20.16.02 +2020.5.01.23.5.28 +2020.5.02.01.08.57 +2020.5.02.02.22.03 +2020.5.02.14.58.15 +2020.5.03.17.40.55 +2020.5.03.19.37.20 +2020.5.04 +2020.5.04.00.11.09 +2020.5.04.5.46.47 +2020.5.04.19.36.16 +2020.5.04.19.59.17 +2020.5.06.22.15.02 +2020.5.08.11.44.00 +2020.5.09 +2020.5.09.00.08.03 +2020.5.10 +2020.5.10.5.52.45 +2020.5.11.06.13.34 +2020.5.11.16.49.47 +2020.5.12.18.03.58 +2020.5.13.13.23.43 +2020.5.14.17.14.20 +2020.5.18.07.14.19 +2020.5.18.07.24.43 +2020.5.18.11.53.22 +2020.5.18.14.31.44 +2020.5.19 +2020.5.19.09.34.36 +2020.5.19.13.30.35 +2020.5.19.19.39.08 +2020.5.19.2 +2020.5.20.09.40.28 +2020.5.20.21.21.18 +2020.5.21 +2020.5.25.23.01.15 +2020.5.27 +2020.5.27.14.19.32 +2020.5.27.16.15 +2020.5.28 +2020.5.29 +2020.5.31.21.10.28 +2020.06 +2020.06.01 +2020.06.01.14.18.30 +2020.06.01.17.08.18 +2020.06.01.18.18.56 +2020.06.02.12.20.38 +2020.06.03 +2020.06.03.1 +2020.06.03.11.59.27 +2020.06.03.12.27.10 +2020.06.03.12.27.21 +2020.06.03.13.07.20 +2020.06.03.13.16.18 +2020.06.03.13.41.50 +2020.06.04.02.43.14 +2020.06.04.10.25.49 +2020.06.04.13.55.38 +2020.06.06 +2020.06.06.02.30.37 +2020.06.06.15.39.47 +2020.06.06.18.33.32 +2020.06.07 +2020.06.07.16.42.19 +2020.06.10 +2020.06.10.22.19.47 +2020.06.12.09.54.30 +2020.06.12.12.07.36 +2020.06.12.14.12.47 +2020.06.13.02.15.08 +2020.06.15.11.48.40 +2020.06.15.22.23.21 +2020.06.15.22.23.24 +2020.06.16 +2020.06.16.14.10.58 +2020.06.16.21.09.39 +2020.06.18 +2020.06.19 +2020.06.22 +2020.06.23.06.07.46 +2020.06.23.15.5.51 +2020.06.24.16.31.11 +2020.07 +2020.07.01 +2020.07.01.19.41.39 +2020.07.01.21.17.12 +2020.07.02.16.06.52 +2020.07.02.17.22.00 +2020.07.03 +2020.07.03.10.54.45 +2020.07.5.20.11.47 +2020.07.5.21.09.16 +2020.07.06 +2020.07.06.07.16.19 +2020.07.06.14.07.53 +2020.07.06.15.09.44 +2020.07.06.15.29.37 +2020.07.06.18.43.00 +2020.07.07.15.30.32 +2020.07.07.19.27.52 +2020.07.1 +2020.07.12.08.10.44 +2020.07.12.14.17.08 +2020.07.13.5.21.24 +2020.07.13.5.22.39 +2020.07.13.5.22.51 +2020.07.13.5.23.11 +2020.07.14.15.32.37 +2020.07.15.13.14.37 +2020.07.15.18.17.54 +2020.07.15.18.18.04 +2020.07.17.07.07.44 +2020.07.17.07.14.20 +2020.07.17.17.28.25 +2020.07.18 +2020.07.18.02.18.36 +2020.07.18.17.52.56 +2020.07.18.19.24.57 +2020.07.18.20.5.59 +2020.07.18.20.56.00 +2020.07.19.19.30.49 +2020.07.20.22.41.22 +2020.07.21.08.49.43 +2020.07.21.17.10.15 +2020.07.22.15.50.26 +2020.07.23.07.37.39 +2020.07.24.15.53.25 +2020.07.25.08.41 +2020.07.26.17.35.30 +2020.07.26.20.00.32 +2020.07.27 +2020.07.27.09.21.49 +2020.07.27.18.59.53 +2020.07.28.15.09.26 +2020.07.29.10.14.20 +2020.07.30.14.5.10 +2020.07.31.22.07.41 +2020.08.01 +2020.08.01.13.32.00 +2020.08.01.17.49.49 +2020.08.02 +2020.08.02.14.12.45 +2020.08.02.14.15.29 +2020.08.02.15.39.57 +2020.08.04.07.08.47 +2020.08.04.10.51.31 +2020.08.04.14.41.32 +2020.08.5 +2020.08.5.17.02.37 +2020.08.08 +2020.08.09.19.50.01 +2020.08.10.21.36.31 +2020.08.11 +2020.08.12.15.50.13 +2020.08.12.15.52.31 +2020.08.12.16.30.22 +2020.08.13.04.25.14 +2020.08.14.17.10.59 +2020.08.15.14.52.28 +2020.08.15.14.59.48 +2020.08.17.19.54.37 +2020.08.17.20.01.55 +2020.08.21.04.46.41 +2020.08.24 +2020.08.25.14.55.21 +2020.08.26.22.12.02 +2020.08.27.12.52.30 +2020.08.27.19.07.14 +2020.08.29.21.09.48 +2020.08.30 +2020.08.31 +2020.09.01.20.11.42 +2020.09.01.22.03.41 +2020.09.02.00.32.57 +2020.09.02.16.41.07 +2020.09.03.21.06.41 +2020.09.03.21.10.34 +2020.09.04.10.00.02 +2020.09.07.14.45.08 +2020.09.07.15.41.27 +2020.09.07.16.02.10 +2020.09.07.20.08.14 +2020.09.07.21.12.35 +2020.09.08.14.30.5 +2020.09.08.18.21.18 +2020.09.09.10.20.41 +2020.09.09.20.59.59 +2020.09.1 +2020.09.10.13.34.01 +2020.09.11.15.57.35 +2020.09.11.18.34.57 +2020.09.11.18.40.13 +2020.09.11.19.40.57 +2020.09.13 +2020.09.14.17.07.46 +2020.09.14.18.14.00 +2020.09.16.03.5.24 +2020.09.16.09.15.38 +2020.09.16.16.02.20 +2020.09.16.18.10.04 +2020.09.17.18.10.19 +2020.09.17.18.26.02 +2020.09.18.08.06.5 +2020.09.18.08.23.49 +2020.09.18.15.42.03 +2020.09.18.21.5.29 +2020.09.19 +2020.09.19.08.22.59 +2020.09.19.20.20.14 +2020.09.2 +2020.09.21 +2020.09.23.12.58.01 +2020.09.23.21.28.59 +2020.09.23.23.12.07 +2020.09.23.23.13.32 +2020.09.24.02.52.44 +2020.09.24.5.55.20 +2020.09.24.11.51.54 +2020.09.25.13.11.25 +2020.09.25.17.46.30 +2020.09.26.07.48.26 +2020.09.26.15.06.30 +2020.09.27 +2020.09.28 +2020.09.28.09.54.5 +2020.09.28.17.33.40 +2020.09.28.20.29.37 +2020.09.28.21.5.13 +2020.09.28.22.08.29 +2020.09.28.22.13.14 +2020.09.29.03.36.00 +2020.09.29.09.53.28 +2020.09.29.10.44.38 +2020.09.29.13.22.45 +2020.09.29.16.41.07 +2020.09.3 +2020.09.30 +2020.09.30.11.43.38 +2020.09.30.16.33.39 +2020.09.4 +2020.09.5 +2020.1 +2020.1.0 +2020.1.1 +2020.1.10 +2020.1.15 +2020.1.16 +2020.1.17 +2020.1.2 +2020.1.22 +2020.1.24 +2020.1.28 +2020.1.29 +2020.1.3 +2020.1.30 +2020.1.31 +2020.1.31.12.4.51 +2020.1.7 +2020.1.8 +2020.10 +2020.10.0 +2020.10.01 +2020.10.01.08.48.5 +2020.10.01.12.20.34 +2020.10.01.12.20.37 +2020.10.01.12.48.12 +2020.10.01.19.13.14 +2020.10.02 +2020.10.02.09.22.14 +2020.10.02.11.13.19 +2020.10.02.11.26.57 +2020.10.02.13.16.37 +2020.10.03 +2020.10.04.20.30.50 +2020.10.5.16.30.09 +2020.10.06.07.41.18 +2020.10.07.06.34.32 +2020.10.07.09.03.27 +2020.10.07.13.18.22 +2020.10.07.15.27.08 +2020.10.07.18.43.37 +2020.10.07.19.26.27 +2020.10.07.20.17.51 +2020.10.07.20.47.11 +2020.10.07.21.07.43 +2020.10.07.22.34.39 +2020.10.07.22.37.31 +2020.10.07.23.53.48 +2020.10.08 +2020.10.08.11.41.29 +2020.10.08.14.14.24 +2020.10.08.15.13.14 +2020.10.08.18.09.54 +2020.10.08.20.29.16 +2020.10.09.16.47.17 +2020.10.1 +2020.10.10 +2020.10.11 +2020.10.11.15.10.22 +2020.10.12.09.51.03 +2020.10.12.15.08.21 +2020.10.12.15.14.45 +2020.10.12.17.33.53 +2020.10.12.21.02.26 +2020.10.12.22.41.22 +2020.10.13.00.03.02 +2020.10.13.15.16.20 +2020.10.13.18.06.16 +2020.10.13.18.50.19 +2020.10.13.19.09.25 +2020.10.14.13.15.42 +2020.10.14.18.14.07 +2020.10.14.20.18.28 +2020.10.14.22.34.53 +2020.10.15 +2020.10.15.14.59.50 +2020.10.15.16.53.35 +2020.10.15.16.54.09 +2020.10.16 +2020.10.16.00.16.46 +2020.10.16.02.36.37 +2020.10.16.18.51.08 +2020.10.18.07.06.23 +2020.10.18.17.43.44 +2020.10.19.14.5.29 +2020.10.19.14.20.14 +2020.10.19b4 +2020.10.20 +2020.10.20.11.21.36 +2020.10.20.11.22.02 +2020.10.20.15.08.50 +2020.10.20.15.55.33 +2020.10.20.16.09.06 +2020.10.20.19.24.17 +2020.10.21 +2020.10.21.13.25.30 +2020.10.22.15.42.41 +2020.10.23 +2020.10.24.12.16 +2020.10.24.16.47.03 +2020.10.25.18.56.06 +2020.10.26.03.51.59 +2020.10.26.12.39.30 +2020.10.27 +2020.10.27.07.15.50 +2020.10.27.17.47.18 +2020.10.28 +2020.10.28.12.21.23 +2020.10.29 +2020.10.29.11.45.42 +2020.10.30 +2020.10.31.07.20.24 +2020.10.31.07.46.09 +2020.10.31.07.47.31 +2020.10.31.07.48.09 +2020.10.31.11.52.50 +2020.10.31.20.42.37 +2020.10.6 +2020.10.7 +2020.10.8 +2020.10.9 +2020.10.9.1 +2020.10_1 +2020.11 +2020.11.0 +2020.11.01 +2020.11.01.15.38.34 +2020.11.01.16.28.01 +2020.11.01.23.03.12 +2020.11.02.09.20.27 +2020.11.02.18.31.44 +2020.11.02.18.49.03 +2020.11.03.00.15.30 +2020.11.03.14.04.27 +2020.11.03.15.27.20 +2020.11.03.19.14.45 +2020.11.03.22.36.25 +2020.11.04.10.33.26 +2020.11.04.10.33.32 +2020.11.04.10.36.34 +2020.11.5 +2020.11.06 +2020.11.06.18.20.12 +2020.11.07 +2020.11.07.01.17.04 +2020.11.07.01.17.20 +2020.11.08.20.44.44 +2020.11.1 +2020.11.1.1 +2020.11.10 +2020.11.10.10.45.26 +2020.11.10.18.54.39 +2020.11.10.21.31.03 +2020.11.11 +2020.11.11.10.18.59 +2020.11.11.15.57.25 +2020.11.12 +2020.11.12.0 +2020.11.12.14.52.24 +2020.11.12.16.29.34 +2020.11.12.19.01.39 +2020.11.12.21.44.15 +2020.11.12.21.52.18 +2020.11.13 +2020.11.13.16.12.32 +2020.11.13.16.40.26 +2020.11.13.20.10.34 +2020.11.13.21.19.21 +2020.11.14.07.41.32 +2020.11.14.14.16.41 +2020.11.15 +2020.11.15.04.59.29 +2020.11.15.13.01.59 +2020.11.15.19.46.57 +2020.11.16.10.22.59 +2020.11.16.11.06.23 +2020.11.16.18.10.02 +2020.11.17 +2020.11.17.17.01.24 +2020.11.18 +2020.11.18.18.18.16 +2020.11.18.20.19.01 +2020.11.19 +2020.11.20 +2020.11.20.14.18.33 +2020.11.21 +2020.11.21.04.23.28 +2020.11.21.1 +2020.11.21.12.44.23 +2020.11.22.13.14.13 +2020.11.23.01.47.34 +2020.11.23.12.48.02 +2020.11.23.13.18.02 +2020.11.23.15.13.34 +2020.11.23.16.56.19 +2020.11.23.17.11.04 +2020.11.23.17.11.18 +2020.11.23.21.32.28 +2020.11.24 +2020.11.24.14.19.48 +2020.11.24.19.24.28 +2020.11.24.22.57.48 +2020.11.25 +2020.11.25.09.00.04 +2020.11.25.17.00.45 +2020.11.25.20.41.30 +2020.11.25.21.48.01 +2020.11.26 +2020.11.26.06.28.51 +2020.11.26.07.13.25 +2020.11.27 +2020.11.27.22.34.30 +2020.11.28 +2020.11.29 +2020.11.30 +2020.11.30.18.15.16 +2020.11.4 +2020.11.5 +2020.11.8 +2020.11.9 +2020.12 +2020.12.0 +2020.12.01.14.31.10 +2020.12.01.14.31.16 +2020.12.01.14.33.39 +2020.12.02.08.58.00 +2020.12.02.08.58.36 +2020.12.02.10.35.15 +2020.12.02.18.06.47 +2020.12.04 +2020.12.04.08.17.45 +2020.12.04.16.35.12 +2020.12.04.20.36.45 +2020.12.06.16.40.53 +2020.12.07.18.58.57 +2020.12.08 +2020.12.08.18.08.39 +2020.12.08.22.36.27 +2020.12.09.12.04.26 +2020.12.09.12.57.46 +2020.12.09.17.24.5 +2020.12.1 +2020.12.10 +2020.12.10.15.32.5 +2020.12.10.16.43.04 +2020.12.10.20.27.39 +2020.12.10.20.57.11 +2020.12.10.21.13.33 +2020.12.11 +2020.12.11.09.47.37 +2020.12.12 +2020.12.12.12.24.07 +2020.12.14 +2020.12.14.20.00.20 +2020.12.14.20.07.44 +2020.12.15 +2020.12.15.10.41.23 +2020.12.15.21.48.12 +2020.12.15.22.08.25 +2020.12.16 +2020.12.16.02.08.12 +2020.12.16.09.27.23 +2020.12.16.10.46.5 +2020.12.16.16.31.44 +2020.12.16.17.43.31 +2020.12.17.16.32.44 +2020.12.17_2 +2020.12.18 +2020.12.18.01.20.00 +2020.12.18.16.58.40 +2020.12.18.18.5.13 +2020.12.18.23.13.23 +2020.12.19.03.20.16 +2020.12.2 +2020.12.20.03.10.16 +2020.12.20.15.35.03 +2020.12.20.21.33.49 +2020.12.21.10.29.32 +2020.12.21.11.21.41 +2020.12.21.13.42.08 +2020.12.22 +2020.12.22.11.23.16 +2020.12.22.15.34.48 +2020.12.23 +2020.12.23.12.00.44 +2020.12.23.19.30.24 +2020.12.24 +2020.12.25.18.5.12 +2020.12.26 +2020.12.26.13.11.41 +2020.12.28.08.15.01 +2020.12.28.19.16.11 +2020.12.29 +2020.12.29.17.41.50 +2020.12.29.19.31.56 +2020.12.29.19.35.25 +2020.12.3 +2020.12.30.15.14.36 +2020.12.30.16.09.43 +2020.12.30b24 +2020.12.31 +2020.12.31.00.10.22 +2020.12.31.20.36.09 +2020.12.31.21.12.36 +2020.12.31.21.46.35 +2020.12.4 +2020.12.5 +2020.12.7 +2020.12.8 +2020.12.9 +2020.12.9b21 +2020.2 +2020.2.0 +2020.2.1 +2020.2.10 +2020.2.12 +2020.2.15 +2020.2.16 +2020.2.17 +2020.2.17.23.39.39 +2020.2.18 +2020.2.18.11.46.9 +2020.2.19 +2020.2.2 +2020.2.20 +2020.2.21 +2020.2.21.10.36.37 +2020.2.25 +2020.2.26.10.41.58 +2020.2.26.16.29.24 +2020.2.29 +2020.2.3 +2020.2.4 +2020.2.4.15.27.6 +2020.2.4.post1 +2020.2.41 +2020.2.5 +2020.2.6 +2020.2.7 +2020.2.8 +2020.2_1 +2020.3 +2020.3.0 +2020.3.1 +2020.3.10 +2020.3.12 +2020.3.13 +2020.3.16 +2020.3.16.1 +2020.3.16.2 +2020.3.17 +2020.3.2 +2020.3.21.10.12.32 +2020.3.24 +2020.3.25 +2020.3.3 +2020.3.31 +2020.3.4 +2020.4 +2020.4.0 +2020.4.1 +2020.4.14 +2020.4.2 +2020.4.21 +2020.4.21.11.20.15 +2020.4.21.14.53.58 +2020.4.22 +2020.4.23 +2020.4.24 +2020.4.24.9.29.7 +2020.4.27 +2020.4.28 +2020.4.29 +2020.4.3 +2020.4.30 +2020.4.4 +2020.4.5.1 +2020.4.5.2 +2020.4.7 +2020.5 +2020.5.0 +2020.5.1 +2020.5.1.9.54.41 +2020.5.11 +2020.5.11.13.33.35 +2020.5.13 +2020.5.14 +2020.5.16 +2020.5.19 +2020.5.19.15.27.24 +2020.5.2 +2020.5.21 +2020.5.24 +2020.5.27 +2020.5.28 +2020.5.29 +2020.5.3 +2020.5.30 +2020.5.5 +2020.5.7 +2020.5.8 +2020.6 +2020.6.0 +2020.6.1 +2020.6.11 +2020.6.16 +2020.6.16.1 +2020.6.17 +2020.6.2 +2020.6.20 +2020.6.23 +2020.6.26 +2020.6.3 +2020.6.30 +2020.6.4 +2020.6.5 +2020.6.5.10.11.45 +2020.6.6 +2020.6.7 +2020.6.8 +2020.6.9 +2020.7 +2020.7.0 +2020.7.1 +2020.7.10 +2020.7.14 +2020.7.15 +2020.7.16 +2020.7.16.22.25.48 +2020.7.17 +2020.7.18 +2020.7.2 +2020.7.20 +2020.7.21 +2020.7.22 +2020.7.24 +2020.7.28 +2020.7.29 +2020.7.3 +2020.7.30 +2020.7.30.11.47.47 +2020.7.30.11.56.5 +2020.7.30.17.4.28 +2020.7.31.11.53.28 +2020.7.31.23.51.16 +2020.7.4 +2020.7.7 +2020.8 +2020.8.0 +2020.8.1 +2020.8.10 +2020.8.11 +2020.8.12 +2020.8.13 +2020.8.15 +2020.8.17 +2020.8.18 +2020.8.18.15.37.20 +2020.8.18.15.46.4 +2020.8.22 +2020.8.25 +2020.8.3 +2020.8.5 +2020.8.6 +2020.8.8 +2020.9 +2020.9.1 +2020.9.10.15.53.14 +2020.9.10.16.24.8 +2020.9.11 +2020.9.12 +2020.9.13 +2020.9.14 +2020.9.15 +2020.9.16 +2020.9.18 +2020.9.19 +2020.9.2 +2020.9.2.20.23.42 +2020.9.20 +2020.9.22 +2020.9.23 +2020.9.24 +2020.9.25 +2020.9.27 +2020.9.28 +2020.9.29 +2020.9.3 +2020.9.30 +2020.9.5.14.42.2 +2020.9.6 +2020.9.8 +2020.9.9 +20200110 +20200122 +20200126 +20200128 +20200205 +20200211 +20200219 +20200225.1 +20200225.2 +20200226 +20200304 +20200305 +20200317 +20200320 +20200322 +20200323.0 +20200330 +20200413.0 +20200422.0 +20200423 +20200428.10.5.5 +20200428.13.47.36 +20200505 +20200505.0 +20200511 +20200511.0 +20200514.00.49.50 +20200514.00.57.51 +20200515.13.47.58 +20200517 +20200517.03.43.56 +20200518.0 +20200520.14.5.38 +20200520.15.34.58 +20200520.16.38.30 +20200520.21.20.54 +20200520.22.03.44 +20200521.02.27.49 +20200521.17.36.00 +20200521.19.50.00 +20200521.20.03.07 +20200522 +20200522.0 +20200522.15.45.49 +20200526.00.39.06 +20200528.15.47.12 +20200529.21.11.54 +20200529.21.13.08 +20200529.21.26.13 +20200529.21.33.12 +20200529.21.36.51 +20200529.21.40.29 +20200529.21.43.14 +20200529.21.46.16 +20200529.21.51.26 +20200529.21.52.15 +20200530.10.47.29 +20200530.10.53.50 +20200530.15.54.35 +20200530.16.32.19 +20200601.18.11.21 +20200603.20.14.55 +20200603.20.19.52 +20200604.02.52.42 +20200604.04.15.03 +20200604.18.10.49 +20200605.5.19.15 +20200605.11.42.39 +20200605.20.10.54 +20200606.10.22.48 +20200606.10.33.51 +20200606.13.39.49 +20200606.14.26.47 +20200608.0 +20200608.15.03.28 +20200609.12.01.41 +20200611.16.28.35 +20200612.03.49.34 +20200612.08.38.08 +20200615.17.54.31 +20200616.11.55.25 +20200617.20.33.21 +20200618.20.52.47 +20200622.1 +20200624.12.50.58 +20200703.14.42.21 +20200703.14.49.48 +20200708.18.08.14 +20200713 +20200715.11.57.07 +20200715.18.03.44 +20200715.22.16.50 +20200716.18.57.02 +20200717.14.23.58 +20200718.19.10.00 +20200720 +20200720.16.55.17 +20200722 +20200722.11.28.50 +20200723.11.04.25 +20200724.16.21.18 +20200725.00.04.39 +20200725.13.38.53 +20200725.17.15.53 +20200725.18.02.27 +20200725.19.5.50 +20200726 +20200726.22.03.22 +20200729.12.30.33 +20200729.22.15.55 +20200801.19.08.44 +20200802.18.59.02 +20200804.0 +20200806.11.21.55 +20200806.14.03.41 +20200810.0 +20200810.17.26.18 +20200817.19.37.39 +20200818.0 +20200818.03.13.48 +20200818.18.16.02 +20200821.17.20.38 +20200821.17.35.53 +20200825.11.40.56 +20200825.11.41.46 +20200825.21.16.22 +20200827.16.16.10 +20200831.13.02.33 +20200901.11.31.23 +20200901.21.5.57 +20200907.0 +20200907.15.30.32 +20200908.19.42.17 +20200909.19.52.10 +20200909.21.18.33 +20200914.0 +20200914.15.33.56 +20200915.11.11.13 +20200921.0 +20200921.15.46.24 +20200922 +20200922.21.17.15 +20200922.21.17.37 +20200922.21.18.5 +20200923.09.23.10 +20200923.2 +20200923.3 +20200924.08.02.13 +20200928.0 +20200928.17.51.12 +20200929.15.37.45 +20201001 +20201002.15.57.39 +20201004.16.43.10 +20201005.0 +20201006.08.38.15 +20201006.16.36.59 +20201007.17.34.35 +20201007.23.53.02 +20201008.01.49.19 +20201009.5.37.22 +20201010.20.55.23 +20201011.22.11.35 +20201013.21.30.52 +20201014.00.47.07 +20201014.01.24.06 +20201015.03.07.40 +20201016.20.10.29 +20201018 +20201018.16.29.41 +20201019.0 +20201021.16.34.29 +20201028.23.01.36 +20201029.10.37.14 +20201031.14.58.41 +20201101.22.55.16 +20201102.00.37.57 +20201102.13.34.15 +20201103.16.28.34 +20201104.10.24.10 +20201104.11.08.07 +20201105.13.07.35 +20201109.14.47.49 +20201109.17.33.13 +20201111.06.55.56 +20201111.15.15.36 +20201113.12.45.19 +20201117.0 +20201118.23.15.49 +20201118.23.16.42 +20201118.23.34.02 +20201120.14.17.51 +20201120.19.54.29 +20201122 +20201122.20.48.44 +20201125.16.42.55 +20201205.00.54.19 +20201205.12.49.56 +20201205.12.49.58 +20201205.18.42.56 +20201206 +20201208.16.07.04 +20201208.20.46.21 +20201209.15.04.48 +20201213.13.38.10 +20201213.22.54.19 +20201214.13.41.24 +20201215.03.51.10 +20201215.03.51.39 +20201215.03.53.08 +20201215.03.54.30 +20201215.03.56.19 +20201215.03.59.5 +20201215.03.59.21 +20201215.04.00.31 +20201215.04.10.35 +20201215.04.10.43 +20201215.04.10.46 +20201215.04.11.04 +20201215.11.48.26 +20201215.11.49.09 +20201215.11.49.47 +20201215.11.50.54 +20201215.11.52.26 +20201215.11.54.24 +20201215.12.11.09 +20201215.12.12.19 +20201215.12.15.17 +20201216.12.00.47 +20201217.20.20.42 +20201217.22.38.00 +20201222.16.12.09 +20201223 +20201225.04.22.41 +20201230.01.24.34 +2020_04_03 +2020_1.31 +2020_2.2 +2020_2.3 +2020_3.2 +2020_4.2 +2020a +2020b +2020c +2020d +2020e +2020f +2021.0.0 +2021.0.1 +2021.0.2 +2021.0.3 +2021.0.4 +2021.0.5 +2021.0.6 +2021.0.7 +2021.01.01.06.32.46 +2021.01.01.06.39.5 +2021.01.01.16.59.39 +2021.01.02.17.39.38 +2021.01.02.20.34.06 +2021.01.02.21.38.25 +2021.01.02.21.51.16 +2021.01.02.22.15.58 +2021.01.02.23.04.21 +2021.01.03.14.20.46 +2021.01.03.16.11.28 +2021.01.04.08.19.58.619 +2021.01.04.22.18.20 +2021.01.5 +2021.01.06.5.50.08 +2021.01.06.17.18.37 +2021.01.06.22.06.17 +2021.01.06.23.46.21 +2021.01.07.14.45.49 +2021.01.08 +2021.01.08.07.53.07 +2021.01.08.13.07.06 +2021.01.08.14.47.47 +2021.01.08.15.27.57 +2021.01.08.18.10.03 +2021.01.09.06.19.14 +2021.01.09.14.56.12 +2021.01.09.15.04.21 +2021.01.09.18.21.49 +2021.01.10.01.07.36 +2021.01.10.22.36.39 +2021.01.11 +2021.01.11.07.23.24 +2021.01.11.16.32.51 +2021.01.11.16.49.01 +2021.01.11.17.02.47 +2021.01.11.19.34.08 +2021.01.12.09.41.14 +2021.01.12.14.47.32 +2021.01.12.15.04.08 +2021.01.13.00.11.42 +2021.01.13.00.12.17 +2021.01.13.00.12.29 +2021.01.13.00.12.42 +2021.01.13.00.13.23 +2021.01.13.10.53.5 +2021.01.13.11.13.22 +2021.01.13.15.26.02 +2021.01.13.21.25.48 +2021.01.13.21.45.44 +2021.01.14.02.00.22 +2021.01.14.02.00.42 +2021.01.14.09.11.00 +2021.01.14.14.58.32 +2021.01.14.19.12.27 +2021.01.14.22.52.52 +2021.01.15.03.03.28 +2021.01.15.10.51.29 +2021.01.15.13.32.18 +2021.01.15.16.49.23 +2021.01.15.17.44.36 +2021.01.15.18.48.14 +2021.01.15.19.19.06 +2021.01.15.19.38.06 +2021.01.16 +2021.01.18 +2021.01.18.08.22.28 +2021.01.18.08.28.29 +2021.01.18.09.10.39 +2021.01.18.13.32.07 +2021.01.18.20.12.31 +2021.01.19.11.36.16 +2021.01.20.10.13.49 +2021.01.20.10.14.01 +2021.01.20.10.50.33 +2021.01.20.13.06.20 +2021.01.20.14.54.11 +2021.01.20.17.18.42 +2021.01.20.17.38.08 +2021.01.21.00.27.51 +2021.01.21.19.42.28 +2021.01.21.20.00.11 +2021.01.21.20.5.24 +2021.01.21.20.37.27 +2021.01.21.20.49.50 +2021.01.21.20.50.37 +2021.01.21.20.52.15 +2021.01.21.20.54.11 +2021.01.22 +2021.01.22.00.15.48 +2021.01.22.02.33.32 +2021.01.22.08.09.04 +2021.01.22.09.07.34 +2021.01.22.10.30.34 +2021.01.22.11.31.14 +2021.01.22.15.25.06 +2021.01.22.15.29.58 +2021.01.22.18.42.29 +2021.01.22.19.19.10 +2021.01.23.08.21.35 +2021.01.23.15.45.39 +2021.01.24 +2021.01.24.19.22.01 +2021.01.25.11.09.47 +2021.01.25.14.47.27 +2021.01.26.04.10.57 +2021.01.26.08.41.30 +2021.01.26.21.55.00 +2021.01.26.22.04.53 +2021.01.27 +2021.01.27.06.58.29 +2021.01.27.08.12.57 +2021.01.27.08.19.07 +2021.01.27.12.03.38 +2021.01.27.21.31.49 +2021.01.28 +2021.01.29.20.41.28 +2021.01.30 +2021.01.31.00.18.44 +2021.02.01 +2021.02.02.13.42.52 +2021.02.02.17.45.15 +2021.02.02.22.13.44 +2021.02.03.13.27.35 +2021.02.04 +2021.02.04.12.49.47 +2021.02.04.15.44.04 +2021.02.04.16.58.43 +2021.02.5 +2021.02.5.06.14.51 +2021.02.5.12.35.12 +2021.02.5.18.39.21 +2021.02.5.19.06.00 +2021.02.5.20.43.41 +2021.02.5.22.15 +2021.02.06 +2021.02.06.20.5.27 +2021.02.07 +2021.02.07.11.21.33 +2021.02.08.14.52.5 +2021.02.08.19.19.27 +2021.02.08.20.29.31 +2021.02.09.00.37.38 +2021.02.09.12.13.43 +2021.02.09.12.24.06 +2021.02.09.18.00.00 +2021.02.09.20.54.49 +2021.02.1 +2021.02.10 +2021.02.10.00.55.52 +2021.02.10.11.36.34 +2021.02.10.13.11.27 +2021.02.10.13.52.40 +2021.02.11.03.11.06 +2021.02.11.17.33.54 +2021.02.11.18.30.5 +2021.02.11.19.41.33 +2021.02.11.20.02.02 +2021.02.12 +2021.02.12.11.45.20 +2021.02.12.15.59.38 +2021.02.12.17.51.53 +2021.02.13 +2021.02.13.00.11.08 +2021.02.13.5.44.39 +2021.02.13.12.56.44 +2021.02.13.16.08.32 +2021.02.14.11.06.31 +2021.02.15.18.17.52 +2021.02.16.12.53.49 +2021.02.16.14.13.27 +2021.02.16.17.23.45 +2021.02.16.21.37.58 +2021.02.16.22.51.53 +2021.02.17.06.54.06 +2021.02.17.21.17.16 +2021.02.18 +2021.02.18.01.26.24 +2021.02.19 +2021.02.19.04.55.39 +2021.02.19.14.14.29 +2021.02.19.15.24.04 +2021.02.20.20.42.23 +2021.02.21 +2021.02.21.18.29.10 +2021.02.22.13.58.30 +2021.02.22.16.11.12 +2021.02.22.18.58.55 +2021.02.22.20.37.29 +2021.02.23 +2021.02.23.06.49.59 +2021.02.24 +2021.02.24.15.35.41 +2021.02.25.09.52.02 +2021.02.25.19.12.52 +2021.02.25.19.26.45 +2021.02.25.19.30.33 +2021.02.25.20.42.52 +2021.02.25.21.00.20 +2021.02.25.21.45.38 +2021.02.25.22.01.04 +2021.02.26.07.54.25 +2021.02.26.08.43.38 +2021.02.26.08.44.51 +2021.02.26.08.45.5 +2021.02.26.09.26.57 +2021.02.26.09.28.45 +2021.02.26.11.24.58 +2021.02.26.15.36.03 +2021.03.0 +2021.03.01 +2021.03.01.11.14.33 +2021.03.01.11.30.41 +2021.03.01.12.29.12 +2021.03.01.13.11.42 +2021.03.01.17.49.23 +2021.03.01.19.40.18 +2021.03.02.09.48.16 +2021.03.02.09.49.23 +2021.03.02.11.40.47 +2021.03.02.12.06.47 +2021.03.02.16.00.15 +2021.03.02.16.48.17 +2021.03.02.20.03.28 +2021.03.03 +2021.03.03.07.46.54 +2021.03.03.09.54.37 +2021.03.03.10.54.47 +2021.03.03.14.17.27 +2021.03.03.14.34.46 +2021.03.03.14.53.22 +2021.03.03.20.57.29 +2021.03.04 +2021.03.04.15.24.59 +2021.03.5.02.43.08 +2021.03.5.06.59.08 +2021.03.5.10.46.00 +2021.03.5.10.51.56 +2021.03.5.11.08.04 +2021.03.5.13.29.10 +2021.03.5.14.23.58 +2021.03.5.15.23.24 +2021.03.06 +2021.03.06.03.53.09 +2021.03.06.20.50.02 +2021.03.07.11.50.11 +2021.03.07.13.04.03 +2021.03.07.18.51.23 +2021.03.08.16.14.30 +2021.03.08.18.23.20 +2021.03.09.5.56.03 +2021.03.09.08.18.28 +2021.03.09.08.31.26 +2021.03.09.08.59.33 +2021.03.09.10.29.40 +2021.03.09.13.26.23 +2021.03.09.14.14.27 +2021.03.09.14.43.50 +2021.03.09.15.32.03 +2021.03.09.16.03.5 +2021.03.09.16.03.58 +2021.03.09.16.13.06 +2021.03.09.16.18.34 +2021.03.09.16.23.02 +2021.03.09.16.23.08 +2021.03.09.16.31.55 +2021.03.09.17.11.18 +2021.03.09.17.52.47 +2021.03.09.17.59.11 +2021.03.09.22.39.45 +2021.03.1 +2021.03.10.08.11.17 +2021.03.10.20.27.19 +2021.03.11.06.59.32 +2021.03.11.09.06.20 +2021.03.11.09.17.26 +2021.03.11.10.47.45 +2021.03.11.12.19.54 +2021.03.11.16.06.04 +2021.03.11.17.08.57 +2021.03.11.17.43.23 +2021.03.12.08.20.07 +2021.03.12.09.11.36 +2021.03.12.19.24.49 +2021.03.13.12.09.21 +2021.03.13.19.06.41 +2021.03.13.19.08.27 +2021.03.14 +2021.03.15.03.57.07 +2021.03.15.12.27.52 +2021.03.15.13.17.50 +2021.03.16 +2021.03.17.11.02.03 +2021.03.17.15.5.46 +2021.03.17.22.18.58 +2021.03.18.08.08.13 +2021.03.18.19.24.21 +2021.03.19.06.10.36 +2021.03.19.08.01.08 +2021.03.2 +2021.03.20.03.34.19 +2021.03.20.13.12.43 +2021.03.20.17.14.24 +2021.03.20.22.01.54 +2021.03.21.09.23.20 +2021.03.21.19.58.38 +2021.03.21.21.30.33 +2021.03.22 +2021.03.22.07.37.28 +2021.03.22.11.12.50 +2021.03.23.5.40.02 +2021.03.23.08.35.57 +2021.03.23.12.40.48 +2021.03.23.17.55.38 +2021.03.24.14.49.49 +2021.03.25.11.29.14 +2021.03.25.14.57.03 +2021.03.26.09.02.42 +2021.03.26.11.37.5 +2021.03.26.13.02.38 +2021.03.26.15.18.50 +2021.03.26.18.53.25 +2021.03.26.22.47.29 +2021.03.27 +2021.03.27.06.50.49 +2021.03.28.06.26.20 +2021.03.28.06.26.21 +2021.03.28.13.37.18 +2021.03.28.21.25.09 +2021.03.29 +2021.03.29.11.20.03 +2021.03.29.13.15.38 +2021.03.29.15.45.30 +2021.03.3 +2021.03.31.16.02.06 +2021.03.4 +2021.03.5 +2021.04.0 +2021.04.00 +2021.04.01 +2021.04.01.09.17.11 +2021.04.01.12.40.32 +2021.04.01.12.45.45 +2021.04.02.09.35.22 +2021.04.02.15.43.00 +2021.04.03.5.20.29 +2021.04.04 +2021.04.04.5.03.22 +2021.04.04.06.28.42 +2021.04.04.13.46.57 +2021.04.5 +2021.04.5.09.52.31 +2021.04.5.17.37.43 +2021.04.06.12.55.50 +2021.04.06.13.31.20 +2021.04.06.18.42.56 +2021.04.06.19.11.00 +2021.04.07.18.46.00 +2021.04.08.08.06.32 +2021.04.08.08.07.10 +2021.04.08.09.49.10 +2021.04.08.13.14.59 +2021.04.09.00.48.02 +2021.04.09.07.49.51 +2021.04.09.16.03.53 +2021.04.09.17.43.25 +2021.04.1 +2021.04.10.19.49.31 +2021.04.12.07.49.20 +2021.04.12.12.10.31 +2021.04.12.12.11.21 +2021.04.12.21.54.14 +2021.04.13.13.25.55 +2021.04.13.13.54.57 +2021.04.14 +2021.04.14.08.37.12 +2021.04.15.09.30.17 +2021.04.16 +2021.04.17.14.54.41 +2021.04.19.16.42.48 +2021.04.2 +2021.04.20.06.10.28 +2021.04.20.18.36.07 +2021.04.21 +2021.04.21.17.39.23 +2021.04.22.19.34.35 +2021.04.23 +2021.04.23.13.32.29 +2021.04.24.06.28.24 +2021.04.26 +2021.04.27.07.37.24 +2021.04.28 +2021.04.28.10.30.51 +2021.04.28.12.37.37 +2021.04.29 +2021.04.29.06.02.52 +2021.04.29.07.21.23 +2021.04.29.11.43.28 +2021.04.29.13.58.20 +2021.04.3 +2021.04.30.5.29.14 +2021.04.30.07.03.20 +2021.04.30.14.06.07 +2021.04.30.20.46.56 +2021.04.30.23.32.31 +2021.04.4 +2021.5.0 +2021.5.002 +2021.5.01.04.49.48 +2021.5.01.06.26.24 +2021.5.03.17.22.16 +2021.5.03.19.31.03 +2021.5.04.03.13.01 +2021.5.04.03.28.08 +2021.5.04.04.37.02 +2021.5.04.09.34.47 +2021.5.04.11.10.16 +2021.5.04.12.13.46 +2021.5.04.13.59.10 +2021.5.5.5.27.00 +2021.5.5.08.35.31 +2021.5.5.20.37.49 +2021.5.06.04.07.30 +2021.5.06.04.07.38 +2021.5.06.10.47.03 +2021.5.07.07.45.40 +2021.5.07.07.46.32 +2021.5.07.14.11.28 +2021.5.07.14.12.29 +2021.5.07.21.50.21 +2021.5.07.21.54.12 +2021.5.09.02.32.46 +2021.5.09.5.19.45 +2021.5.10 +2021.5.10.08.45.30 +2021.5.10.08.45.52 +2021.5.10.08.50.57 +2021.5.10.13.04.18 +2021.5.10.13.35.14 +2021.5.10.18.04.02 +2021.5.11.17.38.26 +2021.5.11.20.13.5 +2021.5.12 +2021.5.12.07.26.21 +2021.5.12.13.31.46 +2021.5.12.18.50.42 +2021.5.13.5.52.52 +2021.5.13.06.27.30 +2021.5.13.06.28.40 +2021.5.13.11.03.51 +2021.5.13.19.15.21 +2021.5.14.09.10.29 +2021.5.14.18.59.58 +2021.5.15 +2021.5.15.09.25.10 +2021.5.16.17.33.49 +2021.5.17.04.31.24 +2021.5.17.11.22.30 +2021.5.18.06.34.34 +2021.5.19 +2021.5.19.17.00.25 +2021.5.19.20.23.18 +2021.5.20 +2021.5.20.03.08.44 +2021.5.20.12.45.47 +2021.5.20.13.08.59 +2021.5.21.04.32.12 +2021.5.21.10.03.19 +2021.5.21.11.17.06 +2021.5.21.11.35.00 +2021.5.21.12.25.49 +2021.5.21.13.51.08 +2021.5.23.06.20.32 +2021.5.23.19.32.25 +2021.5.24.03.00.35 +2021.5.24.19.39.56 +2021.5.25.06.47.12 +2021.5.27 +2021.5.27.11.25.44 +2021.5.27.12.00.13 +2021.5.27.16.10.46 +2021.5.27.19.14.28 +2021.5.28.18.39.39 +2021.5.29.5.52.27 +2021.5.29.5.58.58 +2021.5.29.17.33.56 +2021.5.29.17.55.47 +2021.5.29.19.25.09 +2021.5.30 +2021.5.30.06.37.44 +2021.5.30.13.57.26 +2021.5.30.21.14.06 +2021.5.31.13.35.15 +2021.5.31.15.51.19 +2021.5.31.18.53.41 +2021.5.31.19.54.34 +2021.5.31.20.14.01 +2021.06.01 +2021.06.01.04.20.09 +2021.06.01.04.22.10 +2021.06.01.5.21.06 +2021.06.02.12.58.30 +2021.06.02.13.20.38 +2021.06.03 +2021.06.03.08.31.37 +2021.06.03.12.21.11 +2021.06.03.19.15.36 +2021.06.03.19.30.35 +2021.06.04 +2021.06.04.18.58.43 +2021.06.5 +2021.06.06.11.32.14 +2021.06.06.13.20.5 +2021.06.06.13.38.51 +2021.06.06.14.23.31 +2021.06.06.15.51.47 +2021.06.06.17.59.58 +2021.06.06.18.58.44 +2021.06.07.5.50.19 +2021.06.07.06.03.15 +2021.06.07.06.04.09 +2021.06.07.07.55.19 +2021.06.08.18.19.07 +2021.06.08.19.16.20 +2021.06.09.12.45.55 +2021.06.09.12.46.12 +2021.06.09.12.51.26 +2021.06.10.06.09.54 +2021.06.10.08.18.57 +2021.06.10.12.00.57 +2021.06.10.12.30.48 +2021.06.10.14.08.07 +2021.06.11.09.24.58 +2021.06.11.11.13.28 +2021.06.11.18.04.32 +2021.06.11.18.15.44 +2021.06.12.18.00.56 +2021.06.13.16.56.48 +2021.06.14.12.21.47 +2021.06.15 +2021.06.15.19.40.12 +2021.06.15.19.42.39 +2021.06.16.07.35.33 +2021.06.16.10.14.32 +2021.06.16.16.53.58 +2021.06.16.19.20.17 +2021.06.18.08.15.43 +2021.06.18.08.15.47 +2021.06.20.18.38.41 +2021.06.21.02.43.59 +2021.06.21.08.16.27 +2021.06.21.13.13.35 +2021.06.21.13.14.31 +2021.06.21.19.40.11 +2021.06.21.19.41.29 +2021.06.21.19.44.12 +2021.06.22.04.56.18 +2021.06.23.07.26.43 +2021.06.23.10.03.36 +2021.06.23.12.50.49 +2021.06.23.14.21.23 +2021.06.23.14.38.15 +2021.06.23.19.14.55 +2021.06.23.19.15.25 +2021.06.23.19.21.14 +2021.06.24.04.54.45 +2021.06.24.04.58.53 +2021.06.24.04.59.31 +2021.06.24.07.00.52 +2021.06.24.07.39.41 +2021.06.24.13.08.40 +2021.06.24.19.19.34 +2021.06.25.19.28.53 +2021.06.26.09.41.00 +2021.06.26.09.45.00 +2021.06.26.09.48.18 +2021.06.26.09.51.46 +2021.06.26.14.08.36 +2021.06.26.17.17.42 +2021.06.27.07.32.44 +2021.06.27.12.20.13 +2021.06.27.12.20.29 +2021.06.29 +2021.06.29.02.04.54 +2021.06.29.5.53.46 +2021.06.29.15.41.36 +2021.06.30 +2021.06.30.5.51.30 +2021.06.30.5.52.22 +2021.06.30.16.50.29 +2021.06.30.16.50.47 +2021.07.0 +2021.07.01.17.09.14 +2021.07.02.12.06.00 +2021.07.02.13.35.43 +2021.07.02.15.37.15 +2021.07.03.13.42.34 +2021.07.03.17.26.03 +2021.07.04.06.12.14 +2021.07.04.16.58.42 +2021.07.5.14.37.02 +2021.07.5.18.29.06 +2021.07.5.18.48.25 +2021.07.5.18.49.25 +2021.07.5.18.53.45 +2021.07.5.19.11.37 +2021.07.5.21.22.36 +2021.07.06.09.30.02 +2021.07.06.17.46.33 +2021.07.06.19.03.5 +2021.07.06.20.59.07 +2021.07.06.21.30.14 +2021.07.06.21.55.47 +2021.07.06.22.44.26 +2021.07.07.07.21.45 +2021.07.07.07.29.11 +2021.07.07.10.15.37 +2021.07.07.12.50.48 +2021.07.07.15.42.36 +2021.07.08.5.52.37 +2021.07.08.5.53.35 +2021.07.08.5.56.39 +2021.07.09 +2021.07.09.5.57.39 +2021.07.09.06.16.01 +2021.07.09.06.19.08 +2021.07.09.13.37.12 +2021.07.1 +2021.07.10.5.17.21 +2021.07.11.12.10.29 +2021.07.13 +2021.07.14.07.32.57 +2021.07.14.14.38.04 +2021.07.15.07.57.26 +2021.07.16 +2021.07.16.5.11.27 +2021.07.17 +2021.07.18.01.27.32 +2021.07.18.01.27.37 +2021.07.18.06.20.38 +2021.07.18.08.46.59 +2021.07.19.17.59.15 +2021.07.21.07.43.34 +2021.07.21.11.32.06 +2021.07.21.16.24.32 +2021.07.21.20.39.59 +2021.07.21.22.24.14 +2021.07.22.07.49.14 +2021.07.22.10.53.36 +2021.07.23.09.5.31 +2021.07.23.11.50.59 +2021.07.23.11.55.58 +2021.07.24 +2021.07.25.07.58.12 +2021.07.25.10.25.07 +2021.07.25.11.01.12 +2021.07.26 +2021.07.26.07.32.18 +2021.07.26.10.51.38 +2021.07.26.14.39.31 +2021.07.27.13.04.27 +2021.07.27.19.47.02 +2021.07.28 +2021.07.28.08.03.56 +2021.07.29 +2021.07.29.07.25.26 +2021.07.29.19.16.08 +2021.07.29.23.13.45 +2021.07.30 +2021.07.30.06.17.46 +2021.07.30.07.43.16 +2021.07.30.08.02.55 +2021.07.30.08.11.18 +2021.07.30.11.17.02 +2021.08.0 +2021.08.01 +2021.08.02 +2021.08.02.00 +2021.08.02.07.59.16 +2021.08.02.10.03.47 +2021.08.02.12.49.19 +2021.08.02.13.50.20 +2021.08.02.18.50.19 +2021.08.03.07.36.34 +2021.08.03.08.19.27 +2021.08.03.12.17.29 +2021.08.03.20.37.26 +2021.08.04 +2021.08.04.12.02.02 +2021.08.04.16.13.53 +2021.08.04.19.20.59 +2021.08.5.06.02.11 +2021.08.5.18.49.22 +2021.08.5.18.49.42 +2021.08.06 +2021.08.06.19.41.12 +2021.08.07.07.31.39 +2021.08.07.13.25.53 +2021.08.07.13.26.34 +2021.08.08.03.57.11 +2021.08.09 +2021.08.11 +2021.08.11.08.27.19 +2021.08.11.13.14.20 +2021.08.11.13.25.00 +2021.08.11.13.32.18 +2021.08.11.15.51.53 +2021.08.11.16.56.58 +2021.08.11.20.24.59 +2021.08.12 +2021.08.12.5.10.51 +2021.08.14.10.07.17 +2021.08.14.10.30.44 +2021.08.15 +2021.08.16 +2021.08.17 +2021.08.17.12.40.09 +2021.08.18.12.46.46 +2021.08.19.19.17.07 +2021.08.20.14.07.28 +2021.08.20.17.24.12 +2021.08.20.21.03.08 +2021.08.21 +2021.08.22.14.13.28 +2021.08.22.15.08.21 +2021.08.23 +2021.08.23.00 +2021.08.24 +2021.08.24.08.46.15 +2021.08.24.09.50.37 +2021.08.24.19.08.13 +2021.08.24.20.53.37 +2021.08.25.17.17.57 +2021.08.25.20.48.50 +2021.08.26 +2021.08.26.08.06.04 +2021.08.26.14.38.21 +2021.08.27.15.13.14 +2021.08.27.17.30.23 +2021.08.28.07.07.17 +2021.08.28.13.14.36 +2021.08.30.12.31.33 +2021.08.31 +2021.08.31.06.27.03 +2021.08.31.12.12.37 +2021.08.31.17.13.10 +2021.0814 +2021.09.01 +2021.09.01.13.23.17 +2021.09.01.13.24.03 +2021.09.01.15.16.23 +2021.09.01.19.36.24 +2021.09.01.19.59.10 +2021.09.02.07.24.59 +2021.09.02.12.47.16 +2021.09.03.10.00.36 +2021.09.04.06.26.55 +2021.09.04.06.27.17 +2021.09.5.11.13.08 +2021.09.06 +2021.09.06.00 +2021.09.06.17.49.39 +2021.09.06.19.10.42 +2021.09.07.19.41.11 +2021.09.08 +2021.09.08.04.27.50 +2021.09.08.17.55.54 +2021.09.08.19.33.08 +2021.09.08.19.36.45 +2021.09.08.19.37.20 +2021.09.08.19.38.37 +2021.09.09.09.53.54 +2021.09.09.18.37.58 +2021.09.1 +2021.09.10.04.35.28 +2021.09.10.08.20.24 +2021.09.10.12.5.17 +2021.09.11 +2021.09.11.5.26.33 +2021.09.11.17.45.07 +2021.09.12.15.00.37 +2021.09.12.20.29.51 +2021.09.13.00 +2021.09.13.07.45.03 +2021.09.13.17.04.56 +2021.09.13.18.02.33 +2021.09.14.01.25.07 +2021.09.14.5.32.42 +2021.09.14.14.16.49 +2021.09.14.16.50.33 +2021.09.14.23.42.52 +2021.09.15.06.06.59 +2021.09.15.18.54.07 +2021.09.16.16.29.28 +2021.09.16.16.55.48 +2021.09.16.19.31.02 +2021.09.16.19.31.43 +2021.09.16.19.33.28 +2021.09.16.19.34.16 +2021.09.16.19.35.38 +2021.09.17 +2021.09.17.5.51.46 +2021.09.18.06.25.36 +2021.09.18.11.30.50 +2021.09.18.12.11.20 +2021.09.19.5.45.53 +2021.09.19.06.12.32 +2021.09.19.18.58.33 +2021.09.2 +2021.09.20.00 +2021.09.20.09.23.12 +2021.09.20.16.37.35 +2021.09.20.19.07.36 +2021.09.20.19.58.40 +2021.09.21.5.16.19 +2021.09.21.16.23.56 +2021.09.22.12.25.12 +2021.09.22.17.56.27 +2021.09.23.07.33.37 +2021.09.23.16.54.17 +2021.09.24.10.19.42 +2021.09.25.11.37.45 +2021.09.25.11.41.17 +2021.09.25.11.41.51 +2021.09.25.11.56.47 +2021.09.26.06.24.32 +2021.09.26.18.14.07 +2021.09.26.18.14.27 +2021.09.26.18.22.49 +2021.09.26.gr3.8 +2021.09.26.gr3.9 +2021.09.27.00 +2021.09.27.04.23.34 +2021.09.27.04.24.06 +2021.09.27.04.24.34 +2021.09.27.04.24.35 +2021.09.27.11.28.37 +2021.09.27.18.34.32 +2021.09.28 +2021.09.28.08.30.34 +2021.09.28.08.56.09 +2021.09.28.12.10.28 +2021.09.28.15.07.49 +2021.09.28.17.32.49 +2021.09.28.18.18.24 +2021.09.28.19.51.35 +2021.09.29 +2021.09.29.19.08.16 +2021.09.29.19.57.52 +2021.09.3 +2021.09.30 +2021.09.30.13.35.17 +2021.09.30.18.20.56 +2021.09.30.18.26.11 +2021.09.30.20.35.40 +2021.09.4 +2021.09.5 +2021.1 +2021.1.0 +2021.1.1 +2021.1.11 +2021.1.13 +2021.1.14 +2021.1.15 +2021.1.16 +2021.1.2 +2021.1.20 +2021.1.21 +2021.1.24.1 +2021.1.25 +2021.1.28 +2021.1.3 +2021.1.4 +2021.1.5 +2021.1.6 +2021.1.7 +2021.1.8 +2021.10 +2021.10.0 +2021.10.01.10.31.28 +2021.10.02.18.18.33 +2021.10.02.19.18.39 +2021.10.02.19.19.46 +2021.10.02.19.22.52 +2021.10.02.19.28.15 +2021.10.02.19.29.40 +2021.10.02.19.31.29 +2021.10.02.19.35.26 +2021.10.02.19.43.30 +2021.10.02.20.04.23 +2021.10.03.04.50.14 +2021.10.03.04.50.38 +2021.10.03.04.50.56 +2021.10.03.14.57.11 +2021.10.04.00 +2021.10.04.01.54.40 +2021.10.04.18.35.53 +2021.10.04.19.42.48 +2021.10.04.21.09.37 +2021.10.04.21.54.16 +2021.10.04.21.54.47 +2021.10.5.12.13.40 +2021.10.5.13.41.55 +2021.10.5.15.34.59 +2021.10.5.23.24.58 +2021.10.06 +2021.10.06.07.16.42 +2021.10.06.07.17.19 +2021.10.06.07.17.27 +2021.10.06.08.16.35 +2021.10.06.22.07.41 +2021.10.07.13.33.31 +2021.10.07.13.38.58 +2021.10.08.08.39.03 +2021.10.08.16.45.02 +2021.10.09 +2021.10.1 +2021.10.10 +2021.10.10.22.03.30 +2021.10.11 +2021.10.12 +2021.10.12.12.38.27 +2021.10.12.19.5.13 +2021.10.13 +2021.10.13.14.39.09 +2021.10.13.14.39.56 +2021.10.13.14.41.18 +2021.10.13.18.53.40 +2021.10.13.18.54.36 +2021.10.13.20.25.29 +2021.10.13.20.25.34 +2021.10.13.20.28.53 +2021.10.14 +2021.10.15 +2021.10.16.13.24.41 +2021.10.16.13.25.24 +2021.10.16.20.31.55 +2021.10.17 +2021.10.17.5.19.28 +2021.10.17.5.19.58 +2021.10.17.5.23.58 +2021.10.17.5.24.25 +2021.10.18 +2021.10.18.00 +2021.10.18.5.45.34 +2021.10.18.15.47.12 +2021.10.19.00.27.40 +2021.10.19.12.53.40 +2021.10.19.14.43.13 +2021.10.19.19.34.43 +2021.10.19.19.50.47 +2021.10.2 +2021.10.20.09.54.11 +2021.10.20.09.55.13 +2021.10.20.09.58.59 +2021.10.20.10.45.40 +2021.10.20.11.00.47 +2021.10.20.15.45.32 +2021.10.20.17.23.01 +2021.10.20.19.04.24 +2021.10.20.19.04.40 +2021.10.20.19.04.48 +2021.10.20.19.08.40 +2021.10.20.19.09.48 +2021.10.20.19.16.36 +2021.10.20.22.24.36 +2021.10.21 +2021.10.21.11.39.39 +2021.10.22 +2021.10.22.07.28.38 +2021.10.22.07.31.20 +2021.10.22.11.06.24 +2021.10.22.17.22.02 +2021.10.22.20.56.07 +2021.10.23 +2021.10.24 +2021.10.25 +2021.10.25.00 +2021.10.25.16.23.24 +2021.10.25.16.37.45 +2021.10.25.23.28.29 +2021.10.26 +2021.10.27 +2021.10.27.16.34.33 +2021.10.27.19.55.21 +2021.10.28.00.11.12 +2021.10.28.10.17.27 +2021.10.28.11.11.18 +2021.10.28.15.03.29 +2021.10.29 +2021.10.29.07.22.09 +2021.10.29.07.34.22 +2021.10.3 +2021.10.30.01.57.10 +2021.10.30.10.37.17 +2021.10.30.13.29.36 +2021.10.30.13.31.5 +2021.10.30.17.45.23 +2021.10.31 +2021.10.31.18.51.35 +2021.10.4 +2021.10.5 +2021.10.5.0 +2021.10.6 +2021.10.7 +2021.10.7.1 +2021.10.7.23.40.37 +2021.10.8 +2021.10.8.0 +2021.10.8.1 +2021.10.8.2 +2021.10.8.3 +2021.10.9 +2021.1006 +2021.11 +2021.11.0 +2021.11.001 +2021.11.01 +2021.11.01.00 +2021.11.01.03.37.22 +2021.11.01.14.38.46 +2021.11.01.14.43.27 +2021.11.01.16.15.27 +2021.11.01.20.14.43 +2021.11.01.21.58.36 +2021.11.02 +2021.11.02.10.51.41 +2021.11.02.13.16.49 +2021.11.02.13.43.59 +2021.11.02.13.44.19 +2021.11.02.13.47.38 +2021.11.02.14.58.36 +2021.11.02.15.31.35 +2021.11.02.15.38.33 +2021.11.02.19.51.37 +2021.11.02.20.02.01 +2021.11.02.20.53.42 +2021.11.03.14.42.24 +2021.11.03.23.52.26 +2021.11.04 +2021.11.04.13.17.13 +2021.11.04.14.02.03 +2021.11.04.14.33.12 +2021.11.04.20.47.06 +2021.11.5.06.04.56 +2021.11.5.06.07.08 +2021.11.5.13.08.42 +2021.11.5.13.41.56 +2021.11.5.13.42.27 +2021.11.5.14.12.54 +2021.11.5.16.04.24 +2021.11.5.19.42.11 +2021.11.5.20.51.02 +2021.11.06 +2021.11.07 +2021.11.07.11.04.46 +2021.11.07.12.06.04 +2021.11.08.00 +2021.11.08.01.51.47 +2021.11.08.12.30.35 +2021.11.08.12.30.51 +2021.11.08.12.31.14 +2021.11.08.14.56.40 +2021.11.08.16.07.04 +2021.11.08.17.18.53 +2021.11.08.17.22.51 +2021.11.09 +2021.11.09.00.35.45 +2021.11.09.08.32.45 +2021.11.09.11.27.09 +2021.11.09.12.53.33 +2021.11.09.13.41.48 +2021.11.09.16.16.13 +2021.11.09.16.18.45 +2021.11.09.18.53.34 +2021.11.1 +2021.11.10 +2021.11.10.00.44.44 +2021.11.10.11.11.54 +2021.11.10.13.02.31 +2021.11.10.17.41.07 +2021.11.10.20.30.57 +2021.11.10.20.45.22 +2021.11.10.21.33.30 +2021.11.11 +2021.11.11.00.26.27 +2021.11.11.06.30.39 +2021.11.11.06.31.57 +2021.11.11.10.04.21 +2021.11.11.14.27.22 +2021.11.11.16.10.5 +2021.11.11.16.34.59 +2021.11.11.20.25.44 +2021.11.12 +2021.11.12.06.15.55 +2021.11.12.13.49.06 +2021.11.12.14.40.22 +2021.11.12.17.5.18 +2021.11.13.09.50.22 +2021.11.13.15.55.10 +2021.11.14 +2021.11.14.11.55.25 +2021.11.14.20.28.34 +2021.11.15 +2021.11.15.00 +2021.11.15.20.12.07 +2021.11.16 +2021.11.16.02.03.58 +2021.11.16.06.49.33 +2021.11.16.06.49.48 +2021.11.16.06.49.57 +2021.11.16.06.51.28 +2021.11.16.16.42.08 +2021.11.16.18.04.56 +2021.11.16.19.19.07 +2021.11.16.23.41.17 +2021.11.17 +2021.11.17.5.54.26 +2021.11.17.5.55.09 +2021.11.17.08.26.55 +2021.11.17.08.30.27 +2021.11.17.12.43.31 +2021.11.17.14.11.48 +2021.11.17.14.13.46 +2021.11.17.14.15.31 +2021.11.17.14.18.28 +2021.11.17.15.51.01 +2021.11.18 +2021.11.18.06.33.30 +2021.11.18.06.44.41 +2021.11.18.06.46.36 +2021.11.18.08.49.12 +2021.11.18.13.47.51 +2021.11.18.13.48.29 +2021.11.18.16.03.5 +2021.11.18.16.03.34 +2021.11.18.16.04.16 +2021.11.18.16.04.58 +2021.11.18.16.06.03 +2021.11.18.16.07.31 +2021.11.18.16.59.41 +2021.11.19.08.07.16 +2021.11.19.08.14.35 +2021.11.19.08.29.02 +2021.11.19.08.29.04 +2021.11.19.19.43.21 +2021.11.19.19.47.13 +2021.11.2 +2021.11.20 +2021.11.20.13.24.25 +2021.11.20.16.12.52 +2021.11.20.19.20.32 +2021.11.21 +2021.11.22 +2021.11.22.14.12.01 +2021.11.22.15.24.15 +2021.11.23 +2021.11.23.03.23.53 +2021.11.23.03.24.17 +2021.11.23.1 +2021.11.23.17.03.49 +2021.11.23.19.18.04 +2021.11.23.20.00.06 +2021.11.23.20.00.37 +2021.11.25 +2021.11.25.19.10.54 +2021.11.25.20.09.27 +2021.11.26 +2021.11.26.06.16.55 +2021.11.26.23.11.41 +2021.11.27 +2021.11.27.20.04.21 +2021.11.28 +2021.11.28.13.12.27 +2021.11.28.20.57.40 +2021.11.28.21.09.04 +2021.11.29 +2021.11.29.00 +2021.11.29.12.56.12 +2021.11.29.15.18.09 +2021.11.29.20.15.42 +2021.11.29.20.33.06 +2021.11.29.22.5.59 +2021.11.29.22.17.03 +2021.11.3 +2021.11.30 +2021.11.30.01.02.30 +2021.11.30.01.13.34 +2021.11.30.01.13.56 +2021.11.30.01.14.29 +2021.11.30.01.14.50 +2021.11.30.01.15.24 +2021.11.30.01.21.31 +2021.11.30.02.56.36 +2021.11.30.08.47.36 +2021.11.4 +2021.11.4.0 +2021.11.4.15.26.3 +2021.11.5 +2021.11.5.post0 +2021.11.7 +2021.11.9 +2021.1112 +2021.1113 +2021.1114 +2021.12 +2021.12.0 +2021.12.01.07.22.59 +2021.12.01.12.44.56 +2021.12.01.14.55.33 +2021.12.01.14.57.30 +2021.12.01.20.09.37 +2021.12.01.21.50.36 +2021.12.01.23.47.03 +2021.12.01.23.52.30 +2021.12.02.07.24.04 +2021.12.02.07.24.50 +2021.12.02.07.27.15 +2021.12.02.13.07.22 +2021.12.02.17.12.32 +2021.12.03.06.35.07 +2021.12.03.06.35.54 +2021.12.03.06.37.06 +2021.12.03.08.21.30 +2021.12.5.10.31.58 +2021.12.5.20.29.01 +2021.12.5.20.40.01 +2021.12.06 +2021.12.07.5.32.24 +2021.12.07.08.5.09 +2021.12.07.13.39.21 +2021.12.08.5.46.13 +2021.12.08.5.59.51 +2021.12.08.09.24.44 +2021.12.08.18.31.22 +2021.12.09.08.18.11 +2021.12.09.09.29.57 +2021.12.09.09.29.59 +2021.12.09.09.30.27 +2021.12.09.09.30.48 +2021.12.09.09.36.11 +2021.12.09.14.59.11 +2021.12.1 +2021.12.10 +2021.12.10.07.17.27 +2021.12.10.14.02.49 +2021.12.10.18.18.24 +2021.12.11.13.00.52 +2021.12.11.13.03.49 +2021.12.11.13.14.30 +2021.12.11.19.41.15 +2021.12.11.19.51.40 +2021.12.11.20.48.53 +2021.12.12 +2021.12.13.11.03.33 +2021.12.14 +2021.12.14.06.33.15 +2021.12.14.07.11.41 +2021.12.14.08.51.52 +2021.12.14.17.54.38 +2021.12.14.22.09.21 +2021.12.14.23.47.20 +2021.12.15.01.15.50 +2021.12.15.01.15.53 +2021.12.15.02.16.59 +2021.12.15.02.32.19 +2021.12.15.03.46.39 +2021.12.15.14.57.56 +2021.12.15.23.54.31 +2021.12.16 +2021.12.16.23.38.36 +2021.12.17 +2021.12.17.10.55.22 +2021.12.17.16.44.26 +2021.12.18.06.45.12 +2021.12.19 +2021.12.2 +2021.12.20.00 +2021.12.20.19.09.43 +2021.12.21 +2021.12.21.12.48.53 +2021.12.21.14.59.39 +2021.12.22.16.51.01 +2021.12.22.18.14.36 +2021.12.23 +2021.12.23.19.21.51 +2021.12.24 +2021.12.24.10.42.15 +2021.12.24.10.42.22 +2021.12.25.08.18.31 +2021.12.25.08.18.48 +2021.12.27 +2021.12.27.00 +2021.12.28 +2021.12.28.08.47.33 +2021.12.29 +2021.12.29.09.38.02 +2021.12.29.20.24.27 +2021.12.29.20.25.32 +2021.12.3 +2021.12.30.03.08.12 +2021.12.30.12.59.11 +2021.12.30.13.02.53 +2021.12.30.13.14.56 +2021.12.31.07.26.12 +2021.12.31.11.59.58 +2021.12.4 +2021.12.5 +2021.12.6 +2021.12.7 +2021.12.8 +2021.12.9 +2021.2 +2021.2.0 +2021.2.0rc2 +2021.2.1 +2021.2.10 +2021.2.11 +2021.2.12 +2021.2.13 +2021.2.14 +2021.2.16 +2021.2.17 +2021.2.1rc1 +2021.2.2 +2021.2.21 +2021.2.21b25 +2021.2.22 +2021.2.23 +2021.2.26 +2021.2.2rc1 +2021.2.3 +2021.2.4 +2021.2.4.1 +2021.2.4rc1 +2021.2.5 +2021.2.582707922 +2021.2.6 +2021.2.7 +2021.2.8 +2021.2.8.1 +2021.2.9 +2021.2.post0 +2021.3 +2021.3.0 +2021.3.1 +2021.3.11 +2021.3.11.10.32.22 +2021.3.13 +2021.3.14 +2021.3.16 +2021.3.17 +2021.3.17.16.51.43 +2021.3.2 +2021.3.21 +2021.3.22 +2021.3.24 +2021.3.25 +2021.3.3 +2021.3.31 +2021.3.4 +2021.3.5 +2021.3.6 +2021.3.6.15.24.2 +2021.3.680753044 +2021.3.7 +2021.3.8 +2021.4 +2021.4.0 +2021.4.1 +2021.4.10 +2021.4.11b34 +2021.4.11b9 +2021.4.13 +2021.4.14 +2021.4.17 +2021.4.18 +2021.4.24 +2021.4.26 +2021.4.28 +2021.4.29 +2021.4.4 +2021.4.4.21.44.8 +2021.4.5.14.42.35 +2021.4.7 +2021.4.765268190 +2021.4.8 +2021.5 +2021.5.0 +2021.5.1 +2021.5.10 +2021.5.11 +2021.5.12 +2021.5.13 +2021.5.16 +2021.5.17 +2021.5.19 +2021.5.2 +2021.5.24 +2021.5.25 +2021.5.26 +2021.5.27.641 +2021.5.28 +2021.5.29 +2021.5.3 +2021.5.30 +2021.5.31 +2021.5.5 +2021.5.6 +2021.5.9 +2021.6 +2021.6.0 +2021.6.0a15 +2021.6.1 +2021.6.10 +2021.6.12 +2021.6.14 +2021.6.16 +2021.6.18 +2021.6.2 +2021.6.21.0 +2021.6.3 +2021.6.5 +2021.6.6 +2021.6.8 +2021.6.9.13.34.11 +2021.6_1 +2021.7 +2021.7.0 +2021.7.1 +2021.7.10 +2021.7.11 +2021.7.12.0 +2021.7.13.7.29.27 +2021.7.14.0 +2021.7.17 +2021.7.18 +2021.7.18.0 +2021.7.19 +2021.7.2 +2021.7.21 +2021.7.21.3 +2021.7.23 +2021.7.24 +2021.7.25.0 +2021.7.28 +2021.7.28.0 +2021.7.28b40 +2021.7.29 +2021.7.3 +2021.7.30 +2021.7.31b41 +2021.7.4 +2021.7.5 +2021.7.5b38 +2021.7.6 +2021.7.7 +2021.7.8 +2021.8 +2021.8.0 +2021.8.1 +2021.8.1.0 +2021.8.10.0 +2021.8.11b42 +2021.8.12 +2021.8.15.0 +2021.8.16.0 +2021.8.17 +2021.8.17.1 +2021.8.17b10 +2021.8.17b43 +2021.8.18 +2021.8.2 +2021.8.2.0 +2021.8.2.1 +2021.8.21 +2021.8.24 +2021.8.25.12.59.41 +2021.8.26 +2021.8.26.15.40.13 +2021.8.27 +2021.8.28 +2021.8.29 +2021.8.3 +2021.8.3.0 +2021.8.3.1 +2021.8.3.3 +2021.8.30 +2021.8.30.10.33.11 +2021.8.30.10.8.27 +2021.8.31 +2021.8.4.0 +2021.8.5 +2021.8.8 +2021.8.8.0 +2021.9 +2021.9.0 +2021.9.1 +2021.9.11 +2021.9.12 +2021.9.14 +2021.9.19 +2021.9.2 +2021.9.21 +2021.9.22 +2021.9.23 +2021.9.24 +2021.9.26 +2021.9.3 +2021.9.3.15.46.13 +2021.9.30 +2021.9.7 +2021.9.8 +2021.9.8.16.34.17 +20210000.2 +20210000.3 +20210000.4 +20210000.5 +20210000.6 +20210000.7 +20210000.8 +20210102.00.51.07 +20210105.19.56.5 +20210108.02.17.20 +20210108.04.26.17 +20210108.08.21.29 +20210108.13.24.12 +20210110.19.04.49 +20210112.006 +20210112.19.57.36 +20210113.16.44.02 +20210113.17.02.50 +20210115.02.16.22 +20210115.03.22.51 +20210115.12.20.49 +20210115.14.50.57 +20210115.15.43.54 +20210116.19.10.46 +20210121 +20210121.15.56.33 +20210121.20.06.44 +20210124.03.42.57 +20210125.16.44.43 +20210126.16.57.31 +20210127.23.39.54 +20210128.12.03.21 +20210128.12.03.56 +20210128.14.04.15 +20210128.14.24.20 +20210131.00.15.24 +20210201 +20210201.07.13.24 +20210201.15.55.08 +20210202.09.24.34 +20210202.10.00.43 +20210202.12.20.44 +20210203.19.10.38 +20210208.21.14.19 +20210208.23.14.50 +20210212 +20210214 +20210215.10.16.34 +20210216.16.42.04 +20210216.19.02.30 +20210217.14.12.40 +20210218.10.46.08 +20210218.12.04.41 +20210222 +20210223.14.15.12 +20210224.15.35.00 +20210225.22.08.08 +20210227.18.40.55 +20210228.15.56.43 +20210303.22.35.50 +20210305.18.36.31 +20210309.16.52.40 +20210310 +20210311.15.21.12 +20210316.01.11.00 +20210316.08.08.13 +20210318.22.45.14 +20210322.19.32.40 +20210323183018 +20210324.0 +20210324.1 +20210324.14.43.57 +20210324.2 +20210325 +20210328.19.53.44 +20210401.09.07.52 +20210401.09.28.16 +20210401.09.42.39 +20210402.10.23.36 +20210406.10.37.11 +20210407.13.35.54 +20210407.19.40.12 +20210408.12.11.25 +20210411.14.41.52 +20210412.17.10.53 +20210413.15.08.36 +20210413.15.41.36 +20210413.22.32.5 +20210413.23.10.14 +20210414.20.14.38 +20210415 +20210419.0 +20210422 +20210428.17.55.5 +20210429.5.51.5 +20210503 +20210503.0 +20210503.16.24.35 +20210503.16.24.43 +20210510.0 +20210510.16.10.10 +20210513.19.03.5 +20210514 +20210518.0 +20210518.5.38.16 +20210522.14.45.50 +20210528.07.43.59 +20210529.16.24.44 +20210601.0 +20210602 +20210603 +20210605 +20210607.0 +20210607.14.04.52 +20210607.18.59.32 +20210608 +20210611 +20210611.09.28.12 +20210611.11.15.13 +20210614.0 +20210614.09.43.24 +20210615 +20210616.00.03.58 +20210616.10.39.26 +20210616.10.41.11 +20210618.18.33.48 +20210620 +20210621.09.51.19 +20210621.10.58.06 +20210622 +20210623 +20210624 +20210624.5.11.16 +20210625 +20210628.0 +20210629 +20210629.04.48.38 +20210706 +20210707.07.18.35 +20210707.08.32.29 +20210709 +20210712.0 +20210713 +20210715 +20210715.19.00.25 +20210716 +20210716.00.13.07 +20210719.21.34.15 +20210720 +20210720.0 +20210721 +20210722 +20210722.09.03.22 +20210722.11.02.29 +20210722.11.32.12 +20210723.15.27.31 +20210724 +20210724.11.19.00 +20210726.08.02.39 +20210727 +20210728 +20210728.17.28.20 +20210728.19.03.57 +20210729.03.47.45 +20210729.03.48.17 +20210729.09.00.28 +20210729.10.42.54 +20210729.10.45.01 +20210806.19.18.10 +20210806.19.31.16 +20210807.08.23.00 +20210810 +20210811 +20210811.20.28.45 +20210812 +20210812.5.13.08 +20210816.13.23.04 +20210818 +20210818.12.29.35 +20210819 +20210820.21.03.38 +20210821 +20210821.5.07.55 +20210821.11.21.34 +20210822 +20210823 +20210823.0 +20210823.13.43.14 +20210824.03.28.15 +20210825 +20210826 +20210826.08.07.45 +20210826.22.22.33 +20210826.23.23.19 +20210826.23.25.21 +20210827.20.13.46 +20210829.23.20.27 +20210830.12.29.40 +20210831.15.55.07 +20210903.11.39.04 +20210904 +20210904.10.03.53 +20210907 +20210908 +20210908.14.12.10 +20210909.15.56.47 +20210910 +20210911.08.26.12 +20210913.19.20.31 +20210914 +20210914.5.32.54 +20210915.09.11.11 +20210915.20.01.56 +20210915.21.08.19 +20210916.14.45.39 +20210917.04.45.08 +20210917.22.32.04 +20210918.12.31.35 +20210919 +20210920.20.43.07 +20210922.15.39.45 +20210922.16.57.36 +20210923.0 +20210925.0 +20210926.11.02.19 +20210927.0 +20210927.18.51.54 +20210927.22.13.33 +20210928.1 +20210930.0 +20210930.14.01.57 +20210930.16.20.00 +20211001 +20211001.12.31.09 +20211002.0 +20211005.0 +20211005.21.52.10 +20211006 +20211006.0 +20211007.15.42.23 +20211009.0 +20211012 +20211013.0 +20211013.18.18.49 +20211016.19.53.32 +20211017.19.56.43 +20211018.10.10.5 +20211019.0 +20211021.01.34.40 +20211021.09.06.48 +20211022 +20211022.01.00.43 +20211022.21.53.03 +20211023.17.27.08 +20211024.1 +20211024.17.30.53 +20211026.0 +20211026.23.16.01 +20211027.17.49.07 +20211027.17.50.45 +20211028.07.46.01 +20211029.13.56.28 +20211029.22.10.01 +20211101.0 +20211102.0 +20211103.15.46.37 +20211104.19.06.09 +20211105.13.27.02 +20211106.22.33.02 +20211109.0 +20211110.18.39.16 +20211111.10.18.16 +20211111.17.16.28 +20211111.20.28.57 +20211112.01.25.30 +20211112.06.21.31 +20211112.19.46.23 +20211116.0 +20211117.0 +20211117.12.04.52 +20211117.20.04.19 +20211117.21.03.02 +20211117.21.58.29 +20211118.0 +20211119.09.03.32 +20211119.11.26.38 +20211121.00.06.30 +20211122.06.16.50 +20211123.0 +20211125.12.16.54 +20211125.12.27.26 +20211125.20.27.11 +20211128.0 +20211128.00.08.11 +20211129.0 +20211129.1 +20211130.0 +20211130.01.48.03 +20211130.01.50.17 +20211130.22.43.34 +20211201.13.55.17 +20211201.17.42.33 +20211202.20.12.42 +20211202.23.39.06 +20211203.01.01.51 +20211203.15.18.54 +20211204.14.48.58 +20211206.21.52.16 +20211207.1 +20211207.20.14.40 +20211208.01.10.47 +20211209.0 +20211209.19.32.10 +20211214.1 +20211214.2 +20211215.12.14.32 +20211215.12.27.06 +20211215.12.44.53 +20211215.13.07.04 +20211217.03.46.46 +20211217.16.42.20 +20211218.12.40.33 +20211218.14.5.09 +20211218.15.23.11 +20211219.0 +20211221.0 +20211221.15.22.29 +20211222 +20211226.00.06.59 +2021_0511 +2021_0521 +2021_0525 +2021_0526 +2021_10.12 +2021_6.12 +2021a +2021b +2021c +2021d +2021e +2022 +2022.0 +2022.0.0 +2022.0.0a10 +2022.0.0a9 +2022.0.1 +2022.0.10 +2022.0.11 +2022.0.12 +2022.0.13 +2022.0.14 +2022.0.15 +2022.0.16 +2022.0.17 +2022.0.2 +2022.0.3 +2022.0.4 +2022.0.5 +2022.0.6 +2022.0.7 +2022.0.8 +2022.0.9 +2022.01 +2022.01.01 +2022.01.02.09.41.34 +2022.01.02.17.59.50 +2022.01.03.00 +2022.01.03.16.37.21 +2022.01.04 +2022.01.04.09.5.28 +2022.01.04.16.06.57 +2022.01.04.17.59.36 +2022.01.04.18.50.59 +2022.01.04.19.00.57 +2022.01.5.06.51.46 +2022.01.5.07.11.36 +2022.01.5.11.50.48 +2022.01.5.14.36.24 +2022.01.07 +2022.01.07.08.36.56 +2022.01.07.16.19.52 +2022.01.07.19.03.47 +2022.01.07.22.11.42 +2022.01.08 +2022.01.08.03.20.39 +2022.01.08.08.10.13 +2022.01.08.10.20.55 +2022.01.08.14.07.12 +2022.01.08.19.53.23 +2022.01.09 +2022.01.09.03.57.37 +2022.01.09.03.57.47 +2022.01.09.11.48.37 +2022.01.09.13.08.44 +2022.01.09.15.48.10 +2022.01.1 +2022.01.10 +2022.01.10.00 +2022.01.10.13.01.59 +2022.01.11.08.53.25 +2022.01.11.20.10.31 +2022.01.12.13.10.32 +2022.01.12.13.11.41 +2022.01.12.20.51.50 +2022.01.13.01.57.35 +2022.01.13.20.46.10 +2022.01.13.23.27.45 +2022.01.14 +2022.01.14.18.13.59 +2022.01.14.19.02.00 +2022.01.14.19.02.28 +2022.01.14.19.15.38 +2022.01.14.19.19.28 +2022.01.14.22.50.49 +2022.01.15.11.11.15 +2022.01.17.00 +2022.01.17.15.20.04 +2022.01.17.15.36.21 +2022.01.17.16.16.21 +2022.01.17.22.01.08 +2022.01.18 +2022.01.18.15.20.32 +2022.01.18.20.31.32 +2022.01.19 +2022.01.2 +2022.01.20 +2022.01.20.01.14.54 +2022.01.20.01.15.08 +2022.01.20.5.32.47 +2022.01.20.12.50.15 +2022.01.20.21.36.34 +2022.01.21.17.08.34 +2022.01.21.21.03.24 +2022.01.21.21.5.07 +2022.01.21.21.07.32 +2022.01.21.21.21.16 +2022.01.22.07.12.59 +2022.01.22.07.13.04 +2022.01.22.07.13.29 +2022.01.22.07.50.08 +2022.01.22.20.21.55 +2022.01.22.21.00.53 +2022.01.22.21.08.53 +2022.01.24.00 +2022.01.24.17.45.12 +2022.01.25.10.09.46 +2022.01.25.10.58.41 +2022.01.25.13.00.06 +2022.01.26 +2022.01.26.09.22.36 +2022.01.26.20.27.23 +2022.01.27 +2022.01.27.11.49.45 +2022.01.27.16.51.01 +2022.01.28.02.01.47 +2022.01.28.10.00.37 +2022.01.28.10.42.27 +2022.01.28.17.06.23 +2022.01.28.19.47.10 +2022.01.29.15.10.18 +2022.01.31 +2022.01.31.00 +2022.01.31.19.13.54 +2022.01.31.20.15.53 +2022.02 +2022.02.01 +2022.02.01.00.07.31 +2022.02.01.02.45.46 +2022.02.01.07.5.00 +2022.02.01.07.5.27 +2022.02.01.12.09.01 +2022.02.01.13.45.55 +2022.02.01.15.47.50 +2022.02.02 +2022.02.02.01.33.58 +2022.02.02.14.18.16 +2022.02.02.14.34.19 +2022.02.02.gr3.8 +2022.02.02.gr3.9 +2022.02.03.07.42.55 +2022.02.03.08.02.24 +2022.02.03.08.02.56 +2022.02.03.08.5.34 +2022.02.03.09.37.06 +2022.02.03.14.54.35 +2022.02.03.15.44.48 +2022.02.03.18.02.21 +2022.02.03.19.17.39 +2022.02.04 +2022.02.04.12.07.5 +2022.02.04.12.07.36 +2022.02.5.07.33.31 +2022.02.5.21.28.19 +2022.02.06.08.14.37 +2022.02.06.08.21.47 +2022.02.06.20.08.11 +2022.02.06.21.39.22 +2022.02.06.21.40.56 +2022.02.07.00 +2022.02.07.00.17.20 +2022.02.07.06.12.16 +2022.02.08.09.38.24 +2022.02.10.16.19.14 +2022.02.11 +2022.02.11.06.19.44 +2022.02.11.06.28.12 +2022.02.11.12.54.35 +2022.02.11.13.04.17 +2022.02.11.13.10.37 +2022.02.11.13.56.39 +2022.02.11.15.44.54 +2022.02.11.19.52.51 +2022.02.12 +2022.02.12.07.13.34 +2022.02.12.08.56.54 +2022.02.13.01.5.12 +2022.02.13.04.39.31 +2022.02.13.21.22.14 +2022.02.13.22.17.40 +2022.02.13.22.34.03 +2022.02.13.22.34.12 +2022.02.13.22.45.33 +2022.02.14 +2022.02.14.00 +2022.02.14.00.54.36 +2022.02.14.04.25.21 +2022.02.14.04.40.54 +2022.02.14.12.37.30 +2022.02.14.13.08.13 +2022.02.14.13.20.49 +2022.02.15.09.45.08 +2022.02.15.09.52.15 +2022.02.15.09.56.12 +2022.02.15.10.00.06 +2022.02.15.14.5.09 +2022.02.15.20.00.46 +2022.02.17 +2022.02.17.00.41.37 +2022.02.17.00.42.15 +2022.02.17.06.22.45 +2022.02.17.15.32.38 +2022.02.17.23.50.18 +2022.02.18 +2022.02.18.13.24.38 +2022.02.18.14.45.27 +2022.02.18.15.27.34 +2022.02.18.23.09.53 +2022.02.18.23.56.39 +2022.02.19.23.26.53 +2022.02.2 +2022.02.21.00 +2022.02.21.14.57.59 +2022.02.21.20.20.02 +2022.02.21.21.55.10 +2022.02.22.10.43.58 +2022.02.22.10.45.59 +2022.02.22.12.32.52 +2022.02.22.16.45.10 +2022.02.22.17.02.26 +2022.02.23 +2022.02.23.12.25.49 +2022.02.23.13.44.17 +2022.02.23.17.48.45 +2022.02.24 +2022.02.24.15.28.03 +2022.02.25.03.59.17 +2022.02.25.15.35.46 +2022.02.28.00 +2022.02.28.13.5.22 +2022.02.3 +2022.03 +2022.03.0 +2022.03.01.16.24.47 +2022.03.01.16.41.38 +2022.03.01.17.46.00 +2022.03.01.19.08.06 +2022.03.01.23.33.50 +2022.03.02.15.49.21 +2022.03.02.18.03.40 +2022.03.03 +2022.03.03.08.23.08 +2022.03.03.08.23.49 +2022.03.03.08.24.06 +2022.03.03.08.25.15 +2022.03.03.08.26.51 +2022.03.03.11.30.49 +2022.03.03.19.18.22 +2022.03.03.19.40.07 +2022.03.03.21.25.39 +2022.03.04.01.20.32 +2022.03.04.03.08.50 +2022.03.04.08.01.08 +2022.03.04.08.01.42 +2022.03.04.09.47.34 +2022.03.04.15.23.07 +2022.03.04.17.12.12 +2022.03.04.19.31.39 +2022.03.5.07.13.09 +2022.03.5.13.20.38 +2022.03.06 +2022.03.07 +2022.03.07.00 +2022.03.07.16.58.03 +2022.03.08 +2022.03.08.07.37.14 +2022.03.08.14.5.14 +2022.03.08.16.47.58 +2022.03.08.16.54.15 +2022.03.08.21.07.12 +2022.03.09 +2022.03.09.08.50.50 +2022.03.09.08.54.39 +2022.03.1 +2022.03.10 +2022.03.10.08.54.06 +2022.03.10.14.25.15 +2022.03.10.18.35.59 +2022.03.12.18.14.42 +2022.03.12.18.19.48 +2022.03.13 +2022.03.13.02.29.16 +2022.03.13.06.57.35 +2022.03.13.15.54.52 +2022.03.13.16.57.33 +2022.03.14.00 +2022.03.14.13.26.11 +2022.03.14.13.58.01 +2022.03.15.07.59.01 +2022.03.15.10.12.29 +2022.03.16.03.42.14 +2022.03.16.15.21.47 +2022.03.16.19.59.50 +2022.03.16.23.15.25 +2022.03.17.02.30.57 +2022.03.17.03.37.43 +2022.03.17.11.17.55 +2022.03.17.19.39.04 +2022.03.17.19.40.19 +2022.03.17.19.45.15 +2022.03.18.12.16.01 +2022.03.18.14.08.59 +2022.03.18.16.40.09 +2022.03.18.16.40.38 +2022.03.18.16.41.31 +2022.03.19.12.57.49 +2022.03.19.14.12.41 +2022.03.19.14.15.37 +2022.03.19.14.15.50 +2022.03.19.14.19.35 +2022.03.2 +2022.03.20.11.58.24 +2022.03.20.19.31.27 +2022.03.21.00 +2022.03.21.01.01.44 +2022.03.21.04.26.58 +2022.03.21.21.49.04 +2022.03.22 +2022.03.22.00.01.46 +2022.03.22.12.57.56 +2022.03.22.14.49.54 +2022.03.22.16.50.54 +2022.03.22.19.17.12 +2022.03.23.07.48.24 +2022.03.23.15.32.25 +2022.03.23.16.41.17 +2022.03.23.20.27.24 +2022.03.24 +2022.03.24.20.31.54 +2022.03.24.20.44.18 +2022.03.24.20.51.15 +2022.03.25.5.47.39 +2022.03.25.06.21.54 +2022.03.25.14.56.02 +2022.03.25.19.30.32 +2022.03.25.20.30.42 +2022.03.28.00 +2022.03.28.15.22.23 +2022.03.28.15.31.32 +2022.03.28.19.38.17 +2022.03.28.22.11.58 +2022.03.29.23.54.57 +2022.03.3 +2022.03.30 +2022.03.30.03.10.21 +2022.03.30.08.09.52 +2022.03.30.10.02.27 +2022.03.30.10.5.09 +2022.03.30.10.5.23 +2022.03.30.12.49.41 +2022.03.30.15.14.58 +2022.03.30.18.03.29 +2022.03.31.01.43.29 +2022.03.31.06.39.5 +2022.03.31.07.03.03 +2022.03.31.10.54.08 +2022.03.31.10.54.25 +2022.03.31.11.30.08 +2022.03.31.11.51.51 +2022.03.31.15.11.41 +2022.03.31.16.27.41 +2022.03.31.18.34.20 +2022.03.31.20.32.14 +2022.03.4 +2022.03.5 +2022.04 +2022.04.0 +2022.04.01 +2022.04.01.00.07.17 +2022.04.01.12.17.55 +2022.04.01.12.21.46 +2022.04.01.17.34.01 +2022.04.01.20.5.02 +2022.04.01.23.36.23 +2022.04.02.03.03.45 +2022.04.02.04.11.01 +2022.04.02.19.04.47 +2022.04.03.06.07.57 +2022.04.03.06.15.38 +2022.04.03.06.16.02 +2022.04.03.14.32.43 +2022.04.04.00 +2022.04.04.17.10.15 +2022.04.04.18.29.32 +2022.04.04.20.33.41 +2022.04.04.21.55.16 +2022.04.04.22.18.08 +2022.04.5.07.10.07 +2022.04.5.10.19.5 +2022.04.5.12.13.43 +2022.04.5.18.07.10 +2022.04.06 +2022.04.06.00.23.40 +2022.04.06.00.27.40 +2022.04.06.02.32.01 +2022.04.06.03.27.58 +2022.04.06.11.51.27 +2022.04.06.14.57.25 +2022.04.06.14.58.02 +2022.04.06.15.06.15 +2022.04.06.19.57.51 +2022.04.06.21.38.29 +2022.04.07.02.30.44 +2022.04.07.12.22.25 +2022.04.07.12.27.50 +2022.04.07.15.54.08 +2022.04.07.16.47.44 +2022.04.07.20.54.50 +2022.04.08.02.48.37 +2022.04.08.10.49.38 +2022.04.08.12.39.08 +2022.04.08.13.19.51 +2022.04.08.18.53.04 +2022.04.08.22.00.32 +2022.04.08.23.01.38 +2022.04.09.5.47.49 +2022.04.09.06.33.53 +2022.04.09.06.48.49 +2022.04.09.06.52.04 +2022.04.09.16.11.09 +2022.04.09.19.01.16 +2022.04.1 +2022.04.10.06.46.21 +2022.04.10.07.10.26 +2022.04.10.10.26.59 +2022.04.10.16.18.16 +2022.04.10.22.41.35 +2022.04.11.00 +2022.04.11.11.31.00 +2022.04.11.13.50.18 +2022.04.12 +2022.04.12.10.16.02 +2022.04.12.16.55.22 +2022.04.12.19.15.38 +2022.04.12.19.17.14 +2022.04.12.19.20.34 +2022.04.12.21.56.28 +2022.04.13.5.08.00 +2022.04.13.5.11.22 +2022.04.13.07.17.29 +2022.04.13.11.33.57 +2022.04.13.14.53.36 +2022.04.14.12.5.26 +2022.04.14.12.58.33 +2022.04.14.17.26.44 +2022.04.15.14.15.37 +2022.04.16.04.57.52 +2022.04.16.5.14.45 +2022.04.16.22.19.15 +2022.04.16.22.19.20 +2022.04.16.22.19.42 +2022.04.16.22.20.19 +2022.04.17.06.04.48 +2022.04.17.06.21.01 +2022.04.17.16.40.16 +2022.04.17.23.07.46 +2022.04.18 +2022.04.18.00 +2022.04.18.11.42.44 +2022.04.20.10.57.53 +2022.04.20.14.36.35 +2022.04.20.14.53.59 +2022.04.20.21.24.32 +2022.04.21.13.14.58 +2022.04.21.15.03.25 +2022.04.21.21.03.33 +2022.04.21.23.08.27 +2022.04.23.18.13.34 +2022.04.23.18.15.26 +2022.04.24.01.35.03 +2022.04.24.03.02.13 +2022.04.24.13.06.22 +2022.04.24.15.29.58 +2022.04.24.17.34.15 +2022.04.24.21.17.49 +2022.04.25.00 +2022.04.25.19.26.04 +2022.04.26.12.46.45 +2022.04.26.15.08.43 +2022.04.28.12.57.13 +2022.04.28.22.31.46 +2022.04.29.16.49.17 +2022.04.29.16.50.00 +2022.04.29.16.52.03 +2022.5.0 +2022.5.00 +2022.5.01 +2022.5.01.12.58.40 +2022.5.02.00 +2022.5.02.10.57.49 +2022.5.02.12.53.39 +2022.5.02.14.44.24 +2022.5.02.15.18.36 +2022.5.02.16.32.54 +2022.5.02.16.34.37 +2022.5.02.19.14.43 +2022.5.02.19.15.5 +2022.5.02.19.22.36 +2022.5.02.19.36.47 +2022.5.02.19.41.03 +2022.5.03 +2022.5.03.00.24.50 +2022.5.03.5.37.34 +2022.5.03.11.39.11 +2022.5.04 +2022.5.04.07.00.44 +2022.5.04.16.02.41 +2022.5.04.18.03.34 +2022.5.5 +2022.5.5.16.37.34 +2022.5.5.18.43.04 +2022.5.06 +2022.5.06.13.49.53 +2022.5.06.15.25.04 +2022.5.06.15.28.34 +2022.5.06.15.30.52 +2022.5.06.15.33.36 +2022.5.06.15.33.45 +2022.5.06.15.37.02 +2022.5.06.15.39.26 +2022.5.06.15.39.45 +2022.5.06.15.41.10 +2022.5.08 +2022.5.09.07.01.03 +2022.5.09.07.08.30 +2022.5.1 +2022.5.10 +2022.5.12.00.18.15 +2022.5.12.13.19.50 +2022.5.12.18.5.03 +2022.5.13.08.41.59 +2022.5.13.11.41.30 +2022.5.14 +2022.5.14.22.55.26 +2022.5.15.15.04.08 +2022.5.16.09.20.45 +2022.5.16.12.18.44 +2022.5.17.07.5.47 +2022.5.17.07.07.01 +2022.5.17.07.14.55 +2022.5.17.11.36.49 +2022.5.17.21.59.01 +2022.5.18 +2022.5.18.07.20.58 +2022.5.18.18.43.52 +2022.5.18.23.47.38 +2022.5.19.14.17.20 +2022.5.19.23.06.33 +2022.5.20 +2022.5.20.01.36.03 +2022.5.20.07.13.49 +2022.5.20.08.26.58 +2022.5.20.08.33.30 +2022.5.20.13.10.33 +2022.5.20.15.08.19 +2022.5.20.15.08.39 +2022.5.21.06.26.44 +2022.5.21.06.31.19 +2022.5.21.06.31.58 +2022.5.22.06.13.52 +2022.5.23.11.15.14 +2022.5.23.12.37.52 +2022.5.23.15.49.11 +2022.5.24 +2022.5.24.09.00.5 +2022.5.24.12.49.34 +2022.5.24.12.51.25 +2022.5.24.15.15.50 +2022.5.25.5.16.19 +2022.5.25.14.40.58 +2022.5.25.19.48.06 +2022.5.27 +2022.5.27.12.50.08 +2022.5.27.19.22.16 +2022.5.27.22.09.45 +2022.5.28.12.44.5 +2022.5.28.19.5.45 +2022.5.28.19.06.00 +2022.5.28.20.04.06 +2022.5.30.14.59.12 +2022.5.31.00.48.42 +2022.5.31.13.38.22 +2022.5.31.15.36.22 +2022.06.0 +2022.06.01 +2022.06.01.01.51.44 +2022.06.01.21.06.06 +2022.06.02.02.16.30 +2022.06.02.02.17.23 +2022.06.02.10.52.40 +2022.06.02.15.09.01 +2022.06.02.23.44.30 +2022.06.03.11.00.48 +2022.06.03.22.56.00 +2022.06.04.14.39.47 +2022.06.04.16.15.42 +2022.06.04.16.36.40 +2022.06.04.16.36.45 +2022.06.04.16.37.37 +2022.06.04.16.38.34 +2022.06.04.16.39.23 +2022.06.04.16.42.04 +2022.06.04.16.44.48 +2022.06.04.19.02.46 +2022.06.04.21.26.03 +2022.06.5 +2022.06.5.00.07.29 +2022.06.5.11.06.00 +2022.06.5.11.48.06 +2022.06.5.21.47.29 +2022.06.06 +2022.06.06.01.01.46 +2022.06.06.01.5.55 +2022.06.07.19.41.06 +2022.06.08 +2022.06.08.00.21.30 +2022.06.08.14.40.10 +2022.06.08.23.30.54 +2022.06.09.17.24.24 +2022.06.09.17.26.41 +2022.06.09.18.09.12 +2022.06.10.06.38.26 +2022.06.10.16.38.37 +2022.06.10.18.09.10 +2022.06.11.12.31.12 +2022.06.11.19.09.35 +2022.06.12.00.53.04 +2022.06.12.04.15.50 +2022.06.12.5.34.29 +2022.06.12.5.44.17 +2022.06.12.5.44.19 +2022.06.12.5.44.25 +2022.06.12.5.44.46 +2022.06.13 +2022.06.13.06.53.20 +2022.06.13.08.34.03 +2022.06.13.22.29.59 +2022.06.14.14.10.02 +2022.06.14.22.54.02 +2022.06.15 +2022.06.15.15.40.35 +2022.06.15.16.25.59 +2022.06.16 +2022.06.16.11.22.22 +2022.06.16.11.22.40 +2022.06.16.11.23.39 +2022.06.16.11.24.12 +2022.06.16.14.11.35 +2022.06.16.16.45.41 +2022.06.16.19.5.09 +2022.06.16.23.47.53 +2022.06.17 +2022.06.17.10.28.32 +2022.06.18.07.29.11 +2022.06.18.07.34.24 +2022.06.18.22.23.19 +2022.06.19 +2022.06.19.10.58.48 +2022.06.19.10.59.28 +2022.06.19.10.59.30 +2022.06.19.12.27.42 +2022.06.19.12.27.44 +2022.06.19.18.22.02 +2022.06.19.19.19.32 +2022.06.19.19.20.07 +2022.06.20.5.5.43 +2022.06.20.08.17.39 +2022.06.20.09.10.23 +2022.06.20.09.10.33 +2022.06.20.13.39.20 +2022.06.20.13.43.21 +2022.06.20.13.43.49 +2022.06.20.13.55.54 +2022.06.20.20.00.31 +2022.06.21.09.02.52 +2022.06.21.18.5.41 +2022.06.22.5.59.41 +2022.06.22.08.29.15 +2022.06.22.11.09.47 +2022.06.23 +2022.06.23.15.48.40 +2022.06.23.15.55.08 +2022.06.23.17.21.28 +2022.06.24.18.5.18 +2022.06.24.18.35.54 +2022.06.25.09.06.17 +2022.06.25.15.29.46 +2022.06.25.17.42.13 +2022.06.25.17.47.56 +2022.06.26.11.17.33 +2022.06.26.21.10.23 +2022.06.27 +2022.06.27.13.19.38 +2022.06.27.14.5.07 +2022.06.27.18.29.50 +2022.06.27.18.30.08 +2022.06.28.10.11.26 +2022.06.28.16.51.04 +2022.06.29.00.57.15 +2022.06.29.18.34.42 +2022.06.30.11.45.20 +2022.07.0 +2022.07.01.12.17.33 +2022.07.01.13.48.55 +2022.07.02.13.27.43 +2022.07.02.21.02.52 +2022.07.03.20.57.18 +2022.07.04.22.21.22 +2022.07.5.08.26.14 +2022.07.5.18.27.24 +2022.07.06.01.52.02 +2022.07.08.00.03.22 +2022.07.08.00.07.26 +2022.07.08.02.15.19 +2022.07.09.12.23.27 +2022.07.09.14.16.43 +2022.07.09.19.21.06 +2022.07.1 +2022.07.10.02.43.28 +2022.07.11 +2022.07.11.00.47.13 +2022.07.11.12.35.27 +2022.07.11.13.37.43 +2022.07.11.23.02.51 +2022.07.12 +2022.07.12.00.49.24 +2022.07.12.02.03.03 +2022.07.12.16.49.31 +2022.07.12.18.44.47 +2022.07.13.19.35.11 +2022.07.13.19.56.34 +2022.07.14 +2022.07.14.19.44.54 +2022.07.15.01.49.26 +2022.07.15.23.29.22 +2022.07.16.03.13.38 +2022.07.16.15.13.24 +2022.07.16.15.13.56 +2022.07.16.15.49.25 +2022.07.16.21.43.24 +2022.07.16.21.44.50 +2022.07.18.11.18.34 +2022.07.19.11.33.02 +2022.07.2 +2022.07.20 +2022.07.20.11.32.46 +2022.07.20.21.54.10 +2022.07.21 +2022.07.21.11.35.29 +2022.07.21.20.07.5 +2022.07.22.12.54.13 +2022.07.22.15.28.03 +2022.07.22.22.24.34 +2022.07.22.23.35.10 +2022.07.24.12.20.52 +2022.07.24.16.45.38 +2022.07.24.16.48.29 +2022.07.25 +2022.07.25.00 +2022.07.25.00.42.24 +2022.07.25.01.07.01 +2022.07.25.08.01.08 +2022.07.25.18.25.33 +2022.07.25.20.17.58 +2022.07.25.22.44.11 +2022.07.26.13.5.19 +2022.07.26.13.54.43 +2022.07.26.20.23.31 +2022.07.27.15.36.49 +2022.07.27.17.51.24 +2022.07.27.17.58.24 +2022.07.27.20.15.04 +2022.07.28.00.27.46 +2022.07.28.08.22.44 +2022.07.28.08.23.03 +2022.07.28.19.34.36 +2022.07.29.06.29.02 +2022.07.29.09.27.39 +2022.07.29.13.58.26 +2022.07.29.15.08.20 +2022.07.29.16.12.45 +2022.07.31.08.11.5 +2022.08.0 +2022.08.01 +2022.08.01.00 +2022.08.01.07.10.19 +2022.08.01.09.16.26 +2022.08.01.12.11.42 +2022.08.03.11.04.37 +2022.08.03.11.08.53 +2022.08.03.21.47.28 +2022.08.04.07.32.40 +2022.08.5.23.22.55 +2022.08.06.09.49.16 +2022.08.06.11.18.30 +2022.08.07.13.04.47 +2022.08.08 +2022.08.08.00 +2022.08.08.03.34.54 +2022.08.08.11.16.33 +2022.08.08.12.20.02 +2022.08.08.12.37.47 +2022.08.08.13.43.09 +2022.08.08.17.5.41 +2022.08.08.19.07.35 +2022.08.09 +2022.08.09.07.02.38 +2022.08.09.07.02.39 +2022.08.09.15.26.55 +2022.08.09.17.28.58 +2022.08.10.13.48.17 +2022.08.10.16.37.26 +2022.08.10.16.38.32 +2022.08.10.18.5.48 +2022.08.10.18.48.38 +2022.08.10.20.5.43 +2022.08.11 +2022.08.11.00.12.17 +2022.08.11.11.15.53 +2022.08.11.15.16.27 +2022.08.11.23.31.29 +2022.08.11.23.35.06 +2022.08.12.20.13.33 +2022.08.12.21.14.57 +2022.08.12.21.43.37 +2022.08.12.22.29.55 +2022.08.12.23.25.47 +2022.08.13.16.03.46 +2022.08.14.15.51.06 +2022.08.14.21.53.55 +2022.08.15 +2022.08.15.00 +2022.08.15.02.11.21 +2022.08.15.10.08.14 +2022.08.15.11.50.42 +2022.08.15.12.55.29 +2022.08.15.17.17.32 +2022.08.15.17.58.52 +2022.08.16.09.27.01 +2022.08.16.15.03.11 +2022.08.17.04.11.20 +2022.08.17.04.16.34 +2022.08.17.04.19.03 +2022.08.17.04.22.48 +2022.08.17.04.24.13 +2022.08.17.5.39.09 +2022.08.17.5.43.44 +2022.08.17.5.43.45 +2022.08.17.5.43.55 +2022.08.17.5.44.01 +2022.08.17.5.44.29 +2022.08.17.5.44.30 +2022.08.17.5.44.45 +2022.08.17.5.44.46 +2022.08.17.08.04.28 +2022.08.17.15.27.00 +2022.08.17.15.27.08 +2022.08.18.10.04.32 +2022.08.18.10.5.07 +2022.08.18.10.16.51 +2022.08.18.10.17.30 +2022.08.18.11.35.40 +2022.08.18.12.48.09 +2022.08.18.12.48.10 +2022.08.18.14.00.07 +2022.08.18.16.23.26 +2022.08.18.17.24.14 +2022.08.19.12.00.37 +2022.08.19.12.01.27 +2022.08.19.14.19.32 +2022.08.19.17.16.54 +2022.08.19.17.16.56 +2022.08.19.17.59.09 +2022.08.19.19.19.04 +2022.08.20.09.22.15 +2022.08.21.18.34.5 +2022.08.22.00 +2022.08.22.07.35.10 +2022.08.22.07.35.18 +2022.08.22.08.34.13 +2022.08.22.11.57.44 +2022.08.22.18.18.57 +2022.08.22.19.11.22 +2022.08.22.19.42.11 +2022.08.23 +2022.08.23.01.02.25 +2022.08.23.01.5.47 +2022.08.23.12.33.00 +2022.08.23.13.46.03 +2022.08.24.10.10.27 +2022.08.24.10.11.46 +2022.08.24.10.12.37 +2022.08.24.10.15.47 +2022.08.24.12.13.53 +2022.08.24.17.10.33 +2022.08.24.17.24.27 +2022.08.24.18.03.48 +2022.08.24.23.58.03 +2022.08.25.00.04.55 +2022.08.25.01.17.35 +2022.08.25.07.31.30 +2022.08.25.07.31.47 +2022.08.25.07.31.57 +2022.08.25.07.31.59 +2022.08.25.07.32.5 +2022.08.25.07.32.09 +2022.08.25.07.32.54 +2022.08.25.07.46.5 +2022.08.25.07.46.09 +2022.08.25.11.48.54 +2022.08.25.12.06.07 +2022.08.25.15.20.42 +2022.08.25.16.47.48 +2022.08.25.18.48.53 +2022.08.25.18.48.57 +2022.08.25.22.39.31 +2022.08.26.08.14.11 +2022.08.26.08.26.19 +2022.08.26.08.26.25 +2022.08.26.11.30.01 +2022.08.26.11.30.5 +2022.08.26.14.45.22 +2022.08.26.15.40.48 +2022.08.26.18.27.48 +2022.08.27.13.34.34 +2022.08.29.00 +2022.08.29.04.41.42 +2022.08.29.08.20.16 +2022.08.29.11.49.07 +2022.08.29.12.15.34 +2022.08.29.12.22.51 +2022.08.29.13.16.26 +2022.08.29.15.07.42 +2022.08.29.15.07.45 +2022.08.29.19.12.47 +2022.08.29.23.37.24 +2022.08.30.22.14.57 +2022.08.31.13.07.5 +2022.08.31.15.30.59 +2022.08.31.16.57.19 +2022.09.0 +2022.09.02.01.33.59 +2022.09.02.10.01.46 +2022.09.03.12.13.43 +2022.09.03.13.37.27 +2022.09.03.13.40.36 +2022.09.03.13.42.42 +2022.09.03.14.39.53 +2022.09.03.14.40.23 +2022.09.03.14.41.12 +2022.09.03.14.45.14 +2022.09.03.14.48.41 +2022.09.03.14.49.38 +2022.09.03.14.53.26 +2022.09.03.15.06.47 +2022.09.03.21.29.09 +2022.09.03.21.29.17 +2022.09.04.11.55.37 +2022.09.04.15.41.14 +2022.09.5 +2022.09.5.00 +2022.09.06 +2022.09.06.01.18.53 +2022.09.06.12.54.07 +2022.09.06.13.02.25 +2022.09.06.18.44.04 +2022.09.07.10.16.08 +2022.09.07.10.20.36 +2022.09.08 +2022.09.08.12.51.58 +2022.09.08.12.52.13 +2022.09.08.12.52.26 +2022.09.08.13.58.00 +2022.09.08.21.51.09 +2022.09.08.22.23.30 +2022.09.09.07.11.44 +2022.09.09.15.51.16 +2022.09.09.16.57.07 +2022.09.09.20.09.02 +2022.09.09.20.44.53 +2022.09.09.21.52.25 +2022.09.09.23.02.54 +2022.09.1 +2022.09.10.01.12.28 +2022.09.10.01.14.25 +2022.09.10.01.15.47 +2022.09.10.02.18.18 +2022.09.10.02.18.42 +2022.09.10.02.27.40 +2022.09.10.02.28.29 +2022.09.10.12.23.22 +2022.09.10.12.33.16 +2022.09.10.13.43.21 +2022.09.10.16.02.5 +2022.09.10.16.12.32 +2022.09.10.16.28.22 +2022.09.10.19.24.40 +2022.09.10.23.16.39 +2022.09.11.02.04.12 +2022.09.11.02.24.47 +2022.09.11.13.02.53 +2022.09.11.20.19.58 +2022.09.12.00 +2022.09.12.01.30.37 +2022.09.12.04.26.16 +2022.09.12.22.24.22 +2022.09.13 +2022.09.13.13.36.40 +2022.09.13.14.40.25 +2022.09.13.16.23.17 +2022.09.13.17.57.49 +2022.09.13.19.09.01 +2022.09.13.20.27.40 +2022.09.14 +2022.09.19 +2022.09.19.00 +2022.09.19.03.54.54 +2022.09.19.16.49.46 +2022.09.20.14.36.51 +2022.09.20.14.48.32 +2022.09.21 +2022.09.21.00.03.13 +2022.09.21.08.37.08 +2022.09.21.08.37.32 +2022.09.21.08.37.33 +2022.09.21.18.22.03 +2022.09.23 +2022.09.23.15.53.14 +2022.09.24.21.21.07 +2022.09.24.23.00.28 +2022.09.25.01.17.39 +2022.09.25.11.40.52 +2022.09.25.18.08.47 +2022.09.26.00 +2022.09.26.12.40.38 +2022.09.26.16.20.5 +2022.09.27.00.22.21 +2022.09.27.00.22.29 +2022.09.27.08.36.12 +2022.09.28.12.59.58 +2022.09.28.13.21.13 +2022.09.28.13.36.14 +2022.09.28.16.00.31 +2022.09.29 +2022.09.3 +2022.09.30 +2022.09.30.16.02.29 +2022.09.30.16.14.22 +2022.09.30.17.55.19 +2022.09.4 +2022.09.5 +2022.1 +2022.1.0 +2022.1.1 +2022.1.10 +2022.1.11 +2022.1.12 +2022.1.12.1 +2022.1.12.post1 +2022.1.13 +2022.1.14 +2022.1.15 +2022.1.16 +2022.1.17 +2022.1.18 +2022.1.19 +2022.1.2 +2022.1.20 +2022.1.21 +2022.1.22 +2022.1.23 +2022.1.24 +2022.1.26 +2022.1.28 +2022.1.29 +2022.1.2b11 +2022.1.3 +2022.1.4 +2022.1.5 +2022.1.5.0 +2022.1.6 +2022.1.7 +2022.1.8 +2022.1.9 +2022.10 +2022.10.0 +2022.10.01.09.51.36 +2022.10.01.09.52.16 +2022.10.01.09.52.25 +2022.10.01.09.53.15 +2022.10.01.09.53.32 +2022.10.01.21.03.50 +2022.10.01.21.04.14 +2022.10.02 +2022.10.02.10.42.57 +2022.10.03.00 +2022.10.03.09.31.48 +2022.10.04.09.02.31 +2022.10.04.09.03.00 +2022.10.04.09.22.14 +2022.10.04.09.22.15 +2022.10.04.12.34.07 +2022.10.04.15.24.20 +2022.10.04.15.44.33 +2022.10.04.21.31.52 +2022.10.5.09.22.23 +2022.10.5.09.22.42 +2022.10.5.11.58.53 +2022.10.5.18.13.37 +2022.10.5.18.50.28 +2022.10.06.21.48.30 +2022.10.07 +2022.10.07.16.24.39 +2022.10.07.16.50.25 +2022.10.07.18.54.47 +2022.10.07.20.39.23 +2022.10.09.22.13.28 +2022.10.1 +2022.10.10 +2022.10.10.00 +2022.10.10.08.39.56 +2022.10.10.09.21.20 +2022.10.10.17.37.23 +2022.10.10.17.52.17 +2022.10.11 +2022.10.11.03.04.53 +2022.10.11.20.35.31 +2022.10.12 +2022.10.12.08.08.42 +2022.10.12.08.17.18 +2022.10.12.23.16.12 +2022.10.14.07.49.52 +2022.10.14.15.41.02 +2022.10.14.15.41.33 +2022.10.15.11.07.55 +2022.10.15.22.25.24 +2022.10.16.19.58.59 +2022.10.16.19.59.50 +2022.10.17 +2022.10.17.00 +2022.10.17.13.34.40 +2022.10.17.17.07.36 +2022.10.18 +2022.10.18.08.35.57 +2022.10.18.09.43.36 +2022.10.18.20.25.22 +2022.10.19 +2022.10.19.09.52.52 +2022.10.19.09.53.59 +2022.10.19.15.52.28 +2022.10.19.16.58.22 +2022.10.19.20.54.55 +2022.10.19.21.07.44 +2022.10.19.23.15.01 +2022.10.2 +2022.10.20 +2022.10.20.18.36.53 +2022.10.20.19.20.00 +2022.10.21.03.28.44 +2022.10.21.11.57.06 +2022.10.21.12.10.43 +2022.10.21.13.17.40 +2022.10.21.14.30.20 +2022.10.21.14.35.08 +2022.10.21.15.17.15 +2022.10.21.19.23.07 +2022.10.21.19.23.23 +2022.10.22 +2022.10.22.12.31.00 +2022.10.22.12.31.15 +2022.10.22.12.31.44 +2022.10.22.14.31.27 +2022.10.22.15.55.08 +2022.10.22.16.02.23 +2022.10.22.17.09.49 +2022.10.22.18.03.18 +2022.10.23 +2022.10.23.00.15.36 +2022.10.23.09.56.15 +2022.10.23.10.16.33 +2022.10.24 +2022.10.24.00 +2022.10.24.01.16.58 +2022.10.24.04.43.29 +2022.10.24.11.13.37 +2022.10.24.12.55.15 +2022.10.24.19.29.39 +2022.10.24.19.50.07 +2022.10.25 +2022.10.25.08.18.02 +2022.10.25.15.13.01 +2022.10.25.16.20.36 +2022.10.25.17.48.27 +2022.10.25.18.58.27 +2022.10.25.19.19.58 +2022.10.25.19.19.59 +2022.10.25.20.49.44 +2022.10.25.20.58.40 +2022.10.25.22.17.19 +2022.10.25.22.21.17 +2022.10.25.23.5.27 +2022.10.26 +2022.10.26.08.10.58 +2022.10.26.09.23.38 +2022.10.26.13.53.24 +2022.10.26.15.31.17 +2022.10.26.19.07.37 +2022.10.26.22.14.46 +2022.10.26.22.36.06 +2022.10.27 +2022.10.27.01.17.41 +2022.10.27.02.26.04 +2022.10.27.03.11.11 +2022.10.27.07.15.59 +2022.10.27.07.22.06 +2022.10.27.09.17.03 +2022.10.27.15.23.5 +2022.10.27.19.11.26 +2022.10.28 +2022.10.28.00.55.45 +2022.10.28.07.39.27 +2022.10.28.07.39.35 +2022.10.28.08.56.52 +2022.10.28.09.31.03 +2022.10.28.11.26.40 +2022.10.28.16.47.40 +2022.10.28.21.38.53 +2022.10.28.22.34.20 +2022.10.29.07.48.33 +2022.10.29.15.17.39 +2022.10.29.17.19.28 +2022.10.3 +2022.10.30.22.56.52 +2022.10.31 +2022.10.31.00 +2022.10.31.09.44.47 +2022.10.31.11.03.16 +2022.10.31.14.01.31 +2022.10.31.14.40.35 +2022.10.4 +2022.10.5 +2022.10.7 +2022.10.9 +2022.10_2 +2022.10a0 +2022.11 +2022.11.0 +2022.11.01 +2022.11.01.00.02.24 +2022.11.01.06.59.37 +2022.11.01.08.17.30 +2022.11.01.11.46.43 +2022.11.01.12.20.19 +2022.11.01.14.25.43 +2022.11.01.16.00.02 +2022.11.01.16.03.11 +2022.11.01.17.37.31 +2022.11.01.19.35.10 +2022.11.01.21.11.09 +2022.11.01.22.10.41 +2022.11.02 +2022.11.02.09.53.14 +2022.11.02.11.17.17 +2022.11.02.12.22.38 +2022.11.02.12.28.22 +2022.11.02.14.22.55 +2022.11.02.16.11.00 +2022.11.02.18.55.19 +2022.11.03.07.22.44 +2022.11.03.08.14.18 +2022.11.03.09.46.56 +2022.11.03.12.46.38 +2022.11.03.12.54.01 +2022.11.03.18.10.43 +2022.11.03.18.25.45 +2022.11.03.19.49.26 +2022.11.03.19.49.57 +2022.11.04.03.22.42 +2022.11.04.10.18.53 +2022.11.04.15.44.27 +2022.11.04.17.07.21 +2022.11.04.17.37.23 +2022.11.5.07.19.24 +2022.11.5.07.19.31 +2022.11.5.07.31.22 +2022.11.5.07.36.04 +2022.11.5.07.47.31 +2022.11.5.10.16.40 +2022.11.5.14.39.53 +2022.11.5.16.13.5 +2022.11.5.21.08.08 +2022.11.06.17.49.44 +2022.11.06.17.49.56 +2022.11.06.17.50.12 +2022.11.06.17.50.32 +2022.11.07.00 +2022.11.07.13.22.21 +2022.11.07.14.51.32 +2022.11.07.15.09.20 +2022.11.07.16.21.19 +2022.11.08.02.51.09 +2022.11.08.02.58.38 +2022.11.08.03.00.11 +2022.11.08.08.25.39 +2022.11.08.09.18.47 +2022.11.08.09.28.13 +2022.11.08.10.32.09 +2022.11.08.15.37.06 +2022.11.08.15.44.59 +2022.11.08.22.20.06 +2022.11.08.23.18.36 +2022.11.09.08.34.10 +2022.11.09.12.27.21 +2022.11.09.16.08.53 +2022.11.09.16.09.32 +2022.11.09.16.17.31 +2022.11.09.16.17.33 +2022.11.1 +2022.11.10.07.35.21 +2022.11.10.07.40.53 +2022.11.10.08.14.51 +2022.11.10.11.01.18 +2022.11.10.11.44.43 +2022.11.10.22.07.33 +2022.11.11 +2022.11.11.09.27.49 +2022.11.11.09.27.52 +2022.11.11.09.28.38 +2022.11.11.15.42.04 +2022.11.11.17.16.57 +2022.11.13.03.29.29 +2022.11.14 +2022.11.14.00 +2022.11.14.18.36.06 +2022.11.14.18.36.28 +2022.11.14.21.30.17 +2022.11.15 +2022.11.15.10.48.28 +2022.11.15.11.53.06 +2022.11.15.17.15.22 +2022.11.15.22.41.08 +2022.11.16 +2022.11.16.03.53.15 +2022.11.16.14.37.19 +2022.11.16.14.55.21 +2022.11.16.16.13.51 +2022.11.16.23.01.02 +2022.11.17.00.49.36 +2022.11.17.07.48.06 +2022.11.17.07.56.56 +2022.11.17.07.58.08 +2022.11.17.18.02.58 +2022.11.17.21.5.33 +2022.11.17.21.14.25 +2022.11.18.5.47.36 +2022.11.18.5.48.19 +2022.11.18.09.07.56 +2022.11.18.09.26.27 +2022.11.18.09.29.52 +2022.11.18.11.49.04 +2022.11.18.13.40.02 +2022.11.18.16.18.34 +2022.11.18.17.56.12 +2022.11.19.13.25.46 +2022.11.19.19.07.08 +2022.11.2 +2022.11.20.09.27.35 +2022.11.20.19.08.47 +2022.11.20.19.09.47 +2022.11.20.19.10.04 +2022.11.21 +2022.11.21.0 +2022.11.21.08.53.37 +2022.11.21.08.56.08 +2022.11.21.19.57.06 +2022.11.22.08.31.53 +2022.11.22.12.08.38 +2022.11.22.20.22.19 +2022.11.23 +2022.11.23.04.40.55 +2022.11.23.09.34.39 +2022.11.23.19.37.15 +2022.11.24 +2022.11.25 +2022.11.26.23.51.31 +2022.11.27.00.26.12 +2022.11.27.00.26.45 +2022.11.27.00.27.57 +2022.11.27.15.56.36 +2022.11.28 +2022.11.28.00 +2022.11.29 +2022.11.29.18.43.18 +2022.11.29.22.58.17 +2022.11.3 +2022.11.30 +2022.11.30.02.29.38 +2022.11.30.09.25.24 +2022.11.30.10.38.55 +2022.11.4 +2022.11.5 +2022.11.7 +2022.1115 +2022.1116 +2022.1118 +2022.1119 +2022.1120 +2022.11_16 +2022.12 +2022.12.0 +2022.12.01.03.23.43 +2022.12.01.06.44.48 +2022.12.02.10.47.43 +2022.12.02.15.22.41 +2022.12.03 +2022.12.04.12.58.46 +2022.12.04.13.24.59 +2022.12.04.16.50.45 +2022.12.04.16.52.04 +2022.12.04.16.52.34 +2022.12.04.16.52.51 +2022.12.04.16.55.25 +2022.12.04.17.28.58 +2022.12.04.18.56.23 +2022.12.04.19.22.35 +2022.12.5.00 +2022.12.5.17.50.45 +2022.12.06 +2022.12.06.01.07.15 +2022.12.06.02.30.06 +2022.12.06.12.06.55 +2022.12.06.13.13.30 +2022.12.06.13.31.23 +2022.12.06.20.36.46 +2022.12.07 +2022.12.07.02.23.49 +2022.12.07.11.35.54 +2022.12.07.15.37.06 +2022.12.07.15.37.51 +2022.12.07.18.34.25 +2022.12.08.13.14.06 +2022.12.08.16.56.34 +2022.12.09.08.14.11 +2022.12.09.17.44.31 +2022.12.09.20.17.28 +2022.12.1 +2022.12.10.15.23.58 +2022.12.10.16.12.13 +2022.12.10.19.42.52 +2022.12.10.21.07.48 +2022.12.10.21.24.59 +2022.12.11 +2022.12.11.00.42.28 +2022.12.11.21.21.5 +2022.12.12.00 +2022.12.12.09.01.12 +2022.12.12.09.03.28 +2022.12.12.09.03.37 +2022.12.12.15.21.25 +2022.12.12.22.47.46 +2022.12.13 +2022.12.13.09.45.07 +2022.12.13.12.57.26 +2022.12.13.13.01.22 +2022.12.13.15.42.53 +2022.12.13.15.49.28 +2022.12.13.15.56.10 +2022.12.13.17.03.13 +2022.12.13.21.25.24 +2022.12.14 +2022.12.14.13.10.49 +2022.12.14.21.36.18 +2022.12.15 +2022.12.15.08.47.10 +2022.12.15.12.25.12 +2022.12.15.19.46.12 +2022.12.16 +2022.12.16.14.20.18 +2022.12.17 +2022.12.17.19.22.51 +2022.12.18.15.20.06 +2022.12.18.16.04.29 +2022.12.18.22.53.56 +2022.12.19 +2022.12.19.00 +2022.12.19.12.44.52 +2022.12.19.14.36.50 +2022.12.19.20.52.42 +2022.12.2 +2022.12.20 +2022.12.20.01.36.46 +2022.12.20.16.10.14 +2022.12.20.16.27.48 +2022.12.20.16.44.56 +2022.12.20.17.30.40 +2022.12.20.19.40.49 +2022.12.20.22.03.26 +2022.12.21 +2022.12.21.04.43.24 +2022.12.21.04.51.23 +2022.12.21.5.25.31 +2022.12.21.11.24.57 +2022.12.21.16.48.02 +2022.12.21.17.00.57 +2022.12.21.17.06.39 +2022.12.21.17.38.36 +2022.12.22 +2022.12.22.13.58.53 +2022.12.22.907 +2022.12.24 +2022.12.25 +2022.12.26 +2022.12.26.00 +2022.12.27 +2022.12.27.12.28.39 +2022.12.27.19.59.10 +2022.12.29.18.48.19 +2022.12.29.18.59.25 +2022.12.29.19.5.49 +2022.12.4 +2022.12.6 +2022.12.6.post2 +2022.12.7 +2022.12.9 +2022.13 +2022.14 +2022.15 +2022.16.0 +2022.16.1 +2022.2 +2022.2.0 +2022.2.1 +2022.2.1.0 +2022.2.10 +2022.2.10.14.20.39 +2022.2.11 +2022.2.12 +2022.2.13 +2022.2.2 +2022.2.21 +2022.2.22 +2022.2.22.1 +2022.2.23 +2022.2.24 +2022.2.24.1 +2022.2.24.535 +2022.2.25 +2022.2.27 +2022.2.3 +2022.2.4 +2022.2.5 +2022.2.6 +2022.2.7 +2022.2.8 +2022.2.9 +2022.20.2 +2022.3 +2022.3.0 +2022.3.1 +2022.3.12 +2022.3.13 +2022.3.14 +2022.3.15 +2022.3.16 +2022.3.17 +2022.3.18 +2022.3.2 +2022.3.22 +2022.3.23 +2022.3.24 +2022.3.25 +2022.3.26 +2022.3.27 +2022.3.28 +2022.3.29 +2022.3.29.873 +2022.3.3 +2022.3.30 +2022.3.4 +2022.3.5 +2022.3.6 +2022.3.7 +2022.3.8 +2022.3.8.2 +2022.4 +2022.4.0 +2022.4.0.0 +2022.4.1 +2022.4.10 +2022.4.19 +2022.4.2 +2022.4.21 +2022.4.22 +2022.4.24 +2022.4.26 +2022.4.28 +2022.4.3 +2022.4.30 +2022.4.4 +2022.4.5 +2022.4.6 +2022.4.7 +2022.4.8 +2022.4_1 +2022.5 +2022.5.0 +2022.5.0.0 +2022.5.1 +2022.5.17 +2022.5.18 +2022.5.18.1 +2022.5.19 +2022.5.19.406 +2022.5.2 +2022.5.20 +2022.5.23 +2022.5.26 +2022.5.27 +2022.5.29 +2022.5.3 +2022.5.30 +2022.5.4 +2022.5.5 +2022.5.7 +2022.6 +2022.6.0 +2022.6.0.1 +2022.6.1 +2022.6.10 +2022.6.11 +2022.6.14 +2022.6.15 +2022.6.15.1 +2022.6.15.2 +2022.6.2 +2022.6.21 +2022.6.22 +2022.6.22.1 +2022.6.25 +2022.6.26 +2022.6.28 +2022.6.28.2 +2022.6.29 +2022.6.29.552 +2022.6.3 +2022.6.3.0 +2022.6.30 +2022.6.4.1 +2022.6.6 +2022.6.7 +2022.6.9 +2022.7 +2022.7.0 +2022.7.0.0 +2022.7.1 +2022.7.1.0 +2022.7.1.1 +2022.7.1.2 +2022.7.10 +2022.7.14 +2022.7.17 +2022.7.18 +2022.7.19 +2022.7.21 +2022.7.24 +2022.7.24.1 +2022.7.25 +2022.7.25.0 +2022.7.27 +2022.7.28 +2022.7.29 +2022.7.29.1 +2022.7.30.0 +2022.7.31 +2022.7.4 +2022.7.5 +2022.7.6 +2022.7.7 +2022.7.8 +2022.7.9 +2022.8 +2022.8.0 +2022.8.1 +2022.8.12 +2022.8.13 +2022.8.14 +2022.8.15 +2022.8.17 +2022.8.19 +2022.8.2 +2022.8.22 +2022.8.23 +2022.8.24 +2022.8.24a1 +2022.8.26 +2022.8.27 +2022.8.3 +2022.8.30 +2022.8.31 +2022.8.4 +2022.8.5 +2022.8.7 +2022.8.8 +2022.9 +2022.9.0 +2022.9.0.post1 +2022.9.1 +2022.9.10 +2022.9.11 +2022.9.12 +2022.9.13 +2022.9.14 +2022.9.16 +2022.9.18 +2022.9.19 +2022.9.2 +2022.9.20 +2022.9.21 +2022.9.22 +2022.9.24 +2022.9.26 +2022.9.27 +2022.9.28 +2022.9.29 +2022.9.4 +2022.9.5 +2022.9.8 +2022.9.9 +2022.9a1 +20220000.0 +20220000.1 +20220000.2 +20220000.3 +20220000.4 +20220000.5 +20220102.00.06.34 +20220103 +20220103.0 +20220104 +20220104.16.11.01 +20220104.22.39.10 +20220105 +20220105.0 +20220106 +20220106.12.03.31 +20220107 +20220108 +20220109 +20220109.00.06.58 +20220109.04.01.27 +20220110 +20220110.02.5.02 +20220110.20.09.55 +20220111 +20220111.0 +20220112 +20220113 +20220114 +20220114.15.38.02 +20220114.15.40.11 +20220115 +20220115.02.56.19 +20220116 +20220116.00.5.51 +20220117 +20220117.0 +20220118 +20220118.0 +20220119 +20220119.17.53.52 +20220120 +20220120.0 +20220121 +20220121.06.42.38 +20220122 +20220123 +20220123.00.07.5 +20220124 +20220124.0 +20220124.02.18.51 +20220124.16.57.25 +20220124.17.04.54 +20220124.22.38.37 +20220125 +20220125.0 +20220125.00.18.00 +20220125.16.11.59 +20220125.18.39.47 +20220126 +20220126.11.37.33 +20220126.11.39.10 +20220126.22.29.26 +20220127 +20220127.18.42.07 +20220128 +20220128.13.08.52 +20220129 +20220129.0 +20220129.16.06.28 +20220129.16.08.13 +20220130 +20220131 +20220131.0 +20220201 +20220201.0 +20220201.07.45.27 +20220202 +20220202.11.37.47 +20220202.12.12.12 +20220202.18.59.32 +20220203 +20220203.20.38.08 +20220204 +20220205 +20220206 +20220206.00.52.58 +20220208.0 +20220211.07.10.24 +20220213.00.06.57 +20220213.04.43.34 +20220214.0 +20220215.02.23.33 +20220216.1 +20220220.00.07.42 +20220222 +20220222.23.28.23 +20220223.0 +20220223.22.41.27 +20220224.0 +20220224.17.44.39 +20220225.03.31.47 +20220225.15.45.55 +20220228.0 +20220301.0 +20220301.10.14.41 +20220301.23.37.56 +20220303.17.55.44 +20220304.15.26.29 +20220307.12.18.46 +20220307.15.03.47 +20220307.19.49.09 +20220307.19.52.29 +20220308.0 +20220308.03.14.22 +20220309.0 +20220309.10.15.51 +20220309.10.26.13 +20220309.10.38.21 +20220310.08.22.06 +20220310.1 +20220311.18.55.28 +20220311.3 +20220312.0 +20220313.00.07.29 +20220315.0 +20220316.15.24.44 +20220316.15.37.36 +20220316.15.47.58 +20220317.07.11.18 +20220317.1 +20220317.2 +20220318.0 +20220318.14.19.44 +20220319 +20220320 +20220322.0 +20220323.0 +20220323.06.13.42 +20220323.15.51.04 +20220324.0 +20220324.06.56.10 +20220324.11.24.29 +20220324.11.36.5 +20220324.21.40.27 +20220324.21.51.49 +20220325.0 +20220327.00.07.28 +20220328.23.18.47 +20220329.0 +20220329.2 +20220330.12.52.52 +20220401.0 +20220401.17.51.01 +20220403.00.06.57 +20220403.18.48.30 +20220404.0 +20220406.0 +20220407.15.44.43 +20220407.15.47.58 +20220407.18.26.17 +20220408.19.26.42 +20220409.12.18.21 +20220410.21.44.04 +20220412.0 +20220414.0 +20220417.00.06.20 +20220418.00.10.10 +20220418.00.18.51 +20220419.0 +20220421.17.47.53 +20220421.23.09.34 +20220422.0 +20220422.18.54.11 +20220425.13.26.07 +20220426.1 +20220426.18.04.03 +20220426.21.35.21 +20220427.0 +20220427.06.16.58 +20220427.1 +20220427.13.49.53 +20220429.11.38.10 +20220429.11.52.03 +20220429.12.13.02 +20220430.13.00.46 +20220501.00.07.10 +20220503.0 +20220503.17.00.27 +20220504.21.20.49 +20220506 +20220508.00.07.02 +20220509.0 +20220510.11.54.14 +20220512.0 +20220515.00.07.59 +20220517.0 +20220518.23.07.36 +20220519.19.15.23 +20220520.00.30.12 +20220521.09.08.45 +20220521.17.02.30 +20220522 +20220524 +20220524.0 +20220524.22.16.02 +20220525.1 +20220526.12.30.52 +20220526.13.29.44 +20220526.14.42.14 +20220527.0 +20220527.17.5.57 +20220530.12.10.09 +20220530.14.54.33 +20220530.14.55.53 +20220530.15.09.33 +20220531.0 +20220531.07.10.11 +20220601.00.04.48 +20220601.21.09.53 +20220602.10.15.07 +20220604.17.07.58 +20220607.0 +20220607.14.09.28 +20220608.16.03.47 +20220609.16.02.26 +20220610.12.40.28 +20220612.00.07.30 +20220615.13.25.23 +20220616.17.31.23 +20220621 +20220623.0 +20220626.00.07.50 +20220627.11.46.09 +20220627.12.22.56 +20220627.12.57.43 +20220628.10.01.57 +20220629.11.13.56 +20220629.11.19.17 +20220703.00.07.21 +20220704.12.29.21 +20220705.13.13.13 +20220706.08.19.08 +20220708 +20220708.12.52.59 +20220710.00.07.03 +20220711.13.41.26 +20220713.12.44.52 +20220713.13.46.37 +20220713.19.29.38 +20220716.22.20.30 +20220719.01.41.20 +20220721.23.03.23 +20220722 +20220722.11.22.37 +20220724.00.08.59 +20220726.0 +20220726.04.03.24 +20220728.11.26.04 +20220730.21.57.48 +20220731.21.48.41 +20220801.0 +20220801.08.34.53 +20220802.0 +20220803 +20220803.22.56.22 +20220803.23.08.07 +20220803.23.26.13 +20220804.0 +20220805.15.26.52 +20220809.0 +20220810.19.22.04 +20220810.19.24.46 +20220810.19.37.04 +20220810.19.51.33 +20220811.5.39.04 +20220812.00.22.59 +20220812.00.36.49 +20220812.23.22.47 +20220814.0 +20220816.0 +20220816.15.5.34 +20220816.15.09.16 +20220818.22.08.12 +20220819.01.34.22 +20220820.0 +20220821.00.08.52 +20220822.15.18.02 +20220824.08.32.31 +20220825.0 +20220825.21.52.11 +20220826.07.58.56 +20220830.0 +20220830.16.24.23 +20220831.16.15.28 +202209 +20220902.01.04.57 +20220902.08.41.22 +20220903.08.19.28 +20220906.0 +20220907.0 +20220907.06.48.33 +20220908.12.52.03 +20220909.0 +20220910.17.50.06 +20220912.09.5.00 +20220913.0 +20220913.17.52.32 +20220915.0 +20220915.11.44.35 +20220915.15.57.47 +20220916.0 +20220916.15.06.57 +20220916.15.27.5 +20220920.0 +20220921 +20220922 +20220922.0 +20220923.03.58.38 +20220923.04.30.37 +20220924.20.17.28 +20220924.23.00.31 +20220925.16.19.55 +20220927.0 +20220928.0 +20220928.04.37.13 +20220928.09.28.09 +20220928.11.32.11 +20220928.17.59.51 +20220929.0 +20220930.19.37.53 +20220930.19.40.12 +20221003.07.54.59 +20221004.0 +20221009.0 +20221009.00.10.46 +20221011.0 +20221011.00.58.24 +20221011.07.34.50 +20221011.20.20.26 +20221012 +20221012.16.48.19 +20221012.20.11.42 +20221013.0 +20221013.13.36.52 +20221013.13.52.49 +20221013.14.15.47 +20221013.14.30.5 +20221013.14.45.08 +20221013.14.56.25 +20221013.15.09.17 +20221013.15.27.31 +20221013.15.57.33 +20221013.16.10.27 +20221013.16.28.49 +20221013.16.31.45 +20221013.16.49.30 +20221013.17.09.48 +20221013.17.31.53 +20221013.17.52.03 +20221013.18.14.08 +20221013.18.29.44 +20221013.18.47.54 +20221013.19.03.08 +20221013.19.16.10 +20221013.19.30.25 +20221013.19.42.26 +20221013.19.53.38 +20221013.20.08.00 +20221013.20.28.00 +20221013.20.42.54 +20221013.20.55.29 +20221013.21.09.18 +20221013.21.27.07 +20221013.21.41.14 +20221013.21.54.36 +20221013.22.08.28 +20221013.22.27.30 +20221013.22.43.22 +20221013.22.55.42 +20221013.23.08.06 +20221013.23.27.33 +20221013.23.45.13 +20221013.23.57.32 +20221014.00.28.29 +20221014.00.54.06 +20221014.01.39.28 +20221014.02.42.37 +20221014.03.45.24 +20221014.04.35.13 +20221014.5.16.26 +20221014.5.51.22 +20221014.06.28.48 +20221014.06.51.21 +20221014.07.19.07 +20221014.07.36.43 +20221014.07.57.55 +20221014.08.10.25 +20221014.08.27.51 +20221014.08.46.29 +20221014.08.59.58 +20221014.09.12.23 +20221014.09.27.29 +20221014.09.43.04 +20221014.09.56.5 +20221014.10.08.24 +20221014.10.27.36 +20221014.10.43.52 +20221014.10.56.27 +20221014.11.08.55 +20221014.11.26.59 +20221014.11.40.37 +20221014.11.53.40 +20221014.12.10.09 +20221014.12.29.11 +20221014.12.50.42 +20221014.13.26.5 +20221014.13.53.04 +20221014.14.21.57 +20221014.14.46.18 +20221014.14.59.49 +20221014.15.11.15 +20221014.15.27.51 +20221014.15.44.59 +20221014.15.57.28 +20221014.16.10.16 +20221014.16.28.15 +20221014.16.48.31 +20221014.17.06.45 +20221014.17.29.03 +20221014.17.45.34 +20221014.17.59.47 +20221014.18.10.09 +20221014.18.28.04 +20221014.18.45.41 +20221014.18.59.42 +20221014.19.27.02 +20221014.19.39.52 +20221014.19.52.27 +20221014.20.07.55 +20221014.20.28.29 +20221014.20.44.38 +20221014.20.56.18 +20221014.21.08.43 +20221014.21.27.26 +20221014.21.41.32 +20221014.21.56.19 +20221014.22.08.03 +20221014.22.27.53 +20221014.22.42.39 +20221014.22.54.53 +20221014.23.07.51 +20221014.23.27.11 +20221014.23.43.29 +20221014.23.55.50 +20221015.00.26.45 +20221015.00.52.32 +20221015.01.38.29 +20221015.02.41.43 +20221015.03.42.24 +20221015.04.27.22 +20221015.5.03.35 +20221015.5.32.43 +20221015.5.54.01 +20221015.06.15.14 +20221015.06.29.23 +20221015.06.48.04 +20221015.07.03.09 +20221015.07.15.48 +20221015.07.29.38 +20221015.07.42.25 +20221015.07.53.42 +20221015.08.09.10 +20221015.08.45.14 +20221015.08.59.13 +20221015.09.09.57 +20221015.09.27.53 +20221015.09.42.10 +20221015.09.55.00 +20221015.10.07.47 +20221015.10.27.12 +20221015.10.43.07 +20221015.10.55.02 +20221015.11.07.33 +20221015.11.26.46 +20221015.11.38.54 +20221015.11.52.20 +20221015.12.09.44 +20221015.12.28.36 +20221015.12.49.09 +20221015.13.20.11 +20221015.13.48.49 +20221015.14.03.06 +20221015.14.13.28 +20221015.14.26.58 +20221015.14.41.36 +20221015.14.53.36 +20221015.15.07.38 +20221015.15.27.15 +20221015.15.42.09 +20221015.15.55.27 +20221015.16.08.22 +20221015.16.27.37 +20221015.16.47.11 +20221015.17.04.04 +20221015.17.17.58 +20221015.17.33.22 +20221015.17.47.54 +20221015.17.58.26 +20221015.18.08.12 +20221015.18.27.41 +20221015.18.44.26 +20221015.18.58.04 +20221015.19.08.50 +20221015.19.26.24 +20221015.19.38.03 +20221015.19.52.13 +20221015.20.08.13 +20221015.20.27.30 +20221015.20.42.06 +20221015.20.55.10 +20221015.21.07.52 +20221015.21.26.24 +20221015.21.40.41 +20221015.21.53.45 +20221015.22.07.45 +20221015.22.27.32 +20221015.22.42.33 +20221015.22.54.59 +20221015.23.07.34 +20221015.23.27.26 +20221015.23.43.38 +20221015.23.55.56 +20221016.00.27.19 +20221016.00.52.40 +20221016.01.36.31 +20221016.02.42.32 +20221016.03.45.02 +20221016.04.28.07 +20221016.5.01.20 +20221016.5.28.38 +20221016.5.49.49 +20221016.06.13.5 +20221016.06.28.12 +20221016.06.46.06 +20221016.07.01.21 +20221016.07.14.00 +20221016.07.27.06 +20221016.07.41.46 +20221016.07.53.38 +20221016.08.09.07 +20221016.08.28.00 +20221016.08.44.18 +20221016.08.57.49 +20221016.09.09.54 +20221016.09.26.50 +20221016.09.41.58 +20221016.09.54.50 +20221016.10.07.37 +20221016.10.27.04 +20221016.10.42.39 +20221016.10.56.17 +20221016.11.07.23 +20221016.11.26.12 +20221016.11.39.18 +20221016.11.52.09 +20221016.12.10.12 +20221016.12.28.57 +20221016.12.49.34 +20221016.13.20.45 +20221016.13.48.31 +20221016.14.04.17 +20221016.14.13.17 +20221016.14.26.42 +20221016.14.41.41 +20221016.14.53.46 +20221016.15.08.11 +20221016.15.26.49 +20221016.15.42.43 +20221016.15.56.02 +20221016.16.08.31 +20221016.16.28.30 +20221016.16.47.11 +20221016.17.04.08 +20221016.17.18.07 +20221016.17.33.32 +20221016.17.48.27 +20221016.17.59.13 +20221016.18.08.10 +20221016.18.27.33 +20221016.18.44.45 +20221016.18.57.21 +20221016.19.09.19 +20221016.19.26.24 +20221016.19.38.26 +20221016.19.52.19 +20221016.20.09.5 +20221016.20.27.15 +20221016.20.42.32 +20221016.20.54.48 +20221016.21.07.13 +20221016.21.26.23 +20221016.21.40.08 +20221016.21.53.31 +20221016.22.07.56 +20221016.22.26.53 +20221016.22.42.09 +20221016.22.55.24 +20221016.23.07.57 +20221016.23.27.13 +20221016.23.43.32 +20221016.23.56.20 +20221017.0 +20221017.00.27.06 +20221017.00.53.21 +20221017.01.39.28 +20221017.02.41.44 +20221017.03.47.42 +20221017.04.41.07 +20221017.5.19.53 +20221017.06.04.23 +20221017.06.42.25 +20221017.07.08.36 +20221017.07.36.14 +20221017.08.03.12 +20221017.08.49.28 +20221017.09.5.36 +20221017.09.29.02 +20221017.09.49.01 +20221017.10.04.12 +20221017.10.17.17 +20221017.10.30.22 +20221017.10.47.08 +20221017.11.01.38 +20221017.11.12.17 +20221017.11.26.54 +20221017.11.41.38 +20221017.11.53.47 +20221017.11.57.41 +20221017.12.10.20 +20221017.12.29.44 +20221017.12.51.02 +20221017.13.26.13 +20221017.13.53.00 +20221017.14.21.16 +20221017.14.46.30 +20221017.15.01.07 +20221017.15.12.19 +20221017.15.28.24 +20221017.15.45.41 +20221017.16.00.28 +20221017.16.14.44 +20221017.16.29.52 +20221017.16.50.48 +20221017.17.22.11 +20221017.17.49.42 +20221017.18.17.57 +20221017.18.34.58 +20221017.19.04.19 +20221017.19.29.10 +20221017.19.44.36 +20221017.19.56.5 +20221017.20.08.06 +20221017.20.27.36 +20221017.20.43.22 +20221017.20.55.19 +20221017.21.06.12 +20221017.21.08.04 +20221017.21.26.34 +20221017.21.40.54 +20221017.21.54.26 +20221017.22.07.33 +20221017.22.27.48 +20221017.22.44.28 +20221017.22.55.35 +20221017.23.07.43 +20221017.23.27.44 +20221017.23.44.38 +20221017.23.56.53 +20221018 +20221018.0 +20221018.00.28.46 +20221018.00.52.55 +20221018.01.38.32 +20221018.02.42.17 +20221018.03.43.32 +20221018.04.32.37 +20221018.5.13.34 +20221018.5.50.39 +20221018.06.32.12 +20221018.06.55.10 +20221018.07.21.13 +20221018.07.49.02 +20221018.08.03.37 +20221018.08.16.02 +20221018.08.32.5 +20221018.08.51.22 +20221018.09.13.39 +20221018.09.28.11 +20221018.09.45.43 +20221018.09.59.25 +20221018.10.10.07 +20221018.10.27.36 +20221018.10.46.22 +20221018.10.59.47 +20221018.11.09.29 +20221018.11.26.51 +20221018.11.40.25 +20221018.11.53.19 +20221018.12.10.49 +20221018.12.29.22 +20221018.12.50.27 +20221018.13.25.53 +20221018.13.52.11 +20221018.14.21.04 +20221018.15.09.07 +20221018.15.28.5 +20221018.15.46.27 +20221018.16.00.10 +20221018.16.13.25 +20221018.16.29.33 +20221018.16.40.36 +20221018.16.49.23 +20221018.17.20.00 +20221018.17.48.57 +20221018.18.04.56 +20221018.18.29.11 +20221018.18.49.20 +20221018.19.06.03 +20221018.19.28.02 +20221018.19.41.47 +20221018.19.53.43 +20221018.2 +20221018.20.08.36 +20221018.20.28.07 +20221018.20.43.39 +20221018.20.56.07 +20221018.21.08.07 +20221018.21.27.15 +20221018.21.41.39 +20221018.21.54.10 +20221018.22.07.42 +20221018.22.42.48 +20221018.22.55.15 +20221018.23.08.28 +20221018.23.27.50 +20221018.23.44.58 +20221018.23.57.21 +20221019.00.52.40 +20221019.01.36.55 +20221019.02.42.24 +20221019.03.43.20 +20221019.04.33.25 +20221019.5.14.36 +20221019.5.51.07 +20221019.06.34.26 +20221019.07.11.34 +20221019.07.34.38 +20221019.08.02.27 +20221019.08.17.27 +20221019.08.34.23 +20221019.08.53.55 +20221019.09.14.04 +20221019.09.29.47 +20221019.09.45.57 +20221019.09.59.40 +20221019.10.12.28 +20221019.10.28.31 +20221019.10.46.34 +20221019.10.59.59 +20221019.11.04.28 +20221019.2 +20221020.0 +20221020.17.09.04 +20221021.09.06.10 +20221021.20.04.37 +20221022.17.33.44 +20221022.18.04.19 +20221023.0 +20221023.11.37.23 +20221025.0 +20221025.10.08.06 +20221026.11.29.52 +20221026.15.33.22 +20221027 +20221027.18.03.38 +20221030.00.08.56 +20221031.08.03.19 +20221031.08.08.24 +20221031.08.26.20 +20221031.12.08.43 +20221031.20.14.25 +20221101 +20221101.10.11.00 +20221101.20.40.11 +20221102.08.37.53 +20221102.12.22.14 +20221102.17.17.55 +20221103 +20221104 +20221104.12.22.08 +20221104.2 +20221105 +20221106 +20221106.00.09.13 +20221107 +20221107.0 +20221107.12.5.40 +20221107.13.39.48 +20221108 +20221108.20.03.35 +20221108.20.07.56 +20221108.20.27.37 +20221109 +20221109.0 +20221110 +20221111 +20221111.0 +20221112 +20221113.00.09.28 +20221114 +20221114.19.27.45 +20221114.22.01.57 +20221114.22.55.15 +20221115 +20221115.0 +20221115.10.17.43 +20221115.12.07.17 +20221118.13.54.01 +20221118.13.54.40 +20221118.16.49.21 +20221122 +20221122.0 +20221122.18.30.18 +20221123.0 +20221124.23.58.32 +20221125.14.46.28 +20221128.0 +20221128.20.35.46 +20221129.12.25.01 +20221129.12.30.04 +20221129.15.49.30 +20221129.16.08.02 +20221130.11.37.5 +20221130.11.46.47 +20221130.11.51.51 +20221130.2 +20221130.21.02.34 +20221201.0 +20221201.12.02.37 +20221201.12.57.39 +20221202.16.54.36 +20221202.19.48.02 +20221204.00.20.50 +20221205.0 +20221205.1 +20221205.13.32.09 +20221206.0 +20221207.10.34.51 +20221207.12.36.57 +20221207.23.06.56 +20221208.17.13.33 +20221208.18.39.03 +20221209.00.25.43 +20221209.00.51.36 +20221210.16.41.10 +20221211.22.37.33 +20221212.18.5.15 +20221212.18.07.41 +20221212.22.43.33 +20221213.0 +20221213.03.22.32 +20221213.18.33.29 +20221214.10.15.24 +20221214.10.17.59 +20221215.15.40.39 +20221216.0 +20221217.19.13.38 +20221218.0 +20221221.12.50.28 +20221231.01.35.48 +2022_4.30 +2022a +2022b +2022c +2022d +2022e +2022f +2022g +2023.0 +2023.0.0 +2023.0.0a1 +2023.0.1 +2023.0.2 +2023.01.01 +2023.01.02.00 +2023.01.02.15.58.49 +2023.01.02.15.58.50 +2023.01.02.22.00.51 +2023.01.03.13.13.01 +2023.01.04 +2023.01.04.12.23.09 +2023.01.04.12.54.07 +2023.01.04.13.03.46 +2023.01.07.12.45.19 +2023.01.09 +2023.01.1 +2023.01.11 +2023.01.12.02.23.43 +2023.01.12.02.48.16 +2023.01.12.03.06.02 +2023.01.12.11.18.58 +2023.01.12.13.22.45 +2023.01.12.13.25.31 +2023.01.1202 +2023.01.13 +2023.01.13.20.5.16 +2023.01.13.20.5.23 +2023.01.13.20.5.48 +2023.01.13.20.08.24 +2023.01.14.14.08.20 +2023.01.14.17.24.24 +2023.01.14.23.54.30 +2023.01.15.02.58.09 +2023.01.15.15.00.49 +2023.01.15.15.56.23 +2023.01.15.15.59.52 +2023.01.15.16.23.03 +2023.01.15.17.04.45 +2023.01.16.00 +2023.01.16.02.45.13 +2023.01.16.09.03.45 +2023.01.16.10.03.29 +2023.01.16.18.52.45 +2023.01.16.20.28.38 +2023.01.17 +2023.01.17.12.20.49 +2023.01.17.14.17.22 +2023.01.18.12.01.58 +2023.01.18.19.16.13 +2023.01.20.5.27.27 +2023.01.22.14.31.33 +2023.01.22.14.39.28 +2023.01.22.23.15.20 +2023.01.23.00 +2023.01.23.01.26.33 +2023.01.23.20.28.41 +2023.01.24 +2023.01.24.14.49.06 +2023.01.25 +2023.01.25.04.58.41 +2023.01.25.09.04.33 +2023.01.25.09.30.06 +2023.01.25.21.47.14 +2023.01.26.00.00.57 +2023.01.26.03.13.59 +2023.01.26.09.04.24 +2023.01.26.09.23.31 +2023.01.26.12.13.20 +2023.01.26.12.34.18 +2023.01.26.16.59.55 +2023.01.27 +2023.01.27.16.18.18 +2023.01.27.20.38.35 +2023.01.28 +2023.01.28.02.34.29 +2023.01.28.03.27.41 +2023.01.28.16.04.00 +2023.01.28.17.33.52 +2023.01.29.18.28.15 +2023.01.29.23.43.37 +2023.01.30 +2023.01.30.00 +2023.01.30.13.41.09 +2023.01.31.03.10.11 +2023.02 +2023.02.0 +2023.02.01 +2023.02.01.15.56.57 +2023.02.01.16.07.08 +2023.02.01.17.44.36 +2023.02.01.17.44.57 +2023.02.01.19.46.10 +2023.02.01.20.20.08 +2023.02.01.20.25.27 +2023.02.01.21.25.17 +2023.02.01.21.26.02 +2023.02.02 +2023.02.02.06.21.42 +2023.02.02.06.30.53 +2023.02.02.07.34.49 +2023.02.02.08.33.21 +2023.02.02.08.33.36 +2023.02.02.08.49.57 +2023.02.02.08.57.52 +2023.02.02.09.24.31 +2023.02.02.09.25.07 +2023.02.02.10.20.52 +2023.02.02.10.21.23 +2023.02.02.14.06.17 +2023.02.02.17.24.02 +2023.02.02.19.14.40 +2023.02.03.15.35.07 +2023.02.03.15.35.28 +2023.02.03.20.59.28 +2023.02.03.21.00.5 +2023.02.03.23.27.09 +2023.02.04.03.16.13 +2023.02.04.12.26.59 +2023.02.5.22.35.38 +2023.02.06 +2023.02.06.00 +2023.02.06.13.29.07 +2023.02.06.13.55.07 +2023.02.07.10.12.15 +2023.02.07.10.17.00 +2023.02.07.10.20.08 +2023.02.07.10.21.38 +2023.02.07.16.29.18 +2023.02.07.17.16.20 +2023.02.07.17.29.45 +2023.02.07.21.02.21 +2023.02.07.21.54.18 +2023.02.08 +2023.02.08.00.26.03 +2023.02.08.16.11.02 +2023.02.08.17.58.10 +2023.02.08.20.12.13 +2023.02.09.13.31.53 +2023.02.09.17.40.48 +2023.02.1 +2023.02.10 +2023.02.10.21.46.00 +2023.02.11 +2023.02.11.23.25.27 +2023.02.12.08.25.45 +2023.02.12.11.51.20 +2023.02.13.00 +2023.02.13.04.13.59 +2023.02.13.12.45.21 +2023.02.13.17.41.30 +2023.02.14.01.17.40 +2023.02.14.04.57.01 +2023.02.14.17.15.36 +2023.02.14.20.03.14 +2023.02.14.20.33.56 +2023.02.15 +2023.02.15.5.17.45 +2023.02.15.19.55.44 +2023.02.15.19.59.39 +2023.02.16 +2023.02.16.11.03.50 +2023.02.16.11.04.46 +2023.02.16.16.03.52 +2023.02.16.16.37.04 +2023.02.16.17.12.18 +2023.02.16.23.42.32 +2023.02.17 +2023.02.17.13.34.26 +2023.02.17.18.17.27 +2023.02.18.11.03.35 +2023.02.19.10.16.26 +2023.02.19.10.17.35 +2023.02.19.20.30.33 +2023.02.20.00 +2023.02.20.15.57.59 +2023.02.20.16.09.03 +2023.02.22.13.06.18 +2023.02.22.13.44.02 +2023.02.22.13.48.04 +2023.02.22.17.01.31 +2023.02.22.21.5.40 +2023.02.22.21.06.20 +2023.02.22.21.07.53 +2023.02.22.21.13.16 +2023.02.22.21.13.28 +2023.02.23.00.38.09 +2023.02.23.04.43.58 +2023.02.23.10.32.16 +2023.02.23.15.29.15 +2023.02.23.20.23.31 +2023.02.24 +2023.02.24.11.03.39 +2023.02.24.11.04.5 +2023.02.24.22.31.19 +2023.02.25.20.27.20 +2023.02.26 +2023.02.27 +2023.02.27.00 +2023.02.27.06.53.56 +2023.02.28.00.25.39 +2023.03.0 +2023.03.01 +2023.03.02 +2023.03.02.03.20.38 +2023.03.02.10.11.47 +2023.03.02.10.25.20 +2023.03.02.17.17.57 +2023.03.02.19.21.59 +2023.03.03.08.17.39 +2023.03.03.08.17.52 +2023.03.03.08.25.28 +2023.03.03.08.25.34 +2023.03.03.08.25.57 +2023.03.03.08.26.07 +2023.03.03.08.26.13 +2023.03.03.08.26.22 +2023.03.03.08.27.01 +2023.03.03.08.27.23 +2023.03.03.08.27.24 +2023.03.03.08.27.46 +2023.03.03.14.22.24 +2023.03.03.14.47.34 +2023.03.03.18.50.53 +2023.03.04 +2023.03.04.06.15.04 +2023.03.04.06.15.24 +2023.03.04.06.16.04 +2023.03.04.06.16.51 +2023.03.04.15.25.23 +2023.03.06.00 +2023.03.1 +2023.03.13 +2023.03.13.00 +2023.03.14 +2023.03.20 +2023.03.20.00 +2023.03.22 +2023.03.26 +2023.03.27.00 +2023.03.28 +2023.03.31 +2023.04.03.00 +2023.04.09 +2023.04.10.00 +2023.04.11 +2023.04.12 +2023.04.15 +2023.04.16 +2023.04.17 +2023.04.18 +2023.04.23 +2023.04.27 +2023.04.30 +2023.5.07 +2023.5.08 +2023.5.22.00 +2023.5.31 +2023.06.08.00 +2023.06.12.00 +2023.1 +2023.1.0 +2023.1.1 +2023.1.12 +2023.1.13 +2023.1.2 +2023.1.20 +2023.1.23 +2023.1.23.0 +2023.1.23.1 +2023.1.26 +2023.1.27 +2023.1.30 +2023.1.4 +2023.1.6 +2023.1.7 +2023.1.8 +2023.1.9 +2023.2 +2023.2.0 +2023.2.1 +2023.2.12 +2023.2.13 +2023.2.15 +2023.2.16 +2023.2.17 +2023.2.18 +2023.2.19 +2023.2.2 +2023.2.20 +2023.2.22 +2023.2.23 +2023.2.27 +2023.2.28 +2023.2.3 +2023.2.4 +2023.2.6 +2023.2.7 +2023.2.8 +2023.3 +2023.3.0 +2023.3.1 +2023.3.10 +2023.3.22 +2023.3.23 +2023.3.3 +2023.4 +2023.4.0 +2023.4.1 +2023.4.13 +2023.4.2 +2023.4.22 +2023.4.3 +2023.5 +2023.5.0 +2023.5.10 +2023.5.4 +2023.5.5 +2023.5.7 +2023.6.0 +2023.6.3 +20230000.0 +20230103.0 +20230104.0 +20230104.20.22.07 +20230105 +20230105.11.22.24 +20230107.0 +20230107.00.58.43 +20230110.0 +20230110.02.32.08 +20230111.01.21.32 +20230111.01.47.5 +20230112.11.17.31 +20230112.14.36.41 +20230112.14.58.24 +20230114.00.43.58 +20230115 +20230115.23.09.51 +20230117.18.11.44 +20230119.17.34.49 +20230122 +20230122.00.08.30 +20230123.14.50.44 +20230123.20.35.32 +20230124.0 +20230125.0 +20230125.09.11.37 +20230125.14.04.35 +20230125.18.20.15 +20230125.2 +20230126.14.36.19 +20230127.19.28.03 +20230131.0 +20230131.21.02.59 +20230131.21.18.28 +20230131.22.17.46 +20230202 +20230203.03.49.03 +20230203.04.20.22 +20230204.13.44.51 +20230205.0 +20230207.0 +20230207.02.57.09 +20230209.0 +20230209.1 +20230210.19.32.53 +20230210.19.34.47 +20230211.15.5.31 +20230214.0 +20230214.13.59.03 +20230214.16.5.46 +20230214.23.55.53 +20230219.18.53.59 +20230221.0 +20230221.21.30.25 +20230222.13.51.41 +20230223.14.46.04 +20230225.21.08.29 +20230227.11.55.15 +20230227.20.19.56 +20230301.0 +20230302.0 +20230302.17.23.45 +20230303.0 +20230304.0 +20230306.0 +20230307.0 +20230311.0 +20230313 +20230314.0 +20230315.0 +20230317.0 +20230319.1 +20230322 +20230329.0 +20230404.0 +20230410.0 +20230411.0 +20230414.0 +20230414.1 +20230415.0 +20230417.0 +20230418.1 +20230422.0 +20230424 +20230425.0 +20230428.0 +20230430.0 +20230502.0 +20230516.0 +2023a +2023b +2023c +203 +204 +205 +205.0.0 +206 +206.0.0 +207 +207.0.0 +208 +208.0.0 +208.0.1 +208.0.2 +209 +209.0.0 +21.0 +21.0.0 +21.0.1 +21.0.2 +21.0.3 +21.01 +21.01.0 +21.02 +21.02.0 +21.03 +21.03.0 +21.03.12 +21.03.16 +21.04 +21.04.0 +21.5 +21.06 +21.06.00 +21.07 +21.08 +21.08.0 +21.08.00 +21.08.01 +21.08.02 +21.09 +21.09.0 +21.1 +21.1.0 +21.1.0.0.0 +21.1.1 +21.1.13.1 +21.1.2 +21.1.3 +21.1.7 +21.10 +21.10.0 +21.10.00 +21.10.01 +21.10.1 +21.10.31 +21.10.6 +21.10b0 +21.11 +21.11.0 +21.11.1 +21.11.13 +21.11.28 +21.11.29 +21.11b0 +21.11b1 +21.12 +21.12.0 +21.12.00 +21.12.1 +21.12.19358 +21.12b0 +21.13.19438 +21.15.19533 +21.16.19610 +21.17.19709 +21.18.19737 +21.19.19792 +21.2 +21.2.0 +21.2.1 +21.2.2 +21.2.3 +21.2.4 +21.2.5 +21.20.19883 +21.21.19914 +21.22.19967 +21.23.20043 +21.24.20098 +21.26.20194 +21.3 +21.3.0 +21.3.1 +21.3.2 +21.3.4 +21.3.4.2 +21.4 +21.4.0 +21.4.1 +21.4.3 +21.4b0 +21.4b2 +21.5 +21.5.0 +21.5b0 +21.5b1 +21.5b2 +21.6 +21.6.0 +21.6.0.0.0 +21.6.1 +21.6.10 +21.6.2 +21.6.3 +21.6.6 +21.7 +21.7.0 +21.7.1 +21.7.22 +21.7b0 +21.8 +21.8.0 +21.8.1 +21.8.22 +21.8b0 +21.9 +21.9.0 +21.9.1 +21.9.2 +21.9.3 +21.9b0 +210 +210.0.0 +211 +211.0.0 +212 +212.0.0 +213 +213.0.0 +214 +214.0.0 +215 +215.0.0 +216 +216.0.0 +217 +217.0.0 +218 +218.0.0 +219 +22.0 +22.0.0 +22.0.1 +22.0.10 +22.0.2 +22.0.3 +22.0.4 +22.0.5 +22.0.6 +22.0.7 +22.0.8 +22.0.9 +22.01 +22.01.0 +22.02 +22.02.00 +22.03 +22.03.0 +22.03.0.40 +22.04 +22.04.0 +22.04.00 +22.04.01 +22.04.1 +22.04.5 +22.5 +22.5.0 +22.5.0.41 +22.5.4 +22.06 +22.06.00 +22.06.01 +22.07 +22.07.0 +22.07.0.11 +22.07.1 +22.07.1.14 +22.08 +22.08.00 +22.09 +22.09.0 +22.09.1 +22.1 +22.1.0 +22.1.0.0 +22.1.0.1 +22.1.0.2 +22.1.0.3 +22.1.0.4 +22.1.0.6 +22.1.0.7 +22.1.0.8 +22.1.0.9 +22.1.1 +22.1.11 +22.1.2 +22.1.4 +22.1.5 +22.10 +22.10.0 +22.10.01 +22.10.1 +22.10.13 +22.10.2 +22.10.25 +22.10.27 +22.10.4 +22.10.6 +22.10.post1 +22.11 +22.11.0 +22.11.0.1 +22.11.0.13 +22.11.1 +22.11.17 +22.12 +22.12.0 +22.12.00 +22.12.06 +22.12.1 +22.12.2 +22.12.6 +22.14.0 +22.16.0 +22.18.0 +22.2 +22.2.0 +22.2.1 +22.2.2 +22.2.3 +22.2.4 +22.2.5 +22.2.6 +22.2.7 +22.2.8 +22.20.0 +22.3 +22.3.0 +22.3.1 +22.3.17 +22.3.2 +22.3.20 +22.3.23 +22.3.3 +22.3.4 +22.3.5 +22.4 +22.4.0 +22.4.1 +22.4.2 +22.4.25 +22.5 +22.5.0 +22.5.1 +22.5.2 +22.6 +22.6.0 +22.6.1 +22.6.2 +22.6.22 +22.6.3 +22.6.4 +22.6.5 +22.7 +22.7.0 +22.7.1 +22.8 +22.8.0 +22.8.1 +22.8.1.0 +22.8.10 +22.8.10.1 +22.8.2 +22.8.20 +22.8.22 +22.8.23 +22.8.25 +22.9 +22.9.0 +22.9.1 +22.9.11 +22.9.23 +22.9.24 +22.9.29 +220 +2206 +2206.0.10 +2208.0.1 +2208.1.0 +2208.1.1 +221 +222 +223 +224 +225 +226 +227 +228 +228.0.0 +229 +23.0 +23.0.0 +23.0.0.0 +23.0.0.1 +23.0.0.2 +23.0.0.3 +23.0.0.4 +23.0.1 +23.0.2 +23.0.3 +23.0.4 +23.01 +23.01.0 +23.02 +23.03 +23.03.0 +23.03.0.20 +23.04 +23.04.0 +23.5 +23.5.0 +23.1 +23.1.0 +23.1.1 +23.1.14 +23.1.17 +23.1.2 +23.1.20 +23.1.21 +23.1.3 +23.1.4 +23.1.5 +23.1.7 +23.11.0 +23.13.1 +23.2 +23.2.0 +23.2.1 +23.2.13 +23.2.3 +23.2.4 +23.2.5 +23.2.6 +23.2.7 +23.3 +23.3.0 +23.3.1 +23.3.2 +23.3.3 +23.3.4 +23.3.4.1 +23.3.4.10 +23.3.4.4 +23.3.4.6 +23.4.0 +23.4.1 +23.5 +23.5.0 +23.5.1 +23.5.26 +23.6.0 +23.7.0 +23.8.2 +23.9.0 +23.9.1 +23.9.3 +230 +231 +231.0.0 +232 +232.0.0 +233 +233.0.0 +234 +234.0.0 +235 +235.0.0 +236 +236.0.0 +237 +237.0.0 +238 +238.0.0 +239.0.0 +24.0 +24.0.0 +24.0.1 +24.0.2 +24.0.3 +24.0.4 +24.0.5 +24.0.6 +24.1 +24.1.1 +24.1.2 +24.1.3 +24.1.4 +24.1.5 +24.1.6 +24.1.7 +24.2 +24.2.0 +24.2.1 +24.2.2 +24.3 +24.3.1 +24.3.2 +24.3.3 +24.3.4 +243.0.0 +244.0.0 +245.0.0 +246.0.0 +247.0.0 +248.0.0 +249 +249.0.0 +25.0 +25.0.0 +25.0.1 +25.0.2 +25.0.3 +25.0.4 +25.1 +25.1.0 +25.1.1 +25.1.2 +25.1.3 +25.1.4 +25.1.5 +25.1.6 +25.2 +25.2.0 +25.2.1 +25.2.2 +25.2.3 +25.3 +25.3.0 +25.3.1 +25.3.2 +25.4.0 +250.0.0 +251 +251.0.0 +252 +252.0.0 +253 +253.0.0 +254.0.0 +255.0.0 +256.0.0 +257.0.0 +258.0.0 +259.0.0 +26.0 +26.0.0 +26.0.1 +26.1 +26.1.0 +26.1.1 +26.2 +26.3 +260.0.0 +261.0.0 +262.0.0 +263.0.0 +264.0.0 +265.0.0 +266.0.0 +267.0.0 +268.0.0 +269.0.0 +27.0 +27.0.0 +27.1 +27.1.0 +27.1.2 +27.2 +27.2.0 +27.3.0 +27.3.1 +270.0.0 +27093 +271.0.0 +272.0.0 +273 +273.0.0 +274.0.0 +274.0.1 +274.2 +276.0.0 +277.0.0 +278.0.0 +279.0.0 +28.0.0 +28.1 +28.2 +28.3.0 +28.4.0 +28.5.0 +28.6.0 +28.6.1 +28.7.0 +28.7.1 +28.8.0 +280.0.0 +281 +281.0.0 +287.0.0 +288.0.0 +289.0.0 +29.0.0 +29.0.1 +29.1.0 +290.0.0 +290.0.1 +291.0.0 +292.0.0 +293.0.0 +294.0.0 +295.0.0 +296.0.0 +296.0.1 +297.0.0 +297.0.1 +298.0.0 +299.0.0 +3 +3.0 +3.0.0 +3.0.0.0 +3.0.0.1 +3.0.0.2 +3.0.0.3 +3.0.0.4 +3.0.0.5 +3.0.0.89 +3.0.0.alpha +3.0.0.post1 +3.0.0.post2 +3.0.0.post3 +3.0.0a3 +3.0.0a4 +3.0.0a5 +3.0.0a6 +3.0.0a7 +3.0.0b1 +3.0.0b2 +3.0.0b2.post2 +3.0.0b3 +3.0.0dev +3.0.0rc1 +3.0.0rc2 +3.0.1 +3.0.1.1 +3.0.1.2 +3.0.1.dev2 +3.0.10 +3.0.11 +3.0.11.23 +3.0.12 +3.0.13 +3.0.14 +3.0.15 +3.0.16 +3.0.1658662267 +3.0.1663074851 +3.0.1663481299 +3.0.17 +3.0.18 +3.0.19 +3.0.2 +3.0.20 +3.0.20181206233650 +3.0.20200317203547 +3.0.20200530110633 +3.0.20200706173533 +3.0.20200710214758 +3.0.20200720165847 +3.0.20200724003302 +3.0.20200807132242 +3.0.20201017180608 +3.0.20201020111341 +3.0.20201026152241 +3.0.20201113183607 +3.0.20201116114821 +3.0.20201117141248 +3.0.20201121085451 +3.0.20201203173111 +3.0.20210124104916 +3.0.20210319143721 +3.0.21 +3.0.21.02.21 +3.0.22 +3.0.23 +3.0.24 +3.0.25 +3.0.26 +3.0.27 +3.0.28 +3.0.29 +3.0.3 +3.0.3.3 +3.0.30 +3.0.31 +3.0.32 +3.0.33 +3.0.34 +3.0.35 +3.0.36 +3.0.37 +3.0.38 +3.0.39 +3.0.4 +3.0.4.322 +3.0.4.5 +3.0.4.6 +3.0.4.7 +3.0.40 +3.0.41 +3.0.44 +3.0.45 +3.0.46 +3.0.47 +3.0.4b +3.0.5 +3.0.5.1 +3.0.5.2 +3.0.6 +3.0.66 +3.0.7 +3.0.8 +3.0.9 +3.0.9.1 +3.0.a3 +3.0.alpha +3.0.b127 +3.00 +3.000 +3.004 +3.007 +3.01 +3.02 +3.030 +3.04 +3.5 +3.5.01 +3.5.02 +3.06 +3.06.1 +3.0609 +3.07 +3.0702 +3.08 +3.0800 +3.09 +3.0_0 +3.0_1 +3.0_10 +3.0_11 +3.0_12 +3.0_13 +3.0_2 +3.0_3 +3.0_4 +3.0_5 +3.0_6 +3.0_7 +3.0_8 +3.0_9 +3.0a1 +3.0a2 +3.0a3 +3.0a8 +3.0b1.post3 +3.0b1.post7 +3.0b1.post8 +3.0b2 +3.0b4 +3.0rc2 +3.0rc4 +3.0rc6 +3.1 +3.1.0 +3.1.0.post1 +3.1.0rc1 +3.1.1 +3.1.1.3 +3.1.1.5 +3.1.1.a0 +3.1.10 +3.1.11 +3.1.12 +3.1.13 +3.1.14 +3.1.14.post0 +3.1.15 +3.1.16 +3.1.1658648837 +3.1.1663062229 +3.1.1663587362 +3.1.17 +3.1.18 +3.1.19 +3.1.19316 +3.1.1a1 +3.1.2 +3.1.2.2 +3.1.2.3 +3.1.2.4 +3.1.2.post0 +3.1.20 +3.1.20170329 +3.1.20190125161400 +3.1.20191231 +3.1.20210616134059 +3.1.20210628163208 +3.1.20210816212154 +3.1.20210922130607 +3.1.20210922203925 +3.1.20211001174446 +3.1.20211004060744 +3.1.20211014180718 +3.1.20211019185001 +3.1.20211020155521 +3.1.20211104071347 +3.1.20211107152837 +3.1.20220119140128 +3.1.20220124184855 +3.1.20220202173120 +3.1.20220204090313 +3.1.20220210171524 +3.1.20220217190813 +3.1.20220217222804 +3.1.20220221074232 +3.1.20220224085855 +3.1.20220406080846 +3.1.20220502060230 +3.1.20220607081835 +3.1.20220623174452 +3.1.20220628170238 +3.1.20220801180230 +3.1.20220802125926 +3.1.20220913185150 +3.1.20221008225030 +3.1.20221018083734 +3.1.20221108205138 +3.1.20221109155812 +3.1.20221201130942 +3.1.20230127121939 +3.1.20230201224320 +3.1.20230209161050 +3.1.20230213100550 +3.1.20230302145532 +3.1.20230325110543 +3.1.20230425144158 +3.1.21 +3.1.22 +3.1.23 +3.1.24 +3.1.25 +3.1.26 +3.1.27 +3.1.28 +3.1.29 +3.1.3 +3.1.30 +3.1.31 +3.1.32 +3.1.33 +3.1.34 +3.1.35 +3.1.36 +3.1.38 +3.1.3b2 +3.1.4 +3.1.4.1 +3.1.4.2 +3.1.403 +3.1.408 +3.1.409 +3.1.41 +3.1.410 +3.1.412 +3.1.413 +3.1.415 +3.1.416 +3.1.417 +3.1.418 +3.1.419 +3.1.420 +3.1.423 +3.1.425 +3.1.426 +3.1.5 +3.1.5.dev10 +3.1.5.dev11 +3.1.5.dev12 +3.1.5.dev13 +3.1.5.dev3 +3.1.5.dev4 +3.1.5.dev5 +3.1.5.dev8 +3.1.5.dev9 +3.1.50 +3.1.6 +3.1.6.1 +3.1.6.2 +3.1.7 +3.1.7.1 +3.1.7.2 +3.1.7.post0 +3.1.8 +3.1.9 +3.1.dev1 +3.1.post0 +3.10 +3.10.0 +3.10.0.0 +3.10.0.1 +3.10.0.2 +3.10.1 +3.10.1.0 +3.10.1.1 +3.10.10 +3.10.11 +3.10.12 +3.10.13 +3.10.14 +3.10.2 +3.10.2.0 +3.10.3 +3.10.3.0 +3.10.4 +3.10.4.0 +3.10.5 +3.10.5.0 +3.10.5.1 +3.10.6 +3.10.6.0 +3.10.7 +3.10.8 +3.10.9 +3.10.dev1 +3.100 +3.11 +3.11.0 +3.11.1 +3.11.10 +3.11.11 +3.11.12 +3.11.13 +3.11.14 +3.11.16 +3.11.2 +3.11.3 +3.11.4 +3.11.5 +3.11.6 +3.11.7 +3.11.8 +3.118.20293 +3.11_6 +3.12 +3.12.0 +3.12.1 +3.12.10 +3.12.11 +3.12.12 +3.12.13 +3.12.2 +3.12.3 +3.12.4 +3.12.5 +3.12.6 +3.12.7 +3.12.8 +3.12.9 +3.125.20293 +3.12_26 +3.13 +3.13.0 +3.13.0.1 +3.13.1 +3.13.10 +3.13.2 +3.13.3 +3.13.4 +3.13.5 +3.13.6 +3.13.7 +3.13.8 +3.13.9 +3.130.20302 +3.135.20303 +3.136.20306 +3.13_12 +3.14 +3.14.0 +3.14.1 +3.14.1.1 +3.14.10 +3.14.11 +3.14.12 +3.14.12.8 +3.14.15 +3.14.16 +3.14.2 +3.14.3 +3.14.4 +3.14.5 +3.14.6 +3.14.7 +3.14.8 +3.14.9 +3.141.0 +3.147.20327 +3.149.20327 +3.14_3 +3.15 +3.15.0 +3.15.0.0 +3.15.0.0+boost170 +3.15.1 +3.15.2 +3.15.3 +3.15.4 +3.15.5 +3.15.6 +3.15.7 +3.15.8 +3.151.20327 +3.15_21 +3.16 +3.16.0 +3.16.1 +3.16.10 +3.16.11 +3.16.12 +3.16.14 +3.16.16 +3.16.2 +3.16.2.r1 +3.16.3 +3.16.4 +3.16.5 +3.16.6 +3.16.7 +3.16.8 +3.16_18 +3.17 +3.17.0 +3.17.1 +3.17.19324 +3.17.2 +3.17.3 +3.17.4 +3.17.5 +3.17.6 +3.17.7 +3.17.7.1 +3.17.7.2 +3.17.8 +3.18 +3.18.0 +3.18.0.0 +3.18.0.1 +3.18.1 +3.18.10 +3.18.11 +3.18.12 +3.18.13 +3.18.14 +3.18.15 +3.18.17 +3.18.19324 +3.18.2 +3.18.3 +3.18.4 +3.18.5 +3.18.7 +3.18.8 +3.18.9 +3.19 +3.19.0 +3.19.1 +3.19.10 +3.19.11 +3.19.12 +3.19.13 +3.19.14 +3.19.15 +3.19.16 +3.19.17 +3.19.18 +3.19.19 +3.19.2 +3.19.20 +3.19.21 +3.19.22 +3.19.3 +3.19.4 +3.19.5 +3.19.6 +3.19.7 +3.19.8 +3.19.9 +3.1_0 +3.1_0.1 +3.1_1 +3.1_11 +3.1_12 +3.1_13 +3.1_131 +3.1_137 +3.1_138 +3.1_139 +3.1_14 +3.1_140 +3.1_141 +3.1_143 +3.1_144 +3.1_145 +3.1_147 +3.1_148 +3.1_149 +3.1_15 +3.1_150 +3.1_151 +3.1_152 +3.1_153 +3.1_155 +3.1_157 +3.1_158 +3.1_159 +3.1_160 +3.1_161 +3.1_162 +3.1_2 +3.1_3 +3.1_35 +3.1_37 +3.1_39 +3.1_4 +3.1_40 +3.1_42 +3.1_43 +3.1_47 +3.1_49 +3.1_5 +3.1_6 +3.1_7 +3.1_8 +3.1_9 +3.2 +3.2.0 +3.2.0.91 +3.2.0.post0 +3.2.0rc2 +3.2.1 +3.2.1.93 +3.2.1.post0 +3.2.10 +3.2.11 +3.2.12 +3.2.13 +3.2.14 +3.2.15 +3.2.16 +3.2.17 +3.2.2 +3.2.2.1 +3.2.2.94 +3.2.2.post1 +3.2.20 +3.2.21 +3.2.25 +3.2.28 +3.2.3 +3.2.3.1 +3.2.3.2 +3.2.3.post0 +3.2.34 +3.2.36 +3.2.39 +3.2.4 +3.2.5 +3.2.6 +3.2.6.2 +3.2.6.4 +3.2.6.post2 +3.2.6a +3.2.7 +3.2.8 +3.2.9 +3.2.post2 +3.2.post3 +3.2.post4 +3.2.post5 +3.2.post6 +3.2.post7 +3.2.post8 +3.2.post9 +3.20 +3.20.0 +3.20.1 +3.20.1.r1 +3.20.2 +3.20.3 +3.20.4 +3.20.4.1 +3.20.4.2 +3.20.4.3 +3.20.4.4 +3.20.4.5 +3.20.4.6 +3.20.5 +3.20.6 +3.2021.12.2 +3.2021.15.2 +3.2021.16.2 +3.2021.18.2 +3.2021.22.2 +3.2021.24.2 +3.2021.25.2 +3.2021.26.2 +3.2021.30.2 +3.2021.31.2 +3.2021.32.2 +3.2021.33.2 +3.2021.34.2 +3.2021.37.2 +3.2021.40.2 +3.2021.41.2 +3.2021.42.2 +3.2021.43.2 +3.2021.45.2 +3.2021.46.2 +3.2021.47.2 +3.2021.49.2 +3.2021.52.2 +3.2022.11.2 +3.2022.12.2 +3.2022.13.2 +3.2022.14.2 +3.2022.15.2 +3.2022.16.2 +3.2022.17.2 +3.2022.19.2 +3.2022.25.2 +3.2022.3.2 +3.2022.30.2 +3.2022.31.2 +3.2022.32.2 +3.2022.33.2 +3.2022.34.2 +3.2022.4.2 +3.2022.40.2 +3.2022.41.2 +3.2022.42.2 +3.2022.44.2 +3.2022.45.2 +3.2022.47.2 +3.2022.50.2 +3.2022.8.2 +3.2022.9.2 +3.2023.1.2 +3.2023.2.2 +3.2023.4.2 +3.2023.5.2 +3.2023.7.2 +3.21 +3.21.0 +3.21.1 +3.21.10 +3.21.11 +3.21.12 +3.21.2 +3.21.3 +3.21.4 +3.21.5 +3.21.6 +3.21.7 +3.21.8 +3.21.9 +3.22 +3.22.0 +3.22.0.r1 +3.22.1 +3.22.11 +3.22.14 +3.22.15 +3.22.16 +3.22.2 +3.22.3 +3.22.4 +3.22.5 +3.22.6 +3.23 +3.23.0 +3.23.0.4 +3.23.1 +3.23.1.r1 +3.23.2 +3.23.3 +3.23.4 +3.23.5 +3.23.6 +3.24 +3.24.0 +3.24.0.r1 +3.24.1 +3.24.14 +3.24.18 +3.24.2 +3.24.20 +3.24.21 +3.24.22 +3.24.23 +3.24.24 +3.24.25 +3.24.26 +3.24.27 +3.24.28 +3.24.29 +3.24.3 +3.24.31 +3.24.32 +3.24.33 +3.24.34 +3.24.35 +3.24.36 +3.24.37 +3.24.38 +3.24.4 +3.24.5 +3.24.6 +3.24.7 +3.24.8 +3.25 +3.25.0 +3.25.1 +3.25.2 +3.25.2.r1 +3.25.3 +3.26 +3.26.0 +3.26.1 +3.26.2 +3.26.3 +3.26.4 +3.27 +3.27.0 +3.27.1 +3.28 +3.28.0 +3.28.0.r1 +3.28.1 +3.28.2 +3.28.3 +3.28.4 +3.28.5 +3.28.6 +3.28.7 +3.29 +3.29.0 +3.29.0.r1 +3.29.1 +3.29.2 +3.29.3 +3.2_0 +3.2_1 +3.2_10 +3.2_11 +3.2_12 +3.2_13 +3.2_2 +3.2_3 +3.2_4 +3.2_7 +3.2_8 +3.2_9 +3.2a +3.2rc1 +3.3 +3.3.0 +3.3.0.1 +3.3.0.2 +3.3.0.23 +3.3.0.4 +3.3.0a69 +3.3.0a70 +3.3.1 +3.3.1.1 +3.3.10 +3.3.108 +3.3.11 +3.3.111 +3.3.112 +3.3.113 +3.3.115 +3.3.12 +3.3.13 +3.3.14 +3.3.15 +3.3.16 +3.3.17 +3.3.18 +3.3.19 +3.3.2 +3.3.2.post1 +3.3.20 +3.3.21 +3.3.22 +3.3.23 +3.3.23.1 +3.3.23.2 +3.3.24 +3.3.25 +3.3.26 +3.3.27 +3.3.28 +3.3.29 +3.3.3 +3.3.3.1 +3.3.3.2 +3.3.30 +3.3.31 +3.3.3333 +3.3.4 +3.3.4000 +3.3.5 +3.3.5.1 +3.3.6 +3.3.7 +3.3.7.1 +3.3.8 +3.3.9 +3.3.90.1 +3.3.90.2 +3.3.90.3 +3.3.90.4 +3.3.904 +3.3.dev2 +3.3.post0 +3.3.post2 +3.3.post3 +3.30 +3.30.0 +3.30.0.4 +3.30.0.5 +3.30.0.6 +3.30.0.7 +3.30.1 +3.30.1.1 +3.30.1.2 +3.30.1.3 +3.30.1.r1 +3.30.2 +3.30.3 +3.30.4 +3.30.5 +3.300 +3.31 +3.31.0 +3.31.1 +3.31.20024 +3.32.0 +3.32.0.1 +3.32.0.2 +3.32.0.3 +3.32.0.4 +3.32.0.5 +3.32.1 +3.32.1.1 +3.32.1.2 +3.32.1.3 +3.32.1.4 +3.32.1.5 +3.32.1.6 +3.32.1.7 +3.32.2 +3.32.2.r1 +3.32.20026 +3.32.20028 +3.32.3 +3.32_1 +3.33.0 +3.33.0.r1 +3.33.1 +3.34 +3.34.0 +3.34.0.1 +3.34.0.3 +3.34.0.6 +3.34.0.r1 +3.34.1 +3.34.2 +3.34.3 +3.35 +3.35.0 +3.35.0.2 +3.35.2 +3.35.3 +3.35.4 +3.35.5 +3.35_1 +3.36 +3.36.0 +3.36.0.1 +3.36.0.2 +3.36.0.3 +3.36.0.4 +3.36.0.r1 +3.36.1 +3.36.1.1 +3.36.1.2 +3.36.1.3 +3.36.1.4 +3.36.1.5 +3.36.2 +3.36.3 +3.37 +3.37.0 +3.37.0.r1 +3.37.1 +3.37.3 +3.38.0 +3.38.0.1 +3.38.0.2 +3.38.0.3 +3.38.0.4 +3.38.1 +3.38.2 +3.38.3 +3.38.4 +3.38.5 +3.38.9 +3.39 +3.39.0 +3.39.1 +3.39.2 +3.39.2.0 +3.39.2.1 +3.39.3 +3.39.4 +3.39.4.0 +3.3_0 +3.3_1 +3.3_13 +3.3_2 +3.3_3 +3.3_6 +3.3_7 +3.3a +3.3b1 +3.3b2 +3.3b3 +3.3b4 +3.3rc2 +3.4 +3.4.0 +3.4.0.0 +3.4.0.3 +3.4.0.95 +3.4.1 +3.4.1.0 +3.4.10 +3.4.11 +3.4.12 +3.4.13 +3.4.14 +3.4.15 +3.4.16 +3.4.17 +3.4.18 +3.4.19 +3.4.2 +3.4.2.1 +3.4.2.2 +3.4.2.3 +3.4.2.4 +3.4.2.5 +3.4.3 +3.4.4 +3.4.5 +3.4.6 +3.4.7 +3.4.7.1 +3.4.7.2 +3.4.8 +3.4.9 +3.4.post0 +3.4.post1 +3.4.post2 +3.4.post3 +3.4.post4 +3.4.post5 +3.4.post6 +3.4.rc2 +3.40.0 +3.40.0.1 +3.40.1 +3.40.2 +3.40.3 +3.41.0 +3.41.2 +3.410 +3.42 +3.42.0 +3.42.1 +3.42.2 +3.420 +3.43 +3.43.0 +3.43.1 +3.43.2 +3.430 +3.44 +3.44.0 +3.44.1 +3.44.23 +3.44.24 +3.44.26 +3.44.3 +3.44.4 +3.45 +3.45.0 +3.45.1 +3.45.2 +3.45.20031 +3.45.3 +3.45.5 +3.46 +3.46.0 +3.46.1 +3.47 +3.47.0 +3.47.1 +3.47.2 +3.47.20042 +3.47.3 +3.470 +3.48.0 +3.48.1 +3.48_01 +3.49.0 +3.49.1 +3.4_0 +3.4_10 +3.4_13 +3.4_3 +3.4_5 +3.4_6 +3.4_8 +3.5 +3.5.0 +3.5.0.0 +3.5.0.1 +3.5.0.2 +3.5.0.3 +3.5.0.4 +3.5.0b2 +3.5.0rc2 +3.5.1 +3.5.1.1 +3.5.10 +3.5.11 +3.5.12 +3.5.13 +3.5.14 +3.5.15 +3.5.16 +3.5.17 +3.5.18 +3.5.19 +3.5.2 +3.5.20 +3.5.21 +3.5.22 +3.5.23 +3.5.24 +3.5.25 +3.5.26 +3.5.28 +3.5.3 +3.5.3.0 +3.5.31 +3.5.32 +3.5.4 +3.5.42 +3.5.44 +3.5.45 +3.5.46 +3.5.47 +3.5.49 +3.5.5 +3.5.50 +3.5.51 +3.5.52 +3.5.53 +3.5.54 +3.5.55 +3.5.56 +3.5.57 +3.5.58 +3.5.59 +3.5.6 +3.5.60 +3.5.63 +3.5.65 +3.5.66 +3.5.67 +3.5.68 +3.5.7 +3.5.8 +3.5.9 +3.5.post0 +3.5.post1 +3.5.post2 +3.5.rc1 +3.50.0 +3.50.1 +3.50.2 +3.51.0 +3.51.1 +3.51.2 +3.51.20059 +3.51.3 +3.51.4 +3.52 +3.52.0 +3.52.1 +3.53.0 +3.53.1 +3.54.0 +3.55 +3.55.0 +3.55.1 +3.55.2 +3.55.3 +3.55.4 +3.55.6 +3.56 +3.56.0 +3.56.3 +3.56.5 +3.56.6 +3.56.7 +3.56.8 +3.56.9 +3.57 +3.57.0 +3.58 +3.58.0 +3.59 +3.59.0 +3.59.1 +3.5_0 +3.5_11 +3.5_15 +3.5_2 +3.5_21 +3.5_3 +3.5_5 +3.6 +3.6.0 +3.6.0.0 +3.6.01 +3.6.0a3 +3.6.0a4 +3.6.0b1 +3.6.0b2 +3.6.0b3 +3.6.0b4 +3.6.0rc1 +3.6.1 +3.6.10 +3.6.11 +3.6.12 +3.6.13 +3.6.14 +3.6.15 +3.6.16 +3.6.17 +3.6.18 +3.6.19 +3.6.2 +3.6.2.0 +3.6.2.1 +3.6.2.2 +3.6.20 +3.6.23 +3.6.24 +3.6.29 +3.6.3 +3.6.3.0 +3.6.30 +3.6.32 +3.6.33 +3.6.34 +3.6.35 +3.6.36 +3.6.37 +3.6.38 +3.6.39 +3.6.4 +3.6.4.0 +3.6.41 +3.6.42 +3.6.43 +3.6.5 +3.6.6 +3.6.7 +3.6.8 +3.6.9 +3.60 +3.60.0 +3.60.1 +3.61 +3.61.0 +3.62 +3.62.0 +3.63 +3.63.0 +3.64 +3.64.0 +3.64.1 +3.64.2 +3.65 +3.65.0 +3.66 +3.66.0 +3.66.1 +3.66.11 +3.66.12 +3.66.14 +3.66.2 +3.66.24 +3.66.29 +3.66.31 +3.66.32 +3.66.4 +3.66.5 +3.66.6 +3.66.8 +3.66.9 +3.67 +3.67.0 +3.67.1 +3.68.0 +3.68.1 +3.68.2 +3.69 +3.69.0 +3.69.1 +3.69.11 +3.69.12 +3.69.2 +3.6_1 +3.6_13 +3.6_14 +3.6_20 +3.6_6 +3.7 +3.7.0 +3.7.0.1 +3.7.0.8 +3.7.00 +3.7.01 +3.7.1 +3.7.10 +3.7.11 +3.7.12 +3.7.13 +3.7.14 +3.7.15 +3.7.16 +3.7.17 +3.7.19 +3.7.2 +3.7.20 +3.7.22 +3.7.28 +3.7.3 +3.7.4 +3.7.4.1 +3.7.4.2 +3.7.4.3 +3.7.4.post0 +3.7.5 +3.7.5.1 +3.7.6 +3.7.6.0 +3.7.7 +3.7.7.0 +3.7.7.1 +3.7.8 +3.7.8.2 +3.7.9 +3.70.0 +3.70.20151 +3.70.3 +3.70.4 +3.71 +3.71.0 +3.71.1 +3.71.10 +3.71.20168 +3.71.3 +3.71.6 +3.71.7 +3.71.8 +3.71.9 +3.72 +3.72.0 +3.73 +3.73.0 +3.73.1 +3.73.2 +3.73.3 +3.73.4 +3.74 +3.74.0 +3.74.1 +3.74.2 +3.74.3 +3.75 +3.75.0 +3.75.3 +3.75.4 +3.76 +3.76.0 +3.77 +3.77.0 +3.78 +3.78.0 +3.79.0 +3.79.2 +3.79.3 +3.7_3 +3.7_4 +3.7_5 +3.7_6 +3.7_7 +3.7_8 +3.8 +3.8.0 +3.8.0.0 +3.8.1 +3.8.1.0 +3.8.1.0+boost170 +3.8.1.post1 +3.8.10 +3.8.11 +3.8.12 +3.8.13 +3.8.14 +3.8.15 +3.8.16 +3.8.17 +3.8.18 +3.8.19 +3.8.2 +3.8.2.0 +3.8.3 +3.8.3.0 +3.8.3.1 +3.8.4 +3.8.4.0 +3.8.5 +3.8.5.0 +3.8.6 +3.8.7 +3.8.8 +3.8.9 +3.80 +3.80.0 +3.81 +3.81.0 +3.82 +3.82.0 +3.82.1 +3.82.3 +3.82.4 +3.82.5 +3.82.6 +3.83 +3.83.0 +3.83.1 +3.83.2 +3.84.0 +3.84.1 +3.84.2 +3.84.3 +3.84.4 +3.84.5 +3.84.6 +3.85.0 +3.85.1 +3.85.2 +3.85.3 +3.86.0 +3.86.3 +3.86.4 +3.86.5 +3.86.7 +3.86.8 +3.86.9 +3.87.0 +3.87.20218 +3.88 +3.88.0 +3.88.1 +3.88.2 +3.88.3 +3.89 +3.89.0 +3.89.20246 +3.8_1 +3.8_2 +3.8_3 +3.9 +3.9.0 +3.9.0.0 +3.9.0.post1 +3.9.1 +3.9.1.0 +3.9.1.1 +3.9.1.post1 +3.9.10 +3.9.11 +3.9.12 +3.9.13 +3.9.14 +3.9.15 +3.9.16 +3.9.18 +3.9.19 +3.9.2 +3.9.2.0 +3.9.2.1 +3.9.2.2 +3.9.20 +3.9.21 +3.9.23 +3.9.24 +3.9.25 +3.9.26 +3.9.27 +3.9.29 +3.9.3 +3.9.3.0 +3.9.30 +3.9.33 +3.9.34 +3.9.35 +3.9.36 +3.9.39 +3.9.3_1 +3.9.3_2 +3.9.4 +3.9.4.0 +3.9.43 +3.9.5 +3.9.5.0 +3.9.6 +3.9.6.0 +3.9.7 +3.9.7.0 +3.9.8 +3.9.8.0 +3.9.9 +3.90 +3.90.0 +3.901 +3.93.20259 +3.98_1.11 +3.98_1.16 +3.98_1.19 +3.98_1.20 +3.98_1.6 +3.99_0.10 +3.99_0.11 +3.99_0.12 +3.99_0.13 +3.99_0.14 +3.99_0.3 +3.99_0.5 +3.99_0.6 +3.99_0.7 +3.99_0.8 +3.99_0.9 +3.9_0 +3.9_3 +30 +30.1.2 +30.2.0 +30.3.0 +30.3.1 +300 +301 +3012.100 +302 +302.0.0 +303 +303.0.0 +304 +304.0.0 +3042.102 +3042.80.1 +3042.80.2 +3042.83.2 +3042.89 +3042.89.1 +3042.89.2 +3043.102 +305.0.0 +306.0.0 +3062.100 +307.0.0 +308.0.0 +309.0.0 +31 +31.0.0 +31.0.1 +31.2.0 +310.0.0 +311.0.0 +312.0.0 +313.0.0 +313.0.1 +314.0.0 +315.0.0 +316.0.0 +317.0.0 +318.0.0 +319.0.0 +32 +32.0.0 +32.0.1 +32.1.0 +32.3.0 +32.3.1 +320.0.0 +321.0.0 +322.0.0 +323 +323.0.0 +324 +324.0.0 +325 +325.0.0 +326.0.0 +327.0.0 +328.0.0 +329.0.0 +33.1.0 +33.1.1 +33.4.0 +330 +330.0.0 +331 +331.0.0 +332.0.0 +333.0.0 +334.0.0 +335.0.0 +336.0.0 +337.0.0 +338.0.0 +339.0.0 +34.0 +340.0.0 +341.0.0 +342.0.0 +343.0.0 +344.0.0 +346.0.0 +347.0.0 +348.0.0 +349.0.0 +35.0 +35.0.0 +35.7.6 +35.7.7 +35.7.8 +35.8.0 +35.8.1 +35.8.3 +35.8.4 +35.9.0 +350.0.0 +351.0.0 +352.0.0 +353.0.0 +354.0.0 +355.0.0 +356.0.0 +357.0.0 +358.0.0 +359.0.0 +36 +36.0 +36.0.0 +36.0.1 +36.0.2 +36.2.0 +36.2.2 +36.3.0 +36.6.0 +36.7.2 +360.0.0 +361.0.0 +362.0.0 +363.0.0 +364.0.0 +365.0.0 +365.0.1 +366.0.0 +367.0.0 +368.0.0 +369.0.0 +37 +37.0 +37.0.0 +37.0.1 +37.0.2 +37.0.3 +37.0.4 +37.1 +37.10 +37.17 +37.2 +37.3 +37.52 +37.62 +370.0.0 +371.0.0 +372.0.0 +374.0.0 +375.0.0 +376.0.0 +377.0.0 +378.0.0 +379.0.0 +38 +38.0.0 +38.0.1 +38.0.2 +38.0.3 +38.0.4 +38.06 +38.16 +38.18 +38.2.3 +38.2.4 +38.4.0 +38.5.1 +38.5.2 +38.6.0 +380.0.0 +381.0.0 +382.0.0 +383.0.0 +383.0.1 +384.0.0 +384.0.1 +385.0.0 +386.0.0 +387.0.0 +388.0.0 +389.0.0 +39.0.0 +39.0.1 +39.0.2 +39.1.0 +39.2.0 +390.0.0 +391.0.0 +392.0.0 +393.0.0 +394.0.0 +395.0.0 +396.0.0 +397.0.0 +398.0.0 +399.0.0 +3_6 +4 +4.0 +4.0.0 +4.0.0.0 +4.0.0.1 +4.0.0.2 +4.0.0.99 +4.0.0.post0 +4.0.0.post1 +4.0.0.post2 +4.0.00 +4.0.01 +4.0.0a0 +4.0.0b1 +4.0.0b2 +4.0.0b3 +4.0.0b4 +4.0.0b5 +4.0.0b6 +4.0.1 +4.0.1.2 +4.0.1.post1 +4.0.10 +4.0.10.0 +4.0.11 +4.0.11.0 +4.0.12 +4.0.12.0 +4.0.13 +4.0.14 +4.0.15 +4.0.15.1 +4.0.15.2 +4.0.16 +4.0.17 +4.0.18 +4.0.19 +4.0.2 +4.0.20 +4.0.20190130225346 +4.0.21 +4.0.23 +4.0.24 +4.0.25 +4.0.26 +4.0.27 +4.0.28 +4.0.29.7 +4.0.3 +4.0.3.0 +4.0.30 +4.0.30.25 +4.0.30.43 +4.0.30.44 +4.0.30.45 +4.0.31 +4.0.32 +4.0.34 +4.0.35 +4.0.38 +4.0.39 +4.0.4 +4.0.5 +4.0.5.2 +4.0.6 +4.0.6.0 +4.0.7 +4.0.7.0 +4.0.7.post2 +4.0.8 +4.0.8.1 +4.0.9 +4.0.9.0 +4.0.beta1 +4.007 +4.019 +4.02 +4.028 +4.03 +4.034 +4.04 +4.5 +4.06 +4.06.1 +4.07 +4.08 +4.09 +4.0_0 +4.0_06Jun17 +4.0_1 +4.0_2 +4.0_3 +4.0rc1.post2 +4.1 +4.1.0 +4.1.0.0 +4.1.0.1 +4.1.0.2 +4.1.0.3 +4.1.0.4 +4.1.0.5 +4.1.0.6 +4.1.0.dev0 +4.1.0.p3 +4.1.0.post1 +4.1.1 +4.1.1.0 +4.1.1.p2 +4.1.1.post0 +4.1.10 +4.1.11 +4.1.12 +4.1.13 +4.1.14 +4.1.15 +4.1.16 +4.1.17 +4.1.18 +4.1.19 +4.1.2 +4.1.2.0 +4.1.2.p1 +4.1.2.post0 +4.1.20 +4.1.20190227145202 +4.1.20190305210046 +4.1.20329 +4.1.21 +4.1.22 +4.1.23 +4.1.2351.a80a8b8 +4.1.3 +4.1.3.0 +4.1.3.1 +4.1.4 +4.1.4.0 +4.1.4.1 +4.1.5 +4.1.5.0 +4.1.6 +4.1.6.0 +4.1.7 +4.1.7.0 +4.1.8 +4.1.8.0 +4.1.8.1 +4.1.9 +4.1.9.0 +4.1.95 +4.10 +4.10.0 +4.10.0.112 +4.10.1 +4.10.10 +4.10.11 +4.10.12 +4.10.2 +4.10.21011 +4.10.3 +4.10.4 +4.10.5 +4.10.50 +4.10.6 +4.10.7 +4.10_0 +4.10_1 +4.10_2 +4.10_4 +4.10_8 +4.11 +4.11.0 +4.11.1 +4.11.12 +4.11.2 +4.11.21016 +4.11.3 +4.11.4 +4.11.5 +4.11.6 +4.11.7 +4.11.8 +4.11.9 +4.11_0 +4.12 +4.12.0 +4.12.0.113 +4.12.1 +4.12.2 +4.12.3 +4.12.4 +4.12.5 +4.12.6 +4.12.7 +4.12.9 +4.12_0 +4.13 +4.13.0 +4.13.1 +4.13.2 +4.13.3 +4.13_0 +4.13_19 +4.13_20 +4.13_22 +4.13_23 +4.13_24 +4.13_25 +4.14 +4.14.0 +4.14.0.115 +4.14.1 +4.14.2 +4.14.21026 +4.14.3 +4.14.5 +4.14.6 +4.14_0 +4.15 +4.15.0 +4.15.1 +4.15.2 +4.15.21026 +4.15_0 +4.15_1 +4.16 +4.16.0 +4.16.0.116 +4.16.1 +4.16.1.117 +4.16.2 +4.16.3 +4.16.6 +4.16.8 +4.161950 +4.16_0 +4.16_1 +4.16_2 +4.17 +4.17.0 +4.17.0.1 +4.17.0.2 +4.17.0.4 +4.17.0.5 +4.17.0.6 +4.17.1 +4.17.11 +4.17.13 +4.17.14 +4.17.15 +4.17.2 +4.17.21027 +4.17.3 +4.17.3.6 +4.17.3.7 +4.17.3.8 +4.17.4 +4.17.4.0 +4.17.4.5 +4.17.4.6 +4.17.4.7 +4.17.4.8 +4.17.4.9 +4.17.5 +4.17.5.0 +4.17.5.1 +4.17.5.2 +4.17.5.3 +4.17_0 +4.18 +4.18.0 +4.18.0.118 +4.18.1 +4.18.2 +4.18.21031 +4.18.3 +4.18.4 +4.18.7 +4.18_0 +4.18_1 +4.18_2 +4.19 +4.19.0 +4.19.1 +4.19.13 +4.19.18 +4.19.2 +4.19.20 +4.19.21059 +4.19.22 +4.19.23 +4.19.24 +4.19.25 +4.19.3 +4.19.4 +4.19.5 +4.19.6 +4.19.7 +4.19.8 +4.19.9 +4.19_0 +4.19_1 +4.19_2 +4.1_0 +4.1_1 +4.1_10 +4.1_13 +4.1_15 +4.1_2 +4.1_21Jan17.6cc.jar +4.1_4 +4.1_7 +4.1_8 +4.1_9 +4.1l +4.2 +4.2.0 +4.2.0.0 +4.2.0.1 +4.2.0.100 +4.2.0.2 +4.2.0.p3 +4.2.0.post0 +4.2.0.post1 +4.2.1 +4.2.1.0 +4.2.1.p3 +4.2.10 +4.2.11 +4.2.11.1 +4.2.12 +4.2.13 +4.2.14 +4.2.15 +4.2.2 +4.2.2.0 +4.2.2.1 +4.2.2.2 +4.2.2.3 +4.2.20340 +4.2.3 +4.2.3.0 +4.2.4 +4.2.4.0 +4.2.4.1 +4.2.5 +4.2.5.0 +4.2.5.1 +4.2.5.2 +4.2.6 +4.2.6.0 +4.2.6.1 +4.2.7 +4.2.8 +4.2.9 +4.20 +4.20.0 +4.20.0.120 +4.20.1 +4.20.1.121 +4.20.21059 +4.201720 +4.21.0 +4.21.0.0 +4.21.0.1 +4.21.0.2 +4.21.0.3 +4.21.0.4 +4.21.0.5 +4.21.0.6 +4.21.0.7 +4.21.1 +4.21.10 +4.21.11 +4.21.12 +4.21.2 +4.21.21059 +4.21.3 +4.21.4 +4.21.5 +4.21.6 +4.21.7 +4.21.8 +4.21.9 +4.218 +4.22 +4.22.0 +4.22.0.0 +4.22.1 +4.22.2 +4.22.21108 +4.22.3 +4.22.5 +4.220 +4.222 +4.224 +4.226 +4.228 +4.23 +4.23.0 +4.23.1 +4.23.2 +4.23.21108 +4.23.3 +4.23.4 +4.23.5 +4.23.6 +4.23.7 +4.23.8 +4.23.9 +4.24 +4.24.0 +4.24.1 +4.24.2 +4.24.3 +4.24.4 +4.24.5 +4.24.6 +4.25 +4.25.0 +4.25.1 +4.25.2 +4.26 +4.26.0 +4.26.1 +4.26.3 +4.26.4 +4.27 +4.27.0 +4.27.1 +4.27.2 +4.27.3 +4.27.4 +4.28 +4.28.0 +4.28.1 +4.28.2 +4.28.3 +4.28.4 +4.28.5 +4.29 +4.29.0 +4.29.1 +4.29.2 +4.2_0 +4.2_1 +4.2_16 +4.2_2 +4.2_23 +4.2_3 +4.2_30 +4.2_4 +4.2_5 +4.2_8 +4.3 +4.3.0 +4.3.0.0 +4.3.0.post1 +4.3.042 +4.3.0a +4.3.1 +4.3.1.post1 +4.3.10 +4.3.11 +4.3.11377 +4.3.12 +4.3.13 +4.3.14 +4.3.15 +4.3.16 +4.3.17 +4.3.18 +4.3.19 +4.3.1t +4.3.2 +4.3.20 +4.3.20340 +4.3.21 +4.3.21.1 +4.3.21.2 +4.3.21.3 +4.3.21.4 +4.3.21.5 +4.3.21.6 +4.3.21.7 +4.3.22 +4.3.23 +4.3.24 +4.3.27 +4.3.29 +4.3.3 +4.3.31 +4.3.32 +4.3.33 +4.3.34 +4.3.4 +4.3.4.post0 +4.3.5 +4.3.6 +4.3.7 +4.3.8 +4.3.9 +4.3.post1 +4.30 +4.30.0 +4.30.4 +4.30.5 +4.30.6 +4.30.7 +4.30.8 +4.31 +4.31.0 +4.31.1 +4.31.2 +4.32 +4.32.0 +4.32.1 +4.32.2 +4.32.3 +4.33 +4.33.0 +4.33.1 +4.33.2 +4.33.3 +4.34.0 +4.34.1 +4.34.2 +4.34.3 +4.34.4 +4.35 +4.35.0 +4.35.16 +4.35.6 +4.36.0 +4.36.1 +4.36.2 +4.37.0 +4.37.1 +4.37.2 +4.37.3 +4.37.4 +4.38.0 +4.38.1 +4.38.3 +4.39.0 +4.39.1 +4.39.2 +4.39.3 +4.39.4 +4.3_0 +4.3_1 +4.4 +4.4.0 +4.4.0.0 +4.4.0.103 +4.4.0.3 +4.4.0.4 +4.4.0.5 +4.4.0.6 +4.4.0rc1 +4.4.1 +4.4.1.1 +4.4.1.104 +4.4.10 +4.4.11 +4.4.12 +4.4.13 +4.4.14 +4.4.15 +4.4.16 +4.4.17 +4.4.18 +4.4.19 +4.4.2 +4.4.20 +4.4.21 +4.4.22 +4.4.23 +4.4.28 +4.4.3 +4.4.31 +4.4.32 +4.4.33 +4.4.4 +4.4.5 +4.4.6 +4.4.7 +4.4.8 +4.4.9 +4.4.97 +4.40.0 +4.40.1 +4.40.2 +4.40.21126 +4.40.8 +4.41.0 +4.41.1 +4.41.2 +4.41.21142 +4.41.3 +4.42.0 +4.42.1 +4.42.10 +4.42.3 +4.42.4 +4.42.5 +4.42.6 +4.42.7 +4.42.8 +4.43 +4.43.0 +4.43.1 +4.43.2 +4.43.3 +4.43.4 +4.43.5 +4.43.6 +4.43.8 +4.43.9 +4.44.0 +4.44.1 +4.44.2 +4.44.3 +4.44.4 +4.45.0 +4.46.0 +4.46.1 +4.47.0 +4.47.1 +4.47.2 +4.47.3 +4.47.4 +4.47.5 +4.48.0 +4.48.1 +4.48.2 +4.49 +4.49.0 +4.4_0 +4.4_1 +4.4_2 +4.4_20160413 +4.4_20160526 +4.5 +4.5.0 +4.5.0.post +4.5.1 +4.5.1.0 +4.5.1.1 +4.5.1.2 +4.5.1.3 +4.5.1.4 +4.5.10 +4.5.11 +4.5.12 +4.5.13 +4.5.19 +4.5.2 +4.5.20190815125611 +4.5.20190906201758 +4.5.20191017101802 +4.5.20191023134839 +4.5.20191229160203 +4.5.20343 +4.5.3 +4.5.3.1 +4.5.33 +4.5.36 +4.5.4 +4.5.5 +4.5.6 +4.5.7 +4.5.8 +4.5.9 +4.50 +4.50.0 +4.50.1 +4.50.2 +4.50.3 +4.50.4 +4.50.6 +4.50.7 +4.50.8 +4.51 +4.51.0 +4.52 +4.52.0 +4.53 +4.53.0 +4.53.1 +4.53.2 +4.53.3 +4.54 +4.54.0 +4.54.1 +4.54.2 +4.55 +4.55.0 +4.55.1 +4.55.2 +4.55.3 +4.55.4 +4.56 +4.56.0 +4.56.1 +4.56.2 +4.56.3 +4.57 +4.57.0 +4.57.1 +4.58 +4.58.0 +4.59 +4.59.0 +4.5_0 +4.5_15 +4.5covid19 +4.6 +4.6.0 +4.6.0.106 +4.6.1 +4.6.10 +4.6.11 +4.6.12 +4.6.13 +4.6.14 +4.6.15 +4.6.2 +4.6.2.6 +4.6.3 +4.6.4 +4.6.5 +4.6.6 +4.6.7 +4.6.8 +4.6.9 +4.60 +4.60.0 +4.60.1 +4.60.2 +4.60.3 +4.60.4 +4.61 +4.61.0 +4.61.1 +4.61.2 +4.62 +4.62.0 +4.62.1 +4.62.2 +4.62.3 +4.63 +4.63.0 +4.63.1 +4.63.2 +4.64 +4.64.0 +4.64.1 +4.65 +4.65.0 +4.65.1 +4.65.2 +4.66 +4.66.0 +4.67 +4.67.0 +4.68 +4.68.0 +4.69.0 +4.69.1 +4.6_0 +4.6_12 +4.6_14 +4.6_2 +4.6_3 +4.6_4.1 +4.7 +4.7.0 +4.7.0.post1 +4.7.1 +4.7.1.1 +4.7.10 +4.7.11 +4.7.12 +4.7.15 +4.7.16 +4.7.17 +4.7.18 +4.7.19 +4.7.2 +4.7.21002 +4.7.3 +4.7.4 +4.7.5 +4.7.6 +4.7.7 +4.7.8 +4.7.9 +4.70 +4.71 +4.72 +4.73 +4.74 +4.75 +4.76 +4.77 +4.78 +4.79 +4.7_0 +4.7_1 +4.7_1.1 +4.7_2 +4.8 +4.8.0 +4.8.0.110 +4.8.1 +4.8.1.0 +4.8.10 +4.8.2 +4.8.27 +4.8.28 +4.8.29 +4.8.3 +4.8.4 +4.8.5 +4.8.6 +4.8.7 +4.80 +4.81 +4.82 +4.89 +4.8_0 +4.8_1 +4.9 +4.9.0 +4.9.1 +4.9.2 +4.9.2.1 +4.9.2.2 +4.9.21002 +4.9.2_1 +4.9.3 +4.9.3_1 +4.9.4 +4.9.4.1 +4.9.5 +4.9.6 +4.9.7 +4.9.8 +4.9.9 +4.9_1 +4.9_10 +4.9_11 +4.9_2 +4.9_3 +4.9_4 +4.9_5 +4.9_6 +4.9_7 +4.9_9 +40 +40.0 +40.0.0 +40.0.1 +40.0.2 +40.1 +40.1.1 +40.2.0 +40.4.0 +40.4.3 +40.5.0 +40.6.0 +40.6.1 +40.6.2 +40.6.3 +40.7.0 +40.7.1 +40.7.3 +40.8.0 +40.9.0 +400.0.0 +401.0.0 +402.0.0 +4021.104 +4021.105 +4021.106 +4021.107 +4021.83 +4021.86 +4021.87 +4021.88 +4021.92 +4021.93 +4022.108 +4022.89 +4022.94 +403.0.0 +404.0.0 +405.0.0 +405.0.1 +406.0.0 +407.0.0 +408.0.1 +409.0.0 +409.12 +41 +41.0 +41.0.0 +41.0.1 +41.2.0 +41.4.0 +41.5.1 +41.6.0 +410.0.0 +411.0.0 +412.0.0 +413.0.0 +415.0.0 +416.0.0 +417.0.0 +417.0.1 +418.0.0 +419.0.0 +42 +42.0.0 +42.0.1 +42.0.2 +420.0.0 +421.0.0 +422.0.0 +423.0.0 +424.0.0 +425.0.0 +426.0.0 +427.0.0 +428.0.0 +429.0.0 +43 +43.0 +430.0.0 +431.0.0 +44 +44.0.0 +45 +45.0.0 +45.1 +45.1.0 +45.2.0 +45.3.0 +450.3 +46 +46.0.0 +46.1 +46.1.1 +46.1.3 +46.2.0 +46.3.0 +46.3.1 +46.4.0 +47 +47.0.0 +47.1.0 +47.1.1 +47.2.0 +47.3.0 +47.3.1 +47.3.2 +48 +48.0.0 +481 +49 +49.1.0 +49.1.1 +49.1.2 +49.1.3 +49.2.0 +49.2.1 +49.3.0 +49.3.1 +49.3.2 +49.4.0 +49.5.0 +49.6.0 +499.a107cef +4_10 +4_11 +4_12 +4_13 +4_14 +4_6 +4_9 +5 +5.0 +5.0.0 +5.0.0.0 +5.0.0.1 +5.0.0.124 +5.0.0.2 +5.0.0.2173 +5.0.0.3 +5.0.0.4 +5.0.0.4509.2e5a9a2 +5.0.0.4592.90b8472 +5.0.0.4634.697f757 +5.0.0.4636.2595836 +5.0.0.4636.c0ad18a +5.0.0.5 +5.0.0.post1 +5.0.011 +5.0.018 +5.0.1 +5.0.1.125 +5.0.10 +5.0.100 +5.0.11 +5.0.12 +5.0.13 +5.0.14 +5.0.15 +5.0.16 +5.0.17 +5.0.19 +5.0.2 +5.0.2.126 +5.0.201 +5.0.202 +5.0.20200105154004 +5.0.20200122085940 +5.0.20200126033820 +5.0.20200220195218 +5.0.20200302192450 +5.0.20200416112825 +5.0.203 +5.0.225 +5.0.229 +5.0.3 +5.0.3.0 +5.0.3.1 +5.0.301 +5.0.4 +5.0.4.1 +5.0.4.2 +5.0.4.post1 +5.0.4.post36 +5.0.400 +5.0.401 +5.0.403 +5.0.404 +5.0.405 +5.0.406 +5.0.407 +5.0.408 +5.0.5 +5.0.5.1 +5.0.5.2 +5.0.6 +5.0.6rc1 +5.0.7 +5.0.8 +5.0.88 +5.0.9 +5.002 +5.004 +5.006 +5.008 +5.01 +5.07 +5.0_0 +5.0_1 +5.0_2 +5.1 +5.1.0 +5.1.0.1 +5.1.0.17 +5.1.0b4 +5.1.1 +5.1.1.post0 +5.1.10 +5.1.10.0 +5.1.10.1 +5.1.15 +5.1.16 +5.1.2 +5.1.2.0 +5.1.3 +5.1.3.0 +5.1.4 +5.1.48 +5.1.5 +5.1.5.0 +5.1.5.1 +5.1.6 +5.1.7 +5.1.7.0 +5.1.8 +5.1.8.0 +5.1.8.1 +5.1.8.2 +5.1.8.3 +5.1.9 +5.10 +5.10.0 +5.10.0.138 +5.10.1 +5.10.2 +5.10.3 +5.10.4 +5.10.5 +5.100.0 +5.101.0 +5.102.0 +5.103.0 +5.104.0 +5.105.0 +5.106.0 +5.11 +5.11.0 +5.11.1 +5.11.2 +5.11.3 +5.11.4 +5.11.5 +5.12 +5.12.0 +5.12.0.140 +5.12.1 +5.12.1.141 +5.12.10 +5.12.11 +5.12.13 +5.12.15 +5.12.16 +5.12.18 +5.12.19 +5.12.2 +5.12.23 +5.12.24 +5.12.25 +5.12.3 +5.12.4 +5.12.5 +5.12.6 +5.12.8 +5.12.9 +5.127 +5.128 +5.129 +5.13 +5.13.0 +5.13.1 +5.13.10 +5.13.11 +5.13.13 +5.13.14 +5.13.15 +5.13.16 +5.13.17 +5.13.18 +5.13.2 +5.13.3 +5.13.6 +5.13.8 +5.13.9 +5.133 +5.14 +5.14.0 +5.14.0.142 +5.14.0.177 +5.14.1 +5.14.1.144 +5.14.2 +5.14.3 +5.14.4 +5.14.5 +5.14.7 +5.14.8 +5.15 +5.15.0 +5.15.1 +5.15.2 +5.15.3 +5.15.4 +5.15.5 +5.15.6 +5.15.6.0 +5.15.7 +5.15.8 +5.15.9 +5.16 +5.16.0 +5.16.0.145 +5.16.1 +5.16.1.146 +5.16.2 +5.16.2.147 +5.16.3 +5.16.5 +5.17 +5.17.0 +5.17.1 +5.17.2 +5.17.21182 +5.17.3 +5.17.4 +5.18 +5.18.0 +5.18.0.148 +5.18.1 +5.18.2 +5.18.3 +5.18.4 +5.19 +5.19.0 +5.19.1 +5.19.12 +5.19.13 +5.19.14 +5.19.16 +5.19.2 +5.19.3 +5.19.4 +5.19.5 +5.19.6 +5.19.7 +5.19.8 +5.19.9 +5.1_0 +5.1_1 +5.1_2 +5.1_24Aug19.3e8 +5.1_3.1 +5.1_4 +5.1_5 +5.1_6 +5.1_7 +5.1d +5.2 +5.2.0 +5.2.0.127 +5.2.0.post0 +5.2.1 +5.2.1.129 +5.2.1.post0 +5.2.10.49 +5.2.12 +5.2.15 +5.2.1_10 +5.2.1_12 +5.2.1_13 +5.2.1_14 +5.2.1_15 +5.2.1_18 +5.2.1_20 +5.2.1_22 +5.2.1_23 +5.2.1_7 +5.2.1rc0 +5.2.2 +5.2.2.130 +5.2.2.post1 +5.2.3 +5.2.3.131 +5.2.4 +5.2.40 +5.2.5 +5.2.6 +5.2.7 +5.2.8 +5.20 +5.20.0 +5.20.0.149 +5.20.1 +5.20.1.150 +5.20.2 +5.20.3 +5.20.3.1 +5.20.5 +5.20.6 +5.20190524 +5.20220120 +5.20220220 +5.20220313 +5.20220320 +5.20220420 +5.20220527 +5.20220620 +5.21 +5.21.0 +5.21.1 +5.212 +5.22.0 +5.22.0.1 +5.22.0.151 +5.22.1 +5.22.1.152 +5.22.2.1 +5.22.21182 +5.22.3 +5.22.5 +5.23.0 +5.23.1 +5.23.10 +5.23.11 +5.23.12 +5.23.2 +5.23.21182 +5.23.3 +5.23.4 +5.23.5 +5.23.6 +5.23.7 +5.23.8 +5.23.9 +5.24.0 +5.24.0.153 +5.24.1 +5.24.2 +5.24.3 +5.24.4 +5.25 +5.25.0 +5.25.1 +5.26.0 +5.26.1 +5.26.2 +5.26.2.1 +5.26.3 +5.27.0 +5.27.1 +5.27.4 +5.28.0 +5.29.0 +5.29.2 +5.29.3 +5.29.5 +5.29.6 +5.29.7 +5.29.8 +5.2_0 +5.2_21Apr21.304 +5.3 +5.3.0 +5.3.0.0 +5.3.0.1 +5.3.0.2 +5.3.0.3 +5.3.0.4 +5.3.1 +5.3.11 +5.3.2 +5.3.21 +5.3.28 +5.3.3 +5.3.4 +5.3.5 +5.3.6 +5.3.8 +5.30 +5.30.0 +5.30.1 +5.30.2 +5.30.3 +5.30.3.1 +5.31.0 +5.31.1 +5.31.4 +5.32 +5.32.0 +5.32.0.1 +5.32.1 +5.32.1.1 +5.32.2 +5.32.5 +5.33 +5.33.0 +5.33.3 +5.33.9 +5.34.0 +5.34.36 +5.34.38 +5.35 +5.35.0 +5.36 +5.36.0 +5.37 +5.37.0 +5.37.1 +5.37.3 +5.37.4 +5.37.5 +5.38 +5.38.0 +5.38.1 +5.39 +5.39.0 +5.3_1 +5.3_2 +5.3_4 +5.4 +5.4.0 +5.4.0.132 +5.4.1 +5.4.1.134 +5.4.10 +5.4.10_1.2.0 +5.4.10_1.3.0 +5.4.11 +5.4.12 +5.4.2 +5.4.3 +5.4.4 +5.4.5 +5.4.6 +5.4.7 +5.4.8 +5.4.9 +5.40 +5.40.0 +5.40.1 +5.41 +5.41.0 +5.41.1 +5.41.2 +5.41.3 +5.41.4 +5.41.5 +5.42.0 +5.42.1 +5.42.2 +5.42.3 +5.43.0 +5.43.1 +5.43.2 +5.43.3 +5.43.4 +5.43.5 +5.43.6 +5.43.7 +5.43.8 +5.43.9 +5.44.0 +5.44.21241 +5.45.0 +5.45.4 +5.46.0 +5.47.0 +5.48.0 +5.49.0 +5.4_1 +5.4_10 +5.4_12 +5.4_3 +5.5 +5.5.0 +5.5.1 +5.5.10 +5.5.1016 +5.5.1068 +5.5.11 +5.5.12 +5.5.13 +5.5.14 +5.5.15 +5.5.2 +5.5.2.0_17 +5.5.2.0_17.1 +5.5.2.0_17.4 +5.5.2.0_17.6 +5.5.2.0_17.7 +5.5.2.0_17.8 +5.5.2.0_17.9 +5.5.2.5 +5.5.3 +5.5.4 +5.5.5 +5.5.6 +5.5.7 +5.5.8 +5.5.9 +5.5.985 +5.5.992 +5.5004 +5.506 +5.508 +5.51 +5.52 +5.52.0 +5.54 +5.55 +5.55.0 +5.57.21262 +5.5_0 +5.6 +5.6.0 +5.6.0.0 +5.6.0.135 +5.6.0a1 +5.6.1 +5.6.13 +5.6.13.1 +5.6.13.2 +5.6.13.3 +5.6.15 +5.6.16 +5.6.17 +5.6.18 +5.6.2 +5.6.2_2.0.0 +5.6.2_2.1.0 +5.6.2_2.2.0 +5.6.3 +5.6.4 +5.6.5 +5.6.6 +5.6.7 +5.6.8 +5.6.9 +5.64.0 +5.64.1 +5.65.0 +5.66.0 +5.661 +5.67.0 +5.68.0 +5.69.0 +5.6_1 +5.6_2 +5.7 +5.7.0 +5.7.0.0 +5.7.0.1 +5.7.0.dev20210429 +5.7.0rc2 +5.7.1 +5.7.10 +5.7.11 +5.7.2 +5.7.20 +5.7.28 +5.7.3 +5.7.4 +5.7.5 +5.7.6 +5.7.7 +5.7.8 +5.7.9 +5.70 +5.70.0 +5.70.1 +5.71.0 +5.72 +5.72.0 +5.73 +5.73.0 +5.74 +5.74.0 +5.74.1 +5.75 +5.75.0 +5.76.0 +5.77.0 +5.79.0 +5.7_1 +5.8 +5.8.0 +5.8.0.136 +5.8.0rc1 +5.8.0rc2 +5.8.0rc3 +5.8.1 +5.8.2 +5.8.3 +5.8.4 +5.8.5 +5.8.6 +5.8.7 +5.80.0 +5.81.0 +5.82 +5.82.0 +5.83 +5.83.0 +5.84.0 +5.85 +5.85.0 +5.86 +5.86.0 +5.87.0 +5.88 +5.88.0 +5.89.0 +5.891 +5.9 +5.9.0 +5.9.0a1 +5.9.0rc2 +5.9.1 +5.9.2 +5.9.20201122.0 +5.9.20201206.0 +5.9.20201213.0 +5.9.20201220.0 +5.9.20201227.0 +5.9.20210103.0 +5.9.20210110.0 +5.9.20210117.0 +5.9.20210124.0 +5.9.20210131.0 +5.9.20210207.0 +5.9.20210214.0 +5.9.20210221.0 +5.9.20210228.0 +5.9.20210307.0 +5.9.20210314.0 +5.9.20210321.0 +5.9.20210328.0 +5.9.20210404.0 +5.9.20210411.0 +5.9.20210418.0 +5.9.20210425.0 +5.9.20210502.0 +5.9.20210509.0 +5.9.20210516.0 +5.9.20210523.0 +5.9.20210530.0 +5.9.20210606.0 +5.9.20210613.0 +5.9.20210620.0 +5.9.20210627.0 +5.9.20210704.0 +5.9.20210711.0 +5.9.20210718.0 +5.9.20210725.0 +5.9.20210801.0 +5.9.20210808.0 +5.9.20210815.0 +5.9.20210822.0 +5.9.20210829.0 +5.9.20210905.0 +5.9.20210912.0 +5.9.20210919.0 +5.9.20210926.0 +5.9.20211003.0 +5.9.20211010.0 +5.9.20211017.0 +5.9.20211031.0 +5.9.20211107.0 +5.9.20211114.0 +5.9.20211121.0 +5.9.20211128.0 +5.9.20211205.0 +5.9.20211212.0 +5.9.20211219.0 +5.9.20211226.0 +5.9.20220102.0 +5.9.20220109.0 +5.9.20220116.0 +5.9.20220123.0 +5.9.20220130.0 +5.9.20220206.0 +5.9.20220213.0 +5.9.20220220.0 +5.9.20220227.0 +5.9.20220306.0 +5.9.20220313.0 +5.9.20220320.0 +5.9.20220327.0 +5.9.20220403.0 +5.9.20220410.0 +5.9.20220417.0 +5.9.20220424.0 +5.9.20220501.0 +5.9.20220508.0 +5.9.20220515.0 +5.9.20220522.0 +5.9.20220529.0 +5.9.20220605.0 +5.9.20220612.0 +5.9.20220619.0 +5.9.20220626.0 +5.9.20220703.0 +5.9.20220710.0 +5.9.20220717.0 +5.9.20220724.0 +5.9.20220731.0 +5.9.20220807.0 +5.9.20220814.0 +5.9.20220821.0 +5.9.20220828.0 +5.9.20220904.0 +5.9.20220918.0 +5.9.20220925.0 +5.9.20221002.0 +5.9.20221009.0 +5.9.20221023.0 +5.9.20221030.0 +5.9.20221106.0 +5.9.20221113.0 +5.9.20221120.0 +5.9.20221127.0 +5.9.20221204.0 +5.9.3 +5.9.4 +5.9.5 +5.9.5.1 +5.9.5.2 +5.9.5.3 +5.9.5.4 +5.9.5.5 +5.9.5.6 +5.9.6 +5.9.7 +5.9.8 +5.90.0 +5.911 +5.93 +5.94 +5.94.0 +5.941 +5.95 +5.95.0 +5.96.0 +5.97.0 +5.98.0 +5.99.0 +5.992 +5.9_0.3 +50 +51 +52 +52.1 +52.2 +52.3 +52.4 +52.5 +53 +53.1 +53.2 +53.3 +53.4 +530 +533.63 +54 +54.0 +54.1 +54.2 +54.3 +540.66 +55 +55.0 +56 +56.0 +56.1 +57 +57.0 +57.0.0 +57.0.1 +57.0.2 +57.1 +57.2 +57.4.0 +57.4.1 +57.4.10 +57.4.11 +57.4.12 +57.4.13 +57.4.14 +57.4.15 +57.4.16 +57.4.17 +57.4.18 +57.4.2 +57.4.3 +57.4.4 +57.4.5 +57.4.6 +57.4.7 +57.4.8 +57.4.9 +58 +58.0 +58.0.2 +58.0.3 +58.0.4 +58.1 +58.2 +58.2.0 +58.3.0 +58.4.0 +58.5.2 +58.5.3 +59.0.1 +59.1.0 +59.1.1 +59.2.0 +59.4.0 +59.5.0 +59.6.0 +59.7.0 +59.8.0 +6 +6.0 +6.0.0 +6.0.0.0 +6.0.0.1 +6.0.0.post1 +6.0.1 +6.0.1.155 +6.0.10 +6.0.100 +6.0.101 +6.0.102 +6.0.11 +6.0.12 +6.0.12.1 +6.0.12.2 +6.0.12.3 +6.0.12.4 +6.0.12.5 +6.0.12.6 +6.0.12.7 +6.0.12.8 +6.0.13 +6.0.14 +6.0.16 +6.0.1_10 +6.0.1_11 +6.0.1_3 +6.0.1_6 +6.0.1_7 +6.0.1_8 +6.0.1_9 +6.0.2 +6.0.201 +6.0.20160220 +6.0.202 +6.0.20200523200656 +6.0.20200601095207 +6.0.20221218.0 +6.0.20221225.0 +6.0.20230101.0 +6.0.20230108.0 +6.0.20230115.0 +6.0.20230122.0 +6.0.20230129.0 +6.0.20230205.0 +6.0.20230212.0 +6.0.20230219.0 +6.0.20230226.0 +6.0.20230305.0 +6.0.20230312.0 +6.0.20230319.0 +6.0.20230326.0 +6.0.20230409.0 +6.0.20230416.0 +6.0.20230423.0 +6.0.20230430.0 +6.0.20230507.0 +6.0.20230514.0 +6.0.3 +6.0.300 +6.0.301 +6.0.4 +6.0.401 +6.0.403 +6.0.405 +6.0.408 +6.0.5 +6.0.6 +6.0.7 +6.0.8 +6.0.9 +6.01 +6.02 +6.04 +6.5 +6.06 +6.07 +6.08 +6.09 +6.0_0 +6.0_1 +6.0_2 +6.0_3 +6.0_5 +6.0_76 +6.0_78 +6.0_79 +6.0_80 +6.0_81 +6.0_82 +6.0_84 +6.0_85 +6.0_86 +6.0_88 +6.0_89 +6.0_90 +6.0_91 +6.0_92 +6.0_93 +6.0_94 +6.0rc2 +6.1 +6.1.0 +6.1.0.1 +6.1.0.post1 +6.1.1 +6.1.10 +6.1.11 +6.1.12 +6.1.13 +6.1.14 +6.1.15 +6.1.16 +6.1.2 +6.1.26 +6.1.3 +6.1.3.0 +6.1.4 +6.1.4.0 +6.1.5 +6.1.6 +6.1.7 +6.1.8 +6.1.9 +6.10 +6.10.0 +6.10.0.165 +6.10.1 +6.10.2 +6.10.3 +6.11 +6.11.0 +6.11.1 +6.12 +6.12.0 +6.12.0.90 +6.12.1 +6.12.2 +6.12.3 +6.13 +6.13.0 +6.13.1 +6.13.10 +6.13.11 +6.13.12 +6.13.13 +6.13.14 +6.13.2 +6.13.3 +6.13.4 +6.13.5 +6.13.6 +6.13.7 +6.13.8 +6.13.9 +6.14 +6.14.0 +6.14.06 +6.14.1 +6.14.2 +6.14.3 +6.14.4 +6.14.5 +6.14.6 +6.14.7 +6.14.8 +6.14.9 +6.15 +6.15.0 +6.15.1 +6.15.2 +6.15.2.9 +6.15.3 +6.15.5 +6.16.0 +6.16.00 +6.16.1 +6.16.2 +6.16.3 +6.17.0 +6.17.1 +6.17.2 +6.17.26 +6.17.3 +6.17.4 +6.18 +6.18.0 +6.18.0.0 +6.18.00 +6.18.04 +6.18.1 +6.18.10 +6.18.11 +6.18.12 +6.18.2 +6.18.2.1 +6.18.2.2 +6.18.2.3 +6.18.2.4 +6.18.2.5 +6.18.2.6 +6.18.2.7 +6.18.3 +6.18.4 +6.18.5 +6.18.9 +6.19 +6.19.0 +6.19.1 +6.19.2 +6.19.3 +6.19.4 +6.1_0 +6.1_1 +6.2 +6.2.0 +6.2.0.156 +6.2.1 +6.2.1.0 +6.2.10 +6.2.11 +6.2.12 +6.2.13 +6.2.14 +6.2.1550507116 +6.2.1629922860 +6.2.1802 +6.2.1804 +6.2.1808 +6.2.2 +6.2.2004 +6.2.2005 +6.2.2006 +6.2.21303 +6.2.3 +6.2.3.0 +6.2.32 +6.2.4 +6.2.4.0 +6.2.5 +6.2.5.0 +6.2.6 +6.2.7 +6.2.8 +6.2.9 +6.20.0 +6.20.00 +6.20.1 +6.20.2 +6.20.4 +6.20.4.1 +6.20.6 +6.20180316 +6.20180626 +6.20180807 +6.20180913 +6.20180926 +6.21.0 +6.21.1 +6.21.14 +6.21.2 +6.21.3 +6.21.4 +6.21.5 +6.21.6 +6.21.7 +6.21.8 +6.22 +6.22.0 +6.22.02 +6.22.03 +6.22.04 +6.22.06 +6.22.1 +6.22.10 +6.22.11 +6.22.12 +6.22.14 +6.22.15 +6.22.16 +6.22.17 +6.22.18 +6.22.19 +6.22.2 +6.22.20 +6.22.21 +6.22.6 +6.22.8 +6.22.9 +6.23.0 +6.23.00 +6.23.01 +6.23.02 +6.23.1 +6.23.2 +6.23.3 +6.23.4 +6.230.22310 +6.24.0 +6.24.00 +6.24.01 +6.24.02 +6.24.03 +6.24.04 +6.24.5 +6.24.07 +6.24.1 +6.24.10 +6.24.2 +6.24.3 +6.24.4 +6.24.5 +6.24.6 +6.24.8 +6.24.9 +6.25.0 +6.25.1 +6.25.2 +6.25.3 +6.26.0 +6.26.1 +6.26.10 +6.26.2 +6.26.4 +6.26.6 +6.26.8 +6.265.22338 +6.27.0 +6.27.1 +6.27.2 +6.27.3 +6.28 +6.28.0 +6.28.1 +6.29.0 +6.29.2 +6.29.3 +6.29.5 +6.2_0 +6.2_1 +6.3 +6.3.0 +6.3.008 +6.3.1 +6.3.2 +6.3.200715.1200940 +6.3.210714.1191517 +6.3.210831.1135705 +6.3.210914.1223714 +6.3.210915.1185521 +6.3.211001.1111810 +6.3.3 +6.3.4 +6.3.5 +6.3.6 +6.3.7 +6.3.8 +6.3.9 +6.30.0 +6.30.1 +6.31.0 +6.31.1 +6.31.2 +6.31.3 +6.31.4 +6.31.5 +6.31.6 +6.32.0 +6.32.1 +6.33.0 +6.33.1 +6.34.0 +6.34.1 +6.34.2 +6.35.0 +6.35.1 +6.35.2 +6.35.3 +6.35.4 +6.35.5 +6.36 +6.36.0 +6.36.1 +6.36.2 +6.37.0 +6.37.1 +6.37.2 +6.38.0 +6.38.1 +6.39 +6.39.0 +6.39.1 +6.39.2 +6.39.3 +6.39.4 +6.39.5 +6.39.6 +6.3_0 +6.4 +6.4.0 +6.4.0.157 +6.4.1 +6.4.1.158 +6.4.10 +6.4.11 +6.4.12 +6.4.2 +6.4.2.159 +6.4.2.99 +6.4.211028.1233218 +6.4.211221.1165422 +6.4.3 +6.4.3.160 +6.4.3.4 +6.4.4 +6.4.4.161 +6.4.5 +6.4.6 +6.4.7 +6.4.8 +6.4.9 +6.40.0 +6.40.1 +6.40.2 +6.40.3 +6.41.0 +6.42.0 +6.42.2 +6.42.3 +6.43.0 +6.43.1 +6.43.2 +6.43.3 +6.44.0 +6.44.1 +6.44.2 +6.45.0 +6.45.1 +6.45.2 +6.45.3 +6.45.4 +6.46.0 +6.46.1 +6.46.10 +6.46.11 +6.46.2 +6.46.3 +6.46.5 +6.46.6 +6.46.7 +6.46.8 +6.46.9 +6.47.0 +6.47.1 +6.47.2 +6.47.3 +6.47.4 +6.47.5 +6.48.0 +6.48.1 +6.48.2 +6.48.3 +6.49 +6.49.0 +6.49.1 +6.4_0 +6.4_1 +6.5 +6.5.0 +6.5.1 +6.5.11 +6.5.12 +6.5.13 +6.5.14 +6.5.15 +6.5.18 +6.5.2 +6.5.221019.1152644 +6.5.3 +6.5.4 +6.5.5 +6.5.95 +6.50.0 +6.50.1 +6.51.0 +6.51.1 +6.52 +6.52.0 +6.52.1 +6.52.2 +6.52.3 +6.52.4 +6.53 +6.53.0 +6.54.0 +6.54.1 +6.54.2 +6.54.3 +6.54.4 +6.54.5 +6.54.6 +6.55.0 +6.56.0 +6.56.1 +6.56.2 +6.56.3 +6.56.4 +6.57 +6.57.0 +6.57.1 +6.58.0 +6.58.1 +6.58.2 +6.59.0 +6.59.1 +6.5_0 +6.6 +6.6.0 +6.6.0.162 +6.6.1 +6.6.2 +6.6.3 +6.6.4 +6.60 +6.60.0 +6.60.1 +6.61 +6.61.0 +6.61.1 +6.61.2 +6.61.3 +6.62 +6.62.0 +6.62.1 +6.63 +6.63.0 +6.63.1 +6.63.2 +6.64 +6.64.0 +6.65 +6.65.0 +6.65.1 +6.65.2 +6.66 +6.66.0 +6.66.1 +6.66.2 +6.67 +6.67.0 +6.67.1 +6.68.0 +6.68.1 +6.68.2 +6.69 +6.69.1 +6.6_0 +6.7 +6.7.0 +6.7.0.post2 +6.7.1 +6.7.1.2018.12 +6.7.2 +6.7.3 +6.7.4 +6.7.5 +6.7.6 +6.7.7 +6.7.8 +6.7.9 +6.70 +6.71 +6.72 +6.73 +6.74 +6.75 +6.76 +6.77 +6.78 +6.79 +6.7_0 +6.8 +6.8.0 +6.8.0.163 +6.8.1 +6.8.1.164 +6.8.12 +6.8.2 +6.8.3 +6.8.4 +6.8.5 +6.8.6 +6.8.7 +6.8.8 +6.8.9 +6.80 +6.81 +6.82 +6.86 +6.88 +6.9 +6.9.0 +6.9.1 +6.9.2 +6.9.3 +6.9.4 +6.9.5 +6.9.6 +6.9.7 +6.9.7.1 +6.9.8 +60 +60.0.3 +60.0.4 +60.0.5 +60.1.0 +60.1.1 +60.10.0 +60.2 +60.2.0 +60.3.1 +60.5.0 +60.6.0 +60.7.0 +60.7.1 +60.8.1 +60.8.2 +60.9.0 +60.9.1 +60.9.2 +60.9.3 +609 +61 +61.0.0 +61.1.0 +61.1.1 +61.2.0 +61.3.0 +61.3.1 +62 +62.0.0 +62.1.0 +62.2.0 +62.3.1 +62.3.2 +62.3.3 +62.3.4 +62.5.0 +62.6.0 +62.6.1 +63 +63.1.0 +63.2.0 +63.2.1 +63.2.2 +63.2.3 +63.3.0 +63.4.0 +63.4.1 +63.4.2 +63.4.3 +64 +64.0.0 +64.0.1 +64.0.2 +64.0.3 +64.2 +65 +65.0.0 +65.0.1 +65.0.2 +65.1.0 +65.1.1 +65.2.0 +65.3.0 +65.4.0 +65.4.0.0 +65.4.1 +65.5.0 +65.5.0.0 +65.5.0.1 +65.5.0.2 +65.5.0.3 +65.5.1 +65.6.0.0 +65.6.0.1 +65.6.0.2 +65.6.0.3 +65.6.3 +65.7.0.0 +65.7.0.1 +65.7.0.3 +65.7.0.4 +66 +66.0.0 +66.1.0 +66.1.1 +67 +67.1 +67.1.0 +67.1.0.0 +67.1.0.1 +67.1.0.2 +67.2.0.0 +67.2.0.1 +67.3.0.0 +67.3.0.1 +67.3.0.2 +67.3.1 +67.3.2 +67.3.3 +67.4.0 +67.4.0.0 +67.4.0.1 +67.4.0.2 +67.4.0.3 +68 +68.0.2 +68.1 +68.11.0esr +68.12.0esr +68.2 +68.4.1esr +68.4.2esr +68.5.0esr +68.6.0esr +68.6.1esr +68.7.0esr +68.8.0esr +68.9.0esr +69 +69.0.3 +69.1 +7 +7.0 +7.0.0 +7.0.0.0 +7.0.0.1 +7.0.0.166 +7.0.1 +7.0.1.0 +7.0.1.dev +7.0.10 +7.0.100 +7.0.102 +7.0.10_0 +7.0.10_10 +7.0.10_11 +7.0.10_12 +7.0.10_13 +7.0.10_14 +7.0.10_15 +7.0.10_16 +7.0.10_17 +7.0.10_18 +7.0.10_19 +7.0.10_2 +7.0.10_20 +7.0.10_21 +7.0.10_22 +7.0.10_23 +7.0.10_24 +7.0.10_25 +7.0.10_26 +7.0.10_27 +7.0.10_28 +7.0.10_3 +7.0.10_4 +7.0.10_5 +7.0.10_59 +7.0.10_6 +7.0.10_60 +7.0.10_61 +7.0.10_62 +7.0.10_8 +7.0.10_9 +7.0.11 +7.0.11_0 +7.0.11_1 +7.0.11_11 +7.0.11_12 +7.0.11_13 +7.0.11_14 +7.0.11_2 +7.0.11_3 +7.0.11_4 +7.0.11_5 +7.0.11_6 +7.0.11_7 +7.0.11_8 +7.0.11_9 +7.0.161 +7.0.19 +7.0.2 +7.0.2.0 +7.0.2.99.0.0 +7.0.20 +7.0.20200612160654 +7.0.20200811075006 +7.0.20201119201711 +7.0.21 +7.0.22 +7.0.24 +7.0.3 +7.0.3.0 +7.0.3.1 +7.0.3.99.0.0 +7.0.3.99.1.0 +7.0.3.99.2.0 +7.0.3.99.4.0 +7.0.31 +7.0.32 +7.0.36 +7.0.4 +7.0.4.0 +7.0.4.99.1.2 +7.0.5 +7.0.5.0 +7.0.6 +7.0.6.1 +7.0.6.99.1.0 +7.0.6.99.2.0 +7.0.7 +7.0.7.0 +7.0.7.99.0.0 +7.0.7_39 +7.0.8 +7.0.8.1 +7.0.8.2 +7.0.8_0 +7.0.8_1 +7.0.8_10 +7.0.8_11 +7.0.8_13 +7.0.8_14 +7.0.8_15 +7.0.8_16 +7.0.8_19 +7.0.8_2 +7.0.8_20 +7.0.8_22 +7.0.8_23 +7.0.8_24 +7.0.8_27 +7.0.8_3 +7.0.8_34 +7.0.8_35 +7.0.8_36 +7.0.8_38 +7.0.8_39 +7.0.8_4 +7.0.8_40 +7.0.8_41 +7.0.8_42 +7.0.8_43 +7.0.8_44 +7.0.8_46 +7.0.8_47 +7.0.8_48 +7.0.8_49 +7.0.8_5 +7.0.8_50 +7.0.8_51 +7.0.8_52 +7.0.8_53 +7.0.8_54 +7.0.8_56 +7.0.8_58 +7.0.8_59 +7.0.8_6 +7.0.8_60 +7.0.8_61 +7.0.8_62 +7.0.8_63 +7.0.8_64 +7.0.8_65 +7.0.8_67 +7.0.8_68 +7.0.8_7 +7.0.8_8 +7.0.9 +7.0.9_0 +7.0.9_1 +7.0.9_10 +7.0.9_12 +7.0.9_13 +7.0.9_14 +7.0.9_15 +7.0.9_16 +7.0.9_17 +7.0.9_18 +7.0.9_19 +7.0.9_2 +7.0.9_20 +7.0.9_21 +7.0.9_22 +7.0.9_23 +7.0.9_24 +7.0.9_25 +7.0.9_26 +7.0.9_27 +7.0.9_6 +7.0.9_7 +7.07 +7.0_1 +7.1 +7.1.0 +7.1.0.0 +7.1.0.1 +7.1.0.43 +7.1.0_0 +7.1.0_1 +7.1.0_10 +7.1.0_11 +7.1.0_12 +7.1.0_13 +7.1.0_14 +7.1.0_15 +7.1.0_16 +7.1.0_18 +7.1.0_19 +7.1.0_2 +7.1.0_20 +7.1.0_21 +7.1.0_22 +7.1.0_23 +7.1.0_24 +7.1.0_25 +7.1.0_26 +7.1.0_27 +7.1.0_28 +7.1.0_29 +7.1.0_3 +7.1.0_30 +7.1.0_31 +7.1.0_32 +7.1.0_33 +7.1.0_34 +7.1.0_35 +7.1.0_36 +7.1.0_37 +7.1.0_38 +7.1.0_39 +7.1.0_4 +7.1.0_40 +7.1.0_41 +7.1.0_44 +7.1.0_45 +7.1.0_46 +7.1.0_47 +7.1.0_48 +7.1.0_49 +7.1.0_5 +7.1.0_50 +7.1.0_52 +7.1.0_53 +7.1.0_54 +7.1.0_55 +7.1.0_56 +7.1.0_57 +7.1.0_58 +7.1.0_59 +7.1.0_6 +7.1.0_60 +7.1.0_61 +7.1.0_62 +7.1.0_7 +7.1.0_8 +7.1.0_9 +7.1.0b +7.1.0r +7.1.1 +7.1.1.0 +7.1.10 +7.1.11 +7.1.12 +7.1.13 +7.1.14 +7.1.1_0 +7.1.1_1 +7.1.1_2 +7.1.1_3 +7.1.1_4 +7.1.1_5 +7.1.1_6 +7.1.1_7 +7.1.1_8 +7.1.1_9 +7.1.1b +7.1.2 +7.1.20210316164414 +7.1.20210518142926 +7.1.20210611090601 +7.1.26 +7.1.3 +7.1.3condapatch +7.1.4 +7.1.5 +7.1.6 +7.1.7 +7.1.8 +7.1.9 +7.10 +7.10.0 +7.10.0.175 +7.10.0b1 +7.10.1 +7.10.1b1 +7.10.2 +7.109.22021 +7.11 +7.11.0 +7.11.1 +7.11.10 +7.11.2 +7.11.3 +7.11.4 +7.11.5 +7.11.6 +7.11.7 +7.11.8 +7.11.9 +7.111.22021 +7.114.22021 +7.12 +7.12.0 +7.12.0.176 +7.12.1 +7.12.2 +7.12.3 +7.12.4 +7.12.5 +7.12.6 +7.12.7 +7.125.22022 +7.126.22022 +7.13 +7.13.0 +7.13.0b1 +7.13.1 +7.13.2 +7.13.3 +7.13.4 +7.13.5 +7.132.22039 +7.14 +7.14.0 +7.14.0.177 +7.14.0b1 +7.14.1 +7.14.1b1 +7.14.2 +7.142.22057 +7.147.22086 +7.148.22086 +7.149.22086 +7.15 +7.15.0 +7.15.1 +7.15.2 +7.15.3 +7.15.4 +7.15.5 +7.158.22119 +7.16 +7.16.0 +7.16.0.178 +7.16.1 +7.16.2 +7.16.3 +7.16.4 +7.163.22119 +7.168.22121 +7.169.22121 +7.17 +7.17.0 +7.17.1 +7.17.6 +7.18.0 +7.18.1 +7.18.2 +7.187.22201 +7.19.0 +7.19.1 +7.1p2 +7.2 +7.2.0 +7.2.0.0 +7.2.1 +7.2.1.168 +7.2.10 +7.2.11 +7.2.12 +7.2.13 +7.2.14 +7.2.15 +7.2.16 +7.2.2 +7.2.2.169 +7.2.20 +7.2.21 +7.2.22 +7.2.23 +7.2.24 +7.2.25 +7.2.3 +7.2.3.170 +7.2.30 +7.2.4 +7.2.4.171 +7.2.5 +7.2.5.1 +7.2.6 +7.2.6.1 +7.2.7 +7.2.8 +7.2.9 +7.2.d +7.20.0 +7.20181031 +7.20181105 +7.20181211 +7.20190219 +7.20190322 +7.20190503 +7.20190507 +7.20190626 +7.20190708 +7.20190730 +7.20190819 +7.20190912 +7.20191009 +7.20191017 +7.20191024 +7.20191106 +7.20191114 +7.20191230 +7.20200202.7 +7.20200204 +7.20200219 +7.20200226 +7.20200309 +7.21.0 +7.213.22307 +7.217.22307 +7.22.0 +7.23.0 +7.23.1 +7.230.22310 +7.238.22316 +7.24.0 +7.24.1 +7.24.3 +7.25.0 +7.25.1 +7.251.22317 +7.252.22317 +7.26.0 +7.26.1 +7.26.2 +7.26.3 +7.265.22338 +7.27.0 +7.27.1 +7.28.0 +7.29.0 +7.29.4 +7.298.22349 +7.3 +7.3.0 +7.3.0.0 +7.3.0.2 +7.3.1 +7.3.10 +7.3.11 +7.3.12 +7.3.13 +7.3.14 +7.3.15 +7.3.16 +7.3.17 +7.3.18 +7.3.19 +7.3.2 +7.3.2.0 +7.3.20 +7.3.21 +7.3.21313 +7.3.22 +7.3.23 +7.3.24 +7.3.26 +7.3.27 +7.3.28 +7.3.29 +7.3.3 +7.3.3.0 +7.3.30 +7.3.31 +7.3.32 +7.3.33 +7.3.4 +7.3.5 +7.3.6 +7.3.7 +7.3.8 +7.3.9 +7.30.1 +7.31.0 +7.31.1 +7.310.22362 +7.32.0 +7.33.0 +7.330.23004 +7.352.0 +7.36 +7.37 +7.38 +7.39 +7.3_11 +7.3_12 +7.3_13 +7.3_14 +7.3_15 +7.3_16 +7.3_17 +7.3_18 +7.3_19 +7.3_20 +7.3_21 +7.3_22 +7.3_45 +7.3_48 +7.3_50 +7.3_51.1 +7.3_51.3 +7.3_51.4 +7.3_51.5 +7.3_51.6 +7.3_52 +7.3_53 +7.3_53.1 +7.3_54 +7.3_55 +7.3_56 +7.3_57 +7.3_58 +7.3_58.1 +7.3_58.2 +7.3_58.3 +7.3_59 +7.3_60 +7.4 +7.4.0 +7.4.0.0 +7.4.0.172 +7.4.1 +7.4.1.0 +7.4.10 +7.4.11 +7.4.12 +7.4.13 +7.4.14 +7.4.15 +7.4.16 +7.4.1721 +7.4.2 +7.4.2.0 +7.4.20 +7.4.21 +7.4.21313 +7.4.22 +7.4.23 +7.4.24 +7.4.25 +7.4.26 +7.4.27 +7.4.3 +7.4.3.0 +7.4.3.1 +7.4.3.2 +7.4.4 +7.4.4.0 +7.4.5 +7.4.6 +7.4.7 +7.4.8 +7.4.9 +7.40 +7.43.0.2 +7.43.0.3 +7.43.0.4 +7.43.0.5 +7.43.0.6 +7.44.0 +7.44.1 +7.44.2 +7.44.3 +7.44.4 +7.44.5 +7.44.6 +7.44.7 +7.44.8 +7.44.9 +7.45.0 +7.45.1 +7.45.1.1 +7.45.1.2 +7.45.1.3 +7.45.1.4 +7.45.2.0 +7.45.2.1 +7.45.2.2 +7.45.2.3 +7.47.1 +7.48.0 +7.5 +7.5.0 +7.5.1 +7.5.10 +7.5.12 +7.5.14 +7.5.1rc2 +7.5.1rc4 +7.5.2 +7.5.288.22 +7.5.288.30 +7.5.3 +7.5.3.0 +7.5.4 +7.5.5 +7.5.6 +7.5.7 +7.5.8 +7.5.9 +7.52.1 +7.54.1 +7.56 +7.58.0 +7.59.0 +7.6 +7.6.0 +7.6.0.173 +7.6.0a5 +7.6.1 +7.6.10 +7.6.12 +7.6.14 +7.6.2 +7.6.3 +7.6.3.0 +7.6.4 +7.6.5 +7.6.5.32 +7.6.6 +7.6.7 +7.60.0 +7.61.0 +7.61.1 +7.62.0 +7.63.0 +7.64 +7.64.0 +7.64.1 +7.65.1 +7.65.2 +7.65.3 +7.66 +7.68.0 +7.69.1 +7.7 +7.7.0 +7.7.0.0 +7.7.0.1 +7.7.0a1 +7.7.1 +7.7.15 +7.7.2 +7.7.23 +7.7.3 +7.7.31 +7.7.34 +7.7.4 +7.7.5 +7.7.9 +7.71.0 +7.71.1 +7.75.0 +7.76.0 +7.76.1 +7.77.0 +7.78.0 +7.79.0 +7.79.1 +7.8 +7.8.0 +7.8.0.174 +7.8.1 +7.8.2 +7.8.3 +7.8.5 +7.80.0 +7.800.1 +7.81.0 +7.82.0 +7.83.0 +7.83.1 +7.85.0 +7.86.0 +7.87.0 +7.88.0 +7.88.1 +7.9 +7.9.0 +7.9.0a1 +7.9.1 +7.9.1a1 +7.9.2 +7.9.3 +7.950.1 +7.9p1 +70.0.1 +70.1 +70.a +71 +71.a +71.b +72 +72.0.2 +72.1 +73 +73.0 +73.0.3683.68.0 +74 +74.0 +74.0.1 +74.0.3729.6.0 +75 +75.0 +75.0.3770.8.0 +76 +76.0 +76.0.3809.68.0 +77.0 +77.0.1 +77.0.3865.10.0 +77.0.3865.40.0 +78.0.3904.11.0 +78.0.3904.70.0 +78.0esr +78.1.0esr +78.10.1esr +78.11.0esr +78.12.0esr +78.13.0esr +78.14.0esr +78.15.0esr +78.2.0esr +78.3.0esr +78.4.0esr +78.5.0esr +78.6.0esr +78.7.0esr +78.8.0esr +78.9.0esr +79 +79.0 +79.0.3945.16.0 +8 +8.0 +8.0.0 +8.0.0.0 +8.0.0.1 +8.0.0.179 +8.0.1 +8.0.10 +8.0.11 +8.0.112 +8.0.12 +8.0.121 +8.0.13 +8.0.14 +8.0.144 +8.0.15 +8.0.16 +8.0.17 +8.0.18 +8.0.19 +8.0.192 +8.0.2 +8.0.20 +8.0.20210624101613 +8.0.20210624154013 +8.0.21 +8.0.22 +8.0.23 +8.0.24 +8.0.25 +8.0.26 +8.0.265 +8.0.27 +8.0.28 +8.0.282 +8.0.29 +8.0.3 +8.0.30 +8.0.302 +8.0.31 +8.0.312 +8.0.32 +8.0.332 +8.0.4 +8.0.5 +8.0.5.39 +8.0.6 +8.0.7 +8.0.8 +8.0.9 +8.0_0 +8.0_1 +8.0a1 +8.0a2 +8.0b0 +8.0b1 +8.0b2 +8.0b3 +8.0p1 +8.0rc1 +8.0rc2 +8.0rc3 +8.1 +8.1.0 +8.1.0.180 +8.1.0.77 +8.1.0925 +8.1.0960 +8.1.1 +8.1.10 +8.1.1008 +8.1.11 +8.1.13 +8.1.1343 +8.1.1349 +8.1.2 +8.1.20210627200047 +8.1.20210716111910 +8.1.20210721123742 +8.1.3 +8.1.4 +8.1.5 +8.1.6 +8.1.7 +8.1.8 +8.1.9 +8.1.np1.12 +8.1.np1.13 +8.1.np1.14 +8.10 +8.10.0 +8.10.1 +8.10.10 +8.10.14 +8.10.18 +8.10.2 +8.10.3 +8.10.4 +8.10.5 +8.10.6 +8.10.7 +8.11 +8.11.0 +8.11.1 +8.11.2 +8.11.3 +8.11.4 +8.12 +8.12.0 +8.12.1 +8.12.2 +8.12.24 +8.12.25 +8.12.26 +8.12.27 +8.12.28 +8.12.29 +8.12.30 +8.12.31 +8.12.32 +8.12.33 +8.12.34 +8.12.35 +8.12.36 +8.12.37 +8.12.38 +8.12.39 +8.12.40 +8.12.41 +8.12.42 +8.12.43 +8.12.44 +8.12.45 +8.12.46 +8.12.47 +8.12.48 +8.12.49 +8.12.50 +8.12.51 +8.12.52 +8.12.53 +8.12.54 +8.12.55 +8.12.56 +8.12.57 +8.13 +8.13.0 +8.13.1 +8.13.2 +8.13.3 +8.13.4 +8.13.5 +8.13.6 +8.13.7 +8.14 +8.14.0 +8.14.1 +8.14.2 +8.15 +8.15.0 +8.15.1 +8.16 +8.16.0 +8.17.0 +8.18 +8.18.0 +8.19 +8.19.0 +8.2 +8.2.0 +8.2.0.181 +8.2.0.53 +8.2.0441 +8.2.0444 +8.2.0448 +8.2.0460 +8.2.0464 +8.2.0485 +8.2.0486 +8.2.0488 +8.2.0489 +8.2.0495 +8.2.504 +8.2.508 +8.2.510 +8.2.515 +8.2.516 +8.2.519 +8.2.520 +8.2.521 +8.2.525 +8.2.529 +8.2.530 +8.2.534 +8.2.535 +8.2.539 +8.2.541 +8.2.548 +8.2.556 +8.2.558 +8.2.566 +8.2.569 +8.2.574 +8.2.577 +8.2.579 +8.2.582 +8.2.583 +8.2.587 +8.2.592 +8.2.595 +8.2.598 +8.2.0600 +8.2.0606 +8.2.0616 +8.2.0617 +8.2.0618 +8.2.0628 +8.2.0632 +8.2.0633 +8.2.0636 +8.2.0637 +8.2.0640 +8.2.0642 +8.2.0647 +8.2.0649 +8.2.0654 +8.2.0656 +8.2.0659 +8.2.0664 +8.2.0671 +8.2.0676 +8.2.0682 +8.2.0683 +8.2.0692 +8.2.0694 +8.2.0695 +8.2.0701 +8.2.0702 +8.2.0705 +8.2.0707 +8.2.0716 +8.2.0717 +8.2.0719 +8.2.0720 +8.2.0722 +8.2.0724 +8.2.0726 +8.2.0729 +8.2.0730 +8.2.0735 +8.2.0746 +8.2.0747 +8.2.0750 +8.2.0752 +8.2.0754 +8.2.0757 +8.2.0764 +8.2.0766 +8.2.0770 +8.2.0790 +8.2.0793 +8.2.0795 +8.2.0796 +8.2.0801 +8.2.0803 +8.2.0806 +8.2.0812 +8.2.0813 +8.2.0814 +8.2.0815 +8.2.0821 +8.2.0822 +8.2.0825 +8.2.0827 +8.2.0829 +8.2.0830 +8.2.0834 +8.2.0836 +8.2.0841 +8.2.0852 +8.2.0854 +8.2.0855 +8.2.0859 +8.2.0864 +8.2.0869 +8.2.0877 +8.2.0884 +8.2.0888 +8.2.0890 +8.2.0891 +8.2.0892 +8.2.0908 +8.2.0910 +8.2.0914 +8.2.0915 +8.2.0916 +8.2.0931 +8.2.0935 +8.2.0940 +8.2.0950 +8.2.0956 +8.2.0957 +8.2.0959 +8.2.0960 +8.2.0961 +8.2.0974 +8.2.0979 +8.2.0983 +8.2.0986 +8.2.0987 +8.2.0989 +8.2.0991 +8.2.0992 +8.2.0995 +8.2.0997 +8.2.0998 +8.2.1 +8.2.1.32 +8.2.10 +8.2.1009 +8.2.1010 +8.2.1011 +8.2.1014 +8.2.1017 +8.2.1018 +8.2.1023 +8.2.1024 +8.2.1025 +8.2.1030 +8.2.1033 +8.2.1034 +8.2.1036 +8.2.1040 +8.2.1041 +8.2.1042 +8.2.1043 +8.2.1044 +8.2.1045 +8.2.1046 +8.2.1048 +8.2.1051 +8.2.1052 +8.2.1053 +8.2.1055 +8.2.1056 +8.2.1057 +8.2.1058 +8.2.1059 +8.2.1061 +8.2.1064 +8.2.1065 +8.2.1068 +8.2.1070 +8.2.1072 +8.2.1076 +8.2.1078 +8.2.1079 +8.2.1080 +8.2.1081 +8.2.1083 +8.2.11 +8.2.1101 +8.2.1104 +8.2.1106 +8.2.1107 +8.2.1110 +8.2.1111 +8.2.1113 +8.2.1114 +8.2.1118 +8.2.1119 +8.2.1121 +8.2.1123 +8.2.1124 +8.2.1125 +8.2.1126 +8.2.1127 +8.2.1128 +8.2.1131 +8.2.1134 +8.2.1136 +8.2.1139 +8.2.1142 +8.2.1144 +8.2.1145 +8.2.1146 +8.2.1148 +8.2.1149 +8.2.12 +8.2.1266 +8.2.1268 +8.2.1270 +8.2.1271 +8.2.1272 +8.2.1273 +8.2.1274 +8.2.1276 +8.2.1277 +8.2.1279 +8.2.1280 +8.2.1281 +8.2.1282 +8.2.1283 +8.2.1284 +8.2.1286 +8.2.1287 +8.2.1288 +8.2.1289 +8.2.1290 +8.2.1291 +8.2.1292 +8.2.1294 +8.2.1295 +8.2.1296 +8.2.1297 +8.2.1299 +8.2.13 +8.2.1301 +8.2.1302 +8.2.1303 +8.2.1305 +8.2.1306 +8.2.1307 +8.2.1312 +8.2.1313 +8.2.1314 +8.2.1315 +8.2.1317 +8.2.1319 +8.2.1322 +8.2.1324 +8.2.1325 +8.2.1327 +8.2.1328 +8.2.1331 +8.2.1333 +8.2.1334 +8.2.1336 +8.2.1337 +8.2.1341 +8.2.1342 +8.2.1346 +8.2.1347 +8.2.1348 +8.2.1351 +8.2.1352 +8.2.1353 +8.2.1354 +8.2.1356 +8.2.1357 +8.2.1359 +8.2.1360 +8.2.1361 +8.2.1362 +8.2.1364 +8.2.1368 +8.2.1372 +8.2.1373 +8.2.1375 +8.2.1376 +8.2.1377 +8.2.1378 +8.2.1379 +8.2.1381 +8.2.1382 +8.2.1383 +8.2.1385 +8.2.1387 +8.2.1389 +8.2.1390 +8.2.1391 +8.2.1393 +8.2.1395 +8.2.1396 +8.2.1397 +8.2.1398 +8.2.1399 +8.2.14 +8.2.1400 +8.2.1404 +8.2.1405 +8.2.1406 +8.2.1407 +8.2.1409 +8.2.1410 +8.2.1411 +8.2.1412 +8.2.1413 +8.2.1419 +8.2.1421 +8.2.1424 +8.2.1425 +8.2.1427 +8.2.1428 +8.2.1429 +8.2.1431 +8.2.1434 +8.2.1435 +8.2.1438 +8.2.1441 +8.2.1443 +8.2.1444 +8.2.1445 +8.2.1446 +8.2.1449 +8.2.1455 +8.2.1456 +8.2.1457 +8.2.1459 +8.2.1460 +8.2.1464 +8.2.1465 +8.2.1466 +8.2.1468 +8.2.1470 +8.2.1471 +8.2.1475 +8.2.1477 +8.2.1479 +8.2.1480 +8.2.1481 +8.2.1482 +8.2.1484 +8.2.1485 +8.2.1486 +8.2.1487 +8.2.1488 +8.2.1489 +8.2.1490 +8.2.1494 +8.2.1495 +8.2.1497 +8.2.1498 +8.2.1499 +8.2.15 +8.2.15.4 +8.2.1500 +8.2.1501 +8.2.1502 +8.2.1505 +8.2.1507 +8.2.1508 +8.2.1509 +8.2.1510 +8.2.1511 +8.2.1512 +8.2.1513 +8.2.1515 +8.2.1516 +8.2.1517 +8.2.1518 +8.2.1520 +8.2.1522 +8.2.1523 +8.2.1524 +8.2.1526 +8.2.1527 +8.2.1528 +8.2.1530 +8.2.1531 +8.2.1533 +8.2.1534 +8.2.1535 +8.2.1536 +8.2.1537 +8.2.1539 +8.2.1540 +8.2.1541 +8.2.1542 +8.2.1543 +8.2.1544 +8.2.1545 +8.2.1546 +8.2.1548 +8.2.1549 +8.2.1550 +8.2.1558 +8.2.1559 +8.2.1560 +8.2.1561 +8.2.1563 +8.2.1584 +8.2.1586 +8.2.1587 +8.2.1588 +8.2.1591 +8.2.1592 +8.2.1593 +8.2.1594 +8.2.1595 +8.2.1597 +8.2.1598 +8.2.16 +8.2.1603 +8.2.1607 +8.2.1612 +8.2.1616 +8.2.1619 +8.2.1620 +8.2.1621 +8.2.1624 +8.2.1626 +8.2.1628 +8.2.1629 +8.2.1630 +8.2.1632 +8.2.1633 +8.2.1634 +8.2.1635 +8.2.1637 +8.2.1638 +8.2.1640 +8.2.1642 +8.2.1643 +8.2.1646 +8.2.1648 +8.2.1649 +8.2.1651 +8.2.1652 +8.2.1653 +8.2.1655 +8.2.1657 +8.2.1659 +8.2.1663 +8.2.1665 +8.2.1666 +8.2.1667 +8.2.1669 +8.2.1671 +8.2.1673 +8.2.1675 +8.2.1678 +8.2.1680 +8.2.1681 +8.2.1683 +8.2.1684 +8.2.1687 +8.2.1688 +8.2.1690 +8.2.1694 +8.2.1697 +8.2.1699 +8.2.1700 +8.2.1701 +8.2.1703 +8.2.1704 +8.2.1705 +8.2.1706 +8.2.1708 +8.2.1709 +8.2.1710 +8.2.1711 +8.2.1712 +8.2.1713 +8.2.1717 +8.2.1719 +8.2.1724 +8.2.1733 +8.2.1736 +8.2.1738 +8.2.1739 +8.2.1741 +8.2.1743 +8.2.1745 +8.2.1746 +8.2.1747 +8.2.1748 +8.2.1749 +8.2.1751 +8.2.1753 +8.2.1755 +8.2.1756 +8.2.1757 +8.2.1758 +8.2.1761 +8.2.1762 +8.2.1764 +8.2.1766 +8.2.1767 +8.2.1768 +8.2.1770 +8.2.1775 +8.2.1777 +8.2.1778 +8.2.1779 +8.2.1781 +8.2.1782 +8.2.1783 +8.2.1784 +8.2.1786 +8.2.1787 +8.2.1789 +8.2.1792 +8.2.1793 +8.2.1794 +8.2.1795 +8.2.1796 +8.2.1797 +8.2.1799 +8.2.1800 +8.2.1801 +8.2.1802 +8.2.1805 +8.2.1808 +8.2.1810 +8.2.1811 +8.2.1812 +8.2.1814 +8.2.1815 +8.2.1816 +8.2.1817 +8.2.1818 +8.2.1819 +8.2.1821 +8.2.1823 +8.2.1824 +8.2.1825 +8.2.1827 +8.2.1829 +8.2.1830 +8.2.1832 +8.2.1833 +8.2.1834 +8.2.1835 +8.2.1837 +8.2.1838 +8.2.1839 +8.2.1840 +8.2.1842 +8.2.1844 +8.2.1845 +8.2.1846 +8.2.1847 +8.2.1848 +8.2.1852 +8.2.1856 +8.2.1858 +8.2.1859 +8.2.1861 +8.2.1862 +8.2.1863 +8.2.1864 +8.2.1865 +8.2.1867 +8.2.1869 +8.2.1873 +8.2.1875 +8.2.1877 +8.2.1880 +8.2.1881 +8.2.1883 +8.2.1885 +8.2.1886 +8.2.1888 +8.2.1890 +8.2.1891 +8.2.1893 +8.2.1895 +8.2.1896 +8.2.1897 +8.2.1899 +8.2.1900 +8.2.1901 +8.2.1902 +8.2.1904 +8.2.1905 +8.2.1910 +8.2.1911 +8.2.1913 +8.2.1920 +8.2.1923 +8.2.1924 +8.2.1928 +8.2.1929 +8.2.1930 +8.2.1931 +8.2.1932 +8.2.1933 +8.2.1941 +8.2.1943 +8.2.1944 +8.2.1975 +8.2.1976 +8.2.1977 +8.2.1978 +8.2.1979 +8.2.1980 +8.2.1981 +8.2.1982 +8.2.1983 +8.2.1984 +8.2.1985 +8.2.1988 +8.2.1989 +8.2.1991 +8.2.1992 +8.2.1994 +8.2.1995 +8.2.1997 +8.2.1999 +8.2.2 +8.2.2000 +8.2.2004 +8.2.2005 +8.2.2007 +8.2.2009 +8.2.2010 +8.2.2013 +8.2.2014 +8.2.2017 +8.2.2018 +8.2.2019 +8.2.2021 +8.2.20210902094147 +8.2.20210914115719 +8.2.20210918131710 +8.2.20211014150008 +8.2.20211015115235 +8.2.20211020114435 +8.2.20211103155537 +8.2.20211104054942 +8.2.20211116214159 +8.2.20211222191353 +8.2.2022 +8.2.20220103095339 +8.2.20220204150214 +8.2.2023 +8.2.2025 +8.2.2029 +8.2.2030 +8.2.2031 +8.2.2032 +8.2.2033 +8.2.2034 +8.2.2035 +8.2.2036 +8.2.2038 +8.2.2039 +8.2.2040 +8.2.2041 +8.2.2042 +8.2.2044 +8.2.2045 +8.2.2051 +8.2.2054 +8.2.2055 +8.2.2058 +8.2.2060 +8.2.2061 +8.2.2062 +8.2.2063 +8.2.2065 +8.2.2067 +8.2.2069 +8.2.2070 +8.2.2072 +8.2.2073 +8.2.2077 +8.2.2078 +8.2.2079 +8.2.2080 +8.2.2081 +8.2.2082 +8.2.2083 +8.2.2084 +8.2.2086 +8.2.2087 +8.2.2089 +8.2.2091 +8.2.2092 +8.2.2093 +8.2.2094 +8.2.2095 +8.2.2096 +8.2.2098 +8.2.2099 +8.2.2100 +8.2.2101 +8.2.2102 +8.2.2103 +8.2.2105 +8.2.2106 +8.2.2107 +8.2.2108 +8.2.2110 +8.2.2112 +8.2.2113 +8.2.2115 +8.2.2116 +8.2.2117 +8.2.2118 +8.2.2119 +8.2.2121 +8.2.2122 +8.2.2123 +8.2.2124 +8.2.2125 +8.2.2127 +8.2.2129 +8.2.2130 +8.2.2131 +8.2.2132 +8.2.2133 +8.2.2134 +8.2.2135 +8.2.2136 +8.2.2137 +8.2.2138 +8.2.2139 +8.2.2140 +8.2.2143 +8.2.2144 +8.2.2148 +8.2.2149 +8.2.2151 +8.2.2152 +8.2.2154 +8.2.2156 +8.2.2157 +8.2.2158 +8.2.2159 +8.2.2160 +8.2.2161 +8.2.2165 +8.2.2166 +8.2.2167 +8.2.2169 +8.2.2171 +8.2.2173 +8.2.2176 +8.2.2177 +8.2.2178 +8.2.2181 +8.2.2182 +8.2.2183 +8.2.2184 +8.2.2185 +8.2.2187 +8.2.2190 +8.2.2192 +8.2.2193 +8.2.2194 +8.2.2195 +8.2.2197 +8.2.2198 +8.2.2199 +8.2.2201 +8.2.2202 +8.2.2203 +8.2.2204 +8.2.2205 +8.2.2206 +8.2.2207 +8.2.2208 +8.2.2209 +8.2.2211 +8.2.2212 +8.2.2213 +8.2.2214 +8.2.2215 +8.2.2218 +8.2.2220 +8.2.2221 +8.2.2224 +8.2.2226 +8.2.2227 +8.2.2228 +8.2.2230 +8.2.2233 +8.2.2234 +8.2.2237 +8.2.2238 +8.2.2239 +8.2.2241 +8.2.2243 +8.2.2244 +8.2.2246 +8.2.2248 +8.2.2249 +8.2.2250 +8.2.2251 +8.2.2253 +8.2.2256 +8.2.2257 +8.2.2259 +8.2.2261 +8.2.2263 +8.2.2264 +8.2.2266 +8.2.2267 +8.2.2268 +8.2.2269 +8.2.2270 +8.2.2271 +8.2.2274 +8.2.2277 +8.2.2280 +8.2.2282 +8.2.2283 +8.2.2284 +8.2.2285 +8.2.2286 +8.2.2288 +8.2.2289 +8.2.2290 +8.2.2291 +8.2.2293 +8.2.2294 +8.2.2295 +8.2.2298 +8.2.2299 +8.2.2300 +8.2.2301 +8.2.2302 +8.2.2304 +8.2.2305 +8.2.2306 +8.2.2307 +8.2.2310 +8.2.2311 +8.2.2312 +8.2.2314 +8.2.2315 +8.2.2316 +8.2.2317 +8.2.2318 +8.2.2319 +8.2.2320 +8.2.2321 +8.2.2322 +8.2.2324 +8.2.2326 +8.2.2327 +8.2.2328 +8.2.2330 +8.2.2331 +8.2.2332 +8.2.2335 +8.2.2340 +8.2.2343 +8.2.2344 +8.2.2347 +8.2.2349 +8.2.2352 +8.2.2353 +8.2.2355 +8.2.2357 +8.2.2358 +8.2.2359 +8.2.2361 +8.2.2362 +8.2.2363 +8.2.2367 +8.2.2368 +8.2.2369 +8.2.2371 +8.2.2372 +8.2.2374 +8.2.2375 +8.2.2377 +8.2.2380 +8.2.2382 +8.2.2384 +8.2.2385 +8.2.2387 +8.2.2388 +8.2.2389 +8.2.2390 +8.2.2391 +8.2.2393 +8.2.2394 +8.2.2398 +8.2.2400 +8.2.2401 +8.2.2402 +8.2.2403 +8.2.2406 +8.2.2408 +8.2.2409 +8.2.2410 +8.2.2411 +8.2.2412 +8.2.2415 +8.2.2417 +8.2.2418 +8.2.2419 +8.2.2423 +8.2.2424 +8.2.2425 +8.2.2427 +8.2.2428 +8.2.2430 +8.2.2431 +8.2.2432 +8.2.2433 +8.2.2434 +8.2.2436 +8.2.2438 +8.2.2440 +8.2.2441 +8.2.2442 +8.2.2443 +8.2.2445 +8.2.2446 +8.2.2451 +8.2.2453 +8.2.2462 +8.2.2464 +8.2.2465 +8.2.2466 +8.2.2467 +8.2.2468 +8.2.2470 +8.2.2471 +8.2.2475 +8.2.2476 +8.2.2479 +8.2.2484 +8.2.2486 +8.2.2488 +8.2.2489 +8.2.2490 +8.2.2491 +8.2.2492 +8.2.2493 +8.2.2494 +8.2.2497 +8.2.2498 +8.2.2500 +8.2.2501 +8.2.2505 +8.2.2506 +8.2.2508 +8.2.2509 +8.2.2510 +8.2.2514 +8.2.2516 +8.2.2517 +8.2.2519 +8.2.2520 +8.2.2521 +8.2.2523 +8.2.2525 +8.2.2526 +8.2.2527 +8.2.2528 +8.2.2529 +8.2.2530 +8.2.2531 +8.2.2532 +8.2.2533 +8.2.2536 +8.2.2537 +8.2.2538 +8.2.2540 +8.2.2541 +8.2.2543 +8.2.2544 +8.2.2545 +8.2.2548 +8.2.2550 +8.2.2551 +8.2.2553 +8.2.2556 +8.2.2557 +8.2.2558 +8.2.2559 +8.2.2560 +8.2.2561 +8.2.2562 +8.2.2563 +8.2.2564 +8.2.2565 +8.2.2566 +8.2.2567 +8.2.2569 +8.2.2572 +8.2.2573 +8.2.2574 +8.2.2575 +8.2.2576 +8.2.2578 +8.2.2580 +8.2.2582 +8.2.2583 +8.2.2585 +8.2.2589 +8.2.2590 +8.2.2595 +8.2.2596 +8.2.2600 +8.2.2601 +8.2.2602 +8.2.2603 +8.2.2604 +8.2.2606 +8.2.2607 +8.2.2608 +8.2.2609 +8.2.2610 +8.2.2611 +8.2.2615 +8.2.2622 +8.2.2623 +8.2.2625 +8.2.2627 +8.2.2628 +8.2.2629 +8.2.2630 +8.2.2631 +8.2.2632 +8.2.2634 +8.2.2635 +8.2.2637 +8.2.2639 +8.2.2642 +8.2.2647 +8.2.2648 +8.2.2649 +8.2.2650 +8.2.2653 +8.2.2655 +8.2.2657 +8.2.2659 +8.2.2660 +8.2.2661 +8.2.2662 +8.2.2663 +8.2.2665 +8.2.2666 +8.2.2668 +8.2.2671 +8.2.2673 +8.2.2674 +8.2.2676 +8.2.2677 +8.2.2678 +8.2.2679 +8.2.2681 +8.2.2684 +8.2.2685 +8.2.2687 +8.2.2688 +8.2.2689 +8.2.2691 +8.2.2693 +8.2.2694 +8.2.2695 +8.2.2703 +8.2.2705 +8.2.2706 +8.2.2707 +8.2.2709 +8.2.2710 +8.2.2712 +8.2.2713 +8.2.2715 +8.2.2718 +8.2.2719 +8.2.2721 +8.2.2724 +8.2.2725 +8.2.2728 +8.2.2734 +8.2.2735 +8.2.2736 +8.2.2738 +8.2.2739 +8.2.2740 +8.2.2741 +8.2.2743 +8.2.2745 +8.2.2747 +8.2.2752 +8.2.2753 +8.2.2754 +8.2.2755 +8.2.2756 +8.2.2758 +8.2.2760 +8.2.2761 +8.2.2763 +8.2.2764 +8.2.2767 +8.2.2769 +8.2.2770 +8.2.2771 +8.2.2772 +8.2.2773 +8.2.2774 +8.2.2775 +8.2.2776 +8.2.2778 +8.2.2779 +8.2.2780 +8.2.2781 +8.2.2783 +8.2.2784 +8.2.2786 +8.2.2787 +8.2.2791 +8.2.2792 +8.2.2795 +8.2.2798 +8.2.2799 +8.2.2800 +8.2.2801 +8.2.2802 +8.2.2803 +8.2.2804 +8.2.2805 +8.2.2808 +8.2.2810 +8.2.2811 +8.2.2814 +8.2.2815 +8.2.2817 +8.2.2818 +8.2.2819 +8.2.2820 +8.2.2821 +8.2.2822 +8.2.2823 +8.2.2824 +8.2.2825 +8.2.2827 +8.2.2831 +8.2.2832 +8.2.2833 +8.2.2834 +8.2.2838 +8.2.2840 +8.2.2841 +8.2.2842 +8.2.2844 +8.2.2845 +8.2.2846 +8.2.2847 +8.2.2848 +8.2.2850 +8.2.2860 +8.2.2863 +8.2.2864 +8.2.2865 +8.2.2867 +8.2.2868 +8.2.2869 +8.2.2871 +8.2.2872 +8.2.2873 +8.2.2874 +8.2.2875 +8.2.2876 +8.2.2877 +8.2.2878 +8.2.2879 +8.2.2881 +8.2.2882 +8.2.2884 +8.2.2885 +8.2.2889 +8.2.2890 +8.2.2891 +8.2.2893 +8.2.2895 +8.2.2896 +8.2.2897 +8.2.2898 +8.2.2899 +8.2.2900 +8.2.2901 +8.2.2903 +8.2.2905 +8.2.2907 +8.2.2908 +8.2.2910 +8.2.2911 +8.2.2912 +8.2.2913 +8.2.2914 +8.2.2915 +8.2.2917 +8.2.2918 +8.2.2920 +8.2.2921 +8.2.2922 +8.2.2925 +8.2.2928 +8.2.2929 +8.2.2930 +8.2.2932 +8.2.2933 +8.2.2934 +8.2.2937 +8.2.2938 +8.2.2942 +8.2.2943 +8.2.2946 +8.2.2948 +8.2.2949 +8.2.2955 +8.2.2956 +8.2.2958 +8.2.2961 +8.2.2962 +8.2.2965 +8.2.2966 +8.2.2967 +8.2.2968 +8.2.2971 +8.2.2973 +8.2.2976 +8.2.2978 +8.2.2982 +8.2.2983 +8.2.2984 +8.2.2989 +8.2.2991 +8.2.2993 +8.2.2995 +8.2.2998 +8.2.2999 +8.2.3 +8.2.3001 +8.2.3004 +8.2.3006 +8.2.3008 +8.2.3009 +8.2.3012 +8.2.3013 +8.2.3014 +8.2.3015 +8.2.3018 +8.2.3020 +8.2.3021 +8.2.3024 +8.2.3025 +8.2.3027 +8.2.3028 +8.2.3032 +8.2.3033 +8.2.3034 +8.2.3038 +8.2.3040 +8.2.3043 +8.2.3044 +8.2.3045 +8.2.3046 +8.2.3047 +8.2.3048 +8.2.3049 +8.2.3053 +8.2.3055 +8.2.3056 +8.2.3057 +8.2.3060 +8.2.3062 +8.2.3066 +8.2.3067 +8.2.3070 +8.2.3072 +8.2.3075 +8.2.3076 +8.2.3077 +8.2.3080 +8.2.3081 +8.2.3082 +8.2.3083 +8.2.3084 +8.2.3086 +8.2.3088 +8.2.3089 +8.2.3090 +8.2.3092 +8.2.3094 +8.2.3095 +8.2.3097 +8.2.3099 +8.2.3103 +8.2.3104 +8.2.3105 +8.2.3107 +8.2.3108 +8.2.3109 +8.2.3111 +8.2.3113 +8.2.3114 +8.2.3115 +8.2.3118 +8.2.3119 +8.2.3120 +8.2.3122 +8.2.3125 +8.2.3126 +8.2.3129 +8.2.3131 +8.2.3132 +8.2.3134 +8.2.3135 +8.2.3136 +8.2.3137 +8.2.3138 +8.2.3139 +8.2.3140 +8.2.3142 +8.2.3143 +8.2.3145 +8.2.3147 +8.2.3149 +8.2.3150 +8.2.3152 +8.2.3154 +8.2.3155 +8.2.3156 +8.2.3157 +8.2.3158 +8.2.3159 +8.2.3160 +8.2.3161 +8.2.3163 +8.2.3165 +8.2.3166 +8.2.3168 +8.2.3169 +8.2.3171 +8.2.3172 +8.2.3173 +8.2.3174 +8.2.3175 +8.2.3176 +8.2.3177 +8.2.3178 +8.2.3179 +8.2.3180 +8.2.3182 +8.2.3183 +8.2.3185 +8.2.3187 +8.2.3188 +8.2.3189 +8.2.3192 +8.2.3194 +8.2.3196 +8.2.3197 +8.2.3198 +8.2.3199 +8.2.3201 +8.2.3203 +8.2.3204 +8.2.3205 +8.2.3206 +8.2.3207 +8.2.3210 +8.2.3211 +8.2.3213 +8.2.3215 +8.2.3219 +8.2.3221 +8.2.3222 +8.2.3223 +8.2.3226 +8.2.3227 +8.2.3228 +8.2.3232 +8.2.3233 +8.2.3234 +8.2.3235 +8.2.3236 +8.2.3237 +8.2.3238 +8.2.3239 +8.2.3242 +8.2.3247 +8.2.3249 +8.2.3250 +8.2.3253 +8.2.3255 +8.2.3257 +8.2.3258 +8.2.3260 +8.2.3263 +8.2.3264 +8.2.3266 +8.2.3268 +8.2.3269 +8.2.3270 +8.2.3272 +8.2.3273 +8.2.3274 +8.2.3275 +8.2.3278 +8.2.3279 +8.2.3281 +8.2.3282 +8.2.3283 +8.2.3284 +8.2.3289 +8.2.3290 +8.2.3299 +8.2.3300 +8.2.3301 +8.2.3306 +8.2.3307 +8.2.3310 +8.2.3311 +8.2.3312 +8.2.3313 +8.2.3316 +8.2.3318 +8.2.3319 +8.2.3320 +8.2.3321 +8.2.3322 +8.2.3323 +8.2.3326 +8.2.3327 +8.2.3331 +8.2.3332 +8.2.3333 +8.2.3334 +8.2.3336 +8.2.3338 +8.2.3340 +8.2.3341 +8.2.3344 +8.2.3346 +8.2.3347 +8.2.3350 +8.2.3351 +8.2.3352 +8.2.3353 +8.2.3354 +8.2.3356 +8.2.3357 +8.2.3358 +8.2.3360 +8.2.3361 +8.2.3367 +8.2.3368 +8.2.3370 +8.2.3371 +8.2.3373 +8.2.3375 +8.2.3376 +8.2.3377 +8.2.3378 +8.2.3380 +8.2.3382 +8.2.3383 +8.2.3384 +8.2.3385 +8.2.3386 +8.2.3388 +8.2.3389 +8.2.3391 +8.2.3392 +8.2.3393 +8.2.3394 +8.2.3397 +8.2.3398 +8.2.3399 +8.2.3401 +8.2.3402 +8.2.3403 +8.2.3404 +8.2.3405 +8.2.3407 +8.2.3408 +8.2.3409 +8.2.3412 +8.2.3413 +8.2.3416 +8.2.3417 +8.2.3419 +8.2.3420 +8.2.3423 +8.2.3427 +8.2.3437 +8.2.3447 +8.2.3457 +8.2.3582 +8.2.3901 +8.2.4 +8.2.4950 +8.2.5 +8.2.6 +8.2.7 +8.2.8 +8.2.9 +8.20 +8.20.0 +8.20.21357 +8.200.0 +8.20200226 +8.20200309 +8.20200522 +8.20200617 +8.20200618 +8.20200720.1 +8.20200810 +8.20200908 +8.20201007 +8.20201104 +8.20201127 +8.20201129 +8.20210127 +8.20210128 +8.20210224 +8.20210310 +8.20210330 +8.20210331 +8.20210428 +8.20210621 +8.20210715 +8.20210803 +8.20210903 +8.20211011 +8.20211028 +8.20211123 +8.20211231 +8.21 +8.21.0 +8.22.0 +8.23.0 +8.23.1 +8.24.0 +8.240 +8.244 +8.25 +8.25.0 +8.26.0 +8.27.0 +8.28.0 +8.29 +8.29.0 +8.3 +8.3.0 +8.3.0.2 +8.3.0.3 +8.3.0b0 +8.3.1 +8.3.10 +8.3.11 +8.3.2 +8.3.2.44 +8.3.20220518163624 +8.3.20220525163636 +8.3.20220717184004 +8.3.20220801194920 +8.3.20220825133457 +8.3.20220831150015 +8.3.20220909144501 +8.3.20220913105718 +8.3.20220916115321 +8.3.20221016151607 +8.3.20221028160159 +8.3.20221115203138 +8.3.20221209165047 +8.3.20230109181936 +8.3.276 +8.3.286 +8.3.297 +8.3.3 +8.3.305 +8.3.307 +8.3.308 +8.3.309 +8.3.310 +8.3.311 +8.3.312 +8.3.314 +8.3.315 +8.3.316 +8.3.319 +8.3.320 +8.3.321 +8.3.322 +8.3.323 +8.3.324 +8.3.325 +8.3.326 +8.3.327 +8.3.328 +8.3.329 +8.3.331 +8.3.334 +8.3.335 +8.3.336 +8.3.337 +8.3.338 +8.3.339 +8.3.342 +8.3.343 +8.3.346 +8.3.348 +8.3.349 +8.3.350 +8.3.351 +8.3.352 +8.3.361 +8.3.362 +8.3.363 +8.3.368 +8.3.372 +8.3.376 +8.3.4 +8.3.5 +8.3.6 +8.3.7 +8.3.8 +8.3.9 +8.30 +8.30.0 +8.304 +8.305 +8.307 +8.31 +8.31.0 +8.32 +8.32.0 +8.33 +8.33.0 +8.34.0 +8.35.0 +8.36.0 +8.37 +8.37.0 +8.38 +8.38.0 +8.39 +8.39.0 +8.39.2 +8.3p1 +8.4 +8.4.0 +8.4.0.27 +8.4.1 +8.4.1.50 +8.4.2 +8.4.20230127112827 +8.4.20230128170514 +8.4.20230201194352 +8.4.20230213094415 +8.4.20230426093816 +8.4.20230511084951 +8.4.21326 +8.4.3 +8.4.371.19 +8.4.371.22 +8.4.4 +8.4.5 +8.4.8 +8.40.0 +8.40.1 +8.40.2 +8.40.5 +8.41 +8.41.0 +8.41.1 +8.41.3 +8.42.0 +8.42.1 +8.42.2 +8.43 +8.43.0 +8.43.7 +8.44 +8.45 +8.4p1 +8.5 +8.5.0 +8.5.1 +8.5.10 +8.5.11 +8.5.13 +8.5.14 +8.5.15 +8.5.16 +8.5.17 +8.5.18 +8.5.19 +8.5.2 +8.5.20 +8.5.21 +8.5.22 +8.5.27 +8.5.28 +8.5.29 +8.5.3 +8.5.4 +8.5.5 +8.5.6 +8.5.8 +8.5.9 +8.500.0 +8.5p1 +8.6 +8.6.0 +8.6.1 +8.6.10 +8.6.11 +8.6.12 +8.6.13 +8.6.14 +8.6.15 +8.6.16 +8.6.17 +8.6.18 +8.6.2 +8.6.3 +8.6.4 +8.6.5 +8.6.6 +8.6.7 +8.6.8 +8.6.9 +8.600.0 +8.6p1 +8.7 +8.7.0 +8.7.1 +8.7.11 +8.7.12 +8.7.13 +8.7.14 +8.7.15 +8.7.17 +8.7.18 +8.7.19 +8.7.2 +8.7.20 +8.7.23 +8.7.3 +8.7.4 +8.7.5 +8.7.6 +8.7.7 +8.7p1 +8.8 +8.8.0 +8.8.0.121 +8.8.1 +8.8.160 +8.8.2 +8.8.294 +8.8.3 +8.8.4 +8.8.5 +8.8.8 +8.8.9 +8.8p1 +8.9 +8.9.0 +8.9.1 +8.9.10 +8.9.11 +8.9.13 +8.9.15 +8.9.2 +8.9.21 +8.9.3 +8.9.39 +8.9.4 +8.9.5 +8.9.6 +8.9.7 +8.9.8 +8.9.83 +8.9.9 +8.9p1 +80.0 +80.0.3987.106.0 +80.0.3987.16.0 +81 +81.0 +81.0.4044.20.0 +81.0.4044.69.0 +82 +82.0 +83 +83.0 +83.0.4103.14.0 +83.0.4103.39.0 +84 +84.0 +84.0.4147.30.0 +85 +85.0 +85.0.4183.38.0 +85.0.4183.83.0 +85.0.4183.87.0 +86.0 +86.0.4240.22.0 +87.0 +87.0.4280.20.0 +87.0.4280.88.0 +88 +88.0 +88.0.1 +88.0.4324.27.0 +88.0.4324.27.1 +88.0.4324.96.0 +89.0 +89.0.4389.23.0 +895 +8d +9 +9.0 +9.0.0 +9.0.0065 +9.0.0335 +9.0.0814 +9.0.0_1 +9.0.1 +9.0.10 +9.0.11 +9.0.12 +9.0.13 +9.0.14 +9.0.1425 +9.0.15 +9.0.16 +9.0.17 +9.0.18 +9.0.19 +9.0.2 +9.0.20 +9.0.21 +9.0.22 +9.0.3 +9.0.30729.6161 +9.0.4 +9.0.5 +9.0.6 +9.0.7 +9.0.8 +9.0.9 +9.01 +9.0_0 +9.0p1 +9.1 +9.1.0 +9.1.1 +9.1.2 +9.1.23.1 +9.1.3 +9.10 +9.10.0 +9.10.1 +9.107.22008 +9.11.0 +9.11.1 +9.11.2 +9.11.4 +9.110.22021 +9.113.22021 +9.12.0 +9.12.1 +9.12.2 +9.12.3 +9.12.4 +9.128.22026 +9.13.0 +9.13.2 +9.13.3 +9.13.4 +9.13.5 +9.13.6 +9.13.7 +9.132.22039 +9.134.22048 +9.147.22086 +9.15.0 +9.163.22119 +9.168.22121 +9.169.22121 +9.173.22126 +9.189.22201 +9.1p1 +9.2 +9.2.0 +9.2.1 +9.2.148 +9.2.2 +9.2.2.1 +9.2.2.2 +9.2.3 +9.2.4 +9.2.5 +9.2.6 +9.2.7 +9.20 +9.200.4 +9.200.6 +9.200.7 +9.207.22283 +9.213.22307 +9.22 +9.230.22310 +9.238.22316 +9.251.22317 +9.2p1 +9.3 +9.3.0 +9.3.0.0 +9.3.0.1 +9.3.0.2 +9.3.0.3 +9.3.0.4 +9.3.1 +9.3.2 +9.3.23 +9.3.28 +9.3.3 +9.3.31 +9.3.4 +9.3.5 +9.3.6 +9.3.9 +9.300.22349 +9.38.1 +9.397a52e +9.3p1 +9.4 +9.4.0 +9.4.0.0 +9.4.0.1 +9.4.0.10 +9.4.0.11 +9.4.0.12 +9.4.0.13 +9.4.0.14 +9.4.0.15 +9.4.0.16 +9.4.0.17 +9.4.0.2 +9.4.0.5 +9.4.0.6 +9.4.0.7 +9.4.0.8 +9.4.0.9 +9.4.1 +9.4.12 +9.4.14 +9.4.2 +9.4.4 +9.5 +9.5.0 +9.5.1 +9.5.2 +9.5.3 +9.5.4 +9.53.1 +9.53.3 +9.54.0 +9.5r1.6 +9.6 +9.6.0 +9.6.0.1 +9.6.0.2 +9.6.1 +9.6.2 +9.6.3 +9.6.7 +9.6.8 +9.6.9 +9.7 +9.7.0 +9.7.0.1 +9.7.1 +9.8 +9.8.0 +9.8.0.2 +9.8.1 +9.8.2 +9.8.3 +9.8.4 +9.8_3 +9.8_6 +9.9 +9.9.0 +9.9.0.0 +9.9.1 +9.9.2 +9.9.3 +9.9.4 +9.900.3 +9.900.4 +9.900.5 +90 +90.0 +90.0.4430.24.0 +91 +91.0 +91.0.2 +91.0.4472.19.0 +91.1.0esr +91.10.0 +91.10.0esr +91.11.0 +91.11.0esr +91.12.0 +91.12.0esr +91.13.0 +91.13.0esr +91.2.0esr +91.3.0esr +91.4.0esr +91.4.1esr +91.5.0esr +91.6.0esr +91.6.1esr +91.7.1esr +91.8.0 +91.8.0esr +91.9.0 +91.9.0esr +91.9.1 +92 +92.0 +92.0.4515.43.0 +921 +927.0.2 +93 +93.0 +93.0.4577.15.0 +94 +94.0 +94.0.1 +94.0.2 +949.0.1 +95 +95.0 +95.0.2 +95.0.4638.10.0 +95.0.4638.17.0 +96 +96.0 +96.0.1 +96.0.2 +96.0.3 +96.0.4664.35.0 +96.0.4664.45.0 +96.3 +97 +97.0 +97.0.1 +97.0.2 +97.0.4692.20.0 +97.0.4692.36.0 +97.0.4692.71.0 +97.1 +97.2 +97.3 +97.4 +973.0.1 +98 +98.0 +98.0.1 +98.0.2 +98.0.4758.48.0 +98.0.4758.80.0 +98.1 +98.2 +98.3 +99 +99.0 +99.0.4844.17.0 +99.0.4844.35.0 +99.0.4844.51.0 +99.1 +99.2 +9999.27 +9999.32 +9_3 +9c +9d +9e +ESMF_6_3_0rp1_ESMP_01 +Release_2017_09 +Release_2017_09_3 +dev +master +r1206 +r26 +r7271.1a4dbf6 +test +v.1.1.0 +v0.0.1 +v0.0.2 +v0.0.3 +v0.0.5 +v0.04 +v0.1 +v0.1.0 +v0.1.1 +v0.1.2 +v0.1.90 +v0.14.0 +v0.2.0 +v0.2.1 +v0.2.2 +v0.2.3 +v0.22.2 +v0.22.3 +v0.23.0 +v0.27.2 +v0.27.3 +v0.3.0 +v0.3.1 +v0.3.2 +v0.3.7 +v0.4.0 +v0.4.1 +v0.4.2 +v0.4.8 +v0.5 +v0.5.0 +v0.5.3 +v0.6.0 +v0.6.0b0 +v0.6.5 +v0.6.6 +v0.6.7 +v0.6.9 +v0.7.0 +v0.7.0a4 +v0.7.0a6 +v0.8.0 +v0.8.1 +v1.0 +v1.0.0 +v1.0.1 +v1.0b +v1.1 +v1.1.0 +v1.1.1 +v1.1.11 +v1.1.3 +v1.1.alpha +v1.10 +v1.11 +v1.13 +v1.14 +v1.14.19 +v1.15 +v1.16 +v1.17 +v1.18 +v1.19 +v1.2 +v1.2.1 +v1.2.2 +v1.20 +v1.21 +v1.22 +v1.23 +v1.24 +v1.25 +v1.26 +v1.27 +v1.28 +v1.29 +v1.3.1 +v1.3.190304ac +v1.3.2 +v1.30 +v1.4 +v1.4.0 +v1.4.0b1 +v1.4.1 +v1.4dev1 +v1.6.3 +v1.9 +v1.9.0 +v2.0.0 +v2.0.1 +v2.0.2 +v2.008 +v2.0_gamma +v2.0_gamma2 +v2.1.0 +v2.2.0 +v2.2.1 +v2.2.2 +v2.28.0 +v2.4.1 +v3.0.3.1 +v3.8 +v4.0 +v4.3.6 +v5.0 +v5.0_beta.2_8_g390494d7c +win_3.1.2 diff --git a/versions.txt b/versions.txt new file mode 100644 index 000000000..08151445d --- /dev/null +++ b/versions.txt @@ -0,0 +1,28530 @@ +0 +0.0 +0.0.0 +0.0.0.0.10 +0.0.0.0.12 +0.0.0.0.8 +0.0.0.5 +0.0.0.6 +0.0.0.9 +0.0.0.9000 +0.0.0.9999 +0.0.0a1 +0.0.0rc0 +0.0.1 +0.0.1.0 +0.0.1.1.1 +0.0.1.1.9 +0.0.1.2 +0.0.1.3 +0.0.1.4 +0.0.1.7 +0.0.1.73 +0.0.1.8 +0.0.1.9000 +0.0.1.dev +0.0.1.post7 +0.0.10 +0.0.10.post1 +0.0.100 +0.0.101 +0.0.102 +0.0.103 +0.0.104 +0.0.107 +0.0.108 +0.0.109 +0.0.10a3 +0.0.11 +0.0.110 +0.0.111 +0.0.112 +0.0.113 +0.0.114 +0.0.115 +0.0.117 +0.0.118 +0.0.119 +0.0.11a3 +0.0.12 +0.0.120 +0.0.121 +0.0.122 +0.0.13 +0.0.13.post0 +0.0.132 +0.0.134 +0.0.137 +0.0.139 +0.0.13a3 +0.0.14 +0.0.14.5 +0.0.14.6 +0.0.14.7 +0.0.14.8 +0.0.140 +0.0.141 +0.0.142 +0.0.144 +0.0.145 +0.0.146 +0.0.148 +0.0.149 +0.0.15 +0.0.15.0 +0.0.15.1 +0.0.15.2 +0.0.15.3 +0.0.15.5 +0.0.15.6 +0.0.15.7 +0.0.15.8 +0.0.15.post1 +0.0.150 +0.0.151 +0.0.152 +0.0.153 +0.0.154 +0.0.155 +0.0.156 +0.0.157 +0.0.158 +0.0.159 +0.0.16 +0.0.16.dev0 +0.0.16.post2 +0.0.160 +0.0.162 +0.0.17 +0.0.171 +0.0.172 +0.0.174 +0.0.175 +0.0.176 +0.0.177 +0.0.178 +0.0.18 +0.0.182 +0.0.184 +0.0.185 +0.0.186 +0.0.187 +0.0.188 +0.0.189 +0.0.19 +0.0.19.post0 +0.0.190 +0.0.191 +0.0.193 +0.0.194 +0.0.196 +0.0.198 +0.0.199 +0.0.1a0 +0.0.1a1 +0.0.1a11 +0.0.1a12 +0.0.1a3 +0.0.1a4 +0.0.1b0 +0.0.1b1 +0.0.1post2 +0.0.1rc2 +0.0.1rc3 +0.0.1rc4 +0.0.1rc5 +0.0.1rc7 +0.0.2 +0.0.2.0 +0.0.2.1 +0.0.2.20.1 +0.0.2.28 +0.0.2.3 +0.0.2.6 +0.0.2.70 +0.0.2.71 +0.0.2.72 +0.0.2.73 +0.0.2.74 +0.0.2.75 +0.0.2.8 +0.0.2.9 +0.0.2.9.9 +0.0.2.post1 +0.0.2.post12 +0.0.2.post2 +0.0.2.post3 +0.0.20 +0.0.200 +0.0.20080929 +0.0.20090618 +0.0.201 +0.0.20120106 +0.0.20161017 +0.0.2017.12.03 +0.0.20170418 +0.0.20180411 +0.0.20180625 +0.0.20190712172645 +0.0.202 +0.0.20200320191924 +0.0.20200720112859 +0.0.20200909083119 +0.0.20210525 +0.0.20210729 +0.0.20220707223719 +0.0.203 +0.0.204 +0.0.205 +0.0.207 +0.0.208 +0.0.209 +0.0.21 +0.0.21.dev0 +0.0.21.post1 +0.0.210 +0.0.211 +0.0.212 +0.0.213 +0.0.215 +0.0.218 +0.0.22 +0.0.22.dev0 +0.0.220 +0.0.23 +0.0.233 +0.0.24 +0.0.24.dev0 +0.0.245 +0.0.247 +0.0.248 +0.0.249 +0.0.25 +0.0.25.dev0 +0.0.25.dev2 +0.0.25.dev3 +0.0.25.dev5 +0.0.25.dev6 +0.0.25.dev7 +0.0.250 +0.0.251 +0.0.257 +0.0.259 +0.0.26 +0.0.260 +0.0.261 +0.0.262 +0.0.264 +0.0.265 +0.0.269 +0.0.27 +0.0.270 +0.0.271 +0.0.28 +0.0.29 +0.0.2a +0.0.2a1 +0.0.2a12 +0.0.2a13 +0.0.2a14 +0.0.2a15 +0.0.2a16 +0.0.2a17 +0.0.2a18 +0.0.2a19 +0.0.2a2 +0.0.2a20 +0.0.2a21 +0.0.2a22 +0.0.2a23 +0.0.2a24 +0.0.2a25 +0.0.2a26 +0.0.2a27 +0.0.2a28 +0.0.2a29 +0.0.2a30 +0.0.2a31 +0.0.2a32 +0.0.2b3 +0.0.3 +0.0.3.0 +0.0.3.1 +0.0.3.2 +0.0.3.3 +0.0.3.post1 +0.0.3.post2 +0.0.30 +0.0.31 +0.0.316 +0.0.317 +0.0.318 +0.0.319 +0.0.32 +0.0.320 +0.0.33 +0.0.34 +0.0.35 +0.0.36 +0.0.37 +0.0.38 +0.0.39 +0.0.39.1 +0.0.3a1 +0.0.3a3 +0.0.3rc6 +0.0.4 +0.0.4.1 +0.0.4.10 +0.0.4.12 +0.0.4.13 +0.0.4.14 +0.0.4.15 +0.0.4.16 +0.0.4.2 +0.0.4.5 +0.0.4.6 +0.0.4.dev0 +0.0.4.dev1 +0.0.4.post1 +0.0.40 +0.0.41 +0.0.42 +0.0.43 +0.0.44 +0.0.45 +0.0.46 +0.0.47 +0.0.48 +0.0.49 +0.0.4a +0.0.4a1 +0.0.4post1 +0.0.5 +0.0.5.1 +0.0.5.9001 +0.0.50 +0.0.51 +0.0.52 +0.0.53 +0.0.54 +0.0.55 +0.0.56 +0.0.57 +0.0.58 +0.0.59 +0.0.5a1 +0.0.5b0 +0.0.6 +0.0.6.1 +0.0.6.3 +0.0.6.dev0 +0.0.60 +0.0.61 +0.0.62 +0.0.63 +0.0.64 +0.0.65 +0.0.66 +0.0.67 +0.0.68 +0.0.69 +0.0.6rc1 +0.0.7 +0.0.7.1 +0.0.7.2 +0.0.7.post1 +0.0.7.post2 +0.0.70 +0.0.71 +0.0.72 +0.0.73 +0.0.74 +0.0.75 +0.0.76 +0.0.77 +0.0.78 +0.0.79 +0.0.8 +0.0.8.1 +0.0.8.dev0 +0.0.8.dev1 +0.0.8.post1 +0.0.80 +0.0.81 +0.0.82 +0.0.83 +0.0.84 +0.0.85 +0.0.86 +0.0.87 +0.0.88 +0.0.89 +0.0.8b0 +0.0.9 +0.0.9.1 +0.0.9.2 +0.0.9.post2 +0.0.90 +0.0.9019 +0.0.91 +0.0.92 +0.0.93 +0.0.94 +0.0.95 +0.0.96 +0.0.97 +0.0.98 +0.0.99 +0.0.9999 +0.0.post129 +0.0.post131 +0.0.post134 +0.0.post136 +0.0.post138 +0.0.post140 +0.000144 +0.000145 +0.001013 +0.0014 +0.002 +0.002006 +0.002009 +0.003 +0.004 +0.004011 +0.005 +0.006 +0.006007 +0.007 +0.008 +0.008002 +0.008004 +0.008005 +0.008006 +0.008007 +0.009 +0.01 +0.010 +0.012 +0.013 +0.014 +0.016 +0.018 +0.02 +0.02.04 +0.020 +0.021 +0.025 +0.026 +0.027 +0.028 +0.029 +0.03 +0.030 +0.031 +0.039 +0.04 +0.04.19 +0.04.20 +0.04.21 +0.048 +0.04_22 +0.05 +0.06 +0.0608 +0.063 +0.07 +0.076 +0.08 +0.09 +0.094002 +0.094003 +0.097 +0.0_1 +0.0_17 +0.0_18 +0.0_18.1 +0.0_2 +0.0_24 +0.0_25 +0.0_26 +0.0_27 +0.0_3 +0.0_4 +0.0_4.1 +0.0_5 +0.0_54 +0.0_54.1 +0.0_54.2 +0.0_55 +0.0_55.1 +0.0_7 +0.0_8 +0.0_86 +0.0_86.1 +0.0_9 +0.0_9_1 +0.0_9_2 +0.0_9_4 +0.0b32 +0.1 +0.1.0 +0.1.0.0 +0.1.0.1 +0.1.0.2 +0.1.0.30 +0.1.0.99 +0.1.0.b1 +0.1.0.beta.6 +0.1.0.dev1 +0.1.0.dev2 +0.1.0.post0 +0.1.0.post10 +0.1.0.post11 +0.1.0.post12 +0.1.0.post13 +0.1.0.post14 +0.1.0.post7 +0.1.0.post8 +0.1.0.post9 +0.1.00e9c9d +0.1.01 +0.1.04 +0.1.05 +0.1.0a +0.1.0a0 +0.1.0a1 +0.1.0a2 +0.1.0a20180905 +0.1.0a3 +0.1.0a4 +0.1.0a5 +0.1.0a6 +0.1.0a65 +0.1.0a66 +0.1.0a67 +0.1.0a70 +0.1.0a71 +0.1.0a72 +0.1.0a73 +0.1.0a74 +0.1.0a75 +0.1.0a77 +0.1.0a79 +0.1.0a80 +0.1.0a83 +0.1.0a84 +0.1.0a85 +0.1.0alpha +0.1.0b0 +0.1.0b2 +0.1.0b4 +0.1.0b5 +0.1.0b7 +0.1.0b8 +0.1.0b9 +0.1.0beta +0.1.0beta3 +0.1.0dev +0.1.0dev0 +0.1.0rc0 +0.1.0rc1 +0.1.0rc2 +0.1.1 +0.1.1.0 +0.1.1.1 +0.1.1.18 +0.1.1.21 +0.1.1.26 +0.1.1.27 +0.1.1.30 +0.1.1.31 +0.1.1.32 +0.1.1.33 +0.1.1.34 +0.1.1.35 +0.1.1.36 +0.1.1.37 +0.1.1.8 +0.1.1.dev0 +0.1.1.dev1 +0.1.1.post0 +0.1.1.post2 +0.1.1.post200513 +0.1.1.post20200531 +0.1.1.post20200602 +0.1.1.post20200603 +0.1.1.post20200604 +0.1.1.post20200605 +0.1.1.post20200606 +0.1.1.post20200608 +0.1.1.post20200609 +0.1.1.post20200610 +0.1.1.post20200611 +0.1.1.post20200612 +0.1.1.post20200615 +0.1.1.post20200616 +0.1.1.post20200617 +0.1.1.post20200620 +0.1.1.post20200622 +0.1.1.post20200623 +0.1.1.post20200630 +0.1.1.post20200704 +0.1.1.post20200711 +0.1.1.post20200715 +0.1.1.post20200716 +0.1.10 +0.1.10.8 +0.1.100 +0.1.101 +0.1.103 +0.1.104 +0.1.11 +0.1.112 +0.1.12 +0.1.13 +0.1.13.1 +0.1.13.2 +0.1.13.3 +0.1.137 +0.1.138 +0.1.139 +0.1.14 +0.1.140 +0.1.141 +0.1.142 +0.1.143 +0.1.144 +0.1.145 +0.1.148 +0.1.149 +0.1.15 +0.1.15.post1 +0.1.150 +0.1.151 +0.1.152 +0.1.16 +0.1.16.0 +0.1.1617247075 +0.1.164 +0.1.167 +0.1.168 +0.1.169 +0.1.17 +0.1.170 +0.1.171 +0.1.173 +0.1.175 +0.1.178 +0.1.18 +0.1.18.0 +0.1.18.3 +0.1.18.4 +0.1.18.post1 +0.1.180 +0.1.182 +0.1.185 +0.1.186 +0.1.189 +0.1.19 +0.1.19.2 +0.1.191 +0.1.192 +0.1.195 +0.1.197 +0.1.1a +0.1.1a1 +0.1.1a2 +0.1.1a3 +0.1.1a6 +0.1.1rc.1 +0.1.1rc0 +0.1.2 +0.1.2.0 +0.1.2.1 +0.1.2.2 +0.1.2.dev24 +0.1.2.dev25 +0.1.2.dev5 +0.1.2.post0 +0.1.2.post1 +0.1.2.post2 +0.1.2.post20200910 +0.1.2.post20200911 +0.1.2.post20200912 +0.1.2.post20200926 +0.1.2.post20200929 +0.1.2.post20201009 +0.1.2.post20201013 +0.1.2.post20201016 +0.1.2.post20201030 +0.1.2.post20201122 +0.1.2.post20201204 +0.1.2.post20201210 +0.1.2.post20201211 +0.1.2.post20201213 +0.1.2.post20201216 +0.1.2.post20201218 +0.1.2.post20210109 +0.1.2.post20210112 +0.1.2.post20210113 +0.1.2.post20210115 +0.1.2.post20210126 +0.1.2.post20210127 +0.1.2.post20210128 +0.1.2.post4 +0.1.20 +0.1.201 +0.1.2018.08.10 +0.1.2018.08.28 +0.1.2019.07.25 +0.1.2019.12.24 +0.1.203 +0.1.204 +0.1.205 +0.1.206 +0.1.207 +0.1.208 +0.1.209 +0.1.21 +0.1.210 +0.1.211 +0.1.213 +0.1.214 +0.1.215 +0.1.216 +0.1.217 +0.1.218 +0.1.219 +0.1.22 +0.1.22.dev0 +0.1.220 +0.1.221 +0.1.222 +0.1.223 +0.1.224 +0.1.225 +0.1.226 +0.1.227 +0.1.228 +0.1.229 +0.1.23 +0.1.23.dev0 +0.1.230 +0.1.231 +0.1.232 +0.1.233 +0.1.234 +0.1.235 +0.1.236 +0.1.237 +0.1.238 +0.1.239 +0.1.24 +0.1.240 +0.1.241 +0.1.242 +0.1.243 +0.1.244 +0.1.245 +0.1.246 +0.1.247 +0.1.248 +0.1.249 +0.1.25 +0.1.250 +0.1.251 +0.1.252 +0.1.253 +0.1.255 +0.1.256 +0.1.257 +0.1.258 +0.1.259 +0.1.26 +0.1.260 +0.1.261 +0.1.262 +0.1.263 +0.1.264 +0.1.265 +0.1.266 +0.1.267 +0.1.268 +0.1.269 +0.1.27 +0.1.270 +0.1.271 +0.1.272 +0.1.273 +0.1.274 +0.1.275 +0.1.277 +0.1.278 +0.1.279 +0.1.28 +0.1.28.2 +0.1.280 +0.1.281 +0.1.282 +0.1.283 +0.1.285 +0.1.286 +0.1.287 +0.1.288 +0.1.29 +0.1.290 +0.1.292 +0.1.293 +0.1.294 +0.1.295 +0.1.296 +0.1.297 +0.1.298 +0.1.299 +0.1.2a0 +0.1.2b0 +0.1.3 +0.1.3.0 +0.1.3.1 +0.1.3.2 +0.1.3.4 +0.1.3.7.0 +0.1.3.post0 +0.1.3.post20210203 +0.1.3.post20210204 +0.1.3.post20210213 +0.1.3.post20210218 +0.1.3.post20210219 +0.1.3.post20210223 +0.1.3.post20210227 +0.1.30 +0.1.300 +0.1.301 +0.1.302 +0.1.303 +0.1.304 +0.1.305 +0.1.306 +0.1.307 +0.1.308 +0.1.309 +0.1.31 +0.1.31.1 +0.1.31.2 +0.1.310 +0.1.311 +0.1.312 +0.1.315 +0.1.316 +0.1.317 +0.1.318 +0.1.319 +0.1.32 +0.1.32.1 +0.1.32.2 +0.1.320 +0.1.321 +0.1.322 +0.1.323 +0.1.324 +0.1.325 +0.1.326 +0.1.327 +0.1.328 +0.1.329 +0.1.33 +0.1.330 +0.1.331 +0.1.332 +0.1.334 +0.1.336 +0.1.337 +0.1.338 +0.1.339 +0.1.34 +0.1.340 +0.1.341 +0.1.342 +0.1.35 +0.1.36 +0.1.37 +0.1.38 +0.1.39 +0.1.3_4 +0.1.3_5 +0.1.3a0 +0.1.3a1 +0.1.3a2 +0.1.4 +0.1.4.0 +0.1.4.1 +0.1.4.2 +0.1.4.3 +0.1.4.5 +0.1.4.6 +0.1.40 +0.1.41 +0.1.42 +0.1.43 +0.1.44 +0.1.45 +0.1.46 +0.1.47 +0.1.48 +0.1.49 +0.1.4a +0.1.5 +0.1.5.1 +0.1.5.2 +0.1.5.3 +0.1.5.4 +0.1.5.5 +0.1.5.6 +0.1.5.7 +0.1.5.8 +0.1.5.9 +0.1.5.post1 +0.1.5.post2 +0.1.5.post20210423 +0.1.5.post20210508 +0.1.5.post20210511 +0.1.5.post20210514 +0.1.5.post20210515 +0.1.5.post20210604 +0.1.5.post20210609 +0.1.5.post20210617 +0.1.5.post20210624 +0.1.5.post20210630 +0.1.5.post20210719 +0.1.5.post20210727 +0.1.5.post20210730 +0.1.5.post20210804 +0.1.5.post20211023 +0.1.5.post20220119 +0.1.5.post20220212 +0.1.5.post20220305 +0.1.5.post20220414 +0.1.5.post20220504 +0.1.5.post20220506 +0.1.5.post20220512 +0.1.5.post20221122 +0.1.5.post20221213 +0.1.5.post20221220 +0.1.5.post20221221 +0.1.5.post3 +0.1.50 +0.1.51 +0.1.52 +0.1.53 +0.1.54 +0.1.55 +0.1.56 +0.1.56.1 +0.1.57 +0.1.57.1 +0.1.57.2 +0.1.57.4 +0.1.57.5 +0.1.58 +0.1.59 +0.1.5a0 +0.1.6 +0.1.60 +0.1.61 +0.1.62 +0.1.63 +0.1.64 +0.1.65 +0.1.66 +0.1.67 +0.1.68 +0.1.69 +0.1.6a0 +0.1.7 +0.1.7.0 +0.1.7.1 +0.1.7.2 +0.1.7.post1 +0.1.7.post2 +0.1.7.post3 +0.1.70 +0.1.71 +0.1.72 +0.1.73 +0.1.74 +0.1.75 +0.1.76 +0.1.77 +0.1.78 +0.1.79 +0.1.7_1 +0.1.8 +0.1.8.0 +0.1.8.1 +0.1.8.1.1 +0.1.8.2 +0.1.8.3 +0.1.8.4 +0.1.8.5 +0.1.8.8 +0.1.8.9 +0.1.8.post1 +0.1.8.post2 +0.1.8.post3 +0.1.80 +0.1.81 +0.1.82 +0.1.83 +0.1.84 +0.1.85 +0.1.86 +0.1.87 +0.1.88 +0.1.89 +0.1.9 +0.1.9.1 +0.1.9.post2 +0.1.90 +0.1.91 +0.1.92 +0.1.93 +0.1.95 +0.1.96 +0.1.97 +0.1.99 +0.1.9_1 +0.1.a1a2bc9 +0.1.dev +0.1.dev0 +0.1.dev1 +0.1.dev109 +0.1.dev11 +0.1.dev12 +0.1.dev2 +0.1.dev200325 +0.1.dev273 +0.1.post +0.1.post1 +0.1.post3 +0.1.post7 +0.1.post8 +0.1.post9 +0.1.pre +0.10 +0.10.0 +0.10.0.dev2 +0.10.0.post1 +0.10.0.post3 +0.10.0a +0.10.0b5 +0.10.0rc1 +0.10.0rc2 +0.10.1 +0.10.1.0.0 +0.10.1.2 +0.10.1.2.0 +0.10.1.2.2 +0.10.1.2729 +0.10.1.2744 +0.10.1.2981 +0.10.1.3049 +0.10.1.3200 +0.10.1.3229 +0.10.1.3266 +0.10.1.3288 +0.10.1.3666 +0.10.1.3751 +0.10.1.3756 +0.10.1.3776 +0.10.10 +0.10.100 +0.10.101 +0.10.103 +0.10.104 +0.10.105 +0.10.106 +0.10.107 +0.10.108 +0.10.109 +0.10.10b0 +0.10.11 +0.10.110 +0.10.111 +0.10.112 +0.10.113 +0.10.114 +0.10.115 +0.10.117 +0.10.118 +0.10.12 +0.10.120 +0.10.122 +0.10.124 +0.10.125 +0.10.126 +0.10.127 +0.10.128 +0.10.129 +0.10.13 +0.10.130 +0.10.131 +0.10.132 +0.10.133 +0.10.14 +0.10.15 +0.10.16 +0.10.17 +0.10.18 +0.10.19 +0.10.1a +0.10.1a0 +0.10.2 +0.10.2.0 +0.10.2.1.0 +0.10.2.2.0 +0.10.20 +0.10.21 +0.10.22 +0.10.23 +0.10.24 +0.10.25 +0.10.26 +0.10.27 +0.10.28 +0.10.29 +0.10.2a +0.10.3 +0.10.3.1 +0.10.3.2 +0.10.3.post1 +0.10.30 +0.10.31 +0.10.32 +0.10.33 +0.10.33.post1 +0.10.34 +0.10.35 +0.10.36 +0.10.37 +0.10.3a +0.10.4 +0.10.4.0 +0.10.4.0.0 +0.10.4.1 +0.10.4.2 +0.10.4.4 +0.10.4.5 +0.10.41 +0.10.42 +0.10.43 +0.10.46 +0.10.47 +0.10.48 +0.10.49 +0.10.4rc1 +0.10.5 +0.10.5.0 +0.10.5.0.0 +0.10.5.2 +0.10.5.post0 +0.10.51 +0.10.52 +0.10.53 +0.10.55 +0.10.56 +0.10.57 +0.10.59 +0.10.6 +0.10.6.0 +0.10.6.0.0 +0.10.60 +0.10.62 +0.10.64 +0.10.65 +0.10.66 +0.10.6b0 +0.10.7 +0.10.7.0.0 +0.10.7.1 +0.10.7.3.0 +0.10.7.5.0 +0.10.71 +0.10.73 +0.10.74 +0.10.75 +0.10.76 +0.10.77 +0.10.7b0 +0.10.8 +0.10.8.1 +0.10.8.1.0 +0.10.8.2 +0.10.8.3 +0.10.8.4 +0.10.8.5 +0.10.81 +0.10.82 +0.10.83 +0.10.84 +0.10.85 +0.10.86 +0.10.8b0 +0.10.9 +0.10.9.0 +0.10.9.2 +0.10.9.3 +0.10.9.4 +0.10.9.5 +0.10.9.6 +0.10.9.7 +0.10.9.9 +0.10.91 +0.10.93 +0.10.94 +0.10.95 +0.10.96 +0.10.99 +0.10.9b0 +0.100 +0.100.0 +0.100.19 +0.100.24 +0.100.30 +0.100.47 +0.100.50 +0.100.54 +0.100005 +0.100006 +0.100052 +0.100054 +0.100055 +0.101.0 +0.1010 +0.1011 +0.102.0 +0.102.1 +0.103.0 +0.104 +0.104.0 +0.104.1 +0.105.0 +0.105.13 +0.105.22 +0.106.0 +0.106.1 +0.106.6 +0.106.8 +0.107.0 +0.107.10 +0.107.14 +0.108 +0.108.0 +0.108.3 +0.108.3.2 +0.108.6 +0.108.7 +0.108.8 +0.109.0 +0.109.2 +0.109.6 +0.10_0 +0.10_1 +0.10_108 +0.10_2 +0.10_40 +0.10_46 +0.10_47 +0.10_48 +0.10_49 +0.10_5 +0.10_50 +0.10_51 +0.10_52 +0.10_53 +0.10_54 +0.10_6 +0.10_7 +0.10_8 +0.10_9 +0.10b0 +0.10rc1 +0.11 +0.11.0 +0.11.0.0 +0.11.0.0.0 +0.11.0.1 +0.11.0.5 +0.11.0.post1 +0.11.0.post2 +0.11.0a +0.11.0rc0 +0.11.0rc1 +0.11.0rc2 +0.11.1 +0.11.1.0 +0.11.1.1 +0.11.1.1.0 +0.11.1.post1 +0.11.10 +0.11.11 +0.11.12 +0.11.13 +0.11.14 +0.11.14.1 +0.11.14.3 +0.11.15 +0.11.16 +0.11.17 +0.11.18 +0.11.19 +0.11.1a +0.11.2 +0.11.2.0.0 +0.11.2.3.1 +0.11.20 +0.11.21 +0.11.22 +0.11.224 +0.11.23 +0.11.24 +0.11.25 +0.11.3 +0.11.3.1 +0.11.3.3 +0.11.3.post1 +0.11.33 +0.11.3793 +0.11.3798 +0.11.3856 +0.11.3876 +0.11.4 +0.11.4.0.1 +0.11.4.2.1 +0.11.4.3.1 +0.11.4.4.0 +0.11.42 +0.11.5 +0.11.6 +0.11.6.post1 +0.11.6.post2 +0.11.6.post3 +0.11.7 +0.11.8 +0.11.84 +0.11.9 +0.11.92 +0.110 +0.110.0 +0.110.2 +0.111 +0.111.0 +0.111.6 +0.1111a +0.1111b +0.112 +0.112.0 +0.113 +0.113.0 +0.114 +0.114.0 +0.114.4 +0.114.5 +0.115.0 +0.116.0 +0.117.0 +0.118.0 +0.119.0 +0.11_0 +0.11_1 +0.11_2 +0.11_5 +0.11_6 +0.11c +0.11rc1 +0.12 +0.12.0 +0.12.0.0 +0.12.0.1 +0.12.0.2 +0.12.0.post2 +0.12.04 +0.12.05 +0.12.06 +0.12.07 +0.12.08 +0.12.09 +0.12.0a +0.12.1 +0.12.1.1 +0.12.1.post1 +0.12.1.post2 +0.12.10 +0.12.11 +0.12.12 +0.12.13 +0.12.14 +0.12.15 +0.12.16 +0.12.17 +0.12.18 +0.12.19 +0.12.1rc1 +0.12.2 +0.12.2.0.0 +0.12.20 +0.12.21 +0.12.22 +0.12.23 +0.12.233 +0.12.24 +0.12.25 +0.12.26 +0.12.27 +0.12.28 +0.12.29 +0.12.3 +0.12.30 +0.12.31 +0.12.32 +0.12.33 +0.12.34 +0.12.35 +0.12.36 +0.12.4 +0.12.4.0.0 +0.12.5 +0.12.6 +0.12.7 +0.12.7a0 +0.12.7a12 +0.12.7a17 +0.12.7a5 +0.12.8 +0.12.8b4 +0.12.8b6 +0.12.8b9 +0.12.9 +0.12.9b0 +0.12.9b1 +0.12.9b5 +0.12.9b7 +0.120.0 +0.1202 +0.121.0 +0.122 +0.122.0 +0.124 +0.124.0 +0.125.0 +0.126.0 +0.127.0 +0.128.0 +0.129.0 +0.12_0 +0.12_1 +0.12_10 +0.12_2 +0.12_4 +0.12a4 +0.12rc1 +0.13 +0.13.0 +0.13.0.0 +0.13.0.3 +0.13.00 +0.13.01 +0.13.04 +0.13.05 +0.13.06 +0.13.1 +0.13.1.0 +0.13.1.1 +0.13.1.2 +0.13.1.3 +0.13.1.4 +0.13.1.5 +0.13.1.6 +0.13.1.7 +0.13.1.8 +0.13.1.9 +0.13.10 +0.13.11 +0.13.12 +0.13.13 +0.13.14 +0.13.15 +0.13.16 +0.13.17 +0.13.18 +0.13.19 +0.13.2 +0.13.2.0 +0.13.2.1 +0.13.2.2 +0.13.2.3 +0.13.2.4 +0.13.2.5 +0.13.20 +0.13.21 +0.13.22 +0.13.23 +0.13.234 +0.13.237 +0.13.238 +0.13.24 +0.13.241 +0.13.25 +0.13.26 +0.13.27 +0.13.28 +0.13.29 +0.13.3 +0.13.3.1 +0.13.3.3 +0.13.3.4 +0.13.3.6 +0.13.30 +0.13.31 +0.13.32 +0.13.33 +0.13.34 +0.13.35 +0.13.36 +0.13.37 +0.13.38 +0.13.39 +0.13.4 +0.13.40 +0.13.41 +0.13.42 +0.13.43 +0.13.44 +0.13.45 +0.13.46 +0.13.47 +0.13.48 +0.13.49 +0.13.5 +0.13.50 +0.13.51 +0.13.52 +0.13.53 +0.13.54 +0.13.55 +0.13.56 +0.13.57 +0.13.58 +0.13.6 +0.13.69 +0.13.7 +0.13.8 +0.13.9 +0.130.0 +0.131.0 +0.132.0 +0.135.0 +0.138.0 +0.13_0 +0.13_1 +0.13_2 +0.13_3 +0.13_4 +0.13_5 +0.13_6 +0.13_7 +0.13_8 +0.13rc1 +0.14 +0.14.0 +0.14.0.1 +0.14.0.10 +0.14.0.2 +0.14.0.3 +0.14.0.4 +0.14.0.5 +0.14.0.6 +0.14.0.7 +0.14.0.8 +0.14.0.9 +0.14.0a0 +0.14.1 +0.14.1.0 +0.14.1.1 +0.14.1.2 +0.14.1.3 +0.14.10 +0.14.11 +0.14.12 +0.14.13 +0.14.14 +0.14.15 +0.14.16 +0.14.17 +0.14.18 +0.14.19 +0.14.2 +0.14.2.1 +0.14.2.10 +0.14.2.2 +0.14.2.3 +0.14.2.4 +0.14.2.5 +0.14.2.6 +0.14.2.7 +0.14.2.8 +0.14.2.9 +0.14.20 +0.14.21 +0.14.22 +0.14.23 +0.14.24 +0.14.244 +0.14.245 +0.14.248 +0.14.25 +0.14.256 +0.14.26 +0.14.260 +0.14.261 +0.14.27 +0.14.28 +0.14.29 +0.14.2_3 +0.14.3 +0.14.3.1 +0.14.3.2 +0.14.3.3 +0.14.3.4 +0.14.3.5 +0.14.3.6 +0.14.31 +0.14.4 +0.14.5 +0.14.51 +0.14.54 +0.14.6 +0.14.6.1 +0.14.6.2 +0.14.6.3 +0.14.7 +0.14.8 +0.14.9 +0.140.0 +0.141.0 +0.144.0 +0.145.0 +0.146.0 +0.147.0 +0.148.0 +0.149.0 +0.14_0 +0.14_1 +0.14rc1 +0.15 +0.15.0 +0.15.0.1 +0.15.0.2 +0.15.07 +0.15.1 +0.15.10 +0.15.100 +0.15.11 +0.15.12 +0.15.13 +0.15.14 +0.15.15 +0.15.16 +0.15.17 +0.15.18 +0.15.19 +0.15.1b +0.15.2 +0.15.20 +0.15.21 +0.15.22 +0.15.23 +0.15.24 +0.15.25 +0.15.26 +0.15.27 +0.15.277 +0.15.28 +0.15.280 +0.15.283 +0.15.285 +0.15.287 +0.15.293 +0.15.3 +0.15.31 +0.15.32 +0.15.33 +0.15.34 +0.15.35 +0.15.36 +0.15.37 +0.15.38 +0.15.39 +0.15.4 +0.15.40 +0.15.41 +0.15.42 +0.15.43 +0.15.44 +0.15.45 +0.15.46 +0.15.47 +0.15.48 +0.15.49 +0.15.5 +0.15.50 +0.15.51 +0.15.52 +0.15.53 +0.15.6 +0.15.61 +0.15.62 +0.15.63 +0.15.64 +0.15.65 +0.15.66 +0.15.67 +0.15.68 +0.15.69 +0.15.7 +0.15.71 +0.15.72 +0.15.73 +0.15.74 +0.15.75 +0.15.76 +0.15.77 +0.15.78 +0.15.79 +0.15.8 +0.15.8.1 +0.15.80 +0.15.81 +0.15.82 +0.15.83 +0.15.84 +0.15.85 +0.15.86 +0.15.87 +0.15.88 +0.15.89 +0.15.9 +0.15.91 +0.15.92 +0.15.93 +0.15.94 +0.15.95 +0.15.96 +0.15.97 +0.15.98 +0.15.99 +0.150.0 +0.151.0 +0.152.0 +0.153.0 +0.154.0 +0.154.1 +0.155.0 +0.155.2 +0.155.3 +0.155.4 +0.156.1 +0.156.2 +0.156.3 +0.156.4 +0.157.0 +0.158.0 +0.158.1 +0.158.2 +0.159.0 +0.15_0 +0.15_4 +0.15b0 +0.15rc1 +0.16 +0.16.0 +0.16.0.post0 +0.16.1 +0.16.1.post1 +0.16.10 +0.16.11 +0.16.12 +0.16.13 +0.16.14 +0.16.15 +0.16.16 +0.16.17 +0.16.18 +0.16.19 +0.16.2 +0.16.20 +0.16.21 +0.16.22 +0.16.23 +0.16.3 +0.16.30 +0.16.31 +0.16.4 +0.16.5 +0.16.6 +0.16.7 +0.16.8 +0.16.9 +0.160.0 +0.161.0 +0.162.0 +0.163.0 +0.164.0 +0.165.0 +0.166.0 +0.167 +0.167.0 +0.168.0 +0.16_0 +0.16_1 +0.16b0 +0.17 +0.17.0 +0.17.0.post1 +0.17.0.post2 +0.17.1 +0.17.1.14 +0.17.10 +0.17.11 +0.17.12 +0.17.13 +0.17.14 +0.17.15 +0.17.16 +0.17.17 +0.17.18 +0.17.19 +0.17.2 +0.17.20 +0.17.21 +0.17.22 +0.17.23 +0.17.24 +0.17.25 +0.17.26 +0.17.27 +0.17.28 +0.17.29 +0.17.3 +0.17.30 +0.17.31 +0.17.32 +0.17.33 +0.17.34 +0.17.4 +0.17.5 +0.17.6 +0.17.7 +0.17.8 +0.17.9 +0.170 +0.170.0 +0.17024 +0.17027 +0.17029 +0.171.0 +0.172.0 +0.173 +0.173.0 +0.174.0 +0.175 +0.175.0 +0.176 +0.176.0 +0.177.0 +0.178.0 +0.179.0 +0.17_6 +0.17_8 +0.17b0 +0.18 +0.18.0 +0.18.0.post1 +0.18.1 +0.18.10 +0.18.103 +0.18.11 +0.18.12 +0.18.13 +0.18.14 +0.18.15 +0.18.16 +0.18.2 +0.18.29 +0.18.3 +0.18.30 +0.18.31 +0.18.32 +0.18.33 +0.18.34 +0.18.35 +0.18.36 +0.18.37 +0.18.38 +0.18.39 +0.18.4 +0.18.40 +0.18.41 +0.18.42 +0.18.43 +0.18.45 +0.18.46 +0.18.47 +0.18.48 +0.18.49 +0.18.5 +0.18.50 +0.18.51 +0.18.52 +0.18.53 +0.18.54 +0.18.55 +0.18.56 +0.18.57 +0.18.6 +0.18.61 +0.18.62 +0.18.63 +0.18.64 +0.18.65 +0.18.66 +0.18.67 +0.18.68 +0.18.69 +0.18.7 +0.18.70 +0.18.71 +0.18.72 +0.18.73 +0.18.74 +0.18.75 +0.18.76 +0.18.77 +0.18.78 +0.18.79 +0.18.8 +0.18.80 +0.18.82 +0.18.83 +0.18.84 +0.18.85 +0.18.86 +0.18.87 +0.18.88 +0.18.9 +0.18.90 +0.180.0 +0.181.0 +0.182 +0.182.0 +0.183 +0.183.0 +0.184 +0.184.0 +0.185 +0.185.0 +0.186 +0.186.0 +0.187 +0.187.0 +0.188 +0.188.0 +0.189 +0.189.0 +0.18_205 +0.18b0 +0.19 +0.19.0 +0.19.0.dev2 +0.19.0.post0 +0.19.0.post1 +0.19.1 +0.19.1.1 +0.19.1.2 +0.19.1.3 +0.19.1.4 +0.19.1.5 +0.19.1.6 +0.19.10 +0.19.11 +0.19.12 +0.19.13 +0.19.14 +0.19.15 +0.19.16 +0.19.17 +0.19.18 +0.19.19 +0.19.2 +0.19.20 +0.19.21 +0.19.22 +0.19.23 +0.19.24 +0.19.25 +0.19.26 +0.19.27 +0.19.28 +0.19.29 +0.19.3 +0.19.30 +0.19.31 +0.19.32 +0.19.33 +0.19.34 +0.19.35 +0.19.36 +0.19.37 +0.19.38 +0.19.39 +0.19.4 +0.19.40 +0.19.41 +0.19.42 +0.19.43 +0.19.44 +0.19.45 +0.19.46 +0.19.47 +0.19.48 +0.19.49 +0.19.5 +0.19.50 +0.19.51 +0.19.52 +0.19.53 +0.19.54 +0.19.55 +0.19.56 +0.19.57 +0.19.6 +0.19.7 +0.19.8 +0.19.8.1 +0.19.9 +0.19.alpha2 +0.19.alpha3 +0.190.0 +0.191.0 +0.192.0 +0.1923 +0.1924 +0.193 +0.193.0 +0.194 +0.194.0 +0.195.0 +0.196.0 +0.198.0 +0.199.0 +0.19_1 +0.19_2 +0.19_3 +0.19_4 +0.1_0 +0.1_1 +0.1_10 +0.1_11 +0.1_12 +0.1_13.1 +0.1_14 +0.1_15 +0.1_17 +0.1_18 +0.1_19 +0.1_2 +0.1_2.1 +0.1_20 +0.1_2017_10_26 +0.1_21 +0.1_22 +0.1_23 +0.1_24 +0.1_25 +0.1_26 +0.1_28 +0.1_29 +0.1_3 +0.1_3.1 +0.1_30 +0.1_32 +0.1_33 +0.1_3_2 +0.1_4 +0.1_40 +0.1_43 +0.1_45 +0.1_47 +0.1_48 +0.1_49 +0.1_5 +0.1_5.1 +0.1_50 +0.1_6 +0.1_7 +0.1_8 +0.1_8.1 +0.1_9 +0.1_97 +0.1_d4ff4aab +0.1a +0.1a0 +0.1a1 +0.1a1.dev11 +0.1a2 +0.1a5 +0.1a6 +0.1b1 +0.1b10 +0.1b11 +0.1b12 +0.1b2 +0.1b3 +0.1b4 +0.1b5 +0.1b6 +0.1b7 +0.1b8 +0.1b9 +0.1dev44 +0.1pre +0.1rc0 +0.1rc1 +0.1rc1.post2 +0.1rc2 +0.1rc3 +0.1rc4 +0.2 +0.2.0 +0.2.0+0.py37fix +0.2.0.0 +0.2.0.1 +0.2.0.12 +0.2.0.13 +0.2.0.14 +0.2.0.2 +0.2.0.3 +0.2.0.5 +0.2.0.dev0 +0.2.0.post0 +0.2.0.post1 +0.2.0.post2 +0.2.00 +0.2.01 +0.2.02 +0.2.0_beta +0.2.0a +0.2.0a0 +0.2.0a1 +0.2.0a13 +0.2.0a14 +0.2.0a15 +0.2.0a2 +0.2.0a8 +0.2.0a9 +0.2.0b0 +0.2.0b1 +0.2.0dev0 +0.2.0rc0 +0.2.0rc2 +0.2.1 +0.2.1.0 +0.2.1.1 +0.2.1.dev0 +0.2.1.dev70 +0.2.1.post0 +0.2.1.post1 +0.2.1.post6 +0.2.10 +0.2.10.0 +0.2.101 +0.2.11 +0.2.11.1 +0.2.11.2 +0.2.11.2022 +0.2.12 +0.2.12.1 +0.2.12.post1 +0.2.13 +0.2.13.1 +0.2.13.2 +0.2.13.post2 +0.2.13post20171012 +0.2.14 +0.2.14.2.1 +0.2.15 +0.2.15.0.1 +0.2.16 +0.2.16.1 +0.2.16.1.1 +0.2.16.2 +0.2.16.3 +0.2.16.4 +0.2.16.5 +0.2.16.6 +0.2.17 +0.2.17.0.1 +0.2.17.1 +0.2.17.2 +0.2.175 +0.2.18 +0.2.18.0.1 +0.2.18.1.1 +0.2.18.2.1 +0.2.19 +0.2.19.0.1 +0.2.19.1 +0.2.1a +0.2.1a0 +0.2.2 +0.2.2.0 +0.2.2.1 +0.2.2.post0 +0.2.2.post1 +0.2.2.post2 +0.2.2.post3 +0.2.20 +0.2.20.1 +0.2.201 +0.2.202 +0.2.203 +0.2.204 +0.2.205 +0.2.21 +0.2.211 +0.2.22 +0.2.23 +0.2.24 +0.2.25 +0.2.26 +0.2.27 +0.2.28 +0.2.29 +0.2.2a1 +0.2.2a2 +0.2.2a3 +0.2.3 +0.2.3.1 +0.2.3.2 +0.2.3.3 +0.2.3.4 +0.2.3.5 +0.2.3.6 +0.2.3.7 +0.2.3.7.4 +0.2.3.7.5 +0.2.3.7.6 +0.2.3.7.7 +0.2.3.post1 +0.2.30 +0.2.31 +0.2.32 +0.2.33 +0.2.333 +0.2.34 +0.2.35 +0.2.36 +0.2.37 +0.2.38 +0.2.39 +0.2.3b0 +0.2.3dev +0.2.3rc +0.2.4 +0.2.4.0 +0.2.4.1 +0.2.4.2 +0.2.4.post1 +0.2.4.post3 +0.2.4.post4 +0.2.40 +0.2.41 +0.2.42 +0.2.43 +0.2.44 +0.2.45 +0.2.46 +0.2.47 +0.2.48 +0.2.49 +0.2.4b0 +0.2.4dev +0.2.5 +0.2.5.0 +0.2.5.1 +0.2.5.2 +0.2.5.3 +0.2.5.4 +0.2.5.5 +0.2.5.6 +0.2.5.7 +0.2.5.post1 +0.2.50 +0.2.51 +0.2.52 +0.2.53 +0.2.54 +0.2.55 +0.2.56 +0.2.57 +0.2.58 +0.2.59 +0.2.6 +0.2.6.0 +0.2.6.3 +0.2.6.5 +0.2.6.post1 +0.2.60 +0.2.61 +0.2.62 +0.2.63 +0.2.66 +0.2.7 +0.2.7.0 +0.2.7.1 +0.2.7.2 +0.2.7.post0 +0.2.77 +0.2.8 +0.2.8.0 +0.2.8.1 +0.2.8.2 +0.2.8.7 +0.2.8.post1 +0.2.9 +0.2.9.0 +0.2.9.1 +0.2.9.2 +0.2.9.3 +0.2.9.4 +0.2.9.5 +0.2.9.9 +0.2.9.post1 +0.2.post +0.2.post0 +0.20 +0.20.0 +0.20.0.1 +0.20.0.post0 +0.20.1 +0.20.10 +0.20.11 +0.20.11.14 +0.20.11.23 +0.20.11.7 +0.20.12 +0.20.12.26 +0.20.12.post2 +0.20.13 +0.20.14 +0.20.15 +0.20.15.post1 +0.20.16 +0.20.17 +0.20.18 +0.20.19 +0.20.2 +0.20.20 +0.20.21 +0.20.22 +0.20.23 +0.20.24 +0.20.25 +0.20.26 +0.20.27 +0.20.28 +0.20.28.post2 +0.20.29 +0.20.3 +0.20.30 +0.20.31 +0.20.32 +0.20.33 +0.20.34 +0.20.35 +0.20.36 +0.20.37 +0.20.38 +0.20.4 +0.20.40 +0.20.41 +0.20.42 +0.20.43 +0.20.44 +0.20.45 +0.20.46 +0.20.5 +0.20.50 +0.20.6 +0.20.6.1 +0.20.7 +0.20.8 +0.20.9 +0.200.0 +0.201 +0.201.0 +0.202.0 +0.2020.05.27 +0.2020.0701 +0.2020.0805 +0.2021.0814 +0.2021.0909 +0.2021.10 +0.2021.11 +0.2021.12 +0.2021.13 +0.2021.14 +0.2021.15 +0.2021.16 +0.2021.17 +0.2021.18 +0.2021.19 +0.2021.20 +0.2021.21 +0.2021.22 +0.2021.23 +0.2021.24 +0.2021.25 +0.2021.26 +0.2021.27 +0.2021.28 +0.2021.29 +0.2021.30 +0.2021.31 +0.2021.32 +0.2021.33 +0.2021.34 +0.2021.35 +0.2021.36 +0.2021.37 +0.2021.38 +0.2021.39 +0.2021.40 +0.2021.41 +0.2021.42 +0.2021.43 +0.2021.44 +0.2021.45 +0.2021.46 +0.2021.47 +0.2021.48 +0.2021.49 +0.2021.50 +0.2021.51 +0.2021.52 +0.2021.6 +0.2021.7 +0.2021.8 +0.2021.9 +0.2022.0421 +0.2022.1 +0.2022.10 +0.2022.11 +0.2022.12 +0.2022.13 +0.2022.14 +0.2022.15 +0.2022.16 +0.2022.17 +0.2022.19 +0.2022.2 +0.2022.20 +0.2022.21 +0.2022.22 +0.2022.23 +0.2022.24 +0.2022.25 +0.2022.26 +0.2022.27 +0.2022.28 +0.2022.29 +0.2022.3 +0.2022.30 +0.2022.31 +0.2022.32 +0.2022.33 +0.2022.34 +0.2022.35 +0.2022.36 +0.2022.37 +0.2022.38 +0.2022.4 +0.2022.40 +0.2022.41 +0.2022.42 +0.2022.43 +0.2022.44 +0.2022.45 +0.2022.46 +0.2022.47 +0.2022.48 +0.2022.49 +0.2022.5 +0.2022.50 +0.2022.51 +0.2022.52 +0.2022.53 +0.2022.6 +0.2022.7 +0.2022.8 +0.2022.8.9 +0.2022.9 +0.2022.9.0 +0.20220715.0 +0.2023.1 +0.2023.10 +0.2023.11 +0.2023.12 +0.2023.13 +0.2023.14 +0.2023.15 +0.2023.16 +0.2023.17 +0.2023.18 +0.2023.19 +0.2023.2 +0.2023.3 +0.2023.4 +0.2023.5 +0.2023.6 +0.2023.7 +0.2023.8 +0.2023.9 +0.203.0 +0.204001 +0.204003 +0.206003 +0.207001 +0.207002 +0.208 +0.20_137 +0.20_17 +0.20_34 +0.20_35 +0.20_38 +0.20_40 +0.20_41 +0.20_44 +0.20_45 +0.21 +0.21.0 +0.21.0_1 +0.21.1 +0.21.10 +0.21.10.24 +0.21.11 +0.21.12 +0.21.13 +0.21.14 +0.21.15 +0.21.16 +0.21.17 +0.21.18 +0.21.19 +0.21.2 +0.21.20 +0.21.21 +0.21.22 +0.21.23 +0.21.24 +0.21.25 +0.21.2b +0.21.3 +0.21.4 +0.21.4.1 +0.21.4.18 +0.21.5 +0.21.5.11 +0.21.5.17 +0.21.5.20 +0.21.5.22 +0.21.5.25 +0.21.6 +0.21.6.10.1 +0.21.6.30 +0.21.7 +0.21.7.24 +0.21.8 +0.21.8.0 +0.21.8a +0.21.8b +0.21.9 +0.21.9.15 +0.21_247 +0.21_247.1 +0.21_8 +0.21b0 +0.22 +0.22.0 +0.22.0a1 +0.22.1 +0.22.10 +0.22.10.20 +0.22.10.4.4 +0.22.11 +0.22.11.4.0 +0.22.12 +0.22.13 +0.22.14 +0.22.15 +0.22.2 +0.22.2.post1 +0.22.3 +0.22.4 +0.22.4.16 +0.22.5 +0.22.6 +0.22.7 +0.22.8 +0.22.8.21.16 +0.22.8.27 +0.22.9 +0.223 +0.22_1 +0.22_11 +0.22_8 +0.22b0 +0.23 +0.23.0 +0.23.1 +0.23.10 +0.23.11 +0.23.12 +0.23.13 +0.23.14 +0.23.15 +0.23.16 +0.23.17 +0.23.18 +0.23.18.1 +0.23.19 +0.23.195983 +0.23.2 +0.23.2.13.2 +0.23.20 +0.23.21 +0.23.22 +0.23.23 +0.23.24 +0.23.25 +0.23.26 +0.23.27 +0.23.28 +0.23.29 +0.23.3 +0.23.30 +0.23.31 +0.23.32 +0.23.33 +0.23.34 +0.23.35 +0.23.37 +0.23.38 +0.23.39 +0.23.4 +0.23.40 +0.23.5 +0.23.6 +0.23.7 +0.23.8 +0.23.9 +0.2304 +0.236 +0.238 +0.239 +0.23_0 +0.23_1 +0.23_4 +0.23_42 +0.23_5 +0.23_6 +0.23b0 +0.23b2 +0.24 +0.24.0 +0.24.0.post1 +0.24.0.post2 +0.24.1 +0.24.10 +0.24.11 +0.24.12 +0.24.13 +0.24.14 +0.24.15 +0.24.16 +0.24.17 +0.24.19 +0.24.2 +0.24.20 +0.24.201332 +0.24.208024 +0.24.21 +0.24.210930 +0.24.3 +0.24.4 +0.24.5 +0.24.6 +0.24.7 +0.24.8 +0.24.9 +0.240 +0.241 +0.24b0 +0.25 +0.25.0 +0.25.1 +0.25.1.1 +0.25.10 +0.25.11 +0.25.2 +0.25.218240 +0.25.222597 +0.25.228311 +0.25.25 +0.25.3 +0.25.36 +0.25.37 +0.25.39 +0.25.4 +0.25.40 +0.25.5 +0.25.6 +0.25.7 +0.25.8 +0.25.9 +0.25_1 +0.25b0 +0.25b1 +0.25b2 +0.26 +0.26.0 +0.26.1 +0.26.10 +0.26.11 +0.26.12 +0.26.2 +0.26.232864 +0.26.233415 +0.26.3 +0.26.4 +0.26.5 +0.26.6 +0.26.7 +0.2614 +0.2620 +0.2621 +0.2622 +0.2623 +0.2624 +0.26_0 +0.26b1 +0.27 +0.27.0 +0.27.0.post1 +0.27.1 +0.27.10 +0.27.11 +0.27.12 +0.27.13 +0.27.14 +0.27.15 +0.27.16 +0.27.2 +0.27.236950 +0.27.238334 +0.27.244707 +0.27.253010 +0.27.258160 +0.27.3 +0.27.4 +0.27.5 +0.27.6 +0.27.7 +0.27.8 +0.27.9 +0.27_2 +0.27b0 +0.28 +0.28.0 +0.28.1 +0.28.10 +0.28.11 +0.28.12 +0.28.13 +0.28.14 +0.28.15 +0.28.16 +0.28.18 +0.28.19 +0.28.2 +0.28.20 +0.28.21 +0.28.22 +0.28.23 +0.28.24 +0.28.3 +0.28.4 +0.28.5 +0.28.6 +0.28.7 +0.28.8 +0.28.9 +0.2800 +0.280230 +0.282.0 +0.283.0 +0.284.0 +0.285.0 +0.285.1 +0.286 +0.286.1 +0.287 +0.287.0 +0.288 +0.288.0 +0.289 +0.289.1 +0.28_0 +0.28_1 +0.28b0 +0.28b1 +0.29 +0.29.0 +0.29.0.gfm.2 +0.29.0.gfm.3 +0.29.0.gfm.4 +0.29.0.gfm.6 +0.29.0.gfm.7 +0.29.0.gfm.8 +0.29.1 +0.29.10 +0.29.11 +0.29.12 +0.29.13 +0.29.14 +0.29.15 +0.29.16 +0.29.17 +0.29.18 +0.29.19 +0.29.2 +0.29.20 +0.29.21 +0.29.22 +0.29.23 +0.29.24 +0.29.25 +0.29.26 +0.29.27 +0.29.28 +0.29.29 +0.29.3 +0.29.30 +0.29.31 +0.29.32 +0.29.33 +0.29.34 +0.29.35 +0.29.4 +0.29.5 +0.29.6 +0.29.7 +0.29.8 +0.29.9 +0.290 +0.290.1 +0.291.1 +0.292 +0.292.0 +0.293 +0.293.0 +0.294 +0.294.0 +0.295.1 +0.296.0 +0.297 +0.297.1 +0.298.1 +0.299.0 +0.29b0 +0.29b1 +0.2_0 +0.2_1 +0.2_10 +0.2_11 +0.2_12 +0.2_13 +0.2_14 +0.2_15 +0.2_16 +0.2_17 +0.2_18 +0.2_19 +0.2_2 +0.2_21 +0.2_22 +0.2_23 +0.2_3 +0.2_357 +0.2_3571 +0.2_4 +0.2_5 +0.2_5.2 +0.2_6 +0.2_6.1 +0.2_7 +0.2_7.1 +0.2_8 +0.2_9 +0.2a1.dev0 +0.2a20201028 +0.2b1.dev0 +0.2rc0 +0.2rc1 +0.2rc1.dev0 +0.2rc2 +0.2rc3 +0.3 +0.3.0 +0.3.0.0 +0.3.0.1 +0.3.0.2 +0.3.0.3 +0.3.0.dev0 +0.3.0.post +0.3.0.post0 +0.3.0.post1 +0.3.0.post3 +0.3.0a +0.3.0a0 +0.3.0a1 +0.3.0a22 +0.3.0b0 +0.3.0dev +0.3.0post0 +0.3.0rc0 +0.3.0rc1 +0.3.0rc2 +0.3.1 +0.3.1.1 +0.3.1.2 +0.3.1.3 +0.3.1.4 +0.3.1.post1 +0.3.1.post2 +0.3.10 +0.3.10.0 +0.3.10.post1 +0.3.10.post2 +0.3.10.post3 +0.3.10.post4 +0.3.10.post5 +0.3.10.post6 +0.3.10.post7 +0.3.11 +0.3.11.0 +0.3.11.post1 +0.3.11.post2 +0.3.11.post3 +0.3.111 +0.3.112 +0.3.113 +0.3.12 +0.3.12.0 +0.3.12.1 +0.3.12.2 +0.3.12.post0 +0.3.13 +0.3.13.0 +0.3.1348 +0.3.14 +0.3.14.0 +0.3.14.post1 +0.3.14.post2 +0.3.14.post3 +0.3.14.post4 +0.3.14b +0.3.15 +0.3.15.1 +0.3.15.2 +0.3.16 +0.3.16.0 +0.3.17 +0.3.18 +0.3.19 +0.3.1_1 +0.3.1a +0.3.2 +0.3.2.0 +0.3.2.1 +0.3.2.2 +0.3.2.9.1 +0.3.2.post0 +0.3.2.post1 +0.3.2.post2 +0.3.2.post3 +0.3.20 +0.3.21 +0.3.22 +0.3.23 +0.3.24 +0.3.25 +0.3.26 +0.3.27 +0.3.28 +0.3.28.860c495 +0.3.29 +0.3.2_1 +0.3.2_2 +0.3.2b1 +0.3.2rc1 +0.3.3 +0.3.3.0 +0.3.3.1 +0.3.3.2 +0.3.3.4 +0.3.3.4.0 +0.3.3.5.0 +0.3.3.7.0 +0.3.3.9.1 +0.3.3.9.2 +0.3.3.9.3 +0.3.3.dev0 +0.3.3.dev1 +0.3.3.post0 +0.3.3.post1 +0.3.3.post2 +0.3.3.post3 +0.3.3.post4 +0.3.3.post5 +0.3.3.post6 +0.3.3.post7 +0.3.30 +0.3.31 +0.3.32 +0.3.33 +0.3.34 +0.3.35 +0.3.36 +0.3.37 +0.3.38 +0.3.39 +0.3.3rc1 +0.3.4 +0.3.4.0 +0.3.4.0.1 +0.3.4.0.2 +0.3.4.0.2.6 +0.3.4.0.3 +0.3.4.0.4 +0.3.4.0.5 +0.3.4.0.6 +0.3.4.1 +0.3.4.1.1 +0.3.4.2 +0.3.4.3 +0.3.4.5 +0.3.4.7 +0.3.4.8 +0.3.4.9 +0.3.4.post0 +0.3.4.post1 +0.3.4.post2 +0.3.40 +0.3.41 +0.3.42 +0.3.43 +0.3.44 +0.3.45 +0.3.46 +0.3.47 +0.3.48 +0.3.49 +0.3.4_1 +0.3.4a7 +0.3.5 +0.3.5.0 +0.3.5.0.1 +0.3.5.0.2 +0.3.5.1 +0.3.5.3 +0.3.5.post1 +0.3.50 +0.3.51 +0.3.54 +0.3.543 +0.3.55 +0.3.56 +0.3.57 +0.3.58 +0.3.59 +0.3.5_1 +0.3.5a +0.3.6 +0.3.6.0 +0.3.6.1 +0.3.6.1.1 +0.3.6.1.2 +0.3.6.2 +0.3.6.2.1 +0.3.6.3 +0.3.6.4 +0.3.6.4.1 +0.3.6.post2 +0.3.60 +0.3.61 +0.3.63 +0.3.65 +0.3.68 +0.3.69 +0.3.6_1 +0.3.7 +0.3.7.0 +0.3.7.1 +0.3.7.2 +0.3.8 +0.3.8.1 +0.3.8.2 +0.3.8.3 +0.3.8.4 +0.3.8_1 +0.3.9 +0.3.9.0 +0.3.95 +0.3.dev16 +0.3.dev2130 +0.3.dev2147 +0.3.dev2199 +0.3.dev2206 +0.3.dev2227 +0.3.dev2231 +0.3.post +0.3.post2 +0.3.post4 +0.3.pre +0.3.rc5 +0.30 +0.30.0 +0.30.1 +0.30.10 +0.30.11 +0.30.12 +0.30.13 +0.30.14 +0.30.2 +0.30.3 +0.30.4 +0.30.5 +0.30.6 +0.30.7 +0.30.8 +0.30.9 +0.300 +0.300.1 +0.301 +0.301.1 +0.302 +0.302.1 +0.303.1 +0.304 +0.304.1 +0.305 +0.305.0 +0.306 +0.306.0 +0.307.0 +0.308.0 +0.309.0 +0.30b0 +0.30b1 +0.31 +0.31.0 +0.31.1 +0.31.10 +0.31.11 +0.31.12 +0.31.2 +0.31.3 +0.31.4 +0.31.5 +0.31.6 +0.31.7 +0.31.8 +0.31.9 +0.310.0 +0.311.0 +0.312.0 +0.313.0 +0.314 +0.314.0 +0.315.0 +0.316.0 +0.317.0 +0.318.0 +0.318.1 +0.319.0 +0.319.2 +0.31b0 +0.32 +0.32.0 +0.32.1 +0.32.12 +0.32.14 +0.32.16 +0.32.2 +0.32.21 +0.32.3 +0.32.4 +0.32.5 +0.32.6 +0.32.7 +0.32.8 +0.320.0 +0.321.0 +0.321.1 +0.322.0 +0.322.1 +0.323.0 +0.324.1 +0.325.1 +0.326.1 +0.327 +0.327.1 +0.328 +0.328.0 +0.329 +0.329.0 +0.32b0 +0.33 +0.33.0 +0.33.0rc1 +0.33.1 +0.33.10 +0.33.11 +0.33.12 +0.33.2 +0.33.3 +0.33.4 +0.33.5 +0.33.6 +0.33.7 +0.33.8 +0.33.9 +0.330 +0.330.0 +0.331 +0.331.0 +0.332 +0.33b0 +0.34 +0.34.0 +0.34.0rc1 +0.34.0rc2 +0.34.1 +0.34.10 +0.34.11 +0.34.12 +0.34.2 +0.34.3 +0.34.4 +0.34.5 +0.34.6 +0.34.7 +0.34.8 +0.34.9 +0.35 +0.35.0 +0.35.1 +0.35.10 +0.35.11 +0.35.12 +0.35.13 +0.35.14 +0.35.16 +0.35.17 +0.35.18 +0.35.19 +0.35.2 +0.35.20 +0.35.3 +0.35.4 +0.35.5 +0.35.6 +0.35.7 +0.35.8 +0.35.9 +0.36 +0.36.0 +0.36.1 +0.36.10 +0.36.11 +0.36.12 +0.36.13 +0.36.2 +0.36.3 +0.36.4 +0.36.5 +0.36.6 +0.36.7 +0.36.8 +0.36.9 +0.36b0 +0.37 +0.37.0 +0.37.1 +0.37.2 +0.37.3 +0.37.4 +0.37.5 +0.37.6 +0.37.7 +0.37.8 +0.37.9 +0.37a +0.37b0 +0.38 +0.38.0 +0.38.1 +0.38.1.post1 +0.38.10 +0.38.11 +0.38.12 +0.38.196 +0.38.2 +0.38.3 +0.38.4 +0.38.5 +0.38.6 +0.38.7 +0.38.8 +0.38.9 +0.39 +0.39.0 +0.39.1 +0.39.10 +0.39.11 +0.39.12 +0.39.13 +0.39.2 +0.39.3 +0.39.4 +0.39.5 +0.39.6 +0.39.7 +0.39.8 +0.39.9 +0.3_0 +0.3_0.1 +0.3_1 +0.3_14 +0.3_16 +0.3_17 +0.3_18 +0.3_19 +0.3_2 +0.3_2.1 +0.3_2.2 +0.3_2.3 +0.3_20 +0.3_21 +0.3_3 +0.3_3.1 +0.3_4 +0.3_40 +0.3_41 +0.3_42 +0.3_43 +0.3_48 +0.3_5 +0.3_5.1 +0.3_54 +0.3_56 +0.3_57 +0.3_58 +0.3_59 +0.3_6 +0.3_60 +0.3_61 +0.3_62 +0.3_63 +0.3_64 +0.3_7 +0.3_8 +0.3_81 +0.3_819 +0.3_8196 +0.3_9 +0.3a1 +0.3dev +0.3rc1 +0.4 +0.4.0 +0.4.0.0 +0.4.0.1 +0.4.0.7 +0.4.0.dev3 +0.4.0.post +0.4.0.post0 +0.4.0.post1 +0.4.0.post2 +0.4.0.post3 +0.4.00 +0.4.0a +0.4.0a1 +0.4.0a4 +0.4.0a5 +0.4.0b1 +0.4.0b2 +0.4.0b4 +0.4.0b6 +0.4.0b7 +0.4.0b8 +0.4.0b9 +0.4.0rc0 +0.4.0rc3 +0.4.0rc4 +0.4.1 +0.4.1.1 +0.4.1.dev0 +0.4.1.post0 +0.4.1.post1 +0.4.1.post2 +0.4.1.post3 +0.4.1.post4 +0.4.1.post5 +0.4.1.post6 +0.4.10 +0.4.100 +0.4.101 +0.4.102 +0.4.103 +0.4.104 +0.4.105 +0.4.106 +0.4.107 +0.4.108 +0.4.109 +0.4.11 +0.4.110 +0.4.111 +0.4.112 +0.4.113 +0.4.114 +0.4.115 +0.4.116 +0.4.117 +0.4.118 +0.4.119 +0.4.12 +0.4.120 +0.4.121 +0.4.122 +0.4.123 +0.4.124 +0.4.125 +0.4.126 +0.4.127 +0.4.128 +0.4.129 +0.4.13 +0.4.130 +0.4.131 +0.4.132 +0.4.133 +0.4.14 +0.4.1432 +0.4.1456 +0.4.1475 +0.4.1488 +0.4.15 +0.4.15.1 +0.4.15.2 +0.4.15.3 +0.4.15.4 +0.4.15.5 +0.4.15.6 +0.4.15.7 +0.4.15.8 +0.4.1500 +0.4.1520 +0.4.1525 +0.4.1527 +0.4.1536 +0.4.1545 +0.4.1555 +0.4.16 +0.4.1602 +0.4.1612 +0.4.1620 +0.4.1647b01 +0.4.1650 +0.4.17 +0.4.18 +0.4.19 +0.4.1a1 +0.4.1a4 +0.4.1dev +0.4.2 +0.4.2.1 +0.4.2.2 +0.4.2.3 +0.4.2.5 +0.4.2.post0 +0.4.2.post1 +0.4.2.post2 +0.4.2.post3 +0.4.2.post4 +0.4.2.post5 +0.4.20 +0.4.21 +0.4.22 +0.4.23 +0.4.24 +0.4.25 +0.4.26 +0.4.27 +0.4.28 +0.4.29 +0.4.2_1 +0.4.2a0 +0.4.2a3 +0.4.2b13 +0.4.3 +0.4.3.1 +0.4.3.2 +0.4.3.3 +0.4.3.4 +0.4.3.5 +0.4.3.post0 +0.4.3.post1 +0.4.3.post2 +0.4.3.post3 +0.4.3.post4 +0.4.3.post5 +0.4.30 +0.4.31 +0.4.32 +0.4.33 +0.4.34 +0.4.35 +0.4.38 +0.4.39 +0.4.3a0 +0.4.3a1 +0.4.4 +0.4.4.1 +0.4.4.2 +0.4.4.3 +0.4.4.4 +0.4.4.5 +0.4.4.6 +0.4.4.dev4 +0.4.4.post1 +0.4.40 +0.4.41 +0.4.4_1 +0.4.5 +0.4.5.1 +0.4.5.post0 +0.4.5.post1 +0.4.5.post10 +0.4.5.post11 +0.4.5.post12 +0.4.5.post13 +0.4.5.post16 +0.4.5.post2 +0.4.5.post3 +0.4.5.post4 +0.4.5.post5 +0.4.5.post6 +0.4.5.post7 +0.4.5.post8 +0.4.5.post9 +0.4.51 +0.4.56 +0.4.57 +0.4.58 +0.4.59 +0.4.6 +0.4.6.1 +0.4.6.2 +0.4.6.post0 +0.4.6.post1 +0.4.6.post2 +0.4.6.post3 +0.4.63 +0.4.65 +0.4.66 +0.4.67 +0.4.68 +0.4.7 +0.4.7.1 +0.4.7.2 +0.4.7.4 +0.4.7.post0 +0.4.8 +0.4.8.1 +0.4.8.post1 +0.4.86 +0.4.87 +0.4.88 +0.4.89 +0.4.8_1 +0.4.9 +0.4.9.1 +0.4.9.11 +0.4.9.14 +0.4.9.15 +0.4.9.18 +0.4.9.3 +0.4.90 +0.4.96 +0.4.99 +0.4.9_3 +0.4.dev0 +0.4.p0 +0.4.post1 +0.4.post2 +0.40 +0.40.0 +0.40.1 +0.40.2 +0.40.3 +0.40.4 +0.40.5 +0.40.6 +0.40.dev0 +0.400 +0.401 +0.403 +0.41 +0.41.0 +0.41.1 +0.41.3 +0.41.5 +0.41.6 +0.41.7 +0.41_2 +0.41_24 +0.42 +0.42.0 +0.42.1 +0.42.10 +0.42.11 +0.42.12 +0.42.13 +0.42.14 +0.42.15 +0.42.16 +0.42.18 +0.42.19 +0.42.2 +0.42.3 +0.42.4 +0.42.5 +0.42.6 +0.42.7 +0.42.8 +0.4224 +0.4231 +0.4232 +0.4234 +0.428 +0.43 +0.43.0 +0.43.1 +0.43.2 +0.43.3 +0.430 +0.44 +0.44.0 +0.44.1 +0.44.2 +0.44.3 +0.44.4 +0.44.5 +0.44.6 +0.45 +0.45.0 +0.45.1 +0.45.10 +0.45.11 +0.45.13 +0.45.14 +0.45.15 +0.45.16 +0.45.17 +0.45.18 +0.45.2 +0.45.3 +0.45.4 +0.45.5 +0.45.6 +0.45.7 +0.45.8 +0.45.9 +0.46 +0.46.0 +0.46.1 +0.46.2 +0.46.3 +0.46.4 +0.46.5 +0.46.6 +0.46.7 +0.47 +0.47.0 +0.47.1 +0.47.2 +0.47.3 +0.47.4 +0.47.5 +0.47.6 +0.47_3 +0.47_4 +0.48 +0.48.0 +0.48.1 +0.48.2 +0.48.3 +0.48.4 +0.48.5 +0.48.8 +0.48_3 +0.49 +0.49.0 +0.49.1 +0.49.10 +0.49.11 +0.49.12 +0.49.13 +0.49.14 +0.49.15 +0.49.16 +0.49.17 +0.49.18 +0.49.2 +0.49.3 +0.49.4 +0.49.5 +0.49.6 +0.49.8 +0.49.9 +0.49_1 +0.49_2 +0.4_0 +0.4_0.1 +0.4_1 +0.4_1.2 +0.4_10 +0.4_11 +0.4_11.1 +0.4_11.2 +0.4_12 +0.4_12.1 +0.4_12.2 +0.4_12.3 +0.4_12.4 +0.4_124 +0.4_1245 +0.4_13 +0.4_14 +0.4_14.1 +0.4_15 +0.4_16 +0.4_17 +0.4_18 +0.4_18.1 +0.4_18.2 +0.4_2 +0.4_20 +0.4_22 +0.4_23 +0.4_24 +0.4_25 +0.4_26 +0.4_27 +0.4_3 +0.4_31 +0.4_39 +0.4_4 +0.4_40 +0.4_41 +0.4_43 +0.4_44 +0.4_45 +0.4_5 +0.4_6 +0.4_7 +0.4_8 +0.4_8.6 +0.4_9 +0.4_93 +0.4_94 +0.4_94.1 +0.4_95 +0.4a1 +0.4a2 +0.4b2 +0.4rc1 +0.5 +0.5.0 +0.5.0.0 +0.5.0.1 +0.5.0.2 +0.5.0.5 +0.5.0.post0 +0.5.0.post1 +0.5.0.pre +0.5.0a +0.5.0b3 +0.5.0rc0 +0.5.0rc1 +0.5.0rc2 +0.5.1 +0.5.1.0 +0.5.1.1 +0.5.1.post0 +0.5.1.post1 +0.5.10 +0.5.10.1 +0.5.10.2 +0.5.10.3 +0.5.10.4 +0.5.10.5 +0.5.10.6 +0.5.10.7 +0.5.11 +0.5.12 +0.5.12.1 +0.5.13 +0.5.1360 +0.5.14 +0.5.1447 +0.5.15 +0.5.16 +0.5.17 +0.5.18 +0.5.19 +0.5.19_1 +0.5.19b0 +0.5.1_2 +0.5.1dev +0.5.2 +0.5.2.1 +0.5.2.dev1 +0.5.2.post0 +0.5.2.post1 +0.5.20 +0.5.20140801 +0.5.20191212 +0.5.20200222 +0.5.21 +0.5.21.1 +0.5.21.3 +0.5.22 +0.5.23 +0.5.23.1 +0.5.24 +0.5.24.1 +0.5.24.4 +0.5.25 +0.5.26 +0.5.27 +0.5.28 +0.5.28.1 +0.5.29 +0.5.29.1 +0.5.29.2 +0.5.29.3 +0.5.29.4 +0.5.29.5 +0.5.2b +0.5.3 +0.5.3+git20220429 +0.5.3.2 +0.5.3.post1 +0.5.3.post2 +0.5.30 +0.5.31 +0.5.32 +0.5.32.1 +0.5.32.2 +0.5.32.3 +0.5.32.4 +0.5.32.5 +0.5.32.7 +0.5.32.8 +0.5.33 +0.5.34 +0.5.35 +0.5.36 +0.5.37 +0.5.38 +0.5.39 +0.5.3dev +0.5.4 +0.5.4.1 +0.5.4.post1 +0.5.40 +0.5.41 +0.5.42 +0.5.43 +0.5.44 +0.5.45 +0.5.46 +0.5.47 +0.5.48 +0.5.49 +0.5.5 +0.5.5.2 +0.5.50 +0.5.51 +0.5.52 +0.5.53 +0.5.54 +0.5.56 +0.5.57 +0.5.6 +0.5.6.1 +0.5.61 +0.5.62 +0.5.7 +0.5.8 +0.5.9 +0.5.9.1 +0.5.9.2 +0.5.9.4 +0.5.9.5 +0.5.p0 +0.5.post1 +0.50 +0.50.0 +0.50.1 +0.50.10 +0.50.11 +0.50.12 +0.50.13 +0.50.14 +0.50.16 +0.50.17 +0.50.2 +0.50.20 +0.50.21 +0.50.22 +0.50.23 +0.50.3 +0.50.4 +0.50.5 +0.50.6 +0.50.7 +0.50.8 +0.500 +0.5001 +0.501 +0.50_1 +0.51 +0.51.0 +0.51.1 +0.51.2 +0.51.4 +0.51.5 +0.51_1 +0.51_2 +0.51_3 +0.52 +0.52.0 +0.52.1 +0.52.2 +0.52.20 +0.52.21 +0.52.23 +0.52.9 +0.53 +0.53.0 +0.53.1 +0.53.2 +0.53.3 +0.54 +0.54.0 +0.54.1 +0.54.2 +0.54.3 +0.55 +0.55.0 +0.55.1 +0.55.2 +0.55.3 +0.55.4 +0.550 +0.56 +0.56.0 +0.56.1 +0.56.2 +0.56.3 +0.56.4 +0.560 +0.57 +0.57.0 +0.57.1 +0.57.2 +0.57.3 +0.570 +0.58 +0.58.0 +0.58.1 +0.58.2 +0.58.3 +0.58.4 +0.58.5 +0.59 +0.59.0 +0.59.0b0 +0.59.1 +0.59.2 +0.59.3 +0.59.4 +0.59.7 +0.59.8 +0.590 +0.5_0 +0.5_0.0 +0.5_0.1 +0.5_0.2 +0.5_1 +0.5_10 +0.5_10.1 +0.5_11 +0.5_13.1 +0.5_13.2 +0.5_13.4 +0.5_13.5 +0.5_13.6 +0.5_14 +0.5_2 +0.5_2.1 +0.5_23.1097 +0.5_3 +0.5_3.0 +0.5_4 +0.5_4.1 +0.5_4.2 +0.5_4.3 +0.5_4.4 +0.5_5 +0.5_6 +0.5_7 +0.5_8 +0.5_9 +0.5rc1 +0.6 +0.6.0 +0.6.0.0 +0.6.0.1 +0.6.0.2 +0.6.0.3 +0.6.0.4 +0.6.0.5 +0.6.0.6 +0.6.0.7 +0.6.0.8 +0.6.0.post0 +0.6.0.post1 +0.6.0.post2 +0.6.0.post20220126 +0.6.0.post3 +0.6.0.post4 +0.6.0a +0.6.0a1 +0.6.0a4 +0.6.0a6 +0.6.0a8 +0.6.0b3 +0.6.0rc0 +0.6.0rc1 +0.6.1 +0.6.1.0 +0.6.1.1 +0.6.1.1.3 +0.6.1.2 +0.6.1.3 +0.6.10 +0.6.10.0 +0.6.10.1 +0.6.10.2 +0.6.10.3 +0.6.10.4 +0.6.10.5 +0.6.11 +0.6.11.1 +0.6.11.2 +0.6.11.3 +0.6.11.4 +0.6.11.5 +0.6.11.6 +0.6.12 +0.6.12.0 +0.6.12.1 +0.6.12.2 +0.6.12.3 +0.6.12.4 +0.6.13 +0.6.13.0 +0.6.13.1 +0.6.13.2 +0.6.13.3 +0.6.14 +0.6.14.1 +0.6.14.2 +0.6.14.4 +0.6.14.6 +0.6.14.7 +0.6.14a1 +0.6.15 +0.6.15.1 +0.6.15.3 +0.6.16 +0.6.16.1 +0.6.16.2 +0.6.16.3 +0.6.16.4 +0.6.17 +0.6.17.3 +0.6.17.4 +0.6.17.6 +0.6.17.7 +0.6.18 +0.6.18.1 +0.6.18.2 +0.6.18.6 +0.6.19 +0.6.19.1 +0.6.19.3 +0.6.19.4 +0.6.19.5 +0.6.19.6 +0.6.19.7 +0.6.1a +0.6.1a1 +0.6.1rc0 +0.6.1rc1 +0.6.2 +0.6.2.1 +0.6.2.1.0 +0.6.2.1.1 +0.6.2.1.2 +0.6.2.1.3 +0.6.2.2 +0.6.2.3 +0.6.2.5 +0.6.2.post0 +0.6.20 +0.6.21 +0.6.22 +0.6.22.post1 +0.6.23 +0.6.24 +0.6.25 +0.6.26 +0.6.27 +0.6.28 +0.6.29 +0.6.2a +0.6.3 +0.6.3.1 +0.6.3.1.0 +0.6.3.1.1 +0.6.30 +0.6.31 +0.6.32 +0.6.33 +0.6.34 +0.6.35 +0.6.36 +0.6.37 +0.6.38 +0.6.39 +0.6.3a +0.6.4 +0.6.4.1 +0.6.4.2 +0.6.40 +0.6.42 +0.6.43 +0.6.44 +0.6.45 +0.6.46 +0.6.47 +0.6.48 +0.6.49 +0.6.4b1 +0.6.4b2 +0.6.5 +0.6.50 +0.6.51 +0.6.52 +0.6.53 +0.6.54 +0.6.55 +0.6.56 +0.6.57 +0.6.58 +0.6.59 +0.6.5a0 +0.6.5a1 +0.6.5a2 +0.6.5a3 +0.6.5a4 +0.6.6 +0.6.6.a0 +0.6.6.post1 +0.6.61 +0.6.64 +0.6.7 +0.6.7.2 +0.6.7.post0 +0.6.7.post2 +0.6.70 +0.6.71 +0.6.72 +0.6.73 +0.6.74 +0.6.75 +0.6.76 +0.6.77 +0.6.78 +0.6.79 +0.6.7_1 +0.6.8 +0.6.8.1 +0.6.8.2 +0.6.8.3 +0.6.8.4 +0.6.80 +0.6.9 +0.6.9.0 +0.6.9.1 +0.6.9.12 +0.6.9.14 +0.6.9.16 +0.6.9.2 +0.6.9.3 +0.6.9.4 +0.6.9.6 +0.6.94 +0.6.pre +0.60 +0.60.0 +0.60.0b0 +0.60.1 +0.60.1b0 +0.60.2 +0.60.3 +0.60.4 +0.60.6 +0.60.7 +0.60.8 +0.600 +0.60_10 +0.60_11 +0.60_13 +0.60_14 +0.60_15 +0.60_16 +0.60_17 +0.61 +0.61.0 +0.61.0b0 +0.61.1 +0.61.1b0 +0.61.2 +0.61.3 +0.61.4 +0.61.5 +0.610 +0.62 +0.62.0 +0.62.0b0 +0.62.1 +0.62.1b0 +0.62.2 +0.620 +0.625 +0.63 +0.63.0 +0.63.0b0 +0.63.1 +0.63.2 +0.63.3 +0.63.4 +0.630 +0.64 +0.64.0 +0.64.0b0 +0.64.1 +0.64.2 +0.641 +0.65 +0.65.0 +0.65.0b0 +0.65.1 +0.65.2 +0.65.3 +0.650 +0.66 +0.66.0 +0.66.0b0 +0.66.1 +0.66.10 +0.66.11 +0.66.1b0 +0.66.2 +0.66.3 +0.66.4 +0.66.5 +0.66.6 +0.66.7 +0.66.8 +0.66.9 +0.660 +0.67 +0.67.0 +0.67.0b0 +0.67.1 +0.67.2b0 +0.670 +0.68 +0.68.0 +0.68.1 +0.68.2 +0.69 +0.69.0 +0.69.1 +0.69.6 +0.69.8 +0.6_0 +0.6_1 +0.6_10 +0.6_11 +0.6_12 +0.6_13 +0.6_14 +0.6_15 +0.6_2 +0.6_2.1 +0.6_2.2 +0.6_2.3 +0.6_22 +0.6_26 +0.6_28 +0.6_29 +0.6_3 +0.6_3.3 +0.6_3.4 +0.6_30 +0.6_4 +0.6_5 +0.6_6 +0.6_7 +0.6_70 +0.6_8 +0.6_9 +0.6_9.1 +0.6_9.2 +0.6_99 +0.6a2 +0.6rc1 +0.7 +0.7.0 +0.7.0.0 +0.7.0.5 +0.7.0.7 +0.7.0.post4 +0.7.0.pre +0.7.0a +0.7.0a4 +0.7.0a5 +0.7.0a6 +0.7.0b0 +0.7.0rc0 +0.7.0rc1 +0.7.1 +0.7.1.0 +0.7.1.1 +0.7.1.post2 +0.7.1.post3 +0.7.1.post4 +0.7.1.post6 +0.7.1.post7 +0.7.10 +0.7.11 +0.7.11.post0 +0.7.12 +0.7.13 +0.7.14 +0.7.15 +0.7.16 +0.7.17 +0.7.17.dev1 +0.7.18 +0.7.19 +0.7.1_1 +0.7.1a +0.7.2 +0.7.2.0 +0.7.2.1 +0.7.2.2 +0.7.20 +0.7.20170805 +0.7.21 +0.7.22 +0.7.23 +0.7.24 +0.7.25 +0.7.26 +0.7.27 +0.7.28 +0.7.29 +0.7.3 +0.7.3.1 +0.7.3.2 +0.7.30 +0.7.31 +0.7.35 +0.7.36 +0.7.37 +0.7.39 +0.7.3b0 +0.7.4 +0.7.4.1 +0.7.4.2 +0.7.4.3 +0.7.4.4 +0.7.40 +0.7.41 +0.7.42 +0.7.43 +0.7.44 +0.7.45 +0.7.46 +0.7.47 +0.7.48 +0.7.49 +0.7.5 +0.7.5.2 +0.7.5.3 +0.7.5.4 +0.7.51 +0.7.52 +0.7.53 +0.7.54 +0.7.55 +0.7.56 +0.7.57 +0.7.58 +0.7.59 +0.7.6 +0.7.6.1 +0.7.60 +0.7.61 +0.7.63 +0.7.64 +0.7.66 +0.7.7 +0.7.7.1 +0.7.71 +0.7.72 +0.7.74 +0.7.8 +0.7.800.2.0 +0.7.9 +0.7.90 +0.7.post3 +0.7.post4 +0.70 +0.70.0 +0.70.1 +0.70.10 +0.70.11 +0.70.11.1 +0.70.12.1 +0.70.12.2 +0.70.13 +0.70.14 +0.70.2 +0.70.3 +0.70.4 +0.70.5 +0.70.6 +0.70.6.1 +0.70.7 +0.70.8 +0.70.9 +0.700 +0.701 +0.71 +0.71.0 +0.71.1 +0.710 +0.711 +0.72 +0.72.0 +0.72.1 +0.72.10 +0.72.2 +0.72.3 +0.72.4 +0.72.5 +0.72.6 +0.72.7 +0.72.8 +0.720 +0.722 +0.73 +0.73.0 +0.73.0.debian_1.sage_2016_08_02 +0.73.1 +0.73.2 +0.73.3 +0.73.4 +0.73.debian_1.sage_2016_08_02 +0.730 +0.74 +0.74.0 +0.74.1 +0.74.10 +0.74.11 +0.74.2 +0.74.3 +0.74.4 +0.74.5 +0.74.6 +0.74.7 +0.74.8 +0.74.9 +0.740 +0.75 +0.75.0 +0.75.1 +0.75.2 +0.75.3 +0.750 +0.75_7 +0.76 +0.76.0 +0.76.1 +0.761 +0.76_0 +0.77 +0.77.0 +0.77.1 +0.77.2 +0.77.3 +0.770 +0.78 +0.78.0 +0.78.1 +0.78.5 +0.780 +0.7807 +0.781 +0.7811 +0.782 +0.79 +0.79.0 +0.79.1 +0.790 +0.7905 +0.7_0 +0.7_1 +0.7_10 +0.7_103 +0.7_11 +0.7_12 +0.7_2 +0.7_25 +0.7_3 +0.7_4 +0.7_47 +0.7_5 +0.7_6 +0.7_7 +0.7_70 +0.7_8 +0.7_80 +0.7_9 +0.7_90 +0.7dev +0.7rc1 +0.8 +0.8.0 +0.8.0.0 +0.8.0.1 +0.8.0.3 +0.8.03 +0.8.0a +0.8.0a2 +0.8.0b4 +0.8.0dev +0.8.0rc +0.8.0rc2 +0.8.0rc3 +0.8.0rc4 +0.8.1 +0.8.1.0 +0.8.1.1 +0.8.1.2 +0.8.1.4 +0.8.1.5 +0.8.1.post1 +0.8.10 +0.8.11 +0.8.12 +0.8.13 +0.8.13b +0.8.14 +0.8.15 +0.8.16 +0.8.17 +0.8.18 +0.8.19 +0.8.2 +0.8.2.0 +0.8.2.1 +0.8.2.post0 +0.8.20 +0.8.21 +0.8.21.post7 +0.8.22 +0.8.23 +0.8.2337 +0.8.24 +0.8.25 +0.8.26 +0.8.27 +0.8.28 +0.8.29 +0.8.3 +0.8.3.1 +0.8.3.2 +0.8.3.post1 +0.8.30 +0.8.31 +0.8.32 +0.8.33 +0.8.34 +0.8.35 +0.8.36 +0.8.37 +0.8.38 +0.8.39 +0.8.4 +0.8.4.1 +0.8.4.2 +0.8.4.3 +0.8.4.4 +0.8.4.5 +0.8.4.6 +0.8.4.post0 +0.8.40 +0.8.5 +0.8.5.2 +0.8.5.3 +0.8.5.4 +0.8.5.5 +0.8.5.6 +0.8.5.7 +0.8.500.0 +0.8.5_2 +0.8.5_3 +0.8.5_4 +0.8.5prealpha +0.8.6 +0.8.6.2 +0.8.7 +0.8.8 +0.8.8.1 +0.8.9 +0.8.95 +0.8.95.1 +0.8.95.2 +0.8.95.3 +0.8.95.4 +0.8.95.5 +0.8.post1 +0.8.rc1 +0.80 +0.80.0 +0.800 +0.8000 +0.8001 +0.806 +0.807 +0.808 +0.81 +0.81.0 +0.81.1 +0.81.3 +0.812 +0.82 +0.82.0 +0.82.1 +0.82.10 +0.82.2 +0.82.3 +0.82.4 +0.82.5 +0.82.6 +0.82.7 +0.82.8 +0.82.9 +0.83 +0.83.0 +0.84 +0.84.0 +0.84.1 +0.84.2 +0.85 +0.85.0 +0.85.1 +0.85.2 +0.86 +0.86.0 +0.86.2 +0.86.4 +0.86.5 +0.87 +0.87.0 +0.88 +0.88.0 +0.89 +0.89.0 +0.89.1 +0.8_0 +0.8_1 +0.8_104 +0.8_14 +0.8_16 +0.8_18 +0.8_19 +0.8_2 +0.8_29 +0.8_3 +0.8_30 +0.8_31 +0.8_32 +0.8_34 +0.8_35 +0.8_4 +0.8_5 +0.8_6 +0.8_67 +0.8_7 +0.8_71 +0.8_72 +0.8_73 +0.8_74 +0.8_75 +0.8_76 +0.8_79 +0.8_8 +0.8_80 +0.8_81 +0.8_82 +0.8_83 +0.8_84 +0.8_9 +0.8rc1 +0.9 +0.9.0 +0.9.0.0 +0.9.0.1 +0.9.0.post0 +0.9.0.post1 +0.9.0.post4 +0.9.0a +0.9.0b5 +0.9.1 +0.9.1.0 +0.9.1.1 +0.9.1.post0 +0.9.1.post1 +0.9.10 +0.9.10.0 +0.9.10.1 +0.9.10.2 +0.9.10.3 +0.9.100 +0.9.100.5.0 +0.9.11 +0.9.12 +0.9.12.post1 +0.9.12_2 +0.9.12_4.2 +0.9.12_4.3 +0.9.12_4.4 +0.9.13 +0.9.13.1 +0.9.13.4 +0.9.13.5 +0.9.14 +0.9.14.0 +0.9.15 +0.9.16 +0.9.16.post1 +0.9.16.post2 +0.9.16.post3 +0.9.17 +0.9.17.post1 +0.9.18 +0.9.18_1 +0.9.19 +0.9.1_4 +0.9.1_5 +0.9.1_8 +0.9.1_9 +0.9.1b5 +0.9.1post0 +0.9.2 +0.9.2.0 +0.9.2.1 +0.9.2.dev2 +0.9.20 +0.9.200.7.0 +0.9.20000 +0.9.2015 +0.9.21 +0.9.22 +0.9.23 +0.9.24 +0.9.25 +0.9.26 +0.9.27 +0.9.28 +0.9.29 +0.9.2_0 +0.9.2_1 +0.9.2_2 +0.9.2b5 +0.9.3 +0.9.3.0 +0.9.3.1 +0.9.3.2543 +0.9.3.2600 +0.9.3.post0 +0.9.3.post1 +0.9.3.post2 +0.9.30 +0.9.300.2.0 +0.9.31 +0.9.32 +0.9.33 +0.9.34 +0.9.35 +0.9.36 +0.9.37 +0.9.38 +0.9.39 +0.9.4 +0.9.4.0 +0.9.4.4 +0.9.4.6 +0.9.4.post0 +0.9.4.post1 +0.9.40 +0.9.400.2.0 +0.9.41 +0.9.42 +0.9.43 +0.9.44 +0.9.45 +0.9.46 +0.9.47 +0.9.48 +0.9.49 +0.9.4b5 +0.9.5 +0.9.5.1 +0.9.5.2 +0.9.5.3 +0.9.5.5 +0.9.5.6 +0.9.5.7 +0.9.50 +0.9.500.2.0 +0.9.51 +0.9.52 +0.9.53 +0.9.54 +0.9.55 +0.9.56 +0.9.57 +0.9.58 +0.9.59 +0.9.5_1 +0.9.5b6 +0.9.6 +0.9.6.1 +0.9.6.1.post1 +0.9.6.2 +0.9.6.3 +0.9.6.4 +0.9.6.5 +0.9.60 +0.9.61 +0.9.62 +0.9.63 +0.9.64 +0.9.65 +0.9.66 +0.9.67 +0.9.68 +0.9.69 +0.9.6b7 +0.9.7 +0.9.7.1 +0.9.7.2 +0.9.7.3 +0.9.7.6 +0.9.7.7 +0.9.7.post1 +0.9.7.post6 +0.9.70 +0.9.700.2.0 +0.9.71 +0.9.72 +0.9.73 +0.9.74 +0.9.75 +0.9.76 +0.9.77 +0.9.78 +0.9.79 +0.9.8 +0.9.8.0 +0.9.8.1 +0.9.8.2 +0.9.8.3 +0.9.8.4 +0.9.8.5 +0.9.8.dev57 +0.9.8.post1 +0.9.8.post2 +0.9.80 +0.9.800.1.0 +0.9.800.3.0 +0.9.800.4.0 +0.9.81 +0.9.82 +0.9.83 +0.9.84 +0.9.85 +0.9.850.1.0 +0.9.86 +0.9.860.2.0 +0.9.87 +0.9.870.2.0 +0.9.88 +0.9.880.1.0 +0.9.89 +0.9.9 +0.9.9.0 +0.9.9.1 +0.9.9.2 +0.9.9.3 +0.9.9.4 +0.9.9.7 +0.9.9.8 +0.9.9.9 +0.9.9.92 +0.9.9.dev57 +0.9.9.post1 +0.9.90 +0.9.900.1.0 +0.9.900.2.0 +0.9.900.3.0 +0.9.91 +0.9.92 +0.9.921 +0.9.93 +0.9.94 +0.9.95 +0.9.96 +0.9.97 +0.9.98 +0.9.99 +0.9.dev0 +0.90 +0.90.0 +0.90.1 +0.90.2 +0.90.3 +0.90.7 +0.900 +0.902 +0.91 +0.91.0 +0.91.1 +0.91.3 +0.91.4 +0.910 +0.92 +0.92.0 +0.92.1 +0.92.6 +0.920 +0.928 +0.92_7 +0.93 +0.93.0 +0.93.1 +0.93.2 +0.93.31 +0.93.4 +0.93.41 +0.93.42 +0.93.43 +0.930 +0.931 +0.93_2 +0.93_5 +0.93_6 +0.93_7 +0.93_8 +0.93_9 +0.94 +0.94.0 +0.94.01 +0.94.02 +0.94.04 +0.94.05 +0.94.1 +0.94.11 +0.94.2 +0.94.3 +0.940 +0.941 +0.942 +0.95 +0.95.0 +0.95.01 +0.950 +0.95_0 +0.95_1 +0.96 +0.96.0 +0.96.1 +0.96.2 +0.96.8 +0.960 +0.961 +0.97 +0.97.0 +0.97.1 +0.97.10 +0.97.11 +0.97.2 +0.97.4 +0.97.5 +0.97.7 +0.97.8 +0.97.9 +0.9704 +0.971 +0.9725 +0.98 +0.98.0 +0.98.1 +0.98.10 +0.98.11 +0.98.12 +0.98.13 +0.98.14 +0.98.15 +0.98.16 +0.98.17 +0.98.18 +0.98.19 +0.98.2 +0.98.3 +0.98.4 +0.98.5 +0.98.6 +0.98.7 +0.98.8 +0.98.9 +0.981 +0.982 +0.987 +0.988 +0.989 +0.99 +0.99.0 +0.99.1 +0.99.10 +0.99.11 +0.99.12 +0.99.14 +0.99.15 +0.99.16 +0.99.17 +0.99.18 +0.99.2 +0.99.20 +0.99.24 +0.99.25 +0.99.26 +0.99.27 +0.99.28 +0.99.29 +0.99.3 +0.99.31.3 +0.99.31.6 +0.99.32 +0.99.33 +0.99.34 +0.99.35 +0.99.36 +0.99.37 +0.99.38 +0.99.39 +0.99.4 +0.99.40 +0.99.41 +0.99.42 +0.99.43 +0.99.44 +0.99.45 +0.99.46 +0.99.47 +0.99.48 +0.99.49 +0.99.4a0 +0.99.5 +0.99.55 +0.99.6 +0.99.7 +0.99.8 +0.99.9 +0.99.9901 +0.990 +0.991 +0.9929 +0.996 +0.997004 +0.999 +0.9999.3 +0.9999999 +0.999999999 +0.999_16 +0.999_19 +0.999_19.1 +0.999_2 +0.999_20 +0.999_3 +0.999_4 +0.999_5 +0.999_6 +0.999_7 +0.99_0 +0.99_2 +0.99_3 +0.99b6 +0.9_0 +0.9_04 +0.9_1 +0.9_1.1 +0.9_10 +0.9_106 +0.9_107 +0.9_11 +0.9_12 +0.9_13 +0.9_14 +0.9_15.1 +0.9_16 +0.9_17 +0.9_18 +0.9_19 +0.9_2 +0.9_2.1 +0.9_20 +0.9_21 +0.9_22 +0.9_23 +0.9_25 +0.9_26 +0.9_27 +0.9_29 +0.9_3 +0.9_30 +0.9_31 +0.9_32 +0.9_35 +0.9_36 +0.9_37 +0.9_38 +0.9_39 +0.9_4 +0.9_40 +0.9_5 +0.9_50 +0.9_51 +0.9_52 +0.9_55 +0.9_57 +0.9_6 +0.9_6.1 +0.9_69 +0.9_69_3 +0.9_7 +0.9_7.1 +0.9_70 +0.9_73 +0.9_74 +0.9_75 +0.9_77 +0.9_78 +0.9_79 +0.9_8 +0.9_80 +0.9_81 +0.9_81_2 +0.9_9 +0.9b0 +0.9rc2 +0.9rc3 +0.post0.dev1081 +022 +04Sep15.e78 +09.04.2017 +094h +0_2004.04.21 +1 +1!0.94i +1!0.94j +1!0.94m +1!1.0.0 +1!152.20180717 +1!152.20180806 +1!161.3030 +1!164.3095 +1!2.0.1 +1!2.0.2 +1!2.2.3 +1!3.0.0 +1.0 +1.0.0 +1.0.0.0 +1.0.0.1 +1.0.0.2 +1.0.0.20181017 +1.0.0.3 +1.0.0.b3 +1.0.0.beta.2 +1.0.0.beta.3 +1.0.0.beta.4 +1.0.0.beta.5 +1.0.0.beta1 +1.0.0.dev0 +1.0.0.dev2 +1.0.0.post1 +1.0.0.post2 +1.0.0.post3 +1.0.0.post4 +1.0.007 +1.0.0a0 +1.0.0a1 +1.0.0a2 +1.0.0a23 +1.0.0a3 +1.0.0a4 +1.0.0a5 +1.0.0a6 +1.0.0a9 +1.0.0b +1.0.0b0 +1.0.0b1 +1.0.0b11 +1.0.0b19 +1.0.0b2 +1.0.0b20 +1.0.0b24 +1.0.0b26 +1.0.0b27 +1.0.0b28 +1.0.0b29 +1.0.0b3 +1.0.0b30 +1.0.0b31 +1.0.0b32 +1.0.0b4 +1.0.0b5 +1.0.0b6 +1.0.0b7 +1.0.0b9 +1.0.0beta10 +1.0.0beta11 +1.0.0beta12 +1.0.0beta13 +1.0.0beta14 +1.0.0beta15 +1.0.0beta16 +1.0.0beta17 +1.0.0beta18 +1.0.0beta4 +1.0.0beta5 +1.0.0beta6 +1.0.0beta7 +1.0.0beta8 +1.0.0beta9 +1.0.0rc0 +1.0.0rc1 +1.0.0rc10 +1.0.0rc12 +1.0.0rc2 +1.0.0rc3.post1 +1.0.0rc3.post2 +1.0.0rc4 +1.0.0rc6 +1.0.0rc7 +1.0.0rc8 +1.0.0rc9 +1.0.0rc92 +1.0.0rc93 +1.0.1 +1.0.1.0 +1.0.1.1 +1.0.1.1518 +1.0.1.1597 +1.0.1.2 +1.0.1.20181028 +1.0.1.20181030 +1.0.1.20190102 +1.0.1.20190122 +1.0.1.20190823 +1.0.1.20191029 +1.0.1.3 +1.0.1.4 +1.0.1.5 +1.0.1.9 +1.0.1.beta1 +1.0.1.dev0 +1.0.1.post0 +1.0.10 +1.0.11 +1.0.12 +1.0.13 +1.0.14 +1.0.15 +1.0.157409 +1.0.16 +1.0.1628549850 +1.0.1629029818 +1.0.1650254349 +1.0.1650280980 +1.0.1655855963 +1.0.1655946639 +1.0.17 +1.0.18 +1.0.19 +1.0.19.1 +1.0.19.2 +1.0.19.3 +1.0.19.4 +1.0.19.5 +1.0.1_2 +1.0.1b0 +1.0.2 +1.0.2.0 +1.0.2.1 +1.0.2.2 +1.0.2.3 +1.0.2.dev0 +1.0.2.g +1.0.2.post1 +1.0.2.post2 +1.0.20 +1.0.20.10 +1.0.20171215 +1.0.20180209171722 +1.0.20180225105849 +1.0.20180601100346 +1.0.20180622 +1.0.20181114 +1.0.20181201184214 +1.0.20181217162649 +1.0.20190228134645 +1.0.20190228155703 +1.0.20190410 +1.0.20190720 +1.0.20190902 +1.0.20190906054215 +1.0.20190906212748 +1.0.20190915164430 +1.0.20191022103248 +1.0.20191225192155 +1.0.20201102 +1.0.20201224 +1.0.20210317 +1.0.20211006 +1.0.2021_05_05 +1.0.20220720 +1.0.20230411 +1.0.21 +1.0.22 +1.0.221505 +1.0.225602 +1.0.2275031 +1.0.23 +1.0.23.1 +1.0.2309030 +1.0.24 +1.0.25 +1.0.26 +1.0.26.0 +1.0.260601 +1.0.2652 +1.0.27 +1.0.28 +1.0.2878 +1.0.29 +1.0.2_2 +1.0.2_2.1 +1.0.2b0 +1.0.2b1 +1.0.2b6 +1.0.2b7 +1.0.2b9 +1.0.2h +1.0.2k +1.0.2l +1.0.2m +1.0.2n +1.0.2o +1.0.2p +1.0.2q +1.0.2r +1.0.2rc3 +1.0.2t +1.0.2u +1.0.3 +1.0.3.0 +1.0.3.1 +1.0.3.2 +1.0.3.3 +1.0.3.4 +1.0.3.5 +1.0.3.beta1 +1.0.3.dev20161029 +1.0.30 +1.0.3032 +1.0.3041 +1.0.31 +1.0.3151 +1.0.32 +1.0.33 +1.0.3342 +1.0.3390 +1.0.34 +1.0.3445 +1.0.3471 +1.0.35 +1.0.3529 +1.0.3586 +1.0.36 +1.0.3606021 +1.0.3627 +1.0.3698 +1.0.37 +1.0.3771 +1.0.38 +1.0.3826 +1.0.3c +1.0.4 +1.0.4.0.0.0 +1.0.4.2 +1.0.4.3 +1.0.4.4 +1.0.4.5 +1.0.4.6 +1.0.4.7 +1.0.4.beta1 +1.0.4.dev0 +1.0.40 +1.0.400 +1.0.4053 +1.0.4062 +1.0.41 +1.0.410 +1.0.4111 +1.0.4154 +1.0.4155 +1.0.42 +1.0.4241 +1.0.43 +1.0.4312 +1.0.47 +1.0.4_1 +1.0.5 +1.0.5.1 +1.0.5.2 +1.0.5.2.1 +1.0.5.post2 +1.0.51 +1.0.53 +1.0.5_1 +1.0.6 +1.0.6.1 +1.0.6.2 +1.0.6.dev0 +1.0.61 +1.0.62 +1.0.63 +1.0.64 +1.0.65 +1.0.66 +1.0.67 +1.0.6712 +1.0.68 +1.0.6812 +1.0.6909 +1.0.7 +1.0.7.1 +1.0.7.6 +1.0.7.post1 +1.0.7041 +1.0.8 +1.0.8.0 +1.0.8.1 +1.0.8.2 +1.0.8.3 +1.0.8.dev0 +1.0.8.post0 +1.0.8.post1 +1.0.81 +1.0.82 +1.0.84 +1.0.85 +1.0.86 +1.0.9 +1.0.9.2 +1.0.9.post0 +1.0.90 +1.0.91 +1.0.beta +1.0.dev1 +1.0.post1 +1.0.rev20May22.818 +1.00 +1.00.0 +1.00.44 +1.00.78 +1.00.81 +1.00.89 +1.000 +1.000036 +1.000037 +1.0002 +1.0007 +1.001 +1.001002 +1.002 +1.002001 +1.002002 +1.002005 +1.003 +1.004 +1.004000 +1.004003 +1.004004 +1.005 +1.006 +1.007001 +1.007002 +1.007003 +1.01 +1.010 +1.012.2 +1.012004 +1.012005 +1.013 +1.014 +1.014000 +1.016 +1.016002 +1.016006 +1.016007 +1.018.1 +1.01_2 +1.02 +1.022 +1.023 +1.02r6 +1.03 +1.03.00 +1.03.1 +1.03.2 +1.031 +1.033 +1.04 +1.043 +1.045 +1.05 +1.06 +1.07 +1.07.1 +1.08 +1.09 +1.0_0 +1.0_0.0 +1.0_0.2 +1.0_1 +1.0_1.1 +1.0_10 +1.0_10.0 +1.0_10.1 +1.0_11 +1.0_11.0 +1.0_12 +1.0_12.1 +1.0_13 +1.0_14 +1.0_15 +1.0_15.1 +1.0_16 +1.0_17 +1.0_18 +1.0_19 +1.0_2 +1.0_2.1 +1.0_2.2 +1.0_20 +1.0_20160527 +1.0_21 +1.0_22 +1.0_23 +1.0_24 +1.0_27 +1.0_29 +1.0_3 +1.0_3.1 +1.0_30 +1.0_31 +1.0_32 +1.0_33 +1.0_39 +1.0_4 +1.0_40 +1.0_41 +1.0_42 +1.0_43 +1.0_5 +1.0_6 +1.0_6.1 +1.0_7 +1.0_8 +1.0_8.1 +1.0_9 +1.0_9.5 +1.0a0 +1.0a1 +1.0a16 +1.0a17 +1.0b +1.0b1 +1.0b10 +1.0b13 +1.0b17 +1.0b19 +1.0b2 +1.0b20 +1.0b22 +1.0b23 +1.0b24 +1.0b25 +1.0b26 +1.0b29 +1.0b3 +1.0b30 +1.0b5 +1.0b5.1 +1.0b6 +1.0b9 +1.0rc1 +1.0rc2 +1.0rc3 +1.1 +1.1.0 +1.1.0.0 +1.1.0.1 +1.1.0.11 +1.1.0.12 +1.1.0.14 +1.1.0.2 +1.1.0.3 +1.1.0.4 +1.1.0.6 +1.1.0.7 +1.1.0.8 +1.1.0.9 +1.1.0.beta1 +1.1.0.post +1.1.0.post1 +1.1.0.post3 +1.1.0_1 +1.1.0_rc2 +1.1.0b0 +1.1.0b2 +1.1.0pre +1.1.0rc1 +1.1.0rc2 +1.1.0se +1.1.1 +1.1.1.0 +1.1.1.1 +1.1.1.2 +1.1.1.3 +1.1.1.4 +1.1.1.5 +1.1.1.6 +1.1.1.beta1 +1.1.1.post54 +1.1.10 +1.1.10.8 +1.1.10.9 +1.1.11 +1.1.1106 +1.1.12 +1.1.12.1 +1.1.12.2 +1.1.13 +1.1.14 +1.1.145 +1.1.15 +1.1.16 +1.1.17 +1.1.18 +1.1.180 +1.1.19 +1.1.1_3 +1.1.1_5 +1.1.1_6 +1.1.1_7 +1.1.1_9 +1.1.1a +1.1.1b +1.1.1b0 +1.1.1c +1.1.1d +1.1.1e +1.1.1f +1.1.1g +1.1.1h +1.1.1i +1.1.1j +1.1.1k +1.1.1l +1.1.1n +1.1.1o +1.1.1p +1.1.1q +1.1.1s +1.1.1t +1.1.1u +1.1.2 +1.1.2.1 +1.1.2.2 +1.1.2.3 +1.1.2.dev0 +1.1.2.dev2 +1.1.2.post1 +1.1.20 +1.1.21 +1.1.22 +1.1.224.post0 +1.1.224.post1 +1.1.225 +1.1.226 +1.1.228 +1.1.229 +1.1.23 +1.1.231 +1.1.232 +1.1.233 +1.1.234 +1.1.236 +1.1.237 +1.1.238 +1.1.239 +1.1.24 +1.1.241 +1.1.242 +1.1.244 +1.1.247 +1.1.248 +1.1.25 +1.1.250 +1.1.251 +1.1.253 +1.1.254 +1.1.255 +1.1.256 +1.1.257 +1.1.258 +1.1.259 +1.1.26 +1.1.260 +1.1.262 +1.1.263 +1.1.264 +1.1.265 +1.1.266 +1.1.267 +1.1.268 +1.1.269 +1.1.27 +1.1.270 +1.1.271 +1.1.272 +1.1.273 +1.1.274 +1.1.275 +1.1.276 +1.1.277 +1.1.278 +1.1.279 +1.1.28 +1.1.280 +1.1.281 +1.1.282 +1.1.283 +1.1.284 +1.1.285 +1.1.286 +1.1.287 +1.1.288 +1.1.29 +1.1.291 +1.1.292 +1.1.293 +1.1.294 +1.1.295 +1.1.296 +1.1.297 +1.1.298 +1.1.299 +1.1.3 +1.1.3.1 +1.1.3.2 +1.1.3.post0 +1.1.30 +1.1.301 +1.1.302 +1.1.303 +1.1.304 +1.1.305 +1.1.306 +1.1.307 +1.1.308 +1.1.309 +1.1.310 +1.1.311 +1.1.313 +1.1.32 +1.1.33 +1.1.35 +1.1.37 +1.1.39_2 +1.1.39_3 +1.1.4 +1.1.4.1 +1.1.4.2 +1.1.4.3 +1.1.4.4 +1.1.4.5 +1.1.4.6 +1.1.4.7 +1.1.4.8 +1.1.4.post0 +1.1.4.post1 +1.1.5 +1.1.5.0 +1.1.5.1 +1.1.5.2 +1.1.5.post0 +1.1.5.post1 +1.1.57_1 +1.1.57_2 +1.1.57_3 +1.1.6 +1.1.6.0 +1.1.6.1 +1.1.6.post1 +1.1.6.post2 +1.1.6.post3 +1.1.6a +1.1.7 +1.1.7.2 +1.1.8 +1.1.8.0 +1.1.8.3 +1.1.8.4 +1.1.9 +1.1.beta +1.1.post1 +1.10 +1.10.0 +1.10.0.0 +1.10.0.1 +1.10.0.2 +1.10.0.3 +1.10.0.post137 +1.10.0.post152 +1.10.0.post154 +1.10.0.post156 +1.10.0.post196 +1.10.0.post220 +1.10.0.post228 +1.10.0.post230 +1.10.0.post249 +1.10.0.post259 +1.10.0.post266 +1.10.0.post94 +1.10.0a0 +1.10.1 +1.10.1.0 +1.10.1.4 +1.10.1.post0 +1.10.1.post20200504175005 +1.10.10 +1.10.11 +1.10.12 +1.10.13 +1.10.14 +1.10.15 +1.10.16 +1.10.17 +1.10.18 +1.10.19 +1.10.2 +1.10.2.4 +1.10.2.post1 +1.10.20 +1.10.21 +1.10.22 +1.10.23 +1.10.24 +1.10.25 +1.10.26 +1.10.27 +1.10.28 +1.10.29 +1.10.3 +1.10.3.14 +1.10.3.39 +1.10.3.41 +1.10.3.43 +1.10.3.5 +1.10.3.50 +1.10.3.52 +1.10.3.54 +1.10.3.56 +1.10.3.65 +1.10.30 +1.10.31 +1.10.32 +1.10.33 +1.10.34 +1.10.35 +1.10.3585 +1.10.36 +1.10.3616 +1.10.3626 +1.10.3651 +1.10.3653 +1.10.37 +1.10.38 +1.10.39 +1.10.3post1 +1.10.3post2 +1.10.4 +1.10.4.1 +1.10.4.11 +1.10.4.7 +1.10.40 +1.10.41 +1.10.42 +1.10.43 +1.10.44 +1.10.45 +1.10.46 +1.10.47 +1.10.48 +1.10.49 +1.10.5 +1.10.5.1 +1.10.50 +1.10.51 +1.10.52 +1.10.53 +1.10.54 +1.10.55 +1.10.56 +1.10.57 +1.10.58 +1.10.59 +1.10.6 +1.10.60 +1.10.61 +1.10.62 +1.10.63 +1.10.64 +1.10.65 +1.10.66 +1.10.67 +1.10.68 +1.10.69 +1.10.7 +1.10.70 +1.10.71 +1.10.72 +1.10.73 +1.10.74 +1.10.75 +1.10.76 +1.10.77 +1.10.78 +1.10.79 +1.10.8 +1.10.80 +1.10.81 +1.10.82 +1.10.83 +1.10.84 +1.10.9 +1.100 +1.100.0 +1.100.1 +1.100.2 +1.1006 +1.100602 +1.100603 +1.101 +1.101.0 +1.102 +1.103 +1.103.1 +1.104 +1.105 +1.106 +1.107 +1.107.2 +1.107.3 +1.109 +1.10_0 +1.10_1 +1.10_2 +1.10_4 +1.10_7 +1.10rc1 +1.11 +1.11.0 +1.11.0.0 +1.11.0.post18 +1.11.0.post19 +1.11.1 +1.11.1.1 +1.11.1.post3 +1.11.10 +1.11.10.40 +1.11.10.59 +1.11.11 +1.11.12 +1.11.12.31 +1.11.12.5 +1.11.12.56 +1.11.12.92 +1.11.120 +1.11.13 +1.11.14 +1.11.14.1 +1.11.15 +1.11.16 +1.11.17 +1.11.18 +1.11.182 +1.11.19 +1.11.2 +1.11.2.1 +1.11.20 +1.11.21 +1.11.22 +1.11.223 +1.11.23 +1.11.24 +1.11.25 +1.11.26 +1.11.27 +1.11.28 +1.11.29 +1.11.3 +1.11.30 +1.11.31 +1.11.32 +1.11.33 +1.11.34 +1.11.35 +1.11.36 +1.11.3697 +1.11.37 +1.11.3731 +1.11.3744 +1.11.3747 +1.11.3755 +1.11.3762 +1.11.3776 +1.11.38 +1.11.39 +1.11.4 +1.11.40 +1.11.41 +1.11.42 +1.11.43 +1.11.44 +1.11.45 +1.11.46 +1.11.47 +1.11.48 +1.11.49 +1.11.5 +1.11.5.post0 +1.11.54 +1.11.55 +1.11.56 +1.11.57 +1.11.58 +1.11.59 +1.11.6 +1.11.6.20 +1.11.6.7 +1.11.60 +1.11.61 +1.11.62 +1.11.63 +1.11.64 +1.11.65 +1.11.66 +1.11.67 +1.11.68 +1.11.7 +1.11.70 +1.11.8 +1.11.9 +1.110 +1.111 +1.112 +1.113 +1.114 +1.115 +1.116 +1.117 +1.118 +1.11_1 +1.11_2 +1.11rc1 +1.12 +1.12.0 +1.12.0.13 +1.12.0.9 +1.12.1 +1.12.10 +1.12.100 +1.12.101 +1.12.102 +1.12.103 +1.12.104 +1.12.105 +1.12.106 +1.12.107 +1.12.108 +1.12.109 +1.12.11 +1.12.110 +1.12.111 +1.12.112 +1.12.113 +1.12.114 +1.12.115 +1.12.116 +1.12.117 +1.12.118 +1.12.119 +1.12.12 +1.12.120 +1.12.121 +1.12.122 +1.12.123 +1.12.124 +1.12.125 +1.12.126 +1.12.127 +1.12.128 +1.12.129 +1.12.13 +1.12.130 +1.12.131 +1.12.132 +1.12.133 +1.12.134 +1.12.135 +1.12.136 +1.12.137 +1.12.138 +1.12.139 +1.12.14 +1.12.140 +1.12.141 +1.12.142 +1.12.143 +1.12.144 +1.12.145 +1.12.146 +1.12.147 +1.12.148 +1.12.149 +1.12.15 +1.12.150 +1.12.151 +1.12.152 +1.12.153 +1.12.154 +1.12.155 +1.12.156 +1.12.157 +1.12.158 +1.12.159 +1.12.16 +1.12.160 +1.12.161 +1.12.162 +1.12.163 +1.12.164 +1.12.165 +1.12.166 +1.12.167 +1.12.168 +1.12.169 +1.12.17 +1.12.170 +1.12.171 +1.12.172 +1.12.173 +1.12.174 +1.12.175 +1.12.176 +1.12.177 +1.12.178 +1.12.179 +1.12.18 +1.12.180 +1.12.181 +1.12.182 +1.12.183 +1.12.184 +1.12.185 +1.12.186 +1.12.187 +1.12.188 +1.12.189 +1.12.19 +1.12.190 +1.12.191 +1.12.192 +1.12.193 +1.12.194 +1.12.195 +1.12.196 +1.12.197 +1.12.198 +1.12.199 +1.12.1_1 +1.12.2 +1.12.2.12 +1.12.2.13 +1.12.2.20 +1.12.2.5 +1.12.20 +1.12.200 +1.12.201 +1.12.202 +1.12.203 +1.12.204 +1.12.205 +1.12.206 +1.12.207 +1.12.208 +1.12.209 +1.12.21 +1.12.210 +1.12.211 +1.12.212 +1.12.213 +1.12.214 +1.12.215 +1.12.216 +1.12.217 +1.12.218 +1.12.219 +1.12.22 +1.12.220 +1.12.221 +1.12.222 +1.12.223 +1.12.224 +1.12.225 +1.12.226 +1.12.227 +1.12.228 +1.12.229 +1.12.23 +1.12.230 +1.12.231 +1.12.232 +1.12.233 +1.12.234 +1.12.235 +1.12.236 +1.12.237 +1.12.238 +1.12.239 +1.12.24 +1.12.240 +1.12.241 +1.12.242 +1.12.243 +1.12.244 +1.12.245 +1.12.246 +1.12.247 +1.12.248 +1.12.249 +1.12.25 +1.12.250 +1.12.251 +1.12.252 +1.12.253 +1.12.26 +1.12.27 +1.12.28 +1.12.29 +1.12.2_1 +1.12.3 +1.12.30 +1.12.31 +1.12.32 +1.12.33 +1.12.34 +1.12.35 +1.12.36 +1.12.37 +1.12.38 +1.12.3806 +1.12.39 +1.12.4 +1.12.4.11 +1.12.40 +1.12.41 +1.12.42 +1.12.43 +1.12.44 +1.12.45 +1.12.46 +1.12.47 +1.12.48 +1.12.49 +1.12.5 +1.12.50 +1.12.51 +1.12.52 +1.12.53 +1.12.54 +1.12.55 +1.12.56 +1.12.57 +1.12.58 +1.12.59 +1.12.6 +1.12.6.15 +1.12.6.32 +1.12.6.50 +1.12.6.53 +1.12.6.59 +1.12.6.66 +1.12.6.8 +1.12.60 +1.12.61 +1.12.62 +1.12.63 +1.12.64 +1.12.65 +1.12.66 +1.12.67 +1.12.68 +1.12.69 +1.12.7 +1.12.70 +1.12.71 +1.12.72 +1.12.73 +1.12.74 +1.12.75 +1.12.76 +1.12.77 +1.12.78 +1.12.79 +1.12.8 +1.12.8.4 +1.12.80 +1.12.81 +1.12.82 +1.12.83 +1.12.84 +1.12.85 +1.12.86 +1.12.87 +1.12.88 +1.12.89 +1.12.9 +1.12.90 +1.12.91 +1.12.92 +1.12.93 +1.12.94 +1.12.95 +1.12.96 +1.12.97 +1.12.98 +1.12.99 +1.12.post1 +1.122.0 +1.123 +1.125 +1.128 +1.128.1 +1.12_0 +1.12_2 +1.12rc1 +1.13 +1.13.0 +1.13.0.1 +1.13.0.16 +1.13.0.28 +1.13.0.4 +1.13.0.44 +1.13.0.49 +1.13.0.55 +1.13.0.61 +1.13.0.64 +1.13.1 +1.13.1.post0 +1.13.1.post1 +1.13.10 +1.13.11 +1.13.12 +1.13.13 +1.13.14 +1.13.15 +1.13.16 +1.13.17 +1.13.18 +1.13.19 +1.13.2 +1.13.2.107 +1.13.2.13 +1.13.2.32 +1.13.2.36 +1.13.20 +1.13.21 +1.13.22 +1.13.23 +1.13.24 +1.13.25 +1.13.26 +1.13.27 +1.13.28 +1.13.29 +1.13.3 +1.13.30 +1.13.31 +1.13.32 +1.13.33 +1.13.34 +1.13.35 +1.13.36 +1.13.37 +1.13.38 +1.13.39 +1.13.4 +1.13.40 +1.13.41 +1.13.42 +1.13.43 +1.13.44 +1.13.45 +1.13.46 +1.13.47 +1.13.48 +1.13.49 +1.13.5 +1.13.50 +1.13.6 +1.13.7 +1.13.8 +1.13.9 +1.130 +1.135.1 +1.138.1 +1.139.1 +1.13_0 +1.13_1 +1.13a +1.13rc1 +1.14 +1.14.0 +1.14.0.post0 +1.14.0rc1 +1.14.1 +1.14.1.post0 +1.14.10 +1.14.10.1 +1.14.11 +1.14.12 +1.14.13 +1.14.14 +1.14.15 +1.14.16 +1.14.17 +1.14.18 +1.14.19 +1.14.2 +1.14.20 +1.14.20.0 +1.14.21 +1.14.22 +1.14.23 +1.14.24 +1.14.25 +1.14.26 +1.14.27 +1.14.27.0 +1.14.28 +1.14.29 +1.14.29.0 +1.14.3 +1.14.30 +1.14.30.0 +1.14.31 +1.14.31.0 +1.14.32 +1.14.32.0 +1.14.33 +1.14.33.0 +1.14.34 +1.14.34.0 +1.14.35 +1.14.35.0 +1.14.36 +1.14.36.0 +1.14.37 +1.14.37.0 +1.14.38 +1.14.38.0 +1.14.39 +1.14.39.0 +1.14.4 +1.14.40 +1.14.40.0 +1.14.41 +1.14.41.0 +1.14.42 +1.14.42.0 +1.14.43 +1.14.43.0 +1.14.44 +1.14.44.0 +1.14.45 +1.14.45.0 +1.14.46 +1.14.46.0 +1.14.47 +1.14.47.0 +1.14.48 +1.14.48.0 +1.14.49 +1.14.49.0 +1.14.5 +1.14.50 +1.14.50.0 +1.14.51 +1.14.51.0 +1.14.52 +1.14.52.1 +1.14.53 +1.14.53.0 +1.14.54 +1.14.54.0 +1.14.54.1 +1.14.55 +1.14.55.0 +1.14.55.2 +1.14.56 +1.14.56.0 +1.14.57 +1.14.57.0 +1.14.58 +1.14.58.0 +1.14.59 +1.14.59.0 +1.14.59.1 +1.14.6 +1.14.60 +1.14.60.0 +1.14.61 +1.14.61.0 +1.14.62 +1.14.62.0 +1.14.63 +1.14.63.0 +1.14.64 +1.14.65 +1.14.66 +1.14.67 +1.14.68 +1.14.69 +1.14.6_1 +1.14.7 +1.14.70 +1.14.8 +1.14.9 +1.14.post1 +1.141 +1.143.1 +1.143.3 +1.14_4 +1.14a1.dev37 +1.14a1.dev48 +1.14rc1 +1.15 +1.15.0 +1.15.0.0 +1.15.08.25 +1.15.1 +1.15.1.0 +1.15.10 +1.15.10.0 +1.15.11 +1.15.11.0 +1.15.12 +1.15.12.0 +1.15.12.1 +1.15.13 +1.15.13.0 +1.15.13.1 +1.15.14 +1.15.14.0 +1.15.15 +1.15.15.0 +1.15.16 +1.15.16.0 +1.15.17 +1.15.17.0 +1.15.18 +1.15.18.0 +1.15.19 +1.15.2 +1.15.2.0 +1.15.20 +1.15.21 +1.15.22 +1.15.23 +1.15.24 +1.15.25 +1.15.26 +1.15.27 +1.15.28 +1.15.29 +1.15.3 +1.15.3.0 +1.15.30 +1.15.31 +1.15.32 +1.15.33 +1.15.34 +1.15.35 +1.15.36 +1.15.37 +1.15.38 +1.15.39 +1.15.4 +1.15.4.0 +1.15.40 +1.15.41 +1.15.42 +1.15.43 +1.15.44 +1.15.45 +1.15.46 +1.15.47 +1.15.48 +1.15.49 +1.15.5 +1.15.5.0 +1.15.50 +1.15.51 +1.15.52 +1.15.53 +1.15.54 +1.15.55 +1.15.56 +1.15.57 +1.15.58 +1.15.59 +1.15.6 +1.15.6.0 +1.15.60 +1.15.61 +1.15.62 +1.15.63 +1.15.64 +1.15.65 +1.15.66 +1.15.67 +1.15.68 +1.15.69 +1.15.7 +1.15.7.0 +1.15.70 +1.15.71 +1.15.72 +1.15.73 +1.15.74 +1.15.75 +1.15.76 +1.15.77 +1.15.78 +1.15.79 +1.15.8 +1.15.8.0 +1.15.80 +1.15.81 +1.15.82 +1.15.83 +1.15.84 +1.15.85 +1.15.9 +1.15.9.0 +1.15_0 +1.15rc1 +1.16 +1.16.0 +1.16.0.0 +1.16.0.2 +1.16.1 +1.16.1.0 +1.16.10 +1.16.10.0 +1.16.100 +1.16.101 +1.16.102 +1.16.103 +1.16.104 +1.16.105 +1.16.106 +1.16.107 +1.16.108 +1.16.109 +1.16.11 +1.16.110 +1.16.111 +1.16.112 +1.16.113 +1.16.114 +1.16.115 +1.16.116 +1.16.117 +1.16.118 +1.16.119 +1.16.12 +1.16.120 +1.16.121 +1.16.122 +1.16.123 +1.16.124 +1.16.125 +1.16.126 +1.16.127 +1.16.128 +1.16.129 +1.16.13 +1.16.13.0 +1.16.130 +1.16.131 +1.16.132 +1.16.133 +1.16.134 +1.16.135 +1.16.136 +1.16.137 +1.16.138 +1.16.139 +1.16.14 +1.16.140 +1.16.141 +1.16.142 +1.16.143 +1.16.144 +1.16.145 +1.16.146 +1.16.147 +1.16.148 +1.16.149 +1.16.15 +1.16.15.0 +1.16.150 +1.16.151 +1.16.152 +1.16.153 +1.16.154 +1.16.155 +1.16.156 +1.16.157 +1.16.158 +1.16.159 +1.16.16 +1.16.16.0 +1.16.160 +1.16.161 +1.16.162 +1.16.163 +1.16.164 +1.16.165 +1.16.166 +1.16.167 +1.16.168 +1.16.169 +1.16.17 +1.16.17.0 +1.16.170 +1.16.171 +1.16.172 +1.16.173 +1.16.174 +1.16.175 +1.16.176 +1.16.177 +1.16.178 +1.16.179 +1.16.18 +1.16.18.0 +1.16.180 +1.16.181 +1.16.182 +1.16.183 +1.16.184 +1.16.185 +1.16.186 +1.16.187 +1.16.188 +1.16.189 +1.16.19 +1.16.19.0 +1.16.190 +1.16.191 +1.16.192 +1.16.193 +1.16.194 +1.16.195 +1.16.196 +1.16.197 +1.16.198 +1.16.199 +1.16.1_1 +1.16.2 +1.16.2.0 +1.16.20 +1.16.20.0 +1.16.200 +1.16.201 +1.16.202 +1.16.203 +1.16.204 +1.16.205 +1.16.206 +1.16.207 +1.16.208 +1.16.209 +1.16.21 +1.16.21.0 +1.16.21.1 +1.16.21.2 +1.16.21.3 +1.16.21.4 +1.16.21.5 +1.16.21.6 +1.16.210 +1.16.211 +1.16.212 +1.16.213 +1.16.214 +1.16.215 +1.16.216 +1.16.217 +1.16.218 +1.16.219 +1.16.22 +1.16.22.0 +1.16.220 +1.16.221 +1.16.222 +1.16.223 +1.16.224 +1.16.225 +1.16.226 +1.16.227 +1.16.228 +1.16.229 +1.16.23 +1.16.23.0 +1.16.23.1 +1.16.230 +1.16.231 +1.16.232 +1.16.233 +1.16.234 +1.16.235 +1.16.236 +1.16.237 +1.16.238 +1.16.239 +1.16.24 +1.16.24.0 +1.16.240 +1.16.241 +1.16.242 +1.16.243 +1.16.244 +1.16.245 +1.16.246 +1.16.247 +1.16.248 +1.16.249 +1.16.25 +1.16.25.0 +1.16.250 +1.16.251 +1.16.252 +1.16.253 +1.16.254 +1.16.255 +1.16.256 +1.16.257 +1.16.258 +1.16.259 +1.16.26 +1.16.26.0 +1.16.26.1 +1.16.260 +1.16.261 +1.16.262 +1.16.263 +1.16.264 +1.16.265 +1.16.266 +1.16.267 +1.16.268 +1.16.269 +1.16.27 +1.16.27.0 +1.16.270 +1.16.271 +1.16.272 +1.16.273 +1.16.274 +1.16.275 +1.16.276 +1.16.277 +1.16.278 +1.16.279 +1.16.28 +1.16.28.0 +1.16.28.1 +1.16.280 +1.16.281 +1.16.282 +1.16.283 +1.16.284 +1.16.285 +1.16.286 +1.16.287 +1.16.288 +1.16.289 +1.16.29 +1.16.29.0 +1.16.290 +1.16.291 +1.16.292 +1.16.293 +1.16.294 +1.16.295 +1.16.296 +1.16.297 +1.16.298 +1.16.299 +1.16.3 +1.16.3.0 +1.16.30 +1.16.30.0 +1.16.300 +1.16.301 +1.16.302 +1.16.303 +1.16.304 +1.16.305 +1.16.306 +1.16.307 +1.16.308 +1.16.309 +1.16.31 +1.16.31.0 +1.16.31.1 +1.16.310 +1.16.311 +1.16.312 +1.16.313 +1.16.314 +1.16.32 +1.16.32.0 +1.16.33 +1.16.33.0 +1.16.34 +1.16.34.0 +1.16.35 +1.16.35.0 +1.16.36 +1.16.36.0 +1.16.37 +1.16.38 +1.16.38.0 +1.16.39 +1.16.39.0 +1.16.4 +1.16.4.0 +1.16.40 +1.16.40.0 +1.16.41 +1.16.41.0 +1.16.42 +1.16.42.0 +1.16.43 +1.16.43.0 +1.16.44 +1.16.44.0 +1.16.45 +1.16.45.0 +1.16.46 +1.16.46.0 +1.16.47 +1.16.47.0 +1.16.48 +1.16.48.0 +1.16.49 +1.16.49.0 +1.16.5 +1.16.5.0 +1.16.5.1 +1.16.50 +1.16.50.0 +1.16.51 +1.16.51.0 +1.16.52 +1.16.52.0 +1.16.53 +1.16.53.0 +1.16.54 +1.16.54.0 +1.16.55 +1.16.55.0 +1.16.56 +1.16.56.0 +1.16.57 +1.16.57.0 +1.16.58 +1.16.58.0 +1.16.59 +1.16.59.0 +1.16.6 +1.16.6.0 +1.16.60 +1.16.60.0 +1.16.61 +1.16.61.0 +1.16.62 +1.16.62.0 +1.16.63 +1.16.63.0 +1.16.64 +1.16.65 +1.16.66 +1.16.67 +1.16.68 +1.16.69 +1.16.7 +1.16.70 +1.16.71 +1.16.72 +1.16.73 +1.16.74 +1.16.75 +1.16.76 +1.16.77 +1.16.78 +1.16.79 +1.16.8 +1.16.80 +1.16.81 +1.16.82 +1.16.83 +1.16.84 +1.16.85 +1.16.86 +1.16.87 +1.16.88 +1.16.89 +1.16.9 +1.16.90 +1.16.91 +1.16.92 +1.16.93 +1.16.94 +1.16.95 +1.16.96 +1.16.97 +1.16.98 +1.16.99 +1.160.0 +1.16_3 +1.16rc1 +1.17 +1.17.0 +1.17.0.0 +1.17.0.1 +1.17.0.2 +1.17.08.31 +1.17.1 +1.17.1.0 +1.17.1.1 +1.17.1.2 +1.17.1.3 +1.17.1.4 +1.17.10 +1.17.10.0 +1.17.100 +1.17.101 +1.17.101.post1 +1.17.102 +1.17.102.post1 +1.17.103 +1.17.103.post1 +1.17.104 +1.17.105 +1.17.106 +1.17.107 +1.17.108 +1.17.109 +1.17.11 +1.17.11.0 +1.17.110 +1.17.111 +1.17.112 +1.17.12 +1.17.12.0 +1.17.13 +1.17.13.0 +1.17.14 +1.17.14.0 +1.17.15 +1.17.15.0 +1.17.16 +1.17.16.0 +1.17.17 +1.17.17.0 +1.17.18 +1.17.18.0 +1.17.19 +1.17.19.0 +1.17.2 +1.17.2.0 +1.17.2.1 +1.17.20 +1.17.20.0 +1.17.21 +1.17.21.0 +1.17.22 +1.17.22.0 +1.17.23 +1.17.23.0 +1.17.24 +1.17.24.0 +1.17.25 +1.17.25.0 +1.17.26 +1.17.26.0 +1.17.27 +1.17.27.0 +1.17.28 +1.17.28.0 +1.17.29 +1.17.29.0 +1.17.3 +1.17.3.0 +1.17.30 +1.17.30.0 +1.17.31 +1.17.31.0 +1.17.32 +1.17.32.0 +1.17.33 +1.17.33.0 +1.17.34 +1.17.35 +1.17.35.0 +1.17.36 +1.17.36.0 +1.17.37 +1.17.37.0 +1.17.38 +1.17.38.0 +1.17.39 +1.17.39.0 +1.17.4 +1.17.4.0 +1.17.40 +1.17.40.0 +1.17.41 +1.17.41.0 +1.17.42 +1.17.42.0 +1.17.43 +1.17.43.0 +1.17.44 +1.17.44.0 +1.17.45 +1.17.45.0 +1.17.46 +1.17.46.0 +1.17.47 +1.17.47.0 +1.17.48 +1.17.48.0 +1.17.49 +1.17.49.0 +1.17.5 +1.17.5.0 +1.17.50 +1.17.50.0 +1.17.50.1 +1.17.51 +1.17.51.0 +1.17.52 +1.17.52.0 +1.17.53 +1.17.53.0 +1.17.53.1 +1.17.54 +1.17.54.0 +1.17.55 +1.17.55.0 +1.17.56 +1.17.56.0 +1.17.57 +1.17.57.0 +1.17.58 +1.17.58.0 +1.17.59 +1.17.59.0 +1.17.6 +1.17.6.0 +1.17.60 +1.17.60.0 +1.17.60.1 +1.17.61 +1.17.61.0 +1.17.62 +1.17.62.0 +1.17.63 +1.17.64 +1.17.64.1 +1.17.64.2 +1.17.65 +1.17.65.0 +1.17.66 +1.17.66.0 +1.17.67 +1.17.67.0 +1.17.68 +1.17.68.0 +1.17.69 +1.17.69.0 +1.17.7 +1.17.7.0 +1.17.70 +1.17.70.post2 +1.17.71 +1.17.71.post1 +1.17.72 +1.17.72.post1 +1.17.73 +1.17.74 +1.17.75 +1.17.76 +1.17.77 +1.17.78 +1.17.79 +1.17.8 +1.17.8.0 +1.17.8.1 +1.17.8.2 +1.17.80 +1.17.81 +1.17.82 +1.17.83 +1.17.84 +1.17.85 +1.17.86 +1.17.87 +1.17.88 +1.17.88.post1 +1.17.89 +1.17.9 +1.17.9.0 +1.17.90 +1.17.90.post1 +1.17.91 +1.17.92 +1.17.92.post1 +1.17.93 +1.17.94 +1.17.95 +1.17.96 +1.17.97 +1.17.98 +1.17.99 +1.17_0 +1.17rc1 +1.18 +1.18.0 +1.18.0.post0 +1.18.06.29 +1.18.1 +1.18.10 +1.18.100 +1.18.101 +1.18.102 +1.18.103 +1.18.104 +1.18.105 +1.18.106 +1.18.107 +1.18.108 +1.18.109 +1.18.11 +1.18.110 +1.18.111 +1.18.112 +1.18.113 +1.18.114 +1.18.115 +1.18.116 +1.18.117 +1.18.118 +1.18.119 +1.18.12 +1.18.120 +1.18.121 +1.18.122 +1.18.123 +1.18.124 +1.18.125 +1.18.126 +1.18.127 +1.18.128 +1.18.129 +1.18.13 +1.18.130 +1.18.131 +1.18.132 +1.18.133 +1.18.134 +1.18.135 +1.18.136 +1.18.137 +1.18.138 +1.18.139 +1.18.14 +1.18.140 +1.18.141 +1.18.142 +1.18.143 +1.18.144 +1.18.145 +1.18.146 +1.18.147 +1.18.148 +1.18.149 +1.18.15 +1.18.150 +1.18.151 +1.18.152 +1.18.153 +1.18.154 +1.18.155 +1.18.156 +1.18.157 +1.18.158 +1.18.159 +1.18.16 +1.18.160 +1.18.161 +1.18.162 +1.18.163 +1.18.164 +1.18.165 +1.18.166 +1.18.167 +1.18.168 +1.18.169 +1.18.17 +1.18.170 +1.18.171 +1.18.172 +1.18.173 +1.18.174 +1.18.175 +1.18.176 +1.18.177 +1.18.178 +1.18.179 +1.18.18 +1.18.180 +1.18.181 +1.18.182 +1.18.183 +1.18.184 +1.18.185 +1.18.186 +1.18.187 +1.18.188 +1.18.189 +1.18.19 +1.18.190 +1.18.191 +1.18.192 +1.18.193 +1.18.194 +1.18.196 +1.18.197 +1.18.198 +1.18.199 +1.18.2 +1.18.2.post1 +1.18.20 +1.18.200 +1.18.201 +1.18.202 +1.18.203 +1.18.204 +1.18.205 +1.18.206 +1.18.207 +1.18.208 +1.18.209 +1.18.21 +1.18.210 +1.18.211 +1.18.212 +1.18.213 +1.18.214 +1.18.215 +1.18.216 +1.18.217 +1.18.218 +1.18.219 +1.18.22 +1.18.220 +1.18.221 +1.18.222 +1.18.223 +1.18.23 +1.18.24 +1.18.25 +1.18.26 +1.18.27 +1.18.28 +1.18.29 +1.18.3 +1.18.30 +1.18.31 +1.18.32 +1.18.33 +1.18.34 +1.18.35 +1.18.36 +1.18.37 +1.18.38 +1.18.39 +1.18.4 +1.18.40 +1.18.41 +1.18.42 +1.18.43 +1.18.44 +1.18.45 +1.18.46 +1.18.47 +1.18.48 +1.18.49 +1.18.5 +1.18.50 +1.18.51 +1.18.52 +1.18.53 +1.18.54 +1.18.55 +1.18.56 +1.18.57 +1.18.58 +1.18.59 +1.18.6 +1.18.60 +1.18.61 +1.18.62 +1.18.63 +1.18.64 +1.18.65 +1.18.66 +1.18.67 +1.18.68 +1.18.69 +1.18.7 +1.18.70 +1.18.71 +1.18.72 +1.18.73 +1.18.74 +1.18.75 +1.18.76 +1.18.77 +1.18.78 +1.18.79 +1.18.8 +1.18.80 +1.18.81 +1.18.82 +1.18.83 +1.18.84 +1.18.85 +1.18.86 +1.18.87 +1.18.88 +1.18.89 +1.18.9 +1.18.90 +1.18.91 +1.18.92 +1.18.93 +1.18.94 +1.18.95 +1.18.96 +1.18.97 +1.18.98 +1.18.99 +1.182770 +1.186.0 +1.18_1 +1.18rc1 +1.19 +1.19.0 +1.19.1 +1.19.1.post1 +1.19.10 +1.19.100 +1.19.101 +1.19.102 +1.19.103 +1.19.104 +1.19.105 +1.19.106 +1.19.107 +1.19.108 +1.19.109 +1.19.11 +1.19.110 +1.19.111 +1.19.112 +1.19.12 +1.19.13 +1.19.14 +1.19.15 +1.19.16 +1.19.17 +1.19.18 +1.19.19 +1.19.2 +1.19.20 +1.19.21 +1.19.22 +1.19.23 +1.19.24 +1.19.25 +1.19.26 +1.19.27 +1.19.28 +1.19.29 +1.19.3 +1.19.30 +1.19.31 +1.19.32 +1.19.33 +1.19.34 +1.19.35 +1.19.36 +1.19.37 +1.19.38 +1.19.39 +1.19.4 +1.19.40 +1.19.41 +1.19.42 +1.19.43 +1.19.44 +1.19.45 +1.19.46 +1.19.47 +1.19.48 +1.19.49 +1.19.5 +1.19.50 +1.19.51 +1.19.52 +1.19.53 +1.19.54 +1.19.55 +1.19.56 +1.19.57 +1.19.58 +1.19.59 +1.19.6 +1.19.60 +1.19.61 +1.19.62 +1.19.63 +1.19.64 +1.19.65 +1.19.66 +1.19.67 +1.19.68 +1.19.69 +1.19.7 +1.19.70 +1.19.71 +1.19.72 +1.19.73 +1.19.74 +1.19.75 +1.19.76 +1.19.77 +1.19.78 +1.19.79 +1.19.8 +1.19.80 +1.19.81 +1.19.82 +1.19.83 +1.19.84 +1.19.85 +1.19.86 +1.19.87 +1.19.88 +1.19.89 +1.19.9 +1.19.90 +1.19.91 +1.19.92 +1.19.93 +1.19.94 +1.19.95 +1.19.96 +1.19.97 +1.19.98 +1.19.99 +1.1903 +1.196.0 +1.19rc1 +1.1_0 +1.1_0.1 +1.1_1 +1.1_1.1 +1.1_10 +1.1_11 +1.1_12 +1.1_13 +1.1_14 +1.1_15 +1.1_15.1 +1.1_15.2 +1.1_18_1 +1.1_19 +1.1_2 +1.1_21 +1.1_221 +1.1_221.1 +1.1_221.2 +1.1_23 +1.1_24 +1.1_25 +1.1_26 +1.1_27 +1.1_27.1 +1.1_28 +1.1_29 +1.1_3 +1.1_30 +1.1_31 +1.1_32 +1.1_33 +1.1_4 +1.1_4.1 +1.1_4.2 +1.1_4.3 +1.1_5 +1.1_6 +1.1_7 +1.1_7.3 +1.1_7.4 +1.1_8 +1.1_8.1 +1.1_9 +1.1_9.4 +1.1_9.5 +1.1_9.7 +1.1b +1.1rc0 +1.1rc3 +1.2 +1.2.0 +1.2.0.0 +1.2.0.1 +1.2.0.10 +1.2.0.11 +1.2.0.12 +1.2.0.13 +1.2.0.16 +1.2.0.19 +1.2.0.2 +1.2.0.23 +1.2.0.24 +1.2.0.26 +1.2.0.27 +1.2.0.29 +1.2.0.3 +1.2.0.30 +1.2.0.31 +1.2.0.33 +1.2.0.35 +1.2.0.36 +1.2.0.37 +1.2.0.38 +1.2.0.39 +1.2.0.4 +1.2.0.40 +1.2.0.43 +1.2.0.44 +1.2.0.45 +1.2.0.46 +1.2.0.47 +1.2.0.48 +1.2.0.49 +1.2.0.5 +1.2.0.50 +1.2.0.51 +1.2.0.53 +1.2.0.54 +1.2.0.56 +1.2.0.57 +1.2.0.58 +1.2.0.60 +1.2.0.61 +1.2.0.62 +1.2.0.7 +1.2.0.beta1 +1.2.0.post0 +1.2.0.pre +1.2.05 +1.2.0a1 +1.2.0b0 +1.2.0c +1.2.1 +1.2.1.1 +1.2.1.2 +1.2.1.beta1 +1.2.1.post1 +1.2.1.post2 +1.2.1.post2205 +1.2.1.post2206 +1.2.1.post2207 +1.2.1.post2208 +1.2.10 +1.2.100 +1.2.101 +1.2.102 +1.2.103 +1.2.105 +1.2.106 +1.2.107 +1.2.108 +1.2.109 +1.2.11 +1.2.110 +1.2.111 +1.2.112 +1.2.113 +1.2.114 +1.2.116 +1.2.118 +1.2.119 +1.2.12 +1.2.120 +1.2.121 +1.2.122 +1.2.123 +1.2.124 +1.2.125 +1.2.126 +1.2.127 +1.2.128 +1.2.129 +1.2.13 +1.2.130 +1.2.131 +1.2.132 +1.2.133 +1.2.133.2 +1.2.134 +1.2.135 +1.2.136 +1.2.137 +1.2.138 +1.2.139 +1.2.14 +1.2.140 +1.2.141 +1.2.15 +1.2.16 +1.2.17 +1.2.17.1 +1.2.18 +1.2.19 +1.2.1a6 +1.2.1b0 +1.2.1post1 +1.2.2 +1.2.2.1 +1.2.2.2 +1.2.2.3 +1.2.2.5 +1.2.2.beta1 +1.2.20 +1.2.21 +1.2.22 +1.2.23 +1.2.24 +1.2.25 +1.2.26 +1.2.27 +1.2.28 +1.2.29 +1.2.295.0 +1.2.3 +1.2.3.2 +1.2.3.25 +1.2.3.beta1 +1.2.30 +1.2.31 +1.2.312.0 +1.2.32 +1.2.323.0 +1.2.33 +1.2.331.0 +1.2.335 +1.2.339.0 +1.2.34 +1.2.35 +1.2.36 +1.2.37 +1.2.38 +1.2.39 +1.2.398.0 +1.2.3_1 +1.2.3_6 +1.2.3a +1.2.4 +1.2.4.1 +1.2.4.2 +1.2.4.beta1 +1.2.41 +1.2.42 +1.2.43 +1.2.44 +1.2.45 +1.2.46 +1.2.463.0 +1.2.47 +1.2.475 +1.2.48 +1.2.49 +1.2.5 +1.2.5.2 +1.2.5.beta1 +1.2.50 +1.2.51 +1.2.52 +1.2.53 +1.2.54 +1.2.55 +1.2.56 +1.2.58 +1.2.59 +1.2.6 +1.2.6.1 +1.2.6.2 +1.2.6.3 +1.2.6.4 +1.2.6.beta1 +1.2.60 +1.2.61 +1.2.62 +1.2.63 +1.2.64 +1.2.65 +1.2.66 +1.2.67 +1.2.68 +1.2.69 +1.2.6rc49 +1.2.7 +1.2.7.1 +1.2.7.2 +1.2.7.3 +1.2.7.4 +1.2.7.5 +1.2.7.beta1 +1.2.7.post13 +1.2.7.post20 +1.2.7.post8 +1.2.70 +1.2.71 +1.2.73 +1.2.75 +1.2.76 +1.2.77 +1.2.78 +1.2.7a1 +1.2.7a13 +1.2.7a20 +1.2.7a31 +1.2.7a37 +1.2.7a38 +1.2.7a43 +1.2.7a45 +1.2.7a5 +1.2.8 +1.2.8.1 +1.2.8.post0 +1.2.8.post1 +1.2.8.post6 +1.2.81 +1.2.82 +1.2.83 +1.2.84 +1.2.86 +1.2.87 +1.2.88 +1.2.89 +1.2.9 +1.2.9.1 +1.2.9.post1 +1.2.9.post2 +1.2.9.post3 +1.2.90 +1.2.91 +1.2.92 +1.2.93 +1.2.94 +1.2.95 +1.2.96 +1.2.97 +1.2.98 +1.20 +1.20.0 +1.20.1 +1.20.10 +1.20.10.07 +1.20.100 +1.20.101 +1.20.102 +1.20.103 +1.20.104 +1.20.105 +1.20.106 +1.20.107 +1.20.108 +1.20.109 +1.20.11 +1.20.110 +1.20.111 +1.20.112 +1.20.12 +1.20.13 +1.20.14 +1.20.15 +1.20.16 +1.20.17 +1.20.18 +1.20.19 +1.20.2 +1.20.20 +1.20.21 +1.20.22 +1.20.23 +1.20.24 +1.20.25 +1.20.26 +1.20.27 +1.20.28 +1.20.29 +1.20.3 +1.20.30 +1.20.31 +1.20.32 +1.20.33 +1.20.34 +1.20.35 +1.20.35.post1 +1.20.36 +1.20.37 +1.20.38 +1.20.39 +1.20.4 +1.20.40 +1.20.41 +1.20.42 +1.20.43 +1.20.44 +1.20.45 +1.20.46 +1.20.46.post1 +1.20.47 +1.20.48 +1.20.49 +1.20.49.post1 +1.20.5 +1.20.50 +1.20.50.post1 +1.20.51 +1.20.52 +1.20.53 +1.20.54 +1.20.55 +1.20.56 +1.20.57 +1.20.58 +1.20.59 +1.20.6 +1.20.60 +1.20.61 +1.20.62 +1.20.63 +1.20.64 +1.20.65 +1.20.66 +1.20.67 +1.20.68 +1.20.69 +1.20.7 +1.20.70 +1.20.71 +1.20.72 +1.20.73 +1.20.74 +1.20.75 +1.20.76 +1.20.77 +1.20.78 +1.20.79 +1.20.8 +1.20.80 +1.20.81 +1.20.82 +1.20.83 +1.20.84 +1.20.85 +1.20.86 +1.20.87 +1.20.88 +1.20.89 +1.20.9 +1.20.90 +1.20.91 +1.20.92 +1.20.93 +1.20.94 +1.20.95 +1.20.96 +1.20.97 +1.20.98 +1.20.99 +1.200 +1.201 +1.20151229 +1.2019.2 +1.2019.3 +1.20190531 +1.20190621 +1.2021.7 +1.2022.12 +1.2022.13 +1.2022.14 +1.2022.2 +1.2022.3 +1.2022.4 +1.2022.5 +1.2022.6 +1.2022.7 +1.2022.8 +1.2022.9 +1.20221004 +1.20221012 +1.20221116 +1.2023.0 +1.2023.1 +1.2023.2 +1.2023.5 +1.2023.6 +1.2023.7 +1.2023.8 +1.2023.9 +1.20230424 +1.20230427 +1.204.0 +1.207.0 +1.20_1 +1.20_2 +1.20rc1 +1.21 +1.21.0 +1.21.1 +1.21.10 +1.21.11 +1.21.12 +1.21.13 +1.21.14 +1.21.15 +1.21.16 +1.21.17 +1.21.18 +1.21.19 +1.21.2 +1.21.20 +1.21.21 +1.21.22 +1.21.23 +1.21.23.post1 +1.21.23.post2 +1.21.24 +1.21.25 +1.21.26 +1.21.27 +1.21.27.post1 +1.21.28 +1.21.29 +1.21.3 +1.21.30 +1.21.30.post1 +1.21.31 +1.21.32 +1.21.33 +1.21.34 +1.21.34.post1 +1.21.35 +1.21.36 +1.21.37 +1.21.38 +1.21.39 +1.21.4 +1.21.40 +1.21.41 +1.21.42 +1.21.43 +1.21.44 +1.21.45 +1.21.46 +1.21.47 +1.21.48 +1.21.49 +1.21.5 +1.21.50 +1.21.51 +1.21.52 +1.21.53 +1.21.54 +1.21.55 +1.21.56 +1.21.57 +1.21.58 +1.21.59 +1.21.6 +1.21.60 +1.21.61 +1.21.62 +1.21.63 +1.21.64 +1.21.65 +1.21.7 +1.21.8 +1.21.9 +1.210.1 +1.21_3 +1.21_45 +1.21rc1 +1.22 +1.22.0 +1.22.0.post1 +1.22.1 +1.22.1.post1 +1.22.10 +1.22.100 +1.22.101 +1.22.11 +1.22.12 +1.22.13 +1.22.14 +1.22.15 +1.22.16 +1.22.17 +1.22.18 +1.22.19 +1.22.1_1 +1.22.1_2 +1.22.2 +1.22.20 +1.22.21 +1.22.22 +1.22.23 +1.22.24 +1.22.25 +1.22.26 +1.22.27 +1.22.28 +1.22.29 +1.22.3 +1.22.30 +1.22.31 +1.22.32 +1.22.33 +1.22.34 +1.22.35 +1.22.36 +1.22.37 +1.22.38 +1.22.39 +1.22.4 +1.22.40 +1.22.41 +1.22.42 +1.22.43 +1.22.44 +1.22.45 +1.22.46 +1.22.47 +1.22.48 +1.22.49 +1.22.5 +1.22.50 +1.22.51 +1.22.52 +1.22.53 +1.22.54 +1.22.55 +1.22.56 +1.22.57 +1.22.58 +1.22.59 +1.22.6 +1.22.60 +1.22.61 +1.22.62 +1.22.63 +1.22.64 +1.22.65 +1.22.66 +1.22.67 +1.22.68 +1.22.69 +1.22.7 +1.22.70 +1.22.71 +1.22.72 +1.22.73 +1.22.74 +1.22.75 +1.22.76 +1.22.77 +1.22.78 +1.22.79 +1.22.8 +1.22.8.post1 +1.22.80 +1.22.81 +1.22.82 +1.22.83 +1.22.84 +1.22.85 +1.22.86 +1.22.87 +1.22.88 +1.22.89 +1.22.9 +1.22.90 +1.22.91 +1.22.92 +1.22.93 +1.22.94 +1.22.95 +1.22.96 +1.22.97 +1.22.98 +1.22.99 +1.22_1 +1.22_2 +1.22_3 +1.23 +1.23.0 +1.23.0.449_ga04d081 +1.23.0.post1 +1.23.1 +1.23.10 +1.23.11 +1.23.12 +1.23.120.1 +1.23.13 +1.23.14 +1.23.15 +1.23.16 +1.23.17 +1.23.18 +1.23.19 +1.23.2 +1.23.20 +1.23.21 +1.23.22 +1.23.23 +1.23.24 +1.23.25 +1.23.26 +1.23.27 +1.23.28 +1.23.29 +1.23.3 +1.23.30 +1.23.31 +1.23.32 +1.23.33 +1.23.34 +1.23.35 +1.23.35.post1 +1.23.36 +1.23.37 +1.23.38 +1.23.39 +1.23.4 +1.23.40 +1.23.41 +1.23.42 +1.23.43 +1.23.44 +1.23.45 +1.23.46 +1.23.46.post1 +1.23.47 +1.23.48 +1.23.49 +1.23.49.post1 +1.23.5 +1.23.50 +1.23.50.post1 +1.23.51 +1.23.52 +1.23.53 +1.23.54 +1.23.6 +1.23.7 +1.23.8 +1.23.9 +1.231 +1.234.0 +1.236 +1.236.0 +1.237.0 +1.23_002 +1.23_1 +1.24 +1.24.0 +1.24.0.121_g864ba1fb +1.24.0.122_gbc6a7b9e +1.24.0.126_gccbb0fb2 +1.24.0.130_g21895fa6 +1.24.0.132_gc74611b1 +1.24.0.37_g3f461da1 +1.24.0.39_gde1ec7f7 +1.24.1 +1.24.10 +1.24.11 +1.24.11.post3 +1.24.12 +1.24.13 +1.24.14 +1.24.15 +1.24.16 +1.24.17 +1.24.18 +1.24.19 +1.24.2 +1.24.20 +1.24.21 +1.24.22 +1.24.23 +1.24.23.post2 +1.24.24 +1.24.24.post1 +1.24.25 +1.24.26 +1.24.27 +1.24.28 +1.24.29 +1.24.3 +1.24.30 +1.24.31 +1.24.32 +1.24.33 +1.24.34 +1.24.35 +1.24.36 +1.24.36.post1 +1.24.37 +1.24.38 +1.24.39 +1.24.4 +1.24.40 +1.24.41 +1.24.42 +1.24.43 +1.24.43.post1 +1.24.44 +1.24.45 +1.24.46 +1.24.47 +1.24.48 +1.24.49 +1.24.5 +1.24.50 +1.24.51 +1.24.52 +1.24.53 +1.24.54 +1.24.55 +1.24.55.post1 +1.24.56 +1.24.57 +1.24.58 +1.24.59 +1.24.6 +1.24.60 +1.24.60.post1 +1.24.61 +1.24.62 +1.24.63 +1.24.64 +1.24.65 +1.24.66 +1.24.67 +1.24.68 +1.24.69 +1.24.7 +1.24.70 +1.24.71 +1.24.72 +1.24.73 +1.24.74 +1.24.75 +1.24.76 +1.24.77 +1.24.78 +1.24.79 +1.24.8 +1.24.80 +1.24.81 +1.24.82 +1.24.83 +1.24.84 +1.24.85 +1.24.86 +1.24.87 +1.24.88 +1.24.89 +1.24.9 +1.24.90 +1.24.91 +1.24.92 +1.24.93 +1.24.94 +1.24.95 +1.24.96 +1.25 +1.25.0 +1.25.1 +1.25.1.post0 +1.25.10 +1.25.11 +1.25.12 +1.25.13 +1.25.14 +1.25.15 +1.25.16 +1.25.17 +1.25.18 +1.25.19 +1.25.2 +1.25.20 +1.25.21 +1.25.22 +1.25.23 +1.25.24 +1.25.25 +1.25.26 +1.25.27 +1.25.28 +1.25.29 +1.25.3 +1.25.30 +1.25.31 +1.25.32 +1.25.33 +1.25.34 +1.25.35 +1.25.36 +1.25.37 +1.25.38 +1.25.39 +1.25.4 +1.25.40 +1.25.41 +1.25.42 +1.25.43 +1.25.44 +1.25.45 +1.25.46 +1.25.47 +1.25.48 +1.25.49 +1.25.5 +1.25.50 +1.25.51 +1.25.52 +1.25.53 +1.25.54 +1.25.55 +1.25.56 +1.25.57 +1.25.58 +1.25.59 +1.25.6 +1.25.60 +1.25.61 +1.25.62 +1.25.63 +1.25.64 +1.25.65 +1.25.66 +1.25.67 +1.25.68 +1.25.69 +1.25.7 +1.25.70 +1.25.71 +1.25.72 +1.25.73 +1.25.74 +1.25.75 +1.25.76 +1.25.77 +1.25.78 +1.25.79 +1.25.8 +1.25.8.post1 +1.25.80 +1.25.81 +1.25.82 +1.25.83 +1.25.84 +1.25.85 +1.25.86 +1.25.87 +1.25.88 +1.25.89 +1.25.9 +1.25.90 +1.25.91 +1.25.92 +1.25.93 +1.25.94 +1.25.95 +1.25.96 +1.25.97 +1.251 +1.252 +1.26 +1.26.0 +1.26.0.post0 +1.26.0.post1 +1.26.1 +1.26.10 +1.26.11 +1.26.11.post1 +1.26.12 +1.26.13 +1.26.13.post11 +1.26.13.post12 +1.26.13.post16 +1.26.14 +1.26.15 +1.26.16 +1.26.17 +1.26.18 +1.26.19 +1.26.2 +1.26.20 +1.26.21 +1.26.22 +1.26.23 +1.26.24 +1.26.25 +1.26.25.1 +1.26.25.3 +1.26.25.4 +1.26.25.5 +1.26.25.7 +1.26.25.8 +1.26.26 +1.26.27 +1.26.28 +1.26.29 +1.26.3 +1.26.30 +1.26.31 +1.26.32 +1.26.33 +1.26.34 +1.26.35 +1.26.35.post1 +1.26.36 +1.26.37 +1.26.38 +1.26.39 +1.26.4 +1.26.40 +1.26.41 +1.26.42 +1.26.43 +1.26.44 +1.26.45 +1.26.46 +1.26.47 +1.26.47.post1 +1.26.48 +1.26.49 +1.26.5 +1.26.50 +1.26.51 +1.26.52 +1.26.53 +1.26.54 +1.26.55 +1.26.56 +1.26.57 +1.26.58 +1.26.59 +1.26.6 +1.26.60 +1.26.61 +1.26.62 +1.26.63 +1.26.64 +1.26.65 +1.26.66 +1.26.67 +1.26.68 +1.26.69 +1.26.7 +1.26.70 +1.26.71 +1.26.72 +1.26.73 +1.26.74 +1.26.75 +1.26.76 +1.26.77 +1.26.78 +1.26.79 +1.26.8 +1.26.8.post1 +1.26.80 +1.26.81 +1.26.82 +1.26.83 +1.26.84 +1.26.9 +1.27 +1.27.0 +1.27.0.post1 +1.27.1 +1.27.10 +1.27.100 +1.27.101 +1.27.102 +1.27.103 +1.27.104 +1.27.105 +1.27.106 +1.27.107 +1.27.108 +1.27.109 +1.27.11 +1.27.110 +1.27.111 +1.27.112 +1.27.113 +1.27.114 +1.27.115 +1.27.116 +1.27.117 +1.27.118 +1.27.119 +1.27.12 +1.27.120 +1.27.121 +1.27.122 +1.27.123 +1.27.124 +1.27.125 +1.27.126 +1.27.127 +1.27.128 +1.27.129 +1.27.13 +1.27.130 +1.27.131 +1.27.132 +1.27.133 +1.27.134 +1.27.135 +1.27.136 +1.27.137 +1.27.138 +1.27.139 +1.27.14 +1.27.140 +1.27.141 +1.27.142 +1.27.143 +1.27.144 +1.27.145 +1.27.146 +1.27.147 +1.27.148 +1.27.149 +1.27.15 +1.27.150 +1.27.151 +1.27.152 +1.27.153 +1.27.154 +1.27.155 +1.27.16 +1.27.17 +1.27.18 +1.27.19 +1.27.2 +1.27.20 +1.27.21 +1.27.22 +1.27.23 +1.27.24 +1.27.24.post1 +1.27.25 +1.27.26 +1.27.27 +1.27.28 +1.27.29 +1.27.3 +1.27.30 +1.27.31 +1.27.32 +1.27.33 +1.27.34 +1.27.35 +1.27.36 +1.27.37 +1.27.38 +1.27.39 +1.27.4 +1.27.40 +1.27.41 +1.27.42 +1.27.42.post3 +1.27.43 +1.27.44 +1.27.45 +1.27.46 +1.27.47 +1.27.48 +1.27.49 +1.27.5 +1.27.50 +1.27.51 +1.27.52 +1.27.53 +1.27.54 +1.27.55 +1.27.56 +1.27.57 +1.27.58 +1.27.59 +1.27.6 +1.27.60 +1.27.61 +1.27.62 +1.27.63 +1.27.64 +1.27.65 +1.27.66 +1.27.67 +1.27.68 +1.27.69 +1.27.7 +1.27.70 +1.27.71 +1.27.72 +1.27.73 +1.27.74 +1.27.75 +1.27.76 +1.27.77 +1.27.78 +1.27.79 +1.27.8 +1.27.80 +1.27.81 +1.27.82 +1.27.83 +1.27.84 +1.27.85 +1.27.86 +1.27.87 +1.27.88 +1.27.89 +1.27.9 +1.27.90 +1.27.91 +1.27.92 +1.27.93 +1.27.94 +1.27.95 +1.27.96 +1.27.97 +1.27.98 +1.27.99 +1.271 +1.272 +1.28 +1.28.0 +1.28.1 +1.28.2 +1.28.3 +1.28.4 +1.28.5 +1.28.6 +1.28.7 +1.29 +1.29.0 +1.29.0.post0 +1.29.1 +1.29.10 +1.29.11 +1.29.12 +1.29.13 +1.29.14 +1.29.15 +1.29.16 +1.29.17 +1.29.18 +1.29.19 +1.29.2 +1.29.2.post1 +1.29.2.post2 +1.29.20 +1.29.21 +1.29.22 +1.29.23 +1.29.24 +1.29.25 +1.29.26 +1.29.27 +1.29.28 +1.29.29 +1.29.3 +1.29.3.post1 +1.29.30 +1.29.31 +1.29.32 +1.29.33 +1.29.34 +1.29.35 +1.29.36 +1.29.37 +1.29.38 +1.29.39 +1.29.4 +1.29.40 +1.29.41 +1.29.42 +1.29.43 +1.29.44 +1.29.45 +1.29.46 +1.29.47 +1.29.48 +1.29.49 +1.29.5 +1.29.50 +1.29.51 +1.29.52 +1.29.53 +1.29.54 +1.29.55 +1.29.56 +1.29.57 +1.29.58 +1.29.59 +1.29.6 +1.29.60 +1.29.61 +1.29.62 +1.29.63 +1.29.64 +1.29.65 +1.29.66 +1.29.67 +1.29.68 +1.29.69 +1.29.7 +1.29.7.post1 +1.29.70 +1.29.71 +1.29.72 +1.29.73 +1.29.74 +1.29.75 +1.29.76 +1.29.77 +1.29.78 +1.29.79 +1.29.8 +1.29.80 +1.29.81 +1.29.82 +1.29.83 +1.29.84 +1.29.9 +1.2_0 +1.2_0.1 +1.2_1 +1.2_1.1 +1.2_10 +1.2_11 +1.2_12 +1.2_13 +1.2_14 +1.2_15 +1.2_16 +1.2_17 +1.2_18 +1.2_19 +1.2_2 +1.2_20 +1.2_21 +1.2_21.1 +1.2_22 +1.2_3 +1.2_4 +1.2_5 +1.2_6 +1.2_60 +1.2_7 +1.2_7.1 +1.2_8 +1.2_9 +1.2b0_20160930b0 +1.2b0_20160930b1 +1.2rc2 +1.2rc3 +1.3 +1.3.0 +1.3.0.0 +1.3.0.1 +1.3.0.2 +1.3.0.20190205182514 +1.3.0.20190206223817 +1.3.0.20190221150417 +1.3.0.3 +1.3.0.post +1.3.0.post1 +1.3.0.post2 +1.3.0.post2209 +1.3.0.post2210 +1.3.0.post2211 +1.3.0.post2212 +1.3.0.post2301 +1.3.0.post2302 +1.3.0.post2303 +1.3.0.post3 +1.3.0.post4 +1.3.0.pre +1.3.0_1 +1.3.0_2 +1.3.0rc1 +1.3.1 +1.3.1.1 +1.3.1.3 +1.3.1.post0 +1.3.1.post1 +1.3.10 +1.3.1000 +1.3.11 +1.3.11.post3 +1.3.11.post4 +1.3.12 +1.3.13 +1.3.13.post0 +1.3.13.post1 +1.3.14 +1.3.14.post0 +1.3.14.post1 +1.3.14.post2 +1.3.14.post3 +1.3.14.post4 +1.3.15 +1.3.15.1 +1.3.16 +1.3.17 +1.3.18 +1.3.19 +1.3.190304ac +1.3.1_10 +1.3.1_2 +1.3.1_3 +1.3.1_4 +1.3.1_5 +1.3.1_6 +1.3.1_7 +1.3.1_8 +1.3.1_9 +1.3.1a1 +1.3.2 +1.3.2.1 +1.3.2.2 +1.3.2.3 +1.3.2.4 +1.3.2.5 +1.3.2.6 +1.3.2.post0 +1.3.2.post1 +1.3.2.post2 +1.3.20 +1.3.21 +1.3.216.0 +1.3.22 +1.3.23 +1.3.231.1 +1.3.239.0 +1.3.24 +1.3.243.0 +1.3.25 +1.3.250.0 +1.3.26 +1.3.27 +1.3.28 +1.3.29 +1.3.2_1 +1.3.2b1.post4 +1.3.2b3 +1.3.3 +1.3.3.0 +1.3.3.1 +1.3.3.2 +1.3.3.dev0 +1.3.3.post0 +1.3.30 +1.3.31 +1.3.32 +1.3.33 +1.3.34 +1.3.340 +1.3.35 +1.3.353 +1.3.36 +1.3.361 +1.3.37 +1.3.38 +1.3.39 +1.3.3_1 +1.3.3e +1.3.4 +1.3.4.0 +1.3.4.1 +1.3.40 +1.3.41 +1.3.42 +1.3.43 +1.3.44 +1.3.49.5 +1.3.5 +1.3.5.1 +1.3.6 +1.3.6.1 +1.3.6.2 +1.3.7 +1.3.7.1 +1.3.7.post0 +1.3.8 +1.3.8.1 +1.3.8.1.1 +1.3.8.1.2 +1.3.8.1.3 +1.3.8.2 +1.3.9 +1.3.93 +1.3.99 +1.3.993 +1.3.dev +1.3.post1 +1.30 +1.30.0 +1.30.1 +1.30.10 +1.30.12 +1.30.13 +1.30.14 +1.30.15 +1.30.16 +1.30.17 +1.30.18 +1.30.19 +1.30.2 +1.30.20 +1.30.3 +1.30.4 +1.30.5 +1.30.6 +1.30.7 +1.30.8 +1.30.9 +1.300 +1.302075 +1.302164 +1.302188 +1.302189 +1.302190 +1.302191 +1.31 +1.31.0 +1.31.1 +1.31.2 +1.31.3 +1.31.4 +1.31.5 +1.31.6 +1.310 +1.32 +1.32.0 +1.32.1 +1.32.3 +1.32.8 +1.33 +1.33.0 +1.33.1 +1.33.2 +1.33.3 +1.33.4 +1.34 +1.34.0 +1.34.1 +1.34.2 +1.34.3 +1.34.5 +1.34.6 +1.34.8 +1.35 +1.35.0 +1.35.1 +1.35.2 +1.35.3 +1.35.4 +1.35.4.post0 +1.35.5 +1.35.6 +1.36 +1.36.0 +1.36.1 +1.36.2 +1.36.3 +1.36.4 +1.37 +1.37.0 +1.37.1 +1.37.2 +1.37.5 +1.373 +1.38 +1.38.0 +1.38.1 +1.38.11 +1.38.12 +1.38.13 +1.38.14 +1.38.15 +1.38.16 +1.38.18 +1.38.19 +1.38.2 +1.38.20 +1.38.21 +1.38.22 +1.38.24 +1.38.25 +1.38.27 +1.38.28 +1.38.29 +1.38.3 +1.38.30 +1.38.31 +1.38.32 +1.38.48 +1.38.5 +1.38.6 +1.38.9 +1.38_03 +1.39 +1.39.0 +1.39.1 +1.3_0 +1.3_1 +1.3_1.1 +1.3_1.2 +1.3_1.3 +1.3_1.4 +1.3_1.5 +1.3_1.6 +1.3_1.7 +1.3_1.8 +1.3_10 +1.3_11 +1.3_12 +1.3_13 +1.3_14 +1.3_15 +1.3_16 +1.3_17 +1.3_18 +1.3_19 +1.3_2 +1.3_20 +1.3_21 +1.3_22 +1.3_23 +1.3_24 +1.3_25 +1.3_26 +1.3_27 +1.3_28 +1.3_28.1 +1.3_3 +1.3_4 +1.3_5 +1.3_6 +1.3_7 +1.3_8 +1.3_9 +1.3_9.1 +1.3a1 +1.3rc2 +1.4 +1.4.0 +1.4.0.0 +1.4.0.1 +1.4.0.2 +1.4.0.20210127.165413 +1.4.0.6 +1.4.0.post0 +1.4.0.post1 +1.4.0.pre +1.4.07 +1.4.0_1 +1.4.0a1 +1.4.0rc1 +1.4.1 +1.4.1.0 +1.4.1.1 +1.4.1.dev +1.4.1.post1 +1.4.1.post3 +1.4.10 +1.4.102 +1.4.105 +1.4.107 +1.4.108 +1.4.109 +1.4.11 +1.4.111 +1.4.112 +1.4.114 +1.4.116 +1.4.119 +1.4.12 +1.4.12.post1 +1.4.120 +1.4.122 +1.4.126 +1.4.13 +1.4.13.post1 +1.4.131 +1.4.132 +1.4.133 +1.4.134 +1.4.138 +1.4.14 +1.4.142 +1.4.145 +1.4.15 +1.4.150 +1.4.154 +1.4.16 +1.4.160 +1.4.162 +1.4.165 +1.4.166 +1.4.17 +1.4.17.post1 +1.4.18 +1.4.19 +1.4.2 +1.4.2.0 +1.4.2.220626 +1.4.2.post1 +1.4.2.post2 +1.4.20 +1.4.21 +1.4.22 +1.4.23 +1.4.24 +1.4.25 +1.4.26 +1.4.27 +1.4.28 +1.4.28.3 +1.4.29 +1.4.3 +1.4.3.0 +1.4.3.01 +1.4.3.1 +1.4.3.2 +1.4.3.220702 +1.4.3.220703 +1.4.3.220704 +1.4.3.220710 +1.4.3.220718 +1.4.3.220724 +1.4.3.220801 +1.4.3.220807 +1.4.3.220815 +1.4.3.220822 +1.4.3.220829 +1.4.3.post0 +1.4.30 +1.4.31 +1.4.32 +1.4.33 +1.4.34 +1.4.35 +1.4.36 +1.4.37 +1.4.38 +1.4.39 +1.4.3_1 +1.4.4 +1.4.4.1 +1.4.4.220906 +1.4.4.220912 +1.4.4.220919 +1.4.4.post0 +1.4.4.post1 +1.4.40 +1.4.41 +1.4.42 +1.4.43 +1.4.44 +1.4.45 +1.4.46 +1.4.48 +1.4.49 +1.4.5 +1.4.5.0 +1.4.5.1 +1.4.5.2 +1.4.5.3 +1.4.50 +1.4.51 +1.4.52 +1.4.53 +1.4.54 +1.4.56 +1.4.58 +1.4.59 +1.4.6 +1.4.6.0 +1.4.6.1 +1.4.62 +1.4.64 +1.4.68.19.3.27 +1.4.7 +1.4.70 +1.4.71 +1.4.72 +1.4.73 +1.4.75 +1.4.76 +1.4.77 +1.4.78 +1.4.8 +1.4.8.1 +1.4.8.7 +1.4.81 +1.4.84 +1.4.85 +1.4.87 +1.4.88 +1.4.9 +1.4.9.0 +1.4.9.1 +1.4.9.57 +1.4.9.post1 +1.4.90 +1.4.91 +1.4.92 +1.4.93 +1.4.97 +1.4.98 +1.4.99 +1.40 +1.40.0 +1.40.1 +1.40.14 +1.40.2 +1.40.3 +1.40.4 +1.40.6 +1.40.7 +1.40_2 +1.40_3 +1.40_5 +1.41 +1.41.0 +1.41.1 +1.412 +1.413 +1.414 +1.41_6 +1.42 +1.42.0 +1.42.1 +1.42.2 +1.42.3 +1.42.4 +1.43 +1.43.0 +1.43.1 +1.43.10 +1.43.14 +1.43.15 +1.43.17 +1.43.2 +1.43.4 +1.43.4.post1 +1.43.5 +1.43.6 +1.43.7 +1.43.8 +1.44 +1.44.0 +1.44.1 +1.44.2 +1.44.3 +1.44.4 +1.44.5 +1.44.6 +1.44.7 +1.443 +1.44_9 +1.45 +1.45.0 +1.45.1 +1.45.2 +1.45.6 +1.45.7 +1.45_11 +1.46 +1.46.0 +1.46.1 +1.46.2 +1.46.3 +1.46.4 +1.46_2 +1.47 +1.47.0 +1.47.1 +1.47.10 +1.47.11 +1.47.12 +1.47.13 +1.47.14 +1.47.15 +1.47.16 +1.47.17 +1.47.3 +1.47.4 +1.47.6 +1.47.8 +1.47.9 +1.47_9 +1.48 +1.48.0 +1.48.1 +1.48.10 +1.48.3 +1.48.4 +1.48.5 +1.48.6 +1.48.7 +1.48.8 +1.48.9 +1.48_1 +1.49 +1.49.0 +1.49.1 +1.49.2 +1.49.3 +1.49.4 +1.4_0 +1.4_1 +1.4_10 +1.4_11 +1.4_12 +1.4_13 +1.4_14 +1.4_15 +1.4_16 +1.4_17 +1.4_18 +1.4_19 +1.4_2 +1.4_2.1 +1.4_20 +1.4_22 +1.4_3 +1.4_4 +1.4_5 +1.4_6 +1.4_7 +1.4_8 +1.4_9 +1.4dev2 +1.4rc1 +1.5 +1.5.0 +1.5.0.0 +1.5.0.1 +1.5.0.2 +1.5.0.20221221.150433 +1.5.0.220926 +1.5.0.221003 +1.5.0.221010 +1.5.0.221012 +1.5.0.3 +1.5.0.37 +1.5.0.4 +1.5.0.59 +1.5.0.6 +1.5.0.63 +1.5.0.87 +1.5.0.post1 +1.5.0.pre +1.5.00 +1.5.0_1 +1.5.0_beta20160623 +1.5.0_beta20161122 +1.5.0beta +1.5.0rc0 +1.5.0rc1 +1.5.1 +1.5.1.1 +1.5.1.2 +1.5.1.221024 +1.5.1.post0 +1.5.1.post1 +1.5.1.post2 +1.5.10 +1.5.11 +1.5.12 +1.5.13 +1.5.14 +1.5.15 +1.5.16 +1.5.17 +1.5.18 +1.5.19 +1.5.1b +1.5.2 +1.5.2.221124 +1.5.2.230105 +1.5.20 +1.5.21 +1.5.21.1 +1.5.21.2 +1.5.21.3 +1.5.22 +1.5.23 +1.5.24 +1.5.25 +1.5.26 +1.5.27 +1.5.28 +1.5.29 +1.5.2_1 +1.5.3 +1.5.3.1 +1.5.3.230203 +1.5.3.230214 +1.5.30 +1.5.31 +1.5.32 +1.5.33 +1.5.34 +1.5.35 +1.5.36 +1.5.37 +1.5.38 +1.5.39 +1.5.3_4 +1.5.4 +1.5.5 +1.5.5.1 +1.5.5.3 +1.5.55 +1.5.5_1 +1.5.6 +1.5.69.6 +1.5.7 +1.5.8 +1.5.8.1 +1.5.8.2 +1.5.8.3 +1.5.8.4 +1.5.82 +1.5.83 +1.5.84 +1.5.86 +1.5.87 +1.5.88 +1.5.9 +1.5.90 +1.5.91 +1.5.92 +1.50 +1.50.0 +1.50.1 +1.50.10 +1.50.11 +1.50.12 +1.50.13 +1.50.14 +1.50.2 +1.50.3 +1.50.4 +1.50.5 +1.50.6 +1.50.7 +1.50.8 +1.50.9 +1.502 +1.503 +1.504 +1.51 +1.51.0 +1.51.07 +1.51.1 +1.51.2 +1.51.3 +1.51.5 +1.52 +1.52.0 +1.52.1 +1.52.2 +1.52.3 +1.52.4 +1.52.5 +1.53 +1.53.0 +1.53.0.dev20210324 +1.53.1 +1.53.2 +1.53.3 +1.53.4 +1.53.5 +1.54 +1.54.0 +1.54.1 +1.54.2 +1.54.3 +1.54.4 +1.54_0 +1.55 +1.55.0 +1.55.1 +1.55.2 +1.55.3 +1.55.4 +1.56 +1.56.0 +1.56.1 +1.56.2 +1.56.3 +1.56.4 +1.56_0 +1.57 +1.57.0 +1.57.1 +1.57_1 +1.58 +1.58.0 +1.58.1 +1.58.2 +1.58.3 +1.59 +1.59.0 +1.59.1 +1.59.2 +1.59.3 +1.5_0 +1.5_0.1 +1.5_1 +1.5_10 +1.5_11 +1.5_12 +1.5_12.2 +1.5_14 +1.5_15 +1.5_16 +1.5_17 +1.5_18 +1.5_2 +1.5_21 +1.5_23 +1.5_28 +1.5_29 +1.5_3 +1.5_32 +1.5_4 +1.5_4.1 +1.5_5 +1.5_6 +1.5_7 +1.5_8 +1.5_9 +1.5_9.1 +1.5_9.2 +1.5_9.4 +1.5_9.5 +1.5_9.6 +1.5_9.7 +1.5_9.8 +1.6 +1.6.0 +1.6.0.1 +1.6.0.2 +1.6.0.3 +1.6.0.47 +1.6.0.post0 +1.6.0.post1 +1.6.0.post2 +1.6.0a +1.6.0rc0 +1.6.1 +1.6.1.0 +1.6.1.5 +1.6.10 +1.6.10.43 +1.6.11 +1.6.12 +1.6.12.post0 +1.6.13 +1.6.14 +1.6.14.post0 +1.6.15 +1.6.16 +1.6.17 +1.6.17.0 +1.6.18 +1.6.19 +1.6.2 +1.6.2.0 +1.6.2.3 +1.6.20 +1.6.20180829 +1.6.21 +1.6.22 +1.6.22.post0 +1.6.23 +1.6.23.post0 +1.6.24 +1.6.25 +1.6.26 +1.6.28 +1.6.2_1 +1.6.3 +1.6.3.0 +1.6.3.1 +1.6.3.4 +1.6.34 +1.6.35 +1.6.36 +1.6.37 +1.6.38 +1.6.39 +1.6.3rc4 +1.6.4 +1.6.4.0 +1.6.4.1 +1.6.4.2 +1.6.4.4 +1.6.4.6 +1.6.4.7.1 +1.6.4.9 +1.6.5 +1.6.5.0 +1.6.5rc5 +1.6.6 +1.6.6.0 +1.6.6.1 +1.6.6.2 +1.6.6.3 +1.6.6.4 +1.6.6_1 +1.6.6rc1 +1.6.7 +1.6.7.post1 +1.6.7.post2 +1.6.7rc1 +1.6.7rc2 +1.6.7rc3 +1.6.7rc4 +1.6.8 +1.6.8.0 +1.6.8.1 +1.6.8.2 +1.6.9 +1.6.9.0 +1.6.9.2 +1.6.9.5 +1.6.9.7 +1.6.9.9 +1.6.905 +1.60 +1.60.0 +1.60.1 +1.60.2 +1.601 +1.60_1 +1.61 +1.61.0 +1.61.1 +1.61.3 +1.61_0 +1.62 +1.62.0 +1.62.0_1 +1.62.1 +1.62.2 +1.62_2 +1.63 +1.63.0 +1.63.1 +1.63.2 +1.63_0 +1.63_1 +1.63_2 +1.63_3 +1.64 +1.64.0 +1.64.1 +1.643 +1.64_1 +1.65.0 +1.65.0_1 +1.65.1 +1.65_3 +1.65_5 +1.66.0 +1.66.0_1 +1.66.1 +1.6611 +1.67 +1.67.0 +1.67.1 +1.68 +1.68.0 +1.68.2 +1.69 +1.69.0 +1.69.0_1 +1.6_0 +1.6_0.10 +1.6_0.11 +1.6_0.12 +1.6_1 +1.6_1.1 +1.6_2 +1.6_3 +1.6_4 +1.6_5 +1.6_6 +1.6_7 +1.6_8 +1.7 +1.7.0 +1.7.0.0 +1.7.0.1 +1.7.0.181 +1.7.0.221 +1.7.0.251 +1.7.0.261 +1.7.0.4 +1.7.0.6 +1.7.1 +1.7.1.0 +1.7.1.1 +1.7.1.2 +1.7.1.4 +1.7.1.8 +1.7.10 +1.7.100 +1.7.11 +1.7.12 +1.7.13 +1.7.14 +1.7.143 +1.7.145 +1.7.149 +1.7.15 +1.7.154 +1.7.159 +1.7.16 +1.7.160 +1.7.164 +1.7.17 +1.7.18 +1.7.19 +1.7.1_1 +1.7.2 +1.7.2.0 +1.7.2.1 +1.7.2.2 +1.7.2.post0 +1.7.20 +1.7.21 +1.7.22 +1.7.23 +1.7.24 +1.7.25 +1.7.26 +1.7.266 +1.7.27 +1.7.28 +1.7.29 +1.7.299 +1.7.2_1 +1.7.3 +1.7.3.0 +1.7.3.1 +1.7.3.2 +1.7.3.21 +1.7.3.3 +1.7.3.4 +1.7.3.5 +1.7.30 +1.7.309 +1.7.31 +1.7.310 +1.7.32 +1.7.33 +1.7.34 +1.7.35 +1.7.36 +1.7.37 +1.7.38 +1.7.39 +1.7.3_1 +1.7.4 +1.7.4.0 +1.7.4.1 +1.7.4.3 +1.7.40 +1.7.41 +1.7.42 +1.7.43 +1.7.44 +1.7.45 +1.7.46 +1.7.47 +1.7.48 +1.7.49 +1.7.4_0 +1.7.4_1 +1.7.5 +1.7.5.0 +1.7.5.1 +1.7.5.2 +1.7.5.3 +1.7.5.4 +1.7.50 +1.7.51 +1.7.52 +1.7.53 +1.7.54 +1.7.55 +1.7.56 +1.7.57 +1.7.58 +1.7.59 +1.7.5b +1.7.6 +1.7.6.0 +1.7.6.1 +1.7.6.5 +1.7.6.6 +1.7.60 +1.7.61 +1.7.62 +1.7.63 +1.7.64 +1.7.65 +1.7.66 +1.7.67 +1.7.68 +1.7.69 +1.7.7 +1.7.7.0 +1.7.70 +1.7.71 +1.7.72 +1.7.73 +1.7.74 +1.7.75 +1.7.76 +1.7.77 +1.7.78 +1.7.79 +1.7.8 +1.7.80 +1.7.81 +1.7.82 +1.7.83 +1.7.84 +1.7.9 +1.7.9.2 +1.70 +1.70.0 +1.7043 +1.7045 +1.7046 +1.71 +1.71.0 +1.710 +1.72 +1.72.0 +1.72.0_2 +1.72.0_3 +1.72.2 +1.73 +1.73.0 +1.73.1 +1.74 +1.74.0 +1.75 +1.75.0 +1.75.0_0 +1.75.1 +1.76 +1.76.0 +1.76.1 +1.76.2 +1.77 +1.77.0 +1.77.1 +1.77.2 +1.77.3 +1.78 +1.78.0 +1.78.0_0 +1.78.1 +1.79 +1.79.0 +1.79.2 +1.79.3 +1.7_0 +1.7_1 +1.7_10 +1.7_11 +1.7_12 +1.7_13 +1.7_14 +1.7_15 +1.7_16 +1.7_17 +1.7_18 +1.7_19 +1.7_2 +1.7_20 +1.7_22 +1.7_23 +1.7_28 +1.7_29 +1.7_3 +1.7_3.1 +1.7_4 +1.7_5 +1.7_5.2 +1.7_5.2.1 +1.7_5.2.2 +1.7_6 +1.7_7 +1.7_8 +1.7_9 +1.8 +1.8.0 +1.8.0.1 +1.8.1 +1.8.1.2 +1.8.1.2c +1.8.10 +1.8.11 +1.8.12 +1.8.122 +1.8.124 +1.8.126 +1.8.127 +1.8.13 +1.8.130 +1.8.134 +1.8.138 +1.8.14 +1.8.144 +1.8.15 +1.8.151 +1.8.152 +1.8.157 +1.8.16 +1.8.17 +1.8.18 +1.8.186 +1.8.19 +1.8.1_1 +1.8.1rc1 +1.8.2 +1.8.2.1 +1.8.2.2 +1.8.2.3 +1.8.2.post2 +1.8.20 +1.8.21 +1.8.22 +1.8.23 +1.8.28 +1.8.3 +1.8.32 +1.8.36 +1.8.37 +1.8.38 +1.8.39 +1.8.4 +1.8.4.2 +1.8.40 +1.8.41 +1.8.42 +1.8.43 +1.8.44 +1.8.45 +1.8.46 +1.8.47 +1.8.48 +1.8.49 +1.8.4_1 +1.8.5 +1.8.50 +1.8.52 +1.8.54 +1.8.56 +1.8.59 +1.8.6 +1.8.6.0 +1.8.6.5 +1.8.63 +1.8.7 +1.8.7.0 +1.8.70 +1.8.74 +1.8.8 +1.8.8.0 +1.8.9 +1.8.9.0 +1.8.9.post2 +1.80 +1.80.0 +1.80.1 +1.80.4 +1.80.5 +1.81 +1.81.0 +1.81.0_1 +1.81.1 +1.82.0 +1.83.0 +1.83.0.dev13 +1.837 +1.84 +1.84.0 +1.840 +1.84_6.1 +1.84_6.2 +1.85 +1.85.0 +1.85.1 +1.855 +1.856 +1.857 +1.858 +1.86 +1.86.0 +1.87 +1.87.0 +1.87.1 +1.876 +1.878 +1.879 +1.88 +1.88.0 +1.881 +1.89 +1.89.0 +1.8_0 +1.8_1 +1.8_10 +1.8_11 +1.8_12 +1.8_13 +1.8_17 +1.8_2 +1.8_24 +1.8_26 +1.8_27 +1.8_28 +1.8_29 +1.8_3 +1.8_31 +1.8_32 +1.8_33 +1.8_34 +1.8_35 +1.8_36 +1.8_37 +1.8_38 +1.8_39 +1.8_4 +1.8_40 +1.8_41 +1.8_42 +1.8_5 +1.8_6 +1.8_7 +1.8_8 +1.8_9 +1.8rc1 +1.8rc2 +1.9 +1.9.0 +1.9.0.0 +1.9.0.1 +1.9.0.2 +1.9.0.21 +1.9.0.3 +1.9.0.4 +1.9.0.post1 +1.9.0.post145 +1.9.0.post25 +1.9.0.post84 +1.9.0a3 +1.9.1 +1.9.1.0 +1.9.1.1 +1.9.10 +1.9.10.1 +1.9.100 +1.9.101 +1.9.102 +1.9.103 +1.9.104 +1.9.105 +1.9.106 +1.9.107 +1.9.108 +1.9.109 +1.9.11 +1.9.110 +1.9.111 +1.9.112 +1.9.113 +1.9.114 +1.9.115 +1.9.116 +1.9.117 +1.9.118 +1.9.119 +1.9.12 +1.9.12.31 +1.9.120 +1.9.121 +1.9.122 +1.9.123 +1.9.124 +1.9.125 +1.9.126 +1.9.127 +1.9.128 +1.9.129 +1.9.13 +1.9.130 +1.9.131 +1.9.132 +1.9.133 +1.9.134 +1.9.135 +1.9.136 +1.9.137 +1.9.138 +1.9.139 +1.9.14 +1.9.140 +1.9.141 +1.9.142 +1.9.143 +1.9.144 +1.9.145 +1.9.146 +1.9.147 +1.9.148 +1.9.149 +1.9.15 +1.9.150 +1.9.151 +1.9.152 +1.9.153 +1.9.154 +1.9.155 +1.9.156 +1.9.157 +1.9.158 +1.9.159 +1.9.16 +1.9.160 +1.9.161 +1.9.162 +1.9.163 +1.9.164 +1.9.165 +1.9.166 +1.9.167 +1.9.168 +1.9.169 +1.9.17 +1.9.170 +1.9.171 +1.9.172 +1.9.173 +1.9.174 +1.9.175 +1.9.176 +1.9.177 +1.9.178 +1.9.179 +1.9.18 +1.9.180 +1.9.181 +1.9.182 +1.9.183 +1.9.184 +1.9.185 +1.9.186 +1.9.187 +1.9.188 +1.9.189 +1.9.19 +1.9.190 +1.9.191 +1.9.192 +1.9.193 +1.9.194 +1.9.195 +1.9.196 +1.9.197 +1.9.198 +1.9.199 +1.9.2 +1.9.2.1 +1.9.2.4 +1.9.2.6 +1.9.2.8 +1.9.20 +1.9.200 +1.9.201 +1.9.202 +1.9.20220401 +1.9.203 +1.9.204 +1.9.205 +1.9.206 +1.9.207 +1.9.208 +1.9.209 +1.9.21 +1.9.210 +1.9.211 +1.9.212 +1.9.213 +1.9.214 +1.9.215 +1.9.216 +1.9.217 +1.9.218 +1.9.219 +1.9.22 +1.9.220 +1.9.221 +1.9.222 +1.9.223 +1.9.224 +1.9.225 +1.9.226 +1.9.227 +1.9.228 +1.9.229 +1.9.23 +1.9.230 +1.9.231 +1.9.232 +1.9.233 +1.9.234 +1.9.235 +1.9.236 +1.9.237 +1.9.238 +1.9.239 +1.9.24 +1.9.240 +1.9.241 +1.9.242 +1.9.243 +1.9.244 +1.9.245 +1.9.246 +1.9.247 +1.9.248 +1.9.249 +1.9.25 +1.9.250 +1.9.251 +1.9.252 +1.9.253 +1.9.254 +1.9.255 +1.9.256 +1.9.257 +1.9.258 +1.9.259 +1.9.26 +1.9.261 +1.9.262 +1.9.263 +1.9.264 +1.9.265 +1.9.268 +1.9.269 +1.9.27 +1.9.270 +1.9.271 +1.9.272 +1.9.273 +1.9.274 +1.9.275 +1.9.276 +1.9.277 +1.9.278 +1.9.279 +1.9.28 +1.9.280 +1.9.281 +1.9.282 +1.9.283 +1.9.284 +1.9.285 +1.9.286 +1.9.287 +1.9.288 +1.9.289 +1.9.29 +1.9.290 +1.9.291 +1.9.292 +1.9.293 +1.9.294 +1.9.296 +1.9.297 +1.9.298 +1.9.299 +1.9.3 +1.9.3.0 +1.9.3.2 +1.9.3.4 +1.9.3.6 +1.9.3.8 +1.9.30 +1.9.300 +1.9.301 +1.9.302 +1.9.303 +1.9.304 +1.9.305 +1.9.306 +1.9.307 +1.9.308 +1.9.309 +1.9.31 +1.9.310 +1.9.311 +1.9.312 +1.9.313 +1.9.314 +1.9.315 +1.9.316 +1.9.317 +1.9.318 +1.9.319 +1.9.32 +1.9.320 +1.9.321 +1.9.326 +1.9.327 +1.9.328 +1.9.33 +1.9.330 +1.9.331 +1.9.332 +1.9.333 +1.9.334 +1.9.335 +1.9.336 +1.9.337 +1.9.338 +1.9.339 +1.9.34 +1.9.340 +1.9.341 +1.9.342 +1.9.343 +1.9.344 +1.9.345 +1.9.346 +1.9.347 +1.9.348 +1.9.349 +1.9.35 +1.9.350 +1.9.351 +1.9.352 +1.9.353 +1.9.354 +1.9.356 +1.9.357 +1.9.358 +1.9.359 +1.9.36 +1.9.361 +1.9.362 +1.9.363 +1.9.364 +1.9.365 +1.9.366 +1.9.367 +1.9.368 +1.9.369 +1.9.37 +1.9.370 +1.9.371 +1.9.372 +1.9.373 +1.9.374 +1.9.375 +1.9.376 +1.9.377 +1.9.378 +1.9.379 +1.9.38 +1.9.39 +1.9.4 +1.9.4.0 +1.9.4.4 +1.9.40 +1.9.41 +1.9.42 +1.9.43 +1.9.44 +1.9.45 +1.9.46 +1.9.47 +1.9.48 +1.9.49 +1.9.5 +1.9.5.0 +1.9.5.1 +1.9.5.6 +1.9.5.8 +1.9.5.post0 +1.9.50 +1.9.51 +1.9.52 +1.9.53 +1.9.54 +1.9.55 +1.9.56 +1.9.57 +1.9.58 +1.9.59 +1.9.6 +1.9.6.0 +1.9.6.2 +1.9.6.4 +1.9.6.8 +1.9.60 +1.9.61 +1.9.62 +1.9.63 +1.9.64 +1.9.65 +1.9.66 +1.9.67 +1.9.68 +1.9.69 +1.9.7 +1.9.7.0 +1.9.7.1 +1.9.7.2 +1.9.7.4 +1.9.7.6 +1.9.70 +1.9.71 +1.9.72 +1.9.73 +1.9.74 +1.9.75 +1.9.76 +1.9.77 +1.9.78 +1.9.79 +1.9.8 +1.9.8.11 +1.9.8.15 +1.9.8.20 +1.9.8.8 +1.9.80 +1.9.81 +1.9.82 +1.9.83 +1.9.84 +1.9.85 +1.9.86 +1.9.87 +1.9.88 +1.9.89 +1.9.9 +1.9.9.0 +1.9.9.1 +1.9.9.11 +1.9.9.18 +1.9.9.38 +1.9.9.44 +1.9.90 +1.9.91 +1.9.92 +1.9.93 +1.9.94 +1.9.95 +1.9.96 +1.9.97 +1.9.98 +1.9.99 +1.90 +1.90.0 +1.900.1 +1.91 +1.91.0 +1.92 +1.92.0 +1.93 +1.93.0 +1.93.4 +1.93.5 +1.94.0 +1.95.1 +1.95_4.11 +1.95_4.12 +1.95_4.13 +1.95_4.8 +1.96.0 +1.96.1 +1.96.2 +1.96.3 +1.967015 +1.97.0 +1.98 +1.98.0 +1.98_1.1 +1.98_1.10 +1.98_1.12 +1.98_1.2 +1.98_1.3 +1.98_1.4 +1.98_1.5 +1.98_1.6 +1.98_1.7 +1.98_1.8 +1.98_1.9 +1.99.0 +1.99.8 +1.991 +1.992 +1.993 +1.999816 +1.999829 +1.999830 +1.999831 +1.999832 +1.999833 +1.999835 +1.999836 +1.999837 +1.9_0 +1.9_1 +1.9_10.3 +1.9_12 +1.9_13 +1.9_15 +1.9_16 +1.9_19 +1.9_2 +1.9_2.1 +1.9_3 +1.9_61 +1.9_7 +1.9_73 +1.9_74 +1.9rc1 +10 +10.0 +10.0.0 +10.0.0.2020.03.26 +10.0.0.post2 +10.0.1 +10.0.10 +10.0.11 +10.0.130 +10.0.15 +10.0.17134.0 +10.0.17763.0 +10.0.2 +10.0.20348.0 +10.0.22621.0 +10.0.26.0 +10.0.26.1 +10.0.3 +10.0.4 +10.0.5 +10.0.6 +10.0.7 +10.0.8 +10.0.9 +10.0_1 +10.1 +10.1.0 +10.1.1 +10.1.1.70.5 +10.1.1.70.6 +10.1.2 +10.1.243 +10.1.3 +10.1.4 +10.1.5 +10.10.0 +10.11.0 +10.12.0 +10.13.0 +10.14.0 +10.14.1 +10.15.0 +10.15.1 +10.15.2 +10.15.3 +10.16.0 +10.16.1 +10.16.2 +10.16.3 +10.2 +10.2.0 +10.2.0.post1 +10.2.1 +10.2.10 +10.2.11 +10.2.13 +10.2.15 +10.2.16 +10.2.2 +10.2.3 +10.2.4 +10.2.5 +10.2.6 +10.2.7 +10.2.89 +10.2.9 +10.20220121 +10.20220127 +10.20220128 +10.20220222 +10.20220223 +10.20220322 +10.20220504 +10.20220505 +10.20220525 +10.20220526 +10.20220624 +10.20220724 +10.20220725 +10.20220822 +10.20220927 +10.20230126 +10.20230227 +10.20230407 +10.21 +10.22.0 +10.23 +10.3 +10.3.0 +10.3.0.71.0 +10.3.1 +10.3.1.50 +10.3.2 +10.3.3 +10.3.4 +10.30 +10.31 +10.34 +10.35 +10.36 +10.37 +10.4 +10.4.0 +10.4.1 +10.4.11 +10.4.12 +10.4.13 +10.4.14 +10.4.15 +10.4.16 +10.4.17 +10.4.18 +10.4.19 +10.4.2 +10.4.20 +10.4.21 +10.4.22 +10.4.23 +10.4.3 +10.4.4 +10.4.5 +10.4.6 +10.4.7 +10.4.8 +10.4.9 +10.40 +10.5 +10.5.0 +10.5.1 +10.5.10 +10.5.2 +10.5.3 +10.5.4 +10.5.5 +10.5.6 +10.5.7 +10.5.9 +10.6 +10.6.0 +10.6.0.patch2 +10.6.0.pre4 +10.6.1 +10.6.2 +10.6.3 +10.7.0 +10.7.1 +10.7.2 +10.7.3 +10.7.4 +10.7.5 +10.7.6 +10.73.28 +10.73.29 +10.73.30 +10.73.31 +10.73.32 +10.73.33 +10.73.34 +10.73.35 +10.73.36 +10.73.37 +10.73.38 +10.73.39 +10.73.40 +10.73.41 +10.73.42 +10.73.43 +10.8.0 +10.8.1 +10.8.2 +10.8.3 +10.8.4 +10.9.0 +100 +100.0 +100.0.2 +100.0.4896.20.0 +100.0.4896.60.0 +100.1 +100.1.1 +100.2 +100.2.0 +100.2.1 +100.3 +100.3.0 +100.3.1 +100.4 +100.4.0 +100.4.1 +100.5.0 +100.5.1 +100.5.2 +100.5.3 +100.5.4 +100.6.0 +100.6.1 +100.7.0 +100.7.2 +1000.10.8 +101 +101.0 +101.0.4951.15.0 +101.0.4951.41.0 +102 +102.0 +102.0.1esr +102.0.5005.27.0 +102.0.5005.61.0 +102.10.0esr +102.11.0esr +102.2.0esr +102.3.0esr +102.4.0esr +102.5.0esr +102.6.0esr +102.7.0esr +102.8.0esr +102.9.0esr +103 +103.0 +103.0.0 +103.0.5060.24.0 +103.0.5060.53.0 +103.1 +104 +104.0 +104.0.0 +104.0.1 +104.0.2 +104.0.5112.20.0 +104.0.5112.29.0 +104.1 +104.1.1 +104.2 +104.2019.3.20.13.47.8 +104.2020.8.19.11.8.18 +104.2020.8.20.0.32.20 +104.2021.3.22.15.7.51 +104.2022.2.8.21.41.41 +104.2022.3.2.14.39.8 +104.2022.7 +104.3 +105 +105.0 +105.0.0 +105.0.5195.19.0 +105.0.5195.52.0 +106 +106.0 +106.0.5249.21.0 +106.0.5249.61.0 +106.1 +107 +107.0 +107.0.0 +107.0.5304.18.0 +107.0.5304.18.1 +107.0.5304.62.0 +108 +108.0 +108.0.0 +108.0.1 +108.0.2 +108.0.5359.22.0 +108.0.5359.71.0 +108.1 +108.2 +109.0 +109.0.0 +109.0.5414.25.0 +109.0.5414.74.0 +10r0p1 +11 +11.0 +11.0.0 +11.0.0.21 +11.0.0.dev0 +11.0.0.rc1 +11.0.1 +11.0.1.dev0 +11.0.10 +11.0.10.0 +11.0.10.1 +11.0.11 +11.0.15 +11.0.2 +11.0.3 +11.0.4 +11.0.5 +11.0.6 +11.0.7 +11.0.8 +11.0.9 +11.0.9.1 +11.01 +11.1 +11.1.0 +11.1.1 +11.1.2 +11.1.3 +11.1.5 +11.1.5.0 +11.1.5.1 +11.1.5.2 +11.10.0 +11.10.1 +11.10.2 +11.11.0 +11.12.0 +11.13.0 +11.13.1 +11.13.2 +11.13.3 +11.14.0 +11.15.0 +11.16.0 +11.17.0 +11.18.0 +11.19.0 +11.2 +11.2.0 +11.2.1 +11.2.2 +11.2.3 +11.2.4 +11.2.6 +11.20.0 +11.22.0 +11.23.0 +11.24.0 +11.25.0 +11.25.1 +11.26.0 +11.27.0 +11.28.0 +11.29.0 +11.3 +11.3.0 +11.3.1 +11.3.1.1 +11.3.1.2 +11.3.2 +11.30.0 +11.31.0 +11.32.0 +11.33.0 +11.34.0 +11.35.0 +11.36.0 +11.4 +11.4.0 +11.4.1 +11.4.2 +11.4.2.57 +11.4.3 +11.4.4 +11.450.129 +11.450.51 +11.460.79 +11.470.66 +11.495.46 +11.5 +11.5.0 +11.5.1 +11.5.2 +11.50 +11.510.69 +11.515.48 +11.515.75 +11.525.84 +11.6 +11.6.0 +11.6.1 +11.6.2 +11.7 +11.7.0 +11.7.1 +11.7.2 +11.7.3 +11.8 +11.8.0 +11.8.1 +11.8.2 +11.9.0 +11.9.1 +11.96 +11.99 +110 +110.0 +110.0.0 +110.0.1 +110.0.5481.30.0 +110.0.5481.77.0 +1100.0.11 +111 +111.0 +111.0.5563.19.0 +111.0.5563.41.0 +111.0.5563.64.0 +111.1.0 +111.2.0 +112 +112.0 +112.0.5615.28.0 +112.0.5615.49.0 +113 +113.0 +113.0.2 +113.0.3 +113.0.4 +113.0.5672.24.0 +113.0.5672.63.0 +114 +114.0 +114.0.5735.16.0 +114.0.5735.90.0 +115 +116 +116.1.0 +116.1.1 +116.1.2 +116.2.1 +116.6.1 +117 +118 +119 +12 +12.0 +12.0.0 +12.0.0.28 +12.0.0.30 +12.0.0.76 +12.0.1 +12.0.1.189 +12.0.10 +12.0.107 +12.0.11 +12.0.12 +12.0.13 +12.0.14 +12.0.16.0 +12.0.2 +12.0.25 +12.0.26 +12.0.3 +12.0.30 +12.0.31 +12.0.32 +12.0.33 +12.0.34 +12.0.36 +12.0.37 +12.0.4 +12.0.41 +12.0.42 +12.0.5 +12.0.6 +12.0.7 +12.0.76 +12.0.8 +12.0.90 +12.1 +12.1.0 +12.1.1 +12.1.2 +12.1.4 +12.10.0 +12.10.1 +12.10.2 +12.11.0 +12.11.1 +12.12.0 +12.12.1 +12.13.0 +12.13.1 +12.13.2 +12.14.0 +12.14.1 +12.14.2 +12.15.0 +12.16.0 +12.16.1 +12.16.2 +12.17.2 +12.18.0 +12.18.1 +12.18.3 +12.19.0 +12.2 +12.2.0 +12.2.1 +12.2.2 +12.2.3 +12.20.0 +12.20.1 +12.21.0 +12.22.0 +12.22.1 +12.22.2 +12.22.6 +12.23.0 +12.24.0 +12.25.0 +12.26.0 +12.26.1 +12.27.1 +12.3 +12.3.0 +12.3.1 +12.3.2 +12.3.3 +12.30 +12.30.0 +12.32.0 +12.4.0 +12.4.1 +12.4.2 +12.4.3 +12.4.4 +12.42 +12.5 +12.5.0 +12.5.1 +12.5.3 +12.5.4 +12.5.5 +12.5.6 +12.50 +12.6.0 +12.6.3 +12.7 +12.7.0 +12.7.1 +12.7.2 +12.8 +12.8.0 +12.8.1 +12.9.0 +12.9.1 +120 +121 +122 +122.c2f5d13 +123 +124 +125 +126 +128 +129 +13 +13.0 +13.0.0 +13.0.0.post2 +13.0.1 +13.0.10 +13.0.11 +13.0.12 +13.0.13 +13.0.14 +13.0.15 +13.0.16 +13.0.17 +13.0.18 +13.0.19 +13.0.2 +13.0.20 +13.0.21 +13.0.3 +13.0.4 +13.0.5 +13.0.6 +13.0.7 +13.0.8 +13.0.9 +13.02 +13.09.2016 +13.1 +13.1.0 +13.1.1 +13.1.2 +13.10 +13.10.0 +13.10.1 +13.11 +13.11.0 +13.11.1 +13.12.0 +13.13 +13.13.0 +13.14.0 +13.15 +13.15.0 +13.15.1 +13.16.0 +13.17.0 +13.18.0 +13.18.2 +13.19.0 +13.2 +13.2.0 +13.2.1 +13.2.2 +13.2.3 +13.2.4 +13.20.0 +13.20.1 +13.21.0 +13.23.0 +13.24.0 +13.24.1 +13.24.3 +13.24.4 +13.25.0 +13.25.1 +13.26.0 +13.27.0 +13.28.0 +13.28.1 +13.28.2 +13.29.1 +13.3 +13.3.0 +13.3.1 +13.3.2 +13.3.3 +13.3.4 +13.3.5 +13.30.0 +13.30.1 +13.30.2 +13.31.0 +13.32.0 +13.33.0 +13.34.0 +13.35.0 +13.36.0 +13.37.1 +13.37.2 +13.38.0 +13.39.0 +13.39.1 +13.4 +13.4.0 +13.4.1 +13.4.2 +13.4.3 +13.4.4 +13.4.5 +13.4.6 +13.4.7 +13.41.0 +13.42.0 +13.42.1 +13.42.2 +13.43.0 +13.43.1 +13.43.2 +13.5 +13.5.0 +13.5.1 +13.5.2 +13.5.3 +13.6 +13.6.0 +13.6.1 +13.6.2 +13.6.3 +13.6.4 +13.7 +13.7.0 +13.8 +13.8.0 +13.9 +13.9.0 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +14 +14.0 +14.0.0 +14.0.1 +14.0.11 +14.0.12 +14.0.13 +14.0.14 +14.0.16 +14.0.17 +14.0.18 +14.0.19 +14.0.2 +14.0.21 +14.0.22 +14.0.24 +14.0.25 +14.0.26 +14.0.27 +14.0.29 +14.0.3 +14.0.30 +14.0.31 +14.0.32 +14.0.33 +14.0.34 +14.0.4 +14.0.5 +14.0.6 +14.0.7 +14.0.8 +14.0.9 +14.1 +14.1.0 +14.1.1 +14.1.2 +14.10.0 +14.10.1 +14.11.0 +14.11.1 +14.11.2 +14.11.25547 +14.12.0 +14.13.0 +14.13.1 +14.13.2 +14.13.3 +14.14.0 +14.14.26423 +14.15.0 +14.15.1 +14.15.4 +14.16.0 +14.16.27012 +14.16.27023 +14.16.27033 +14.17.0 +14.17.1 +14.17.4 +14.18.0 +14.18.3 +14.19.0 +14.19.1 +14.19.2 +14.19.3 +14.2 +14.2.0 +14.2.1 +14.2.2 +14.2.3 +14.2.4 +14.20.0 +14.20.1 +14.21.0 +14.22.0 +14.22.1 +14.23.0 +14.24.0 +14.25.1 +14.25.2 +14.26.0 +14.27.0 +14.28.0 +14.28.29325 +14.29.0 +14.29.1 +14.29.15 +14.29.30037 +14.29.30133 +14.29.30139 +14.3 +14.3.0 +14.3.1 +14.3.2 +14.3.3 +14.3.4 +14.3.5 +14.3.6 +14.3.7 +14.31.14 +14.31.3 +14.32.10 +14.32.31332 +14.32.6 +14.32.8 +14.32.9 +14.34.31931 +14.34.31933 +14.4 +14.4.0 +14.4.2 +14.5 +14.5.0 +14.5.1 +14.6.0 +14.6.1 +14.6.11 +14.6.3 +14.6.4 +14.6.5 +14.7.0 +14.7.9 +14.8.0 +14.8.1 +14.9.0 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +15 +15.0 +15.0.0 +15.0.1 +15.0.2 +15.0.3 +15.0.4 +15.0.5 +15.0.6 +15.0.7 +15.1 +15.1.0 +15.1.1 +15.1.2 +15.1.3 +15.1.4 +15.10.0 +15.11.0 +15.12.0 +15.13.0 +15.14.0 +15.2 +15.2.0 +15.2.1 +15.3 +15.3.0 +15.3.1 +15.3.2 +15.3.3 +15.3.4 +15.4.0 +15.5.0 +15.6.0 +15.8.0 +15.8.2 +15.e7622f6 +150 +151 +152 +153 +154 +16 +16.0 +16.0.0 +16.0.1 +16.0.2 +16.0.3 +16.0.4 +16.0.5 +16.0.6 +16.02 +16.07.26 +16.1 +16.1.0 +16.1.1 +16.1.2 +16.1.3 +16.1.4 +16.1.6 +16.10.0 +16.11.1 +16.12.0 +16.12.2 +16.13.0 +16.13.2 +16.14.2 +16.15.0 +16.15.1 +16.16.0 +16.17.0 +16.17.1 +16.18.0 +16.18.1 +16.19.0 +16.2.0 +16.3.0 +16.3.1 +16.4.0 +16.4.1 +16.5.0 +16.5.1 +16.6.0 +16.6.1 +16.6.2 +16.7 +16.7.0 +16.7.1 +16.7.2 +16.7.3 +16.7.5 +16.8 +16.8.1 +16.9.0 +166 +17 +17.0 +17.0.0 +17.0.3 +17.0.5.8 +17.0.7 +17.02 +17.1 +17.1.0 +17.1.1 +17.1.2 +17.1.4 +17.10.0 +17.10.1 +17.12.0 +17.12.1 +17.17.0 +17.2 +17.2.0 +17.2.1 +17.3 +17.3.0 +17.3.1 +17.3.9 +17.4 +17.4.0 +17.5 +17.5.0 +17.5.1 +17.6.0 +17.6.2 +17.7.0 +17.7.1 +17.7.2 +17.8.0 +17.9.0 +17.9.3 +170 +177 +178 +179 +18.0 +18.0.0 +18.0.1 +18.0.2 +18.0.3 +18.0.5 +18.08 +18.1 +18.1.0 +18.1.1 +18.1.10 +18.1.11 +18.1.13 +18.1.2 +18.1.7 +18.1.8 +18.10.0 +18.10.1 +18.11.0 +18.11.12 +18.11.2 +18.12.0 +18.12.1 +18.12.8 +18.13.0 +18.14.0 +18.14.1 +18.14.2 +18.15.0 +18.169 +18.2.0 +18.20.0 +18.20.1 +18.3 +18.3.0 +18.3.1 +18.3.4 +18.4.0 +18.4.1 +18.4a4 +18.5.0 +18.5.1 +18.5.13 +18.5.2 +18.5.26 +18.5.30 +18.5b0 +18.5b1 +18.6.0 +18.6.1 +18.6a6 +18.6b2 +18.6b4 +18.7.0 +18.7.1 +18.8.0 +18.8.1 +18.8.2 +18.9.0 +18.9.1 +18.9.2 +18.9b0 +180 +181 +182 +183 +184 +185 +186 +187 +188 +189 +19 +19.0 +19.0.0 +19.0.1 +19.0.2 +19.0.3 +19.00 +19.01.0 +19.03.11 +19.03.12 +19.03.13 +19.03.14 +19.03.5 +19.04.0 +19.04.1 +19.07.0 +19.07.1 +19.08.3 +19.1 +19.1.0 +19.1.1 +19.1.2 +19.10 +19.10.0 +19.10.1 +19.10b0 +19.11 +19.11.0 +19.11.1 +19.11.2 +19.12.0 +19.12.2 +19.15.0 +19.15.1 +19.15.26726 +19.16.27032.1 +19.16.27033 +19.17 +19.18 +19.19 +19.2 +19.2.0 +19.2.1 +19.2.2 +19.2.3 +19.2.5 +19.2.6 +19.2.7 +19.20 +19.20.0 +19.21 +19.21.0 +19.21.1 +19.22 +19.22.0 +19.23 +19.23.0 +19.23.1 +19.24 +19.24.0 +19.24.1 +19.24.2 +19.28.29325 +19.29.30037 +19.29.30139 +19.3 +19.3.0 +19.3.1 +19.3.2 +19.3.3 +19.3.4 +19.3.6.5 +19.33.31629 +19.34.31933 +19.35.32217 +19.38.14237 +19.39.14278 +19.3b0 +19.4 +19.4.0 +19.4.1 +19.43.14583 +19.49.15055 +19.5.0 +19.5.1 +19.5.2 +19.50.15079 +19.51.15145 +19.52.15209 +19.6.0 +19.6.1 +19.6.2 +19.6.3 +19.7 +19.7.0 +19.7.1 +19.7.15 +19.7.2 +19.8.0 +19.8.0.0.0 +19.8.1 +19.8.18 +19.9 +19.9.0 +19.9.1 +19.9.2 +19.9.3 +190 +1903 +192 +193 +194 +195 +196 +197 +198 +199 +1_0 +2 +2.0 +2.0.0 +2.0.0.0 +2.0.0.1 +2.0.0.2 +2.0.0.3 +2.0.0.beta.5 +2.0.0.dev0 +2.0.0.dev5 +2.0.0.post0 +2.0.0.post1 +2.0.0.post2 +2.0.0.post6 +2.0.0_dev.1 +2.0.0_dev.2 +2.0.0a0 +2.0.0a1 +2.0.0a3 +2.0.0a4 +2.0.0a5 +2.0.0b0 +2.0.0b1 +2.0.0b10 +2.0.0b11 +2.0.0b12 +2.0.0b13 +2.0.0b14 +2.0.0b15 +2.0.0b17 +2.0.0b2 +2.0.0b3 +2.0.0b4 +2.0.0b5 +2.0.0b6 +2.0.0b7 +2.0.0b8 +2.0.0b9 +2.0.0beta +2.0.0beta2 +2.0.0edge +2.0.0rc.1 +2.0.0rc0 +2.0.0rc1 +2.0.0rc1.post9 +2.0.0rc10 +2.0.0rc11 +2.0.0rc12 +2.0.0rc13 +2.0.0rc14 +2.0.0rc15 +2.0.0rc16 +2.0.0rc17 +2.0.0rc18 +2.0.0rc19 +2.0.0rc2 +2.0.0rc20 +2.0.0rc21 +2.0.0rc22 +2.0.0rc23 +2.0.0rc24 +2.0.0rc25 +2.0.0rc26 +2.0.0rc3 +2.0.0rc4 +2.0.0rc5 +2.0.0rc6 +2.0.0rc7 +2.0.0rc8 +2.0.0rc9 +2.0.1 +2.0.1.0 +2.0.1.14 +2.0.1.2 +2.0.1.3 +2.0.1.7 +2.0.1.post1 +2.0.10 +2.0.10.2 +2.0.100 +2.0.101 +2.0.102 +2.0.103 +2.0.104 +2.0.105 +2.0.106 +2.0.107 +2.0.108 +2.0.109 +2.0.11 +2.0.110 +2.0.111 +2.0.113 +2.0.12 +2.0.13 +2.0.14 +2.0.15 +2.0.16 +2.0.17 +2.0.17.1 +2.0.17.2 +2.0.18 +2.0.19 +2.0.19.1 +2.0.1a1 +2.0.2 +2.0.20 +2.0.20191003 +2.0.20191007 +2.0.20191013 +2.0.20200107113851 +2.0.20200122124526 +2.0.20200126090152 +2.0.20200219182542 +2.0.20200220223835 +2.0.20200224214940 +2.0.20200312183052 +2.0.21 +2.0.22 +2.0.22.2 +2.0.23 +2.0.24 +2.0.25 +2.0.26 +2.0.27 +2.0.28 +2.0.29 +2.0.2a4 +2.0.3 +2.0.3.0 +2.0.3.1 +2.0.3.2 +2.0.30 +2.0.31 +2.0.32 +2.0.33 +2.0.34 +2.0.35 +2.0.36 +2.0.37 +2.0.38 +2.0.39 +2.0.3_b +2.0.4 +2.0.4.1 +2.0.4.2 +2.0.4.4 +2.0.4.5 +2.0.4.6 +2.0.40 +2.0.41 +2.0.42 +2.0.43 +2.0.44 +2.0.45 +2.0.46 +2.0.47 +2.0.48 +2.0.5 +2.0.5.1 +2.0.5.post1 +2.0.5.post2 +2.0.50 +2.0.52 +2.0.53 +2.0.54 +2.0.56 +2.0.57 +2.0.58 +2.0.59 +2.0.6 +2.0.6.1 +2.0.6.2 +2.0.6.3 +2.0.6.4 +2.0.60 +2.0.61 +2.0.62 +2.0.63 +2.0.67 +2.0.69 +2.0.7 +2.0.7.1 +2.0.7.post1 +2.0.70 +2.0.71 +2.0.72 +2.0.73 +2.0.74 +2.0.75 +2.0.76 +2.0.77 +2.0.78 +2.0.785 +2.0.79 +2.0.7_1 +2.0.8 +2.0.8.1 +2.0.80 +2.0.81 +2.0.83 +2.0.84 +2.0.85 +2.0.866 +2.0.87 +2.0.872 +2.0.873 +2.0.874 +2.0.875 +2.0.876 +2.0.877 +2.0.878 +2.0.879 +2.0.88 +2.0.880 +2.0.881 +2.0.882 +2.0.883 +2.0.884 +2.0.885 +2.0.886 +2.0.887 +2.0.889 +2.0.89 +2.0.9 +2.0.9.1 +2.0.9.post2 +2.0.90 +2.0.900 +2.0.901 +2.0.902 +2.0.903 +2.0.904 +2.0.905 +2.0.906 +2.0.907 +2.0.908 +2.0.909 +2.0.910 +2.0.92 +2.0.931 +2.0.935 +2.0.94 +2.0.95 +2.0.96 +2.0.97 +2.0.98 +2.0.99 +2.0.alpha +2.0.beta +2.00 +2.00.1833 +2.000005 +2.000008 +2.000024 +2.000028 +2.000029 +2.001 +2.0016 +2.002 +2.002004 +2.003004 +2.004 +2.005004 +2.006003 +2.006006 +2.01 +2.013 +2.016 +2.017008 +2.01_40 +2.01_42 +2.01_43 +2.02 +2.02.187 +2.023.3 +2.023.4 +2.023.6 +2.03 +2.030 +2.034 +2.035 +2.038 +2.04 +2.043 +2.046 +2.05 +2.05.1 +2.06 +2.06.07 +2.06.11 +2.064 +2.065.0 +2.066 +2.07 +2.074 +2.075 +2.08 +2.09 +2.09.1 +2.09.2 +2.098.1 +2.099.0 +2.099.1 +2.0_0 +2.0_0.1 +2.0_1 +2.0_1.1 +2.0_10 +2.0_11 +2.0_12 +2.0_16 +2.0_18 +2.0_19 +2.0_2 +2.0_22 +2.0_23 +2.0_24 +2.0_25 +2.0_26 +2.0_28 +2.0_3 +2.0_33 +2.0_4 +2.0_5 +2.0_5.1 +2.0_6 +2.0_7 +2.0_7.2 +2.0_7.3 +2.0_8 +2.0_9 +2.0a0_20170929a0 +2.0a1 +2.0a2 +2.0a3 +2.0a4 +2.0a5 +2.0a6 +2.0b0 +2.0b1 +2.0b2 +2.0b3 +2.0rc1 +2.0rc2 +2.0rc3 +2.0rc6 +2.1 +2.1.0 +2.1.0.0 +2.1.0.1 +2.1.0.2 +2.1.0.post1 +2.1.0_b +2.1.0b0 +2.1.0b1 +2.1.0b5 +2.1.0rc0 +2.1.0rc1 +2.1.0rc2 +2.1.0rc3 +2.1.1 +2.1.1.1 +2.1.1.2 +2.1.1.5 +2.1.10 +2.1.11 +2.1.12 +2.1.13 +2.1.14 +2.1.15 +2.1.16 +2.1.17 +2.1.1706216 +2.1.18 +2.1.19 +2.1.1_b +2.1.2 +2.1.2.1 +2.1.2.2 +2.1.20 +2.1.21 +2.1.22 +2.1.26 +2.1.27 +2.1.29 +2.1.2_b +2.1.3 +2.1.3.1 +2.1.3.dev8 +2.1.3.post1 +2.1.3.post16 +2.1.30 +2.1.32 +2.1.33 +2.1.34 +2.1.35 +2.1.36 +2.1.39 +2.1.3_b +2.1.4 +2.1.4.1 +2.1.4.2 +2.1.4.3 +2.1.4.4 +2.1.4.5 +2.1.41 +2.1.44 +2.1.45 +2.1.46 +2.1.48 +2.1.49 +2.1.4_b +2.1.5 +2.1.5.1 +2.1.5.2 +2.1.5.3 +2.1.5.4 +2.1.5.post1 +2.1.51 +2.1.52 +2.1.54 +2.1.57 +2.1.58 +2.1.6 +2.1.7 +2.1.8 +2.1.8.1 +2.1.81 +2.1.815 +2.1.817 +2.1.818 +2.1.9 +2.1.post0 +2.10 +2.10.0 +2.10.1 +2.10.10 +2.10.11 +2.10.12 +2.10.13 +2.10.14 +2.10.15 +2.10.16 +2.10.17 +2.10.18 +2.10.2 +2.10.3 +2.10.3.1 +2.10.4 +2.10.5 +2.10.6 +2.10.67 +2.10.68 +2.10.7 +2.10.8 +2.10.9 +2.100.0 +2.100.0.84 +2.100.2 +2.101 +2.101.0 +2.101.1 +2.101.2 +2.102.0 +2.102.1 +2.102.2 +2.103 +2.103.0 +2.103.1 +2.104 +2.104.0 +2.105 +2.105.0 +2.106 +2.106.0 +2.106.1.88 +2.107 +2.107.0 +2.108 +2.108.0 +2.109 +2.109.0 +2.10_0 +2.10_12 +2.10_22 +2.10_8 +2.11 +2.11.0 +2.11.0.1 +2.11.0.2 +2.11.0.4 +2.11.06 +2.11.08 +2.11.1 +2.11.1.0 +2.11.1.1 +2.11.1.2 +2.11.1.3 +2.11.1.4 +2.11.1.5 +2.11.2 +2.11.2.1 +2.11.2.3 +2.11.2.4 +2.11.2.6 +2.11.3 +2.11.3.1 +2.11.3.2 +2.11.348 +2.11.4 +2.11.4.1 +2.11.5 +2.11.6 +2.11.7 +2.11.8 +2.11.9 +2.110 +2.111 +2.112 +2.113 +2.114 +2.115 +2.116 +2.117 +2.12 +2.12.0 +2.12.0.0 +2.12.0.1 +2.12.0.2 +2.12.0.3 +2.12.02 +2.12.1 +2.12.10 +2.12.10.1 +2.12.11 +2.12.12 +2.12.12.1 +2.12.13 +2.12.14 +2.12.16 +2.12.2 +2.12.3 +2.12.30 +2.12.4 +2.12.5 +2.12.6 +2.12.7 +2.12.7.1 +2.12.8 +2.12.9 +2.13 +2.13.0 +2.13.02 +2.13.1 +2.13.10 +2.13.11 +2.13.12 +2.13.13 +2.13.14 +2.13.15 +2.13.16 +2.13.17 +2.13.18 +2.13.19 +2.13.2 +2.13.20 +2.13.21 +2.13.22 +2.13.23 +2.13.24 +2.13.25 +2.13.26 +2.13.27 +2.13.28 +2.13.29 +2.13.3 +2.13.30 +2.13.31 +2.13.32 +2.13.33 +2.13.34 +2.13.35 +2.13.36 +2.13.4 +2.13.4.1 +2.13.466 +2.13.5 +2.13.6 +2.13.7 +2.13.8 +2.13.9 +2.13.94 +2.13.96 +2.14 +2.14.0 +2.14.0.0 +2.14.0.1 +2.14.0.2 +2.14.0.3 +2.14.02 +2.14.0_1 +2.14.0b0 +2.14.1 +2.14.10 +2.14.11 +2.14.12 +2.14.13 +2.14.14 +2.14.17 +2.14.19 +2.14.2 +2.14.3 +2.14.3.1 +2.14.4 +2.14.5 +2.14.6 +2.14.7 +2.14.8 +2.14.9 +2.140 +2.140640 +2.15 +2.15.0 +2.15.0.0 +2.15.0.1 +2.15.05 +2.15.0_1 +2.15.1 +2.15.1.1 +2.15.10 +2.15.2 +2.15.2.post1 +2.15.3 +2.15.4 +2.15.5 +2.15.5.1 +2.15.6 +2.15.7 +2.15.8 +2.15.9 +2.150010 +2.16 +2.16.0 +2.16.0.0 +2.16.0_1 +2.16.1 +2.16.11 +2.16.11.2 +2.16.17 +2.16.2 +2.16.2.post1 +2.16.3 +2.16.4 +2.16.5 +2.16.6 +2.16.7 +2.1692_vsc1.39.2 +2.1698_vsc1.41.1 +2.16_0 +2.17 +2.17.0 +2.17.0.0 +2.17.0.1 +2.17.1 +2.17.1.0 +2.17.1.1 +2.17.10 +2.17.11 +2.17.2 +2.17.3 +2.17.4 +2.17.5 +2.17.6 +2.17.7 +2.17_0 +2.18 +2.18.0 +2.18.0.1 +2.18.0_1 +2.18.1 +2.18.1.1 +2.18.10 +2.18.11 +2.18.12 +2.18.13 +2.18.14 +2.18.15 +2.18.16 +2.18.17 +2.18.18 +2.18.19 +2.18.1_10 +2.18.2 +2.18.20 +2.18.21 +2.18.22 +2.18.23 +2.18.25 +2.18.26 +2.18.27 +2.18.29 +2.18.3 +2.18.4 +2.18.5 +2.18.7 +2.18.8 +2.18.9 +2.183 +2.19 +2.19.0 +2.19.0.0 +2.19.1 +2.19.1.1 +2.19.10 +2.19.11 +2.19.2 +2.19.3 +2.19.4 +2.19.5 +2.19.6 +2.19.7 +2.19.8 +2.19.9 +2.1905 +2.1_0 +2.1_1 +2.1_10 +2.1_11 +2.1_11.1 +2.1_12 +2.1_2 +2.1_20230119 +2.1_21 +2.1_3 +2.1_3.1 +2.1_4 +2.1_5 +2.1_6 +2.1_7 +2.1_7.1 +2.1_8 +2.2 +2.2.0 +2.2.0.2 +2.2.0.3 +2.2.0.4 +2.2.0.5 +2.2.0.6 +2.2.0.post3 +2.2.0_2 +2.2.0_3 +2.2.0_b +2.2.1 +2.2.1+boost170 +2.2.1.1 +2.2.1.post0 +2.2.1.post1 +2.2.1.post2 +2.2.10 +2.2.11 +2.2.12 +2.2.13 +2.2.14 +2.2.15 +2.2.16 +2.2.17 +2.2.18 +2.2.18.04.06 +2.2.19 +2.2.1_5 +2.2.1_7 +2.2.2 +2.2.2.1 +2.2.20 +2.2.20210901154959 +2.2.20211116163652 +2.2.20220521103021 +2.2.21 +2.2.22 +2.2.23 +2.2.24 +2.2.25 +2.2.26 +2.2.27 +2.2.27.27 +2.2.27.6 +2.2.28 +2.2.2a +2.2.2b +2.2.2c +2.2.2d +2.2.3 +2.2.31 +2.2.4 +2.2.4.1 +2.2.5 +2.2.5.0 +2.2.6 +2.2.6.1 +2.2.7 +2.2.8 +2.2.9 +2.2.post0 +2.2.post1 +2.20 +2.20.0 +2.20.1 +2.20.10 +2.20.12 +2.20.13 +2.20.14 +2.20.15 +2.20.17 +2.20.18 +2.20.19 +2.20.2 +2.20.20 +2.20.3 +2.20.35 +2.20.36 +2.20.36.1 +2.20.36.2 +2.20.36.3 +2.20.4 +2.20.5 +2.20.6 +2.20.7 +2.20.8 +2.20.9 +2.2006 +2.201 +2.20170703 +2.20191221 +2.202 +2.21 +2.21.0 +2.21.0_1 +2.21.0_3 +2.21.0_5 +2.21.0_6 +2.21.0_7 +2.21.1 +2.21.2 +2.21.3 +2.21.4 +2.21.5 +2.21.6 +2.21.7 +2.21.8 +2.21.9 +2.216 +2.218 +2.22 +2.22.0 +2.22.1 +2.22.2 +2.22.213 +2.22.3 +2.22.4 +2.22.5 +2.22.6 +2.22.7 +2.22.8 +2.22.9 +2.2203 +2.2207 +2.2207.1 +2.2207.2 +2.2207.3 +2.23 +2.23.0 +2.23.1 +2.23.2 +2.23.222 +2.23.3 +2.23.4 +2.23.4.post0 +2.23.5 +2.23.6 +2.23.7 +2.23.8 +2.23.9 +2.23_15 +2.23_16 +2.23_17 +2.23_18 +2.23_20 +2.23_21 +2.24 +2.24.0 +2.24.1 +2.24.2 +2.24.23 +2.24.231 +2.24.232 +2.24.3 +2.24.31 +2.24.32 +2.24.33 +2.24.4 +2.24.5 +2.25 +2.25.0 +2.25.1 +2.25.10 +2.25.11 +2.25.12 +2.25.2 +2.25.236 +2.25.3 +2.25.4 +2.25.5 +2.25.6 +2.25.7 +2.25.8 +2.25.9 +2.25.90 +2.25_5 +2.26 +2.26.0 +2.26.0.post1 +2.26.1 +2.26.10 +2.26.11 +2.26.2 +2.26.25 +2.26.26 +2.26.27 +2.26.3 +2.26.4 +2.26.5 +2.26.6 +2.26.7 +2.26.8 +2.26.9 +2.27 +2.27.0 +2.27.1 +2.27.10 +2.27.11 +2.27.12 +2.27.13 +2.27.14 +2.27.15 +2.27.16 +2.27.17 +2.27.18 +2.27.19 +2.27.2 +2.27.20 +2.27.22 +2.27.23 +2.27.24 +2.27.25 +2.27.26 +2.27.27 +2.27.28 +2.27.29 +2.27.3 +2.27.30 +2.27.31 +2.27.4 +2.27.5 +2.27.6 +2.27.7 +2.27.8 +2.27.9 +2.27_62 +2.28 +2.28.0 +2.28.1 +2.28.10 +2.28.11 +2.28.11.1 +2.28.11.11 +2.28.11.12 +2.28.11.13 +2.28.11.14 +2.28.11.15 +2.28.11.2 +2.28.11.3 +2.28.11.4 +2.28.11.5 +2.28.11.6 +2.28.11.7 +2.28.11.8 +2.28.11.9 +2.28.2 +2.28.2.1 +2.28.2.2 +2.28.3 +2.28.4 +2.28.5 +2.28.6 +2.28.6.1 +2.28.7 +2.28.8 +2.28.9 +2.29 +2.29.0 +2.29.1 +2.29.2 +2.294.0 +2.295.0 +2.296.0 +2.296.1 +2.296.2 +2.297.0 +2.298.2 +2.299.1 +2.2_0 +2.2_0.1 +2.2_1 +2.2_10 +2.2_11 +2.2_13 +2.2_14 +2.2_14.2 +2.2_16 +2.2_17 +2.2_18 +2.2_18.1 +2.2_2 +2.2_3 +2.2_32 +2.2_39 +2.2_4 +2.2_40 +2.2_47 +2.2_5 +2.2_5.4 +2.2_5.6 +2.2_5.7 +2.2_5.7.1 +2.2_54 +2.2_6 +2.2_7 +2.2_8 +2.2_9 +2.3 +2.3.0 +2.3.0.0 +2.3.0.1 +2.3.0.2 +2.3.0.post1 +2.3.0_b +2.3.0b0 +2.3.1 +2.3.1.post1 +2.3.10 +2.3.11 +2.3.12 +2.3.13 +2.3.14 +2.3.15 +2.3.16 +2.3.17 +2.3.18 +2.3.19 +2.3.1a1 +2.3.2 +2.3.2.0 +2.3.2.post1 +2.3.20 +2.3.21 +2.3.22 +2.3.24 +2.3.25 +2.3.26 +2.3.27 +2.3.28 +2.3.29 +2.3.2a1 +2.3.3 +2.3.3.post0 +2.3.4 +2.3.4.post1 +2.3.4.post2 +2.3.4.post3 +2.3.4.post4 +2.3.5 +2.3.5.1 +2.3.6 +2.3.6.1 +2.3.6.2 +2.3.7 +2.3.7.post0 +2.3.7.post1 +2.3.7.rc1 +2.3.8 +2.3.9 +2.3.b1 +2.3.beta2 +2.3.post0 +2.30 +2.30.0 +2.30.0.2 +2.30.1 +2.30.2 +2.30.3 +2.30.36 +2.30.39 +2.30.43 +2.30.46 +2.30.50 +2.30.51 +2.30.52 +2.30.54 +2.30.55 +2.30.62 +2.300.0 +2.300.2 +2.301.0 +2.301.1 +2.302.1 +2.303.0 +2.304.0 +2.30_0 +2.31 +2.31.0 +2.31.1 +2.31.10 +2.31.11 +2.31.15 +2.31.19 +2.31.20 +2.31.21 +2.31.24 +2.31.25 +2.31.26 +2.31.31 +2.31.33 +2.31.36 +2.31.37 +2.31.38 +2.31.39 +2.31.42 +2.31.43 +2.31.46 +2.31.48 +2.31.50 +2.31.52 +2.31.54 +2.31.6 +2.32 +2.32.0 +2.32.1 +2.32.10 +2.32.11 +2.32.2 +2.32.3 +2.32.5 +2.32.6 +2.32.8 +2.33 +2.33.0 +2.33.1 +2.33.11 +2.33.12 +2.33.14 +2.33.15 +2.33.18 +2.33.19 +2.33.2 +2.33.21 +2.33.22 +2.33.23 +2.33.25 +2.33.26 +2.33.27 +2.33.28 +2.33.29 +2.33.3 +2.33.33 +2.33.34 +2.33.36 +2.33.37 +2.33.38 +2.33.39 +2.33.4 +2.33.40 +2.33.41 +2.33.43 +2.33.5 +2.34 +2.34.0 +2.34.1 +2.34.14 +2.34.2 +2.34.3 +2.34.4 +2.34.7 +2.34.8 +2.34.9 +2.35 +2.35.0 +2.35.1 +2.35.10 +2.35.13 +2.35.14 +2.35.15 +2.35.17 +2.35.18 +2.35.2 +2.35.21 +2.35.23 +2.35.24 +2.35.26 +2.35.28 +2.35.3 +2.35.32 +2.35.33 +2.35.34 +2.35.36 +2.35.39 +2.35.4 +2.35.40 +2.35.41 +2.35.42 +2.35.44 +2.35.47 +2.35.49 +2.35.5 +2.35.6 +2.35.7 +2.36 +2.36.0 +2.36.1 +2.36.12 +2.36.13 +2.36.17 +2.36.2 +2.36.22 +2.36.23 +2.36.24 +2.36.25 +2.36.27 +2.36.28 +2.36.29 +2.36.3 +2.36.30 +2.36.32 +2.36.36 +2.36.4 +2.36.6 +2.36.7 +2.36.9 +2.37 +2.37.0 +2.37.1 +2.37.16 +2.37.2 +2.37.20 +2.37.21 +2.37.22 +2.37.24 +2.37.25 +2.37.27 +2.37.29 +2.37.3 +2.37.32 +2.37.34 +2.37.35 +2.37.41 +2.37.44 +2.37.47 +2.37.48 +2.37.5 +2.37.6 +2.37.7 +2.38 +2.38.0 +2.38.1 +2.38.13 +2.38.14 +2.38.15 +2.38.17 +2.38.19 +2.38.2 +2.38.20 +2.38.21 +2.38.24 +2.38.26 +2.38.27 +2.38.29 +2.38.30 +2.38.33 +2.38.34 +2.38.37 +2.38.38 +2.38.40 +2.38.42 +2.38.8 +2.39 +2.39.0 +2.39.0.post0 +2.39.1 +2.39.2 +2.3_0 +2.3_1 +2.3_13 +2.3_14 +2.3_15 +2.3_17 +2.3_18 +2.3_2 +2.3_3 +2.3_4 +2.3_5 +2.3_50 +2.3_53 +2.3_54 +2.3_55 +2.3_56 +2.3_57 +2.3_58 +2.3_59 +2.3_6 +2.3_6.1 +2.3_60 +2.3_61 +2.4 +2.4.0 +2.4.0.0 +2.4.0.2 +2.4.0.post1 +2.4.0.post12 +2.4.0.post5 +2.4.0.post6 +2.4.0.post7 +2.4.0.post8 +2.4.0.r4736 +2.4.0.snapshot_2015_02_13 +2.4.1 +2.4.1.0 +2.4.1.1 +2.4.1.3 +2.4.1.post5 +2.4.10 +2.4.100 +2.4.102 +2.4.103 +2.4.104 +2.4.105 +2.4.106 +2.4.107 +2.4.108 +2.4.109 +2.4.11 +2.4.111 +2.4.112 +2.4.113 +2.4.114 +2.4.12 +2.4.13 +2.4.13.4 +2.4.14 +2.4.15 +2.4.16 +2.4.17 +2.4.18 +2.4.2 +2.4.2.post1 +2.4.2.post2 +2.4.20 +2.4.21 +2.4.22 +2.4.23 +2.4.24 +2.4.25 +2.4.27 +2.4.29 +2.4.2a0 +2.4.3 +2.4.3+10.3 +2.4.3+9.6.3 +2.4.3+9.6.7 +2.4.3+9.6.8 +2.4.31 +2.4.33 +2.4.35 +2.4.37 +2.4.39 +2.4.393442.3710985 +2.4.3rc2 +2.4.4 +2.4.4.0 +2.4.4.1 +2.4.4.2 +2.4.404381.4453942 +2.4.41 +2.4.417127.4579844 +2.4.42 +2.4.44 +2.4.46 +2.4.47 +2.4.48 +2.4.5 +2.4.5.0 +2.4.5.1 +2.4.5.2 +2.4.5.3 +2.4.5.4 +2.4.52 +2.4.53 +2.4.54 +2.4.55 +2.4.56 +2.4.58 +2.4.59 +2.4.6 +2.4.6.1 +2.4.6.2 +2.4.6.3 +2.4.6.4 +2.4.65 +2.4.7 +2.4.7.1 +2.4.8 +2.4.8.1 +2.4.9 +2.4.91 +2.4.96 +2.4.97 +2.4.98 +2.4.99 +2.4.rc4 +2.40 +2.40.0 +2.40.1 +2.40.19 +2.40.2 +2.40.3 +2.40_1 +2.41 +2.41.0 +2.42 +2.42.0 +2.42.1 +2.42.10 +2.42.2 +2.42.3 +2.42.4 +2.42.6 +2.42.8 +2.42_6 +2.43 +2.43.0 +2.43_3 +2.44 +2.44.0 +2.44.1 +2.44.13 +2.44.14 +2.44.15 +2.44.3 +2.44.5 +2.44.7 +2.44_01 +2.44_1.1 +2.45 +2.45.0 +2.45.1 +2.46 +2.46.0 +2.46.1 +2.46.2 +2.46.3 +2.46.4 +2.47 +2.47.0 +2.47.1 +2.47.12 +2.47.14 +2.47.2 +2.47.2.post0 +2.47.3 +2.48 +2.48.0 +2.48.1 +2.48.19205 +2.48.2 +2.48.3 +2.48.4 +2.49 +2.49.0 +2.49.1 +2.49.10 +2.49.11 +2.49.12 +2.49.13 +2.49.14 +2.49.15 +2.49.16 +2.49.17 +2.49.18 +2.49.18.1 +2.49.18.2 +2.49.18.3 +2.49.18.4 +2.49.18.5 +2.49.18.6 +2.49.2 +2.49.3 +2.49.4 +2.49.5 +2.49.6 +2.49.7 +2.49.8 +2.49.9 +2.4_0 +2.4_1 +2.4_2 +2.4_21 +2.4_3 +2.4_4 +2.4_5 +2.4_8 +2.5 +2.5.0 +2.5.0.1 +2.5.0.17080.65c939c +2.5.0.2 +2.5.0.21 +2.5.0.23 +2.5.0.3 +2.5.0.post1 +2.5.0a1 +2.5.0a2 +2.5.0a3 +2.5.0b1 +2.5.1 +2.5.1.post0 +2.5.10 +2.5.11 +2.5.12 +2.5.13 +2.5.14 +2.5.15 +2.5.16 +2.5.17 +2.5.17.0 +2.5.18 +2.5.2 +2.5.20 +2.5.21 +2.5.22 +2.5.25 +2.5.3 +2.5.39 +2.5.4 +2.5.5 +2.5.6 +2.5.6.1 +2.5.7 +2.5.7.1 +2.5.8 +2.5.9 +2.50 +2.50.0 +2.50.1 +2.50.2 +2.50.3 +2.50.4 +2.50.5 +2.50.7 +2.51 +2.51.0 +2.51.4 +2.52 +2.52.0 +2.52.1 +2.52.2 +2.52.3 +2.52.4 +2.52.5 +2.53 +2.53.0 +2.53.1 +2.53.5 +2.54 +2.54.0 +2.54.1 +2.54.3 +2.54.4 +2.55 +2.55.0 +2.56.0 +2.56.1 +2.56.2 +2.57.0 +2.58 +2.58.0 +2.58.1 +2.58.2 +2.58.3 +2.59.0 +2.59.1 +2.59.4 +2.5_0 +2.5_1 +2.5_2 +2.5_3 +2.5_4 +2.5_5 +2.5_6 +2.5_7 +2.5_8 +2.6 +2.6.0 +2.6.0.1 +2.6.0.10 +2.6.0.13 +2.6.0.2 +2.6.0.3 +2.6.0.4 +2.6.0.5 +2.6.0.6 +2.6.0.7 +2.6.0.8 +2.6.0.9 +2.6.05 +2.6.1 +2.6.1.post1 +2.6.10 +2.6.11 +2.6.12 +2.6.13 +2.6.14 +2.6.15 +2.6.16 +2.6.17 +2.6.18 +2.6.2 +2.6.2.post1 +2.6.3 +2.6.32 +2.6.4 +2.6.4.1 +2.6.4.2 +2.6.4.3 +2.6.4.4 +2.6.5 +2.6.6 +2.6.7 +2.6.8 +2.6.9 +2.60 +2.60.0 +2.61 +2.61.0 +2.62 +2.62.0 +2.62.1 +2.62.2 +2.63 +2.63.0 +2.63.2 +2.63.3 +2.64 +2.64.0 +2.64.1 +2.64.2 +2.64.3 +2.64.6 +2.65 +2.65.0 +2.65.1 +2.66 +2.66.0 +2.66.1 +2.66.2 +2.66.3 +2.66.4 +2.66.5 +2.66.6 +2.66.7 +2.67 +2.67.0 +2.68 +2.68.0 +2.68.0.50 +2.68.1 +2.68.2 +2.68.3 +2.68.4 +2.69 +2.69.0 +2.69.1 +2.6_0 +2.6_1 +2.6_10 +2.6_2 +2.6_4 +2.6_5 +2.6_7 +2.6_8 +2.6_9 +2.6a1 +2.6a2 +2.6a4 +2.6r7 +2.7 +2.7.0 +2.7.0.rc +2.7.1 +2.7.1.1 +2.7.10 +2.7.11 +2.7.12 +2.7.13 +2.7.14 +2.7.15 +2.7.16 +2.7.17 +2.7.18 +2.7.19 +2.7.2 +2.7.20 +2.7.20180809223002 +2.7.21 +2.7.22 +2.7.23 +2.7.24 +2.7.25 +2.7.26 +2.7.27 +2.7.29 +2.7.3 +2.7.3.1 +2.7.3.2 +2.7.32 +2.7.4 +2.7.5 +2.7.5.1 +2.7.5.2 +2.7.5.3 +2.7.5.4 +2.7.6 +2.7.6.1 +2.7.7 +2.7.7.2 +2.7.8 +2.7.8.1 +2.7.9 +2.7.dev2 +2.7.dev3 +2.7.dev5 +2.7.dev6 +2.7.dev7 +2.7.dev8 +2.70 +2.70.0 +2.70.1 +2.70.2 +2.70.3 +2.71 +2.71.0 +2.71.1 +2.72 +2.72.0 +2.72.1 +2.72.1.53 +2.72.2 +2.72.3 +2.73 +2.73.0 +2.74.0 +2.74.1 +2.74.2 +2.75.0 +2.75.1 +2.75.3 +2.76.0 +2.76.1 +2.76.2 +2.76.3 +2.77.0 +2.77.1 +2.78.0 +2.79 +2.79.0 +2.79.1 +2.7_0 +2.7_1 +2.7_2 +2.7_3 +2.7_4 +2.7_5 +2.7_6 +2.8 +2.8.0 +2.8.0.1 +2.8.0.2 +2.8.0.3 +2.8.0.4 +2.8.0.5 +2.8.0.post2 +2.8.1 +2.8.1.1 +2.8.10 +2.8.101 +2.8.102 +2.8.103 +2.8.104 +2.8.105 +2.8.106 +2.8.108 +2.8.109 +2.8.11 +2.8.110 +2.8.117 +2.8.118 +2.8.119 +2.8.12 +2.8.120 +2.8.121 +2.8.122 +2.8.123 +2.8.13 +2.8.14 +2.8.15 +2.8.16 +2.8.17 +2.8.18 +2.8.19 +2.8.19.1 +2.8.19.10 +2.8.19.2 +2.8.19.3 +2.8.19.4 +2.8.19.5 +2.8.19.6 +2.8.19.7 +2.8.19.8 +2.8.19.9 +2.8.2 +2.8.2.post0 +2.8.20 +2.8.21 +2.8.23 +2.8.29 +2.8.3 +2.8.3.1 +2.8.30 +2.8.31 +2.8.32 +2.8.33 +2.8.34 +2.8.35 +2.8.36 +2.8.4 +2.8.4.1 +2.8.40 +2.8.5 +2.8.6 +2.8.6.post0 +2.8.6.post1 +2.8.6.post2 +2.8.7 +2.8.78 +2.8.8 +2.8.82 +2.8.83 +2.8.85 +2.8.86 +2.8.87 +2.8.88 +2.8.89 +2.8.9 +2.8.9.1 +2.8.91 +2.8.92 +2.8.93 +2.8.96 +2.8.97 +2.8.98 +2.8.99 +2.80.0 +2.80.1 +2.81.0 +2.81.1 +2.82.0 +2.82.1 +2.82.2 +2.83.0 +2.83.1 +2.84 +2.84.0 +2.85.0 +2.86 +2.86.0 +2.86.1 +2.86.2 +2.87 +2.87.0 +2.88 +2.88.0 +2.88.1 +2.88.1.73 +2.88.2 +2.88.3 +2.89 +2.89.0 +2.8_0 +2.8_1 +2.8_19 +2.8_3 +2.8_4 +2.8_5 +2.8_5.1 +2.8_6 +2.8_7 +2.8_7.1 +2.8_8 +2.9 +2.9.0 +2.9.1 +2.9.1.1 +2.9.10 +2.9.11 +2.9.12 +2.9.13 +2.9.14 +2.9.15 +2.9.16 +2.9.17 +2.9.18 +2.9.19 +2.9.2 +2.9.2.0.1 +2.9.2.0.2 +2.9.2.1 +2.9.2.1.1 +2.9.2.1.2 +2.9.20 +2.9.20rc2 +2.9.21 +2.9.21.1 +2.9.21.2 +2.9.21.4 +2.9.21.5 +2.9.21.6 +2.9.21.7 +2.9.21.8 +2.9.22 +2.9.3 +2.9.4 +2.9.41 +2.9.42 +2.9.43 +2.9.44 +2.9.45 +2.9.5 +2.9.5857 +2.9.5987 +2.9.6 +2.9.6.1 +2.9.6621 +2.9.6753 +2.9.7 +2.9.7.1 +2.9.8 +2.9.8.1 +2.9.9 +2.9.9.1 +2.90.0 +2.90.1 +2.90.2 +2.90.3 +2.90.4 +2.91.0 +2.91.1 +2.92.0 +2.92.1 +2.92.2 +2.93.0 +2.93.1 +2.94.0 +2.95.0 +2.96 +2.96.0 +2.96.1 +2.97 +2.97.0 +2.98.0 +2.99.0 +2.9_0 +2.9_1 +2.9_2 +2.9_2.1 +2.9_3 +2.9_4 +2.9_5 +2.9_6 +2.9_7 +20 +20.0 +20.0.0 +20.0.0.post0 +20.0.1 +20.0.1.post0 +20.0.1.post1 +20.0.1.post2 +20.0.2 +20.0.20 +20.0.3 +20.0.33 +20.0.34 +20.0.35 +20.0.4 +20.0.5 +20.0.6 +20.0.7 +20.0.8 +20.0.9 +20.01.0 +20.010 +20.02.15268 +20.03 +20.04.1 +20.07.1 +20.07.15711 +20.08.15750 +20.09.0 +20.09.15980 +20.1 +20.1.0 +20.1.1 +20.1.2 +20.1.3 +20.1.4 +20.1.5 +20.10 +20.10.0 +20.10.08 +20.10.18 +20.10.29 +20.10.8 +20.10.9 +20.11 +20.11.0 +20.11.1 +20.11.16158 +20.11.2 +20.12 +20.12.0 +20.12.1 +20.12.2 +20.12.3 +20.13 +20.13.0 +20.13.1 +20.13.2 +20.13.3 +20.13.4 +20.14 +20.14.0 +20.14.1 +20.15 +20.15.0 +20.15.1 +20.16.0 +20.16.1 +20.16.2 +20.16.3 +20.16.4 +20.16.5 +20.16.6 +20.16.7 +20.17.0 +20.17.1 +20.18.0 +20.19.0 +20.2 +20.2.0 +20.2.1 +20.2.2 +20.2.3 +20.2.4 +20.20.0 +20.3 +20.3.0 +20.3.1 +20.3.2 +20.3.3 +20.3.4 +20.36.0 +20.37.0 +20.38.0 +20.39.0 +20.4 +20.4.0 +20.4.1 +20.4.2 +20.4.24 +20.4.3 +20.4.4 +20.4.5 +20.4.6 +20.4.7 +20.40.0 +20.41.0 +20.42.0 +20.43.0 +20.44.0 +20.5 +20.5.0 +20.5.1 +20.5.2 +20.6 +20.6.0 +20.6.1 +20.6.2 +20.6.3 +20.7 +20.7.0 +20.7.1 +20.7.3 +20.8 +20.8.0 +20.8.1 +20.8b1 +20.9 +20.9.0 +20.9.1 +200 +20070912 +201 +2010.002 +201008 +20120220 +20120904 +20121119 +2013 +2013.03.29 +2013.03.29.1 +2013.0523 +2013.8.7 +2013.9.3 +2013.9_1 +20131217 +20131218 +2013_2.21 +2014.10_1 +2014.11_1 +20140328 +20140424 +20140630 +20140910.003 +20140914 +2015.12_1.1 +2015.2 +2015.2.1 +2015.3_1 +2015.8.7 +2015.e +20150426 +20150526 +20150908 +20151101.12.0 +20151101.14.0 +20151101.16.0 +20151101.18.0 +20151101.19.0 +20151101.20.0 +20151101.22.0 +20151101.24.0 +20151101.27.0 +2016.03.31 +2016.04 +2016.04.25 +2016.05.15 +2016.06.19 +2016.06.23 +2016.06.24 +2016.07.21 +2016.08.27 +2016.09.22 +2016.1 +2016.1.0 +2016.1.2 +2016.1.3 +2016.10 +2016.10.12 +2016.10.22 +2016.10.25 +2016.11.01 +2016.11.18 +2016.12.27 +2016.2 +2016.2.0 +2016.2.1 +2016.2.2 +2016.2.28 +2016.2.3 +2016.2.4 +2016.2.5 +2016.2.6 +2016.3 +2016.3.0 +2016.3.28 +2016.4 +2016.6.1 +2016.6.4 +2016.66 +2016.67 +2016.68 +2016.69 +2016.7 +2016.70 +2016.8.2 +2016.8.31 +2016.8.8 +2016.8_1 +2016.8_1.1 +2016.8_2 +2016.9 +2016.9.26 +20160102 +20160103 +20160127 +20160418 +20160520 +20160523b +20160614 +20160825 +20161019 +20161026 +2016_8.8 +2017.01.01 +2017.01.17 +2017.02.08 +2017.03.31 +2017.04.05 +2017.04.23 +2017.04.29 +2017.05.26 +2017.06.07 +2017.06.20 +2017.06.23 +2017.07.11 +2017.07.21 +2017.07.28 +2017.09.01 +2017.09.23 +2017.09.27 +2017.09.3 +2017.1 +2017.1.0 +2017.1.1 +2017.1.16.14.45 +2017.1.2 +2017.1.23 +2017.1.3 +2017.1.4 +2017.1.9.21.24 +2017.10 +2017.10.22 +2017.10_1 +2017.11.09 +2017.11.5 +2017.12.05 +2017.12.12 +2017.12.31 +2017.12_1 +2017.2 +2017.2.0 +2017.2.1 +2017.2.2 +2017.3 +2017.3.1 +2017.4 +2017.4.1 +2017.4.17 +2017.5 +2017.6 +2017.7.27.1 +2017.9 +2017.9.19 +2017.9.3 +20170122 +20170220 +20170330 +20170419 +20170520 +2017060201 +20170625 +20170720 +20171003 +20171108 +20171219 +20171222 +20171231 +2017_20160722 +2017_20160916 +2017_20161004 +2017_20161128 +2017_20170226 +2017_20170412 +2017_20170604 +2017_7.18 +2018.0.3 +2018.0.4 +2018.0.5 +2018.01.10 +2018.02.08 +2018.02.15 +2018.02.21 +2018.03.1 +2018.03.13 +2018.03.16 +2018.03.2 +2018.03.3 +2018.03.4 +2018.04.01 +2018.04.18 +2018.05.22 +2018.05.22.1 +2018.06.06 +2018.06.09 +2018.06.21 +2018.06.29 +2018.07.01 +2018.07.11 +2018.07.26 +2018.08.01 +2018.08.17 +2018.08.29 +2018.09.01 +2018.09.1 +2018.09.2 +2018.09.3 +2018.1 +2018.1.0 +2018.1.0_0.5 +2018.1.0_0.8 +2018.1.1 +2018.1.18 +2018.1.2 +2018.1.3 +2018.10 +2018.10.0 +2018.10.01 +2018.10.1 +2018.10.1.22.5.32 +2018.10.15 +2018.10.17 +2018.10.2 +2018.10.26 +2018.10.29 +2018.10.3 +2018.10.5 +2018.11 +2018.11.02 +2018.11.03 +2018.11.06 +2018.11.07 +2018.11.18 +2018.11.22 +2018.11.23 +2018.11.29 +2018.11.3 +2018.11.3.1.0.41 +2018.11.7 +2018.12.01 +2018.12.1 +2018.12.12 +2018.12.13 +2018.12.17 +2018.12.3 +2018.12.31 +2018.12.9 +2018.2 +2018.2.1 +2018.2.2 +2018.2.22 +2018.2.26 +2018.2.3 +2018.2.5 +2018.2_1 +2018.3 +2018.3.10 +2018.3.25.2110 +2018.4 +2018.4.16 +2018.4.16.17.4.9 +2018.4.25 +2018.4.26.9.35.2 +2018.5 +2018.5.1 +2018.5.10.13.50.12 +2018.5.16.9.16.21 +2018.5.18 +2018.5.2 +2018.5.2.21.39.8 +2018.5.31.16.8.42 +2018.5.9.12.22.4 +2018.5.9.21.48.54 +2018.6 +2018.6.18.16.33.12 +2018.6.2 +2018.7 +2018.7.21 +2018.7.23 +2018.7.29 +2018.7.4 +2018.7.5.21.55.13 +2018.8.13 +2018.8.22 +2018.8.24 +2018.8.28 +2018.8.4 +2018.8.8 +2018.8_25 +2018.9 +2018.9.1 +2018.9.18 +2018.9.2 +2018.9.26 +2018.9.3 +2018.9.4 +2018.9.8 +20180117 +20180222 +20180322 +20180414 +20180501 +20180522 +20180523.0 +20180710 +20180712 +20180815 +20180828 +20180922 +20181022 +20181108 +20181111 +20181205 +2018_06_28 +2018_2.13_1 +2018_20170726 +2018_20170919 +2018_20171205 +2018_4.17 +2018_4.17.1 +2018_7.10 +2018g +2019.0 +2019.001 +2019.01.01 +2019.01.15 +2019.01.16 +2019.01.18 +2019.01.20 +2019.01.21 +2019.01.24 +2019.01.29 +2019.02.03 +2019.02.05 +2019.02.06 +2019.02.07 +2019.02.11 +2019.02.13 +2019.02.15 +2019.02.18 +2019.02.20 +2019.02.21 +2019.02.24 +2019.02.28 +2019.03.04 +2019.03.09 +2019.03.1 +2019.03.10 +2019.03.11 +2019.03.12 +2019.03.13 +2019.03.14 +2019.03.15 +2019.03.17 +2019.03.2 +2019.03.3 +2019.03.4 +2019.04.01 +2019.04.09 +2019.04.10 +2019.04.11 +2019.04.12 +2019.04.14 +2019.04.18 +2019.04.22 +2019.04.24 +2019.04.25 +2019.05.06 +2019.05.11 +2019.05.21 +2019.05.25 +2019.05.26 +2019.05.29 +2019.05.31 +2019.06.01 +2019.06.02 +2019.06.04 +2019.06.05 +2019.06.06 +2019.06.08 +2019.06.09 +2019.06.17 +2019.06.18 +2019.06.19 +2019.06.27 +2019.06.28 +2019.07 +2019.07.01 +2019.07.02.16.09 +2019.07.03 +2019.07.04 +2019.07.10 +2019.07.11 +2019.07.12 +2019.07.13 +2019.07.15 +2019.07.19 +2019.07.20 +2019.07.22 +2019.07.23 +2019.07.25 +2019.07.26 +2019.08.01 +2019.08.07 +2019.08.08 +2019.08.09 +2019.08.11 +2019.08.12 +2019.08.19 +2019.08.22 +2019.08.27 +2019.09.01 +2019.09.08 +2019.09.1 +2019.09.2 +2019.09.24 +2019.09.25 +2019.09.27 +2019.09.3 +2019.1 +2019.1.0 +2019.1.1 +2019.1.10 +2019.1.144 +2019.1.16 +2019.1.17 +2019.1.2 +2019.1.27 +2019.1.3 +2019.1.30 +2019.1.30.1 +2019.1.4 +2019.1.5 +2019.1.8 +2019.10.01 +2019.10.05.12.26 +2019.10.08 +2019.10.11 +2019.10.13 +2019.10.15 +2019.10.16 +2019.10.22 +2019.10.25 +2019.10.26 +2019.10.28 +2019.10.28.11.59.32 +2019.10.29 +2019.10.3 +2019.10.3.10.26.21 +2019.10.30 +2019.10.4 +2019.10_1 +2019.11 +2019.11.0 +2019.11.01 +2019.11.03 +2019.11.1 +2019.11.11 +2019.11.12 +2019.11.13 +2019.11.14 +2019.11.18 +2019.11.19 +2019.11.20 +2019.11.22 +2019.11.23 +2019.11.25 +2019.11.26 +2019.11.28 +2019.11.30 +2019.11.4 +2019.11.5 +2019.11.9 +2019.12 +2019.12.01 +2019.12.02 +2019.12.09 +2019.12.11.13.26.16 +2019.12.11.22.25.52 +2019.12.13 +2019.12.17 +2019.12.18 +2019.12.19 +2019.12.2 +2019.12.20 +2019.12.22 +2019.12.25 +2019.12.3 +2019.12.5 +2019.12.6 +2019.12.9 +2019.12_10 +2019.2 +2019.2.0 +2019.2.1 +2019.2.10 +2019.2.18 +2019.2.28 +2019.2.32 +2019.2.8 +2019.3 +2019.3.1 +2019.3.16 +2019.3.18 +2019.3.18.14.33.20 +2019.3.20.17.25.52 +2019.3.21.12.25.52 +2019.3.21.21.27.29 +2019.3.28 +2019.3.9 +2019.4 +2019.4.1 +2019.4.11 +2019.4.14 +2019.4.17 +2019.4.17.13.51.39 +2019.4.18 +2019.4.20 +2019.4.24 +2019.4.26.1 +2019.4.27 +2019.4.30 +2019.4.7 +2019.4_25 +2019.5 +2019.5.1 +2019.5.11 +2019.5.20 +2019.5.30 +2019.6 +2019.6.11.17.26.3 +2019.6.16 +2019.6.21 +2019.6.26.0.0.13 +2019.6.26.13.52.49 +2019.6.26.15.8.24 +2019.6.27 +2019.6.5.13.20.47 +2019.6.8 +2019.7 +2019.7.12 +2019.7.12.23.25.11 +2019.7.14 +2019.7.15.12.50.36 +2019.7.16 +2019.7.2 +2019.7.21 +2019.7.22.22.13.57 +2019.7.23.15.26.49 +2019.7.26 +2019.7.26.2 +2019.7.27 +2019.7.3.22.46.7 +2019.7.30 +2019.8 +2019.8.1 +2019.8.13 +2019.8.14 +2019.8.18 +2019.8.2 +2019.8.20 +2019.8.23 +2019.8.24 +2019.8.5 +2019.8.9.16.54.31 +2019.9 +2019.9.1 +2019.9.11 +2019.9.12 +2019.9.16 +2019.9.19.23.25.28 +2019.9.23 +2019.9.26 +2019.9.28 +2019.9.30.17.47.33 +2019.9.8 +2019.9.9.23.27.50 +20190110 +20190115 +20190122 +20190201 +20190207 +20190212 +20190226 +20190318 +20190321 +20190322 +20190417 +201904251722 +20190522 +20190722 +20190808 +20190909 +20190922 +20191020 +20191026 +20191106 +20191111 +20191115 +20191122 +20191125 +2019_11.26 +2019_12.16 +2019_12.4 +2019a +202 +2020.0 +2020.0.0 +2020.0.1 +2020.0.2 +2020.0.3 +2020.0.6 +2020.0.6rc2 +2020.0.7 +2020.01 +2020.01.01 +2020.01.05 +2020.01.06 +2020.01.07 +2020.01.08 +2020.01.10 +2020.01.15 +2020.01.16 +2020.01.21 +2020.01.22 +2020.01.24 +2020.01.27 +2020.01.28 +2020.02 +2020.02.05 +2020.02.06 +2020.02.12 +2020.02.19 +2020.02.20 +2020.02.24 +2020.03 +2020.03.01 +2020.03.02 +2020.03.03 +2020.03.04 +2020.03.05 +2020.03.06 +2020.03.09 +2020.03.1 +2020.03.10 +2020.03.12 +2020.03.13 +2020.03.14 +2020.03.15.13.27 +2020.03.16 +2020.03.19 +2020.03.2 +2020.03.20 +2020.03.22 +2020.03.23 +2020.03.24 +2020.03.27 +2020.03.28 +2020.03.3 +2020.03.30 +2020.03.4 +2020.03.5 +2020.03.6 +2020.04.01 +2020.04.02 +2020.04.03 +2020.04.04 +2020.04.06 +2020.04.07 +2020.04.08 +2020.04.09 +2020.04.10 +2020.04.10.14.16.24 +2020.04.10.14.21.26 +2020.04.10.14.22.02 +2020.04.10.14.33.34 +2020.04.10.16.51.29 +2020.04.10.18.29.06 +2020.04.10.23.07.47 +2020.04.12.13.56.44 +2020.04.14 +2020.04.14.00.23.16 +2020.04.14.12.02.49 +2020.04.15.00.37.28 +2020.04.15.16.20.31 +2020.04.15.22.14.52 +2020.04.15.23.38.20 +2020.04.16.03.28.28 +2020.04.16.07.55.54 +2020.04.16.16.23.46 +2020.04.17.01.00.32 +2020.04.17.09.06.29 +2020.04.17.11.22.12 +2020.04.17.11.45.02 +2020.04.17.22.20.20 +2020.04.18.00.00.57 +2020.04.20.03.17.56 +2020.04.21.12.59.15 +2020.04.22.02.05.22 +2020.04.22.03.51.02 +2020.04.23 +2020.04.23.05.37.39 +2020.04.23.13.54.59 +2020.04.23.16.40.11 +2020.04.23.22.05.54 +2020.04.24.08.48.19 +2020.04.24.22.48.20 +2020.04.24.22.56.04 +2020.04.25 +2020.04.26.12.54.30 +2020.04.26.19.17.14 +2020.04.27.17.45.41 +2020.04.28 +2020.04.28.13.02.26 +2020.04.29 +2020.04.30.12.38.06 +2020.04.30.13.04.49 +2020.04.30.15.17.54 +2020.04.30.15.41.11 +2020.04.30.22.10.16 +2020.04.30.22.51.59 +2020.05 +2020.05.01 +2020.05.01.13.16.44 +2020.05.01.18.41.01 +2020.05.01.20.16.02 +2020.05.01.23.05.28 +2020.05.02.01.08.57 +2020.05.02.02.22.03 +2020.05.02.14.58.15 +2020.05.03.17.40.55 +2020.05.03.19.37.20 +2020.05.04 +2020.05.04.00.11.09 +2020.05.04.05.46.47 +2020.05.04.19.36.16 +2020.05.04.19.59.17 +2020.05.06.22.15.02 +2020.05.08.11.44.00 +2020.05.09 +2020.05.09.00.08.03 +2020.05.10 +2020.05.10.05.52.45 +2020.05.11.06.13.34 +2020.05.11.16.49.47 +2020.05.12.18.03.58 +2020.05.13.13.23.43 +2020.05.14.17.14.20 +2020.05.18.07.14.19 +2020.05.18.07.24.43 +2020.05.18.11.53.22 +2020.05.18.14.31.44 +2020.05.19 +2020.05.19.09.34.36 +2020.05.19.13.30.35 +2020.05.19.19.39.08 +2020.05.19.2 +2020.05.20.09.40.28 +2020.05.20.21.21.18 +2020.05.21 +2020.05.25.23.01.15 +2020.05.27 +2020.05.27.14.19.32 +2020.05.27.16.15 +2020.05.28 +2020.05.29 +2020.05.31.21.10.28 +2020.06 +2020.06.01 +2020.06.01.14.18.30 +2020.06.01.17.08.18 +2020.06.01.18.18.56 +2020.06.02.12.20.38 +2020.06.03 +2020.06.03.1 +2020.06.03.11.59.27 +2020.06.03.12.27.10 +2020.06.03.12.27.21 +2020.06.03.13.07.20 +2020.06.03.13.16.18 +2020.06.03.13.41.50 +2020.06.04.02.43.14 +2020.06.04.10.25.49 +2020.06.04.13.55.38 +2020.06.06 +2020.06.06.02.30.37 +2020.06.06.15.39.47 +2020.06.06.18.33.32 +2020.06.07 +2020.06.07.16.42.19 +2020.06.10 +2020.06.10.22.19.47 +2020.06.12.09.54.30 +2020.06.12.12.07.36 +2020.06.12.14.12.47 +2020.06.13.02.15.08 +2020.06.15.11.48.40 +2020.06.15.22.23.21 +2020.06.15.22.23.24 +2020.06.16 +2020.06.16.14.10.58 +2020.06.16.21.09.39 +2020.06.18 +2020.06.19 +2020.06.22 +2020.06.23.06.07.46 +2020.06.23.15.05.51 +2020.06.24.16.31.11 +2020.07 +2020.07.01 +2020.07.01.19.41.39 +2020.07.01.21.17.12 +2020.07.02.16.06.52 +2020.07.02.17.22.00 +2020.07.03 +2020.07.03.10.54.45 +2020.07.05.20.11.47 +2020.07.05.21.09.16 +2020.07.06 +2020.07.06.07.16.19 +2020.07.06.14.07.53 +2020.07.06.15.09.44 +2020.07.06.15.29.37 +2020.07.06.18.43.00 +2020.07.07.15.30.32 +2020.07.07.19.27.52 +2020.07.1 +2020.07.12.08.10.44 +2020.07.12.14.17.08 +2020.07.13.05.21.24 +2020.07.13.05.22.39 +2020.07.13.05.22.51 +2020.07.13.05.23.11 +2020.07.14.15.32.37 +2020.07.15.13.14.37 +2020.07.15.18.17.54 +2020.07.15.18.18.04 +2020.07.17.07.07.44 +2020.07.17.07.14.20 +2020.07.17.17.28.25 +2020.07.18 +2020.07.18.02.18.36 +2020.07.18.17.52.56 +2020.07.18.19.24.57 +2020.07.18.20.05.59 +2020.07.18.20.56.00 +2020.07.19.19.30.49 +2020.07.20.22.41.22 +2020.07.21.08.49.43 +2020.07.21.17.10.15 +2020.07.22.15.50.26 +2020.07.23.07.37.39 +2020.07.24.15.53.25 +2020.07.25.08.41 +2020.07.26.17.35.30 +2020.07.26.20.00.32 +2020.07.27 +2020.07.27.09.21.49 +2020.07.27.18.59.53 +2020.07.28.15.09.26 +2020.07.29.10.14.20 +2020.07.30.14.05.10 +2020.07.31.22.07.41 +2020.08.01 +2020.08.01.13.32.00 +2020.08.01.17.49.49 +2020.08.02 +2020.08.02.14.12.45 +2020.08.02.14.15.29 +2020.08.02.15.39.57 +2020.08.04.07.08.47 +2020.08.04.10.51.31 +2020.08.04.14.41.32 +2020.08.05 +2020.08.05.17.02.37 +2020.08.08 +2020.08.09.19.50.01 +2020.08.10.21.36.31 +2020.08.11 +2020.08.12.15.50.13 +2020.08.12.15.52.31 +2020.08.12.16.30.22 +2020.08.13.04.25.14 +2020.08.14.17.10.59 +2020.08.15.14.52.28 +2020.08.15.14.59.48 +2020.08.17.19.54.37 +2020.08.17.20.01.55 +2020.08.21.04.46.41 +2020.08.24 +2020.08.25.14.55.21 +2020.08.26.22.12.02 +2020.08.27.12.52.30 +2020.08.27.19.07.14 +2020.08.29.21.09.48 +2020.08.30 +2020.08.31 +2020.09.01.20.11.42 +2020.09.01.22.03.41 +2020.09.02.00.32.57 +2020.09.02.16.41.07 +2020.09.03.21.06.41 +2020.09.03.21.10.34 +2020.09.04.10.00.02 +2020.09.07.14.45.08 +2020.09.07.15.41.27 +2020.09.07.16.02.10 +2020.09.07.20.08.14 +2020.09.07.21.12.35 +2020.09.08.14.30.05 +2020.09.08.18.21.18 +2020.09.09.10.20.41 +2020.09.09.20.59.59 +2020.09.1 +2020.09.10.13.34.01 +2020.09.11.15.57.35 +2020.09.11.18.34.57 +2020.09.11.18.40.13 +2020.09.11.19.40.57 +2020.09.13 +2020.09.14.17.07.46 +2020.09.14.18.14.00 +2020.09.16.03.05.24 +2020.09.16.09.15.38 +2020.09.16.16.02.20 +2020.09.16.18.10.04 +2020.09.17.18.10.19 +2020.09.17.18.26.02 +2020.09.18.08.06.05 +2020.09.18.08.23.49 +2020.09.18.15.42.03 +2020.09.18.21.05.29 +2020.09.19 +2020.09.19.08.22.59 +2020.09.19.20.20.14 +2020.09.2 +2020.09.21 +2020.09.23.12.58.01 +2020.09.23.21.28.59 +2020.09.23.23.12.07 +2020.09.23.23.13.32 +2020.09.24.02.52.44 +2020.09.24.05.55.20 +2020.09.24.11.51.54 +2020.09.25.13.11.25 +2020.09.25.17.46.30 +2020.09.26.07.48.26 +2020.09.26.15.06.30 +2020.09.27 +2020.09.28 +2020.09.28.09.54.05 +2020.09.28.17.33.40 +2020.09.28.20.29.37 +2020.09.28.21.05.13 +2020.09.28.22.08.29 +2020.09.28.22.13.14 +2020.09.29.03.36.00 +2020.09.29.09.53.28 +2020.09.29.10.44.38 +2020.09.29.13.22.45 +2020.09.29.16.41.07 +2020.09.3 +2020.09.30 +2020.09.30.11.43.38 +2020.09.30.16.33.39 +2020.09.4 +2020.09.5 +2020.1 +2020.1.0 +2020.1.1 +2020.1.10 +2020.1.15 +2020.1.16 +2020.1.17 +2020.1.2 +2020.1.22 +2020.1.24 +2020.1.28 +2020.1.29 +2020.1.3 +2020.1.30 +2020.1.31 +2020.1.31.12.4.51 +2020.1.7 +2020.1.8 +2020.10 +2020.10.0 +2020.10.01 +2020.10.01.08.48.05 +2020.10.01.12.20.34 +2020.10.01.12.20.37 +2020.10.01.12.48.12 +2020.10.01.19.13.14 +2020.10.02 +2020.10.02.09.22.14 +2020.10.02.11.13.19 +2020.10.02.11.26.57 +2020.10.02.13.16.37 +2020.10.03 +2020.10.04.20.30.50 +2020.10.05.16.30.09 +2020.10.06.07.41.18 +2020.10.07.06.34.32 +2020.10.07.09.03.27 +2020.10.07.13.18.22 +2020.10.07.15.27.08 +2020.10.07.18.43.37 +2020.10.07.19.26.27 +2020.10.07.20.17.51 +2020.10.07.20.47.11 +2020.10.07.21.07.43 +2020.10.07.22.34.39 +2020.10.07.22.37.31 +2020.10.07.23.53.48 +2020.10.08 +2020.10.08.11.41.29 +2020.10.08.14.14.24 +2020.10.08.15.13.14 +2020.10.08.18.09.54 +2020.10.08.20.29.16 +2020.10.09.16.47.17 +2020.10.1 +2020.10.10 +2020.10.11 +2020.10.11.15.10.22 +2020.10.12.09.51.03 +2020.10.12.15.08.21 +2020.10.12.15.14.45 +2020.10.12.17.33.53 +2020.10.12.21.02.26 +2020.10.12.22.41.22 +2020.10.13.00.03.02 +2020.10.13.15.16.20 +2020.10.13.18.06.16 +2020.10.13.18.50.19 +2020.10.13.19.09.25 +2020.10.14.13.15.42 +2020.10.14.18.14.07 +2020.10.14.20.18.28 +2020.10.14.22.34.53 +2020.10.15 +2020.10.15.14.59.50 +2020.10.15.16.53.35 +2020.10.15.16.54.09 +2020.10.16 +2020.10.16.00.16.46 +2020.10.16.02.36.37 +2020.10.16.18.51.08 +2020.10.18.07.06.23 +2020.10.18.17.43.44 +2020.10.19.14.05.29 +2020.10.19.14.20.14 +2020.10.19b4 +2020.10.20 +2020.10.20.11.21.36 +2020.10.20.11.22.02 +2020.10.20.15.08.50 +2020.10.20.15.55.33 +2020.10.20.16.09.06 +2020.10.20.19.24.17 +2020.10.21 +2020.10.21.13.25.30 +2020.10.22.15.42.41 +2020.10.23 +2020.10.24.12.16 +2020.10.24.16.47.03 +2020.10.25.18.56.06 +2020.10.26.03.51.59 +2020.10.26.12.39.30 +2020.10.27 +2020.10.27.07.15.50 +2020.10.27.17.47.18 +2020.10.28 +2020.10.28.12.21.23 +2020.10.29 +2020.10.29.11.45.42 +2020.10.30 +2020.10.31.07.20.24 +2020.10.31.07.46.09 +2020.10.31.07.47.31 +2020.10.31.07.48.09 +2020.10.31.11.52.50 +2020.10.31.20.42.37 +2020.10.6 +2020.10.7 +2020.10.8 +2020.10.9 +2020.10.9.1 +2020.10_1 +2020.11 +2020.11.0 +2020.11.01 +2020.11.01.15.38.34 +2020.11.01.16.28.01 +2020.11.01.23.03.12 +2020.11.02.09.20.27 +2020.11.02.18.31.44 +2020.11.02.18.49.03 +2020.11.03.00.15.30 +2020.11.03.14.04.27 +2020.11.03.15.27.20 +2020.11.03.19.14.45 +2020.11.03.22.36.25 +2020.11.04.10.33.26 +2020.11.04.10.33.32 +2020.11.04.10.36.34 +2020.11.05 +2020.11.06 +2020.11.06.18.20.12 +2020.11.07 +2020.11.07.01.17.04 +2020.11.07.01.17.20 +2020.11.08.20.44.44 +2020.11.1 +2020.11.1.1 +2020.11.10 +2020.11.10.10.45.26 +2020.11.10.18.54.39 +2020.11.10.21.31.03 +2020.11.11 +2020.11.11.10.18.59 +2020.11.11.15.57.25 +2020.11.12 +2020.11.12.0 +2020.11.12.14.52.24 +2020.11.12.16.29.34 +2020.11.12.19.01.39 +2020.11.12.21.44.15 +2020.11.12.21.52.18 +2020.11.13 +2020.11.13.16.12.32 +2020.11.13.16.40.26 +2020.11.13.20.10.34 +2020.11.13.21.19.21 +2020.11.14.07.41.32 +2020.11.14.14.16.41 +2020.11.15 +2020.11.15.04.59.29 +2020.11.15.13.01.59 +2020.11.15.19.46.57 +2020.11.16.10.22.59 +2020.11.16.11.06.23 +2020.11.16.18.10.02 +2020.11.17 +2020.11.17.17.01.24 +2020.11.18 +2020.11.18.18.18.16 +2020.11.18.20.19.01 +2020.11.19 +2020.11.20 +2020.11.20.14.18.33 +2020.11.21 +2020.11.21.04.23.28 +2020.11.21.1 +2020.11.21.12.44.23 +2020.11.22.13.14.13 +2020.11.23.01.47.34 +2020.11.23.12.48.02 +2020.11.23.13.18.02 +2020.11.23.15.13.34 +2020.11.23.16.56.19 +2020.11.23.17.11.04 +2020.11.23.17.11.18 +2020.11.23.21.32.28 +2020.11.24 +2020.11.24.14.19.48 +2020.11.24.19.24.28 +2020.11.24.22.57.48 +2020.11.25 +2020.11.25.09.00.04 +2020.11.25.17.00.45 +2020.11.25.20.41.30 +2020.11.25.21.48.01 +2020.11.26 +2020.11.26.06.28.51 +2020.11.26.07.13.25 +2020.11.27 +2020.11.27.22.34.30 +2020.11.28 +2020.11.29 +2020.11.30 +2020.11.30.18.15.16 +2020.11.4 +2020.11.5 +2020.11.8 +2020.11.9 +2020.12 +2020.12.0 +2020.12.01.14.31.10 +2020.12.01.14.31.16 +2020.12.01.14.33.39 +2020.12.02.08.58.00 +2020.12.02.08.58.36 +2020.12.02.10.35.15 +2020.12.02.18.06.47 +2020.12.04 +2020.12.04.08.17.45 +2020.12.04.16.35.12 +2020.12.04.20.36.45 +2020.12.06.16.40.53 +2020.12.07.18.58.57 +2020.12.08 +2020.12.08.18.08.39 +2020.12.08.22.36.27 +2020.12.09.12.04.26 +2020.12.09.12.57.46 +2020.12.09.17.24.05 +2020.12.1 +2020.12.10 +2020.12.10.15.32.05 +2020.12.10.16.43.04 +2020.12.10.20.27.39 +2020.12.10.20.57.11 +2020.12.10.21.13.33 +2020.12.11 +2020.12.11.09.47.37 +2020.12.12 +2020.12.12.12.24.07 +2020.12.14 +2020.12.14.20.00.20 +2020.12.14.20.07.44 +2020.12.15 +2020.12.15.10.41.23 +2020.12.15.21.48.12 +2020.12.15.22.08.25 +2020.12.16 +2020.12.16.02.08.12 +2020.12.16.09.27.23 +2020.12.16.10.46.05 +2020.12.16.16.31.44 +2020.12.16.17.43.31 +2020.12.17.16.32.44 +2020.12.17_2 +2020.12.18 +2020.12.18.01.20.00 +2020.12.18.16.58.40 +2020.12.18.18.05.13 +2020.12.18.23.13.23 +2020.12.19.03.20.16 +2020.12.2 +2020.12.20.03.10.16 +2020.12.20.15.35.03 +2020.12.20.21.33.49 +2020.12.21.10.29.32 +2020.12.21.11.21.41 +2020.12.21.13.42.08 +2020.12.22 +2020.12.22.11.23.16 +2020.12.22.15.34.48 +2020.12.23 +2020.12.23.12.00.44 +2020.12.23.19.30.24 +2020.12.24 +2020.12.25.18.05.12 +2020.12.26 +2020.12.26.13.11.41 +2020.12.28.08.15.01 +2020.12.28.19.16.11 +2020.12.29 +2020.12.29.17.41.50 +2020.12.29.19.31.56 +2020.12.29.19.35.25 +2020.12.3 +2020.12.30.15.14.36 +2020.12.30.16.09.43 +2020.12.30b24 +2020.12.31 +2020.12.31.00.10.22 +2020.12.31.20.36.09 +2020.12.31.21.12.36 +2020.12.31.21.46.35 +2020.12.4 +2020.12.5 +2020.12.7 +2020.12.8 +2020.12.9 +2020.12.9b21 +2020.2 +2020.2.0 +2020.2.1 +2020.2.10 +2020.2.12 +2020.2.15 +2020.2.16 +2020.2.17 +2020.2.17.23.39.39 +2020.2.18 +2020.2.18.11.46.9 +2020.2.19 +2020.2.2 +2020.2.20 +2020.2.21 +2020.2.21.10.36.37 +2020.2.25 +2020.2.26.10.41.58 +2020.2.26.16.29.24 +2020.2.29 +2020.2.3 +2020.2.4 +2020.2.4.15.27.6 +2020.2.4.post1 +2020.2.41 +2020.2.5 +2020.2.6 +2020.2.7 +2020.2.8 +2020.2_1 +2020.3 +2020.3.0 +2020.3.1 +2020.3.10 +2020.3.12 +2020.3.13 +2020.3.16 +2020.3.16.1 +2020.3.16.2 +2020.3.17 +2020.3.2 +2020.3.21.10.12.32 +2020.3.24 +2020.3.25 +2020.3.3 +2020.3.31 +2020.3.4 +2020.4 +2020.4.0 +2020.4.1 +2020.4.14 +2020.4.2 +2020.4.21 +2020.4.21.11.20.15 +2020.4.21.14.53.58 +2020.4.22 +2020.4.23 +2020.4.24 +2020.4.24.9.29.7 +2020.4.27 +2020.4.28 +2020.4.29 +2020.4.3 +2020.4.30 +2020.4.4 +2020.4.5.1 +2020.4.5.2 +2020.4.7 +2020.5 +2020.5.0 +2020.5.1 +2020.5.1.9.54.41 +2020.5.11 +2020.5.11.13.33.35 +2020.5.13 +2020.5.14 +2020.5.16 +2020.5.19 +2020.5.19.15.27.24 +2020.5.2 +2020.5.21 +2020.5.24 +2020.5.27 +2020.5.28 +2020.5.29 +2020.5.3 +2020.5.30 +2020.5.5 +2020.5.7 +2020.5.8 +2020.6 +2020.6.0 +2020.6.1 +2020.6.11 +2020.6.16 +2020.6.16.1 +2020.6.17 +2020.6.2 +2020.6.20 +2020.6.23 +2020.6.26 +2020.6.3 +2020.6.30 +2020.6.4 +2020.6.5 +2020.6.5.10.11.45 +2020.6.6 +2020.6.7 +2020.6.8 +2020.6.9 +2020.7 +2020.7.0 +2020.7.1 +2020.7.10 +2020.7.14 +2020.7.15 +2020.7.16 +2020.7.16.22.25.48 +2020.7.17 +2020.7.18 +2020.7.2 +2020.7.20 +2020.7.21 +2020.7.22 +2020.7.24 +2020.7.28 +2020.7.29 +2020.7.3 +2020.7.30 +2020.7.30.11.47.47 +2020.7.30.11.56.5 +2020.7.30.17.4.28 +2020.7.31.11.53.28 +2020.7.31.23.51.16 +2020.7.4 +2020.7.7 +2020.8 +2020.8.0 +2020.8.1 +2020.8.10 +2020.8.11 +2020.8.12 +2020.8.13 +2020.8.15 +2020.8.17 +2020.8.18 +2020.8.18.15.37.20 +2020.8.18.15.46.4 +2020.8.22 +2020.8.25 +2020.8.3 +2020.8.5 +2020.8.6 +2020.8.8 +2020.9 +2020.9.1 +2020.9.10.15.53.14 +2020.9.10.16.24.8 +2020.9.11 +2020.9.12 +2020.9.13 +2020.9.14 +2020.9.15 +2020.9.16 +2020.9.18 +2020.9.19 +2020.9.2 +2020.9.2.20.23.42 +2020.9.20 +2020.9.22 +2020.9.23 +2020.9.24 +2020.9.25 +2020.9.27 +2020.9.28 +2020.9.29 +2020.9.3 +2020.9.30 +2020.9.5.14.42.2 +2020.9.6 +2020.9.8 +2020.9.9 +20200110 +20200122 +20200126 +20200128 +20200205 +20200211 +20200219 +20200225.1 +20200225.2 +20200226 +20200304 +20200305 +20200317 +20200320 +20200322 +20200323.0 +20200330 +20200413.0 +20200422.0 +20200423 +20200428.10.05.05 +20200428.13.47.36 +20200505 +20200505.0 +20200511 +20200511.0 +20200514.00.49.50 +20200514.00.57.51 +20200515.13.47.58 +20200517 +20200517.03.43.56 +20200518.0 +20200520.14.05.38 +20200520.15.34.58 +20200520.16.38.30 +20200520.21.20.54 +20200520.22.03.44 +20200521.02.27.49 +20200521.17.36.00 +20200521.19.50.00 +20200521.20.03.07 +20200522 +20200522.0 +20200522.15.45.49 +20200526.00.39.06 +20200528.15.47.12 +20200529.21.11.54 +20200529.21.13.08 +20200529.21.26.13 +20200529.21.33.12 +20200529.21.36.51 +20200529.21.40.29 +20200529.21.43.14 +20200529.21.46.16 +20200529.21.51.26 +20200529.21.52.15 +20200530.10.47.29 +20200530.10.53.50 +20200530.15.54.35 +20200530.16.32.19 +20200601.18.11.21 +20200603.20.14.55 +20200603.20.19.52 +20200604.02.52.42 +20200604.04.15.03 +20200604.18.10.49 +20200605.05.19.15 +20200605.11.42.39 +20200605.20.10.54 +20200606.10.22.48 +20200606.10.33.51 +20200606.13.39.49 +20200606.14.26.47 +20200608.0 +20200608.15.03.28 +20200609.12.01.41 +20200611.16.28.35 +20200612.03.49.34 +20200612.08.38.08 +20200615.17.54.31 +20200616.11.55.25 +20200617.20.33.21 +20200618.20.52.47 +20200622.1 +20200624.12.50.58 +20200703.14.42.21 +20200703.14.49.48 +20200708.18.08.14 +20200713 +20200715.11.57.07 +20200715.18.03.44 +20200715.22.16.50 +20200716.18.57.02 +20200717.14.23.58 +20200718.19.10.00 +20200720 +20200720.16.55.17 +20200722 +20200722.11.28.50 +20200723.11.04.25 +20200724.16.21.18 +20200725.00.04.39 +20200725.13.38.53 +20200725.17.15.53 +20200725.18.02.27 +20200725.19.05.50 +20200726 +20200726.22.03.22 +20200729.12.30.33 +20200729.22.15.55 +20200801.19.08.44 +20200802.18.59.02 +20200804.0 +20200806.11.21.55 +20200806.14.03.41 +20200810.0 +20200810.17.26.18 +20200817.19.37.39 +20200818.0 +20200818.03.13.48 +20200818.18.16.02 +20200821.17.20.38 +20200821.17.35.53 +20200825.11.40.56 +20200825.11.41.46 +20200825.21.16.22 +20200827.16.16.10 +20200831.13.02.33 +20200901.11.31.23 +20200901.21.05.57 +20200907.0 +20200907.15.30.32 +20200908.19.42.17 +20200909.19.52.10 +20200909.21.18.33 +20200914.0 +20200914.15.33.56 +20200915.11.11.13 +20200921.0 +20200921.15.46.24 +20200922 +20200922.21.17.15 +20200922.21.17.37 +20200922.21.18.05 +20200923.09.23.10 +20200923.2 +20200923.3 +20200924.08.02.13 +20200928.0 +20200928.17.51.12 +20200929.15.37.45 +20201001 +20201002.15.57.39 +20201004.16.43.10 +20201005.0 +20201006.08.38.15 +20201006.16.36.59 +20201007.17.34.35 +20201007.23.53.02 +20201008.01.49.19 +20201009.05.37.22 +20201010.20.55.23 +20201011.22.11.35 +20201013.21.30.52 +20201014.00.47.07 +20201014.01.24.06 +20201015.03.07.40 +20201016.20.10.29 +20201018 +20201018.16.29.41 +20201019.0 +20201021.16.34.29 +20201028.23.01.36 +20201029.10.37.14 +20201031.14.58.41 +20201101.22.55.16 +20201102.00.37.57 +20201102.13.34.15 +20201103.16.28.34 +20201104.10.24.10 +20201104.11.08.07 +20201105.13.07.35 +20201109.14.47.49 +20201109.17.33.13 +20201111.06.55.56 +20201111.15.15.36 +20201113.12.45.19 +20201117.0 +20201118.23.15.49 +20201118.23.16.42 +20201118.23.34.02 +20201120.14.17.51 +20201120.19.54.29 +20201122 +20201122.20.48.44 +20201125.16.42.55 +20201205.00.54.19 +20201205.12.49.56 +20201205.12.49.58 +20201205.18.42.56 +20201206 +20201208.16.07.04 +20201208.20.46.21 +20201209.15.04.48 +20201213.13.38.10 +20201213.22.54.19 +20201214.13.41.24 +20201215.03.51.10 +20201215.03.51.39 +20201215.03.53.08 +20201215.03.54.30 +20201215.03.56.19 +20201215.03.59.05 +20201215.03.59.21 +20201215.04.00.31 +20201215.04.10.35 +20201215.04.10.43 +20201215.04.10.46 +20201215.04.11.04 +20201215.11.48.26 +20201215.11.49.09 +20201215.11.49.47 +20201215.11.50.54 +20201215.11.52.26 +20201215.11.54.24 +20201215.12.11.09 +20201215.12.12.19 +20201215.12.15.17 +20201216.12.00.47 +20201217.20.20.42 +20201217.22.38.00 +20201222.16.12.09 +20201223 +20201225.04.22.41 +20201230.01.24.34 +2020_04_03 +2020_1.31 +2020_2.2 +2020_2.3 +2020_3.2 +2020_4.2 +2020a +2020b +2020c +2020d +2020e +2020f +2021.0.0 +2021.0.1 +2021.0.2 +2021.0.3 +2021.0.4 +2021.0.5 +2021.0.6 +2021.0.7 +2021.01.01.06.32.46 +2021.01.01.06.39.05 +2021.01.01.16.59.39 +2021.01.02.17.39.38 +2021.01.02.20.34.06 +2021.01.02.21.38.25 +2021.01.02.21.51.16 +2021.01.02.22.15.58 +2021.01.02.23.04.21 +2021.01.03.14.20.46 +2021.01.03.16.11.28 +2021.01.04.08.19.58.619 +2021.01.04.22.18.20 +2021.01.05 +2021.01.06.05.50.08 +2021.01.06.17.18.37 +2021.01.06.22.06.17 +2021.01.06.23.46.21 +2021.01.07.14.45.49 +2021.01.08 +2021.01.08.07.53.07 +2021.01.08.13.07.06 +2021.01.08.14.47.47 +2021.01.08.15.27.57 +2021.01.08.18.10.03 +2021.01.09.06.19.14 +2021.01.09.14.56.12 +2021.01.09.15.04.21 +2021.01.09.18.21.49 +2021.01.10.01.07.36 +2021.01.10.22.36.39 +2021.01.11 +2021.01.11.07.23.24 +2021.01.11.16.32.51 +2021.01.11.16.49.01 +2021.01.11.17.02.47 +2021.01.11.19.34.08 +2021.01.12.09.41.14 +2021.01.12.14.47.32 +2021.01.12.15.04.08 +2021.01.13.00.11.42 +2021.01.13.00.12.17 +2021.01.13.00.12.29 +2021.01.13.00.12.42 +2021.01.13.00.13.23 +2021.01.13.10.53.05 +2021.01.13.11.13.22 +2021.01.13.15.26.02 +2021.01.13.21.25.48 +2021.01.13.21.45.44 +2021.01.14.02.00.22 +2021.01.14.02.00.42 +2021.01.14.09.11.00 +2021.01.14.14.58.32 +2021.01.14.19.12.27 +2021.01.14.22.52.52 +2021.01.15.03.03.28 +2021.01.15.10.51.29 +2021.01.15.13.32.18 +2021.01.15.16.49.23 +2021.01.15.17.44.36 +2021.01.15.18.48.14 +2021.01.15.19.19.06 +2021.01.15.19.38.06 +2021.01.16 +2021.01.18 +2021.01.18.08.22.28 +2021.01.18.08.28.29 +2021.01.18.09.10.39 +2021.01.18.13.32.07 +2021.01.18.20.12.31 +2021.01.19.11.36.16 +2021.01.20.10.13.49 +2021.01.20.10.14.01 +2021.01.20.10.50.33 +2021.01.20.13.06.20 +2021.01.20.14.54.11 +2021.01.20.17.18.42 +2021.01.20.17.38.08 +2021.01.21.00.27.51 +2021.01.21.19.42.28 +2021.01.21.20.00.11 +2021.01.21.20.05.24 +2021.01.21.20.37.27 +2021.01.21.20.49.50 +2021.01.21.20.50.37 +2021.01.21.20.52.15 +2021.01.21.20.54.11 +2021.01.22 +2021.01.22.00.15.48 +2021.01.22.02.33.32 +2021.01.22.08.09.04 +2021.01.22.09.07.34 +2021.01.22.10.30.34 +2021.01.22.11.31.14 +2021.01.22.15.25.06 +2021.01.22.15.29.58 +2021.01.22.18.42.29 +2021.01.22.19.19.10 +2021.01.23.08.21.35 +2021.01.23.15.45.39 +2021.01.24 +2021.01.24.19.22.01 +2021.01.25.11.09.47 +2021.01.25.14.47.27 +2021.01.26.04.10.57 +2021.01.26.08.41.30 +2021.01.26.21.55.00 +2021.01.26.22.04.53 +2021.01.27 +2021.01.27.06.58.29 +2021.01.27.08.12.57 +2021.01.27.08.19.07 +2021.01.27.12.03.38 +2021.01.27.21.31.49 +2021.01.28 +2021.01.29.20.41.28 +2021.01.30 +2021.01.31.00.18.44 +2021.02.01 +2021.02.02.13.42.52 +2021.02.02.17.45.15 +2021.02.02.22.13.44 +2021.02.03.13.27.35 +2021.02.04 +2021.02.04.12.49.47 +2021.02.04.15.44.04 +2021.02.04.16.58.43 +2021.02.05 +2021.02.05.06.14.51 +2021.02.05.12.35.12 +2021.02.05.18.39.21 +2021.02.05.19.06.00 +2021.02.05.20.43.41 +2021.02.05.22.15 +2021.02.06 +2021.02.06.20.05.27 +2021.02.07 +2021.02.07.11.21.33 +2021.02.08.14.52.05 +2021.02.08.19.19.27 +2021.02.08.20.29.31 +2021.02.09.00.37.38 +2021.02.09.12.13.43 +2021.02.09.12.24.06 +2021.02.09.18.00.00 +2021.02.09.20.54.49 +2021.02.1 +2021.02.10 +2021.02.10.00.55.52 +2021.02.10.11.36.34 +2021.02.10.13.11.27 +2021.02.10.13.52.40 +2021.02.11.03.11.06 +2021.02.11.17.33.54 +2021.02.11.18.30.05 +2021.02.11.19.41.33 +2021.02.11.20.02.02 +2021.02.12 +2021.02.12.11.45.20 +2021.02.12.15.59.38 +2021.02.12.17.51.53 +2021.02.13 +2021.02.13.00.11.08 +2021.02.13.05.44.39 +2021.02.13.12.56.44 +2021.02.13.16.08.32 +2021.02.14.11.06.31 +2021.02.15.18.17.52 +2021.02.16.12.53.49 +2021.02.16.14.13.27 +2021.02.16.17.23.45 +2021.02.16.21.37.58 +2021.02.16.22.51.53 +2021.02.17.06.54.06 +2021.02.17.21.17.16 +2021.02.18 +2021.02.18.01.26.24 +2021.02.19 +2021.02.19.04.55.39 +2021.02.19.14.14.29 +2021.02.19.15.24.04 +2021.02.20.20.42.23 +2021.02.21 +2021.02.21.18.29.10 +2021.02.22.13.58.30 +2021.02.22.16.11.12 +2021.02.22.18.58.55 +2021.02.22.20.37.29 +2021.02.23 +2021.02.23.06.49.59 +2021.02.24 +2021.02.24.15.35.41 +2021.02.25.09.52.02 +2021.02.25.19.12.52 +2021.02.25.19.26.45 +2021.02.25.19.30.33 +2021.02.25.20.42.52 +2021.02.25.21.00.20 +2021.02.25.21.45.38 +2021.02.25.22.01.04 +2021.02.26.07.54.25 +2021.02.26.08.43.38 +2021.02.26.08.44.51 +2021.02.26.08.45.05 +2021.02.26.09.26.57 +2021.02.26.09.28.45 +2021.02.26.11.24.58 +2021.02.26.15.36.03 +2021.03.0 +2021.03.01 +2021.03.01.11.14.33 +2021.03.01.11.30.41 +2021.03.01.12.29.12 +2021.03.01.13.11.42 +2021.03.01.17.49.23 +2021.03.01.19.40.18 +2021.03.02.09.48.16 +2021.03.02.09.49.23 +2021.03.02.11.40.47 +2021.03.02.12.06.47 +2021.03.02.16.00.15 +2021.03.02.16.48.17 +2021.03.02.20.03.28 +2021.03.03 +2021.03.03.07.46.54 +2021.03.03.09.54.37 +2021.03.03.10.54.47 +2021.03.03.14.17.27 +2021.03.03.14.34.46 +2021.03.03.14.53.22 +2021.03.03.20.57.29 +2021.03.04 +2021.03.04.15.24.59 +2021.03.05.02.43.08 +2021.03.05.06.59.08 +2021.03.05.10.46.00 +2021.03.05.10.51.56 +2021.03.05.11.08.04 +2021.03.05.13.29.10 +2021.03.05.14.23.58 +2021.03.05.15.23.24 +2021.03.06 +2021.03.06.03.53.09 +2021.03.06.20.50.02 +2021.03.07.11.50.11 +2021.03.07.13.04.03 +2021.03.07.18.51.23 +2021.03.08.16.14.30 +2021.03.08.18.23.20 +2021.03.09.05.56.03 +2021.03.09.08.18.28 +2021.03.09.08.31.26 +2021.03.09.08.59.33 +2021.03.09.10.29.40 +2021.03.09.13.26.23 +2021.03.09.14.14.27 +2021.03.09.14.43.50 +2021.03.09.15.32.03 +2021.03.09.16.03.05 +2021.03.09.16.03.58 +2021.03.09.16.13.06 +2021.03.09.16.18.34 +2021.03.09.16.23.02 +2021.03.09.16.23.08 +2021.03.09.16.31.55 +2021.03.09.17.11.18 +2021.03.09.17.52.47 +2021.03.09.17.59.11 +2021.03.09.22.39.45 +2021.03.1 +2021.03.10.08.11.17 +2021.03.10.20.27.19 +2021.03.11.06.59.32 +2021.03.11.09.06.20 +2021.03.11.09.17.26 +2021.03.11.10.47.45 +2021.03.11.12.19.54 +2021.03.11.16.06.04 +2021.03.11.17.08.57 +2021.03.11.17.43.23 +2021.03.12.08.20.07 +2021.03.12.09.11.36 +2021.03.12.19.24.49 +2021.03.13.12.09.21 +2021.03.13.19.06.41 +2021.03.13.19.08.27 +2021.03.14 +2021.03.15.03.57.07 +2021.03.15.12.27.52 +2021.03.15.13.17.50 +2021.03.16 +2021.03.17.11.02.03 +2021.03.17.15.05.46 +2021.03.17.22.18.58 +2021.03.18.08.08.13 +2021.03.18.19.24.21 +2021.03.19.06.10.36 +2021.03.19.08.01.08 +2021.03.2 +2021.03.20.03.34.19 +2021.03.20.13.12.43 +2021.03.20.17.14.24 +2021.03.20.22.01.54 +2021.03.21.09.23.20 +2021.03.21.19.58.38 +2021.03.21.21.30.33 +2021.03.22 +2021.03.22.07.37.28 +2021.03.22.11.12.50 +2021.03.23.05.40.02 +2021.03.23.08.35.57 +2021.03.23.12.40.48 +2021.03.23.17.55.38 +2021.03.24.14.49.49 +2021.03.25.11.29.14 +2021.03.25.14.57.03 +2021.03.26.09.02.42 +2021.03.26.11.37.05 +2021.03.26.13.02.38 +2021.03.26.15.18.50 +2021.03.26.18.53.25 +2021.03.26.22.47.29 +2021.03.27 +2021.03.27.06.50.49 +2021.03.28.06.26.20 +2021.03.28.06.26.21 +2021.03.28.13.37.18 +2021.03.28.21.25.09 +2021.03.29 +2021.03.29.11.20.03 +2021.03.29.13.15.38 +2021.03.29.15.45.30 +2021.03.3 +2021.03.31.16.02.06 +2021.03.4 +2021.03.5 +2021.04.0 +2021.04.00 +2021.04.01 +2021.04.01.09.17.11 +2021.04.01.12.40.32 +2021.04.01.12.45.45 +2021.04.02.09.35.22 +2021.04.02.15.43.00 +2021.04.03.05.20.29 +2021.04.04 +2021.04.04.05.03.22 +2021.04.04.06.28.42 +2021.04.04.13.46.57 +2021.04.05 +2021.04.05.09.52.31 +2021.04.05.17.37.43 +2021.04.06.12.55.50 +2021.04.06.13.31.20 +2021.04.06.18.42.56 +2021.04.06.19.11.00 +2021.04.07.18.46.00 +2021.04.08.08.06.32 +2021.04.08.08.07.10 +2021.04.08.09.49.10 +2021.04.08.13.14.59 +2021.04.09.00.48.02 +2021.04.09.07.49.51 +2021.04.09.16.03.53 +2021.04.09.17.43.25 +2021.04.1 +2021.04.10.19.49.31 +2021.04.12.07.49.20 +2021.04.12.12.10.31 +2021.04.12.12.11.21 +2021.04.12.21.54.14 +2021.04.13.13.25.55 +2021.04.13.13.54.57 +2021.04.14 +2021.04.14.08.37.12 +2021.04.15.09.30.17 +2021.04.16 +2021.04.17.14.54.41 +2021.04.19.16.42.48 +2021.04.2 +2021.04.20.06.10.28 +2021.04.20.18.36.07 +2021.04.21 +2021.04.21.17.39.23 +2021.04.22.19.34.35 +2021.04.23 +2021.04.23.13.32.29 +2021.04.24.06.28.24 +2021.04.26 +2021.04.27.07.37.24 +2021.04.28 +2021.04.28.10.30.51 +2021.04.28.12.37.37 +2021.04.29 +2021.04.29.06.02.52 +2021.04.29.07.21.23 +2021.04.29.11.43.28 +2021.04.29.13.58.20 +2021.04.3 +2021.04.30.05.29.14 +2021.04.30.07.03.20 +2021.04.30.14.06.07 +2021.04.30.20.46.56 +2021.04.30.23.32.31 +2021.04.4 +2021.05.0 +2021.05.002 +2021.05.01.04.49.48 +2021.05.01.06.26.24 +2021.05.03.17.22.16 +2021.05.03.19.31.03 +2021.05.04.03.13.01 +2021.05.04.03.28.08 +2021.05.04.04.37.02 +2021.05.04.09.34.47 +2021.05.04.11.10.16 +2021.05.04.12.13.46 +2021.05.04.13.59.10 +2021.05.05.05.27.00 +2021.05.05.08.35.31 +2021.05.05.20.37.49 +2021.05.06.04.07.30 +2021.05.06.04.07.38 +2021.05.06.10.47.03 +2021.05.07.07.45.40 +2021.05.07.07.46.32 +2021.05.07.14.11.28 +2021.05.07.14.12.29 +2021.05.07.21.50.21 +2021.05.07.21.54.12 +2021.05.09.02.32.46 +2021.05.09.05.19.45 +2021.05.10 +2021.05.10.08.45.30 +2021.05.10.08.45.52 +2021.05.10.08.50.57 +2021.05.10.13.04.18 +2021.05.10.13.35.14 +2021.05.10.18.04.02 +2021.05.11.17.38.26 +2021.05.11.20.13.05 +2021.05.12 +2021.05.12.07.26.21 +2021.05.12.13.31.46 +2021.05.12.18.50.42 +2021.05.13.05.52.52 +2021.05.13.06.27.30 +2021.05.13.06.28.40 +2021.05.13.11.03.51 +2021.05.13.19.15.21 +2021.05.14.09.10.29 +2021.05.14.18.59.58 +2021.05.15 +2021.05.15.09.25.10 +2021.05.16.17.33.49 +2021.05.17.04.31.24 +2021.05.17.11.22.30 +2021.05.18.06.34.34 +2021.05.19 +2021.05.19.17.00.25 +2021.05.19.20.23.18 +2021.05.20 +2021.05.20.03.08.44 +2021.05.20.12.45.47 +2021.05.20.13.08.59 +2021.05.21.04.32.12 +2021.05.21.10.03.19 +2021.05.21.11.17.06 +2021.05.21.11.35.00 +2021.05.21.12.25.49 +2021.05.21.13.51.08 +2021.05.23.06.20.32 +2021.05.23.19.32.25 +2021.05.24.03.00.35 +2021.05.24.19.39.56 +2021.05.25.06.47.12 +2021.05.27 +2021.05.27.11.25.44 +2021.05.27.12.00.13 +2021.05.27.16.10.46 +2021.05.27.19.14.28 +2021.05.28.18.39.39 +2021.05.29.05.52.27 +2021.05.29.05.58.58 +2021.05.29.17.33.56 +2021.05.29.17.55.47 +2021.05.29.19.25.09 +2021.05.30 +2021.05.30.06.37.44 +2021.05.30.13.57.26 +2021.05.30.21.14.06 +2021.05.31.13.35.15 +2021.05.31.15.51.19 +2021.05.31.18.53.41 +2021.05.31.19.54.34 +2021.05.31.20.14.01 +2021.06.01 +2021.06.01.04.20.09 +2021.06.01.04.22.10 +2021.06.01.05.21.06 +2021.06.02.12.58.30 +2021.06.02.13.20.38 +2021.06.03 +2021.06.03.08.31.37 +2021.06.03.12.21.11 +2021.06.03.19.15.36 +2021.06.03.19.30.35 +2021.06.04 +2021.06.04.18.58.43 +2021.06.05 +2021.06.06.11.32.14 +2021.06.06.13.20.05 +2021.06.06.13.38.51 +2021.06.06.14.23.31 +2021.06.06.15.51.47 +2021.06.06.17.59.58 +2021.06.06.18.58.44 +2021.06.07.05.50.19 +2021.06.07.06.03.15 +2021.06.07.06.04.09 +2021.06.07.07.55.19 +2021.06.08.18.19.07 +2021.06.08.19.16.20 +2021.06.09.12.45.55 +2021.06.09.12.46.12 +2021.06.09.12.51.26 +2021.06.10.06.09.54 +2021.06.10.08.18.57 +2021.06.10.12.00.57 +2021.06.10.12.30.48 +2021.06.10.14.08.07 +2021.06.11.09.24.58 +2021.06.11.11.13.28 +2021.06.11.18.04.32 +2021.06.11.18.15.44 +2021.06.12.18.00.56 +2021.06.13.16.56.48 +2021.06.14.12.21.47 +2021.06.15 +2021.06.15.19.40.12 +2021.06.15.19.42.39 +2021.06.16.07.35.33 +2021.06.16.10.14.32 +2021.06.16.16.53.58 +2021.06.16.19.20.17 +2021.06.18.08.15.43 +2021.06.18.08.15.47 +2021.06.20.18.38.41 +2021.06.21.02.43.59 +2021.06.21.08.16.27 +2021.06.21.13.13.35 +2021.06.21.13.14.31 +2021.06.21.19.40.11 +2021.06.21.19.41.29 +2021.06.21.19.44.12 +2021.06.22.04.56.18 +2021.06.23.07.26.43 +2021.06.23.10.03.36 +2021.06.23.12.50.49 +2021.06.23.14.21.23 +2021.06.23.14.38.15 +2021.06.23.19.14.55 +2021.06.23.19.15.25 +2021.06.23.19.21.14 +2021.06.24.04.54.45 +2021.06.24.04.58.53 +2021.06.24.04.59.31 +2021.06.24.07.00.52 +2021.06.24.07.39.41 +2021.06.24.13.08.40 +2021.06.24.19.19.34 +2021.06.25.19.28.53 +2021.06.26.09.41.00 +2021.06.26.09.45.00 +2021.06.26.09.48.18 +2021.06.26.09.51.46 +2021.06.26.14.08.36 +2021.06.26.17.17.42 +2021.06.27.07.32.44 +2021.06.27.12.20.13 +2021.06.27.12.20.29 +2021.06.29 +2021.06.29.02.04.54 +2021.06.29.05.53.46 +2021.06.29.15.41.36 +2021.06.30 +2021.06.30.05.51.30 +2021.06.30.05.52.22 +2021.06.30.16.50.29 +2021.06.30.16.50.47 +2021.07.0 +2021.07.01.17.09.14 +2021.07.02.12.06.00 +2021.07.02.13.35.43 +2021.07.02.15.37.15 +2021.07.03.13.42.34 +2021.07.03.17.26.03 +2021.07.04.06.12.14 +2021.07.04.16.58.42 +2021.07.05.14.37.02 +2021.07.05.18.29.06 +2021.07.05.18.48.25 +2021.07.05.18.49.25 +2021.07.05.18.53.45 +2021.07.05.19.11.37 +2021.07.05.21.22.36 +2021.07.06.09.30.02 +2021.07.06.17.46.33 +2021.07.06.19.03.05 +2021.07.06.20.59.07 +2021.07.06.21.30.14 +2021.07.06.21.55.47 +2021.07.06.22.44.26 +2021.07.07.07.21.45 +2021.07.07.07.29.11 +2021.07.07.10.15.37 +2021.07.07.12.50.48 +2021.07.07.15.42.36 +2021.07.08.05.52.37 +2021.07.08.05.53.35 +2021.07.08.05.56.39 +2021.07.09 +2021.07.09.05.57.39 +2021.07.09.06.16.01 +2021.07.09.06.19.08 +2021.07.09.13.37.12 +2021.07.1 +2021.07.10.05.17.21 +2021.07.11.12.10.29 +2021.07.13 +2021.07.14.07.32.57 +2021.07.14.14.38.04 +2021.07.15.07.57.26 +2021.07.16 +2021.07.16.05.11.27 +2021.07.17 +2021.07.18.01.27.32 +2021.07.18.01.27.37 +2021.07.18.06.20.38 +2021.07.18.08.46.59 +2021.07.19.17.59.15 +2021.07.21.07.43.34 +2021.07.21.11.32.06 +2021.07.21.16.24.32 +2021.07.21.20.39.59 +2021.07.21.22.24.14 +2021.07.22.07.49.14 +2021.07.22.10.53.36 +2021.07.23.09.05.31 +2021.07.23.11.50.59 +2021.07.23.11.55.58 +2021.07.24 +2021.07.25.07.58.12 +2021.07.25.10.25.07 +2021.07.25.11.01.12 +2021.07.26 +2021.07.26.07.32.18 +2021.07.26.10.51.38 +2021.07.26.14.39.31 +2021.07.27.13.04.27 +2021.07.27.19.47.02 +2021.07.28 +2021.07.28.08.03.56 +2021.07.29 +2021.07.29.07.25.26 +2021.07.29.19.16.08 +2021.07.29.23.13.45 +2021.07.30 +2021.07.30.06.17.46 +2021.07.30.07.43.16 +2021.07.30.08.02.55 +2021.07.30.08.11.18 +2021.07.30.11.17.02 +2021.08.0 +2021.08.01 +2021.08.02 +2021.08.02.00 +2021.08.02.07.59.16 +2021.08.02.10.03.47 +2021.08.02.12.49.19 +2021.08.02.13.50.20 +2021.08.02.18.50.19 +2021.08.03.07.36.34 +2021.08.03.08.19.27 +2021.08.03.12.17.29 +2021.08.03.20.37.26 +2021.08.04 +2021.08.04.12.02.02 +2021.08.04.16.13.53 +2021.08.04.19.20.59 +2021.08.05.06.02.11 +2021.08.05.18.49.22 +2021.08.05.18.49.42 +2021.08.06 +2021.08.06.19.41.12 +2021.08.07.07.31.39 +2021.08.07.13.25.53 +2021.08.07.13.26.34 +2021.08.08.03.57.11 +2021.08.09 +2021.08.11 +2021.08.11.08.27.19 +2021.08.11.13.14.20 +2021.08.11.13.25.00 +2021.08.11.13.32.18 +2021.08.11.15.51.53 +2021.08.11.16.56.58 +2021.08.11.20.24.59 +2021.08.12 +2021.08.12.05.10.51 +2021.08.14.10.07.17 +2021.08.14.10.30.44 +2021.08.15 +2021.08.16 +2021.08.17 +2021.08.17.12.40.09 +2021.08.18.12.46.46 +2021.08.19.19.17.07 +2021.08.20.14.07.28 +2021.08.20.17.24.12 +2021.08.20.21.03.08 +2021.08.21 +2021.08.22.14.13.28 +2021.08.22.15.08.21 +2021.08.23 +2021.08.23.00 +2021.08.24 +2021.08.24.08.46.15 +2021.08.24.09.50.37 +2021.08.24.19.08.13 +2021.08.24.20.53.37 +2021.08.25.17.17.57 +2021.08.25.20.48.50 +2021.08.26 +2021.08.26.08.06.04 +2021.08.26.14.38.21 +2021.08.27.15.13.14 +2021.08.27.17.30.23 +2021.08.28.07.07.17 +2021.08.28.13.14.36 +2021.08.30.12.31.33 +2021.08.31 +2021.08.31.06.27.03 +2021.08.31.12.12.37 +2021.08.31.17.13.10 +2021.0814 +2021.09.01 +2021.09.01.13.23.17 +2021.09.01.13.24.03 +2021.09.01.15.16.23 +2021.09.01.19.36.24 +2021.09.01.19.59.10 +2021.09.02.07.24.59 +2021.09.02.12.47.16 +2021.09.03.10.00.36 +2021.09.04.06.26.55 +2021.09.04.06.27.17 +2021.09.05.11.13.08 +2021.09.06 +2021.09.06.00 +2021.09.06.17.49.39 +2021.09.06.19.10.42 +2021.09.07.19.41.11 +2021.09.08 +2021.09.08.04.27.50 +2021.09.08.17.55.54 +2021.09.08.19.33.08 +2021.09.08.19.36.45 +2021.09.08.19.37.20 +2021.09.08.19.38.37 +2021.09.09.09.53.54 +2021.09.09.18.37.58 +2021.09.1 +2021.09.10.04.35.28 +2021.09.10.08.20.24 +2021.09.10.12.05.17 +2021.09.11 +2021.09.11.05.26.33 +2021.09.11.17.45.07 +2021.09.12.15.00.37 +2021.09.12.20.29.51 +2021.09.13.00 +2021.09.13.07.45.03 +2021.09.13.17.04.56 +2021.09.13.18.02.33 +2021.09.14.01.25.07 +2021.09.14.05.32.42 +2021.09.14.14.16.49 +2021.09.14.16.50.33 +2021.09.14.23.42.52 +2021.09.15.06.06.59 +2021.09.15.18.54.07 +2021.09.16.16.29.28 +2021.09.16.16.55.48 +2021.09.16.19.31.02 +2021.09.16.19.31.43 +2021.09.16.19.33.28 +2021.09.16.19.34.16 +2021.09.16.19.35.38 +2021.09.17 +2021.09.17.05.51.46 +2021.09.18.06.25.36 +2021.09.18.11.30.50 +2021.09.18.12.11.20 +2021.09.19.05.45.53 +2021.09.19.06.12.32 +2021.09.19.18.58.33 +2021.09.2 +2021.09.20.00 +2021.09.20.09.23.12 +2021.09.20.16.37.35 +2021.09.20.19.07.36 +2021.09.20.19.58.40 +2021.09.21.05.16.19 +2021.09.21.16.23.56 +2021.09.22.12.25.12 +2021.09.22.17.56.27 +2021.09.23.07.33.37 +2021.09.23.16.54.17 +2021.09.24.10.19.42 +2021.09.25.11.37.45 +2021.09.25.11.41.17 +2021.09.25.11.41.51 +2021.09.25.11.56.47 +2021.09.26.06.24.32 +2021.09.26.18.14.07 +2021.09.26.18.14.27 +2021.09.26.18.22.49 +2021.09.26.gr3.8 +2021.09.26.gr3.9 +2021.09.27.00 +2021.09.27.04.23.34 +2021.09.27.04.24.06 +2021.09.27.04.24.34 +2021.09.27.04.24.35 +2021.09.27.11.28.37 +2021.09.27.18.34.32 +2021.09.28 +2021.09.28.08.30.34 +2021.09.28.08.56.09 +2021.09.28.12.10.28 +2021.09.28.15.07.49 +2021.09.28.17.32.49 +2021.09.28.18.18.24 +2021.09.28.19.51.35 +2021.09.29 +2021.09.29.19.08.16 +2021.09.29.19.57.52 +2021.09.3 +2021.09.30 +2021.09.30.13.35.17 +2021.09.30.18.20.56 +2021.09.30.18.26.11 +2021.09.30.20.35.40 +2021.09.4 +2021.09.5 +2021.1 +2021.1.0 +2021.1.1 +2021.1.11 +2021.1.13 +2021.1.14 +2021.1.15 +2021.1.16 +2021.1.2 +2021.1.20 +2021.1.21 +2021.1.24.1 +2021.1.25 +2021.1.28 +2021.1.3 +2021.1.4 +2021.1.5 +2021.1.6 +2021.1.7 +2021.1.8 +2021.10 +2021.10.0 +2021.10.01.10.31.28 +2021.10.02.18.18.33 +2021.10.02.19.18.39 +2021.10.02.19.19.46 +2021.10.02.19.22.52 +2021.10.02.19.28.15 +2021.10.02.19.29.40 +2021.10.02.19.31.29 +2021.10.02.19.35.26 +2021.10.02.19.43.30 +2021.10.02.20.04.23 +2021.10.03.04.50.14 +2021.10.03.04.50.38 +2021.10.03.04.50.56 +2021.10.03.14.57.11 +2021.10.04.00 +2021.10.04.01.54.40 +2021.10.04.18.35.53 +2021.10.04.19.42.48 +2021.10.04.21.09.37 +2021.10.04.21.54.16 +2021.10.04.21.54.47 +2021.10.05.12.13.40 +2021.10.05.13.41.55 +2021.10.05.15.34.59 +2021.10.05.23.24.58 +2021.10.06 +2021.10.06.07.16.42 +2021.10.06.07.17.19 +2021.10.06.07.17.27 +2021.10.06.08.16.35 +2021.10.06.22.07.41 +2021.10.07.13.33.31 +2021.10.07.13.38.58 +2021.10.08.08.39.03 +2021.10.08.16.45.02 +2021.10.09 +2021.10.1 +2021.10.10 +2021.10.10.22.03.30 +2021.10.11 +2021.10.12 +2021.10.12.12.38.27 +2021.10.12.19.05.13 +2021.10.13 +2021.10.13.14.39.09 +2021.10.13.14.39.56 +2021.10.13.14.41.18 +2021.10.13.18.53.40 +2021.10.13.18.54.36 +2021.10.13.20.25.29 +2021.10.13.20.25.34 +2021.10.13.20.28.53 +2021.10.14 +2021.10.15 +2021.10.16.13.24.41 +2021.10.16.13.25.24 +2021.10.16.20.31.55 +2021.10.17 +2021.10.17.05.19.28 +2021.10.17.05.19.58 +2021.10.17.05.23.58 +2021.10.17.05.24.25 +2021.10.18 +2021.10.18.00 +2021.10.18.05.45.34 +2021.10.18.15.47.12 +2021.10.19.00.27.40 +2021.10.19.12.53.40 +2021.10.19.14.43.13 +2021.10.19.19.34.43 +2021.10.19.19.50.47 +2021.10.2 +2021.10.20.09.54.11 +2021.10.20.09.55.13 +2021.10.20.09.58.59 +2021.10.20.10.45.40 +2021.10.20.11.00.47 +2021.10.20.15.45.32 +2021.10.20.17.23.01 +2021.10.20.19.04.24 +2021.10.20.19.04.40 +2021.10.20.19.04.48 +2021.10.20.19.08.40 +2021.10.20.19.09.48 +2021.10.20.19.16.36 +2021.10.20.22.24.36 +2021.10.21 +2021.10.21.11.39.39 +2021.10.22 +2021.10.22.07.28.38 +2021.10.22.07.31.20 +2021.10.22.11.06.24 +2021.10.22.17.22.02 +2021.10.22.20.56.07 +2021.10.23 +2021.10.24 +2021.10.25 +2021.10.25.00 +2021.10.25.16.23.24 +2021.10.25.16.37.45 +2021.10.25.23.28.29 +2021.10.26 +2021.10.27 +2021.10.27.16.34.33 +2021.10.27.19.55.21 +2021.10.28.00.11.12 +2021.10.28.10.17.27 +2021.10.28.11.11.18 +2021.10.28.15.03.29 +2021.10.29 +2021.10.29.07.22.09 +2021.10.29.07.34.22 +2021.10.3 +2021.10.30.01.57.10 +2021.10.30.10.37.17 +2021.10.30.13.29.36 +2021.10.30.13.31.05 +2021.10.30.17.45.23 +2021.10.31 +2021.10.31.18.51.35 +2021.10.4 +2021.10.5 +2021.10.5.0 +2021.10.6 +2021.10.7 +2021.10.7.1 +2021.10.7.23.40.37 +2021.10.8 +2021.10.8.0 +2021.10.8.1 +2021.10.8.2 +2021.10.8.3 +2021.10.9 +2021.1006 +2021.11 +2021.11.0 +2021.11.001 +2021.11.01 +2021.11.01.00 +2021.11.01.03.37.22 +2021.11.01.14.38.46 +2021.11.01.14.43.27 +2021.11.01.16.15.27 +2021.11.01.20.14.43 +2021.11.01.21.58.36 +2021.11.02 +2021.11.02.10.51.41 +2021.11.02.13.16.49 +2021.11.02.13.43.59 +2021.11.02.13.44.19 +2021.11.02.13.47.38 +2021.11.02.14.58.36 +2021.11.02.15.31.35 +2021.11.02.15.38.33 +2021.11.02.19.51.37 +2021.11.02.20.02.01 +2021.11.02.20.53.42 +2021.11.03.14.42.24 +2021.11.03.23.52.26 +2021.11.04 +2021.11.04.13.17.13 +2021.11.04.14.02.03 +2021.11.04.14.33.12 +2021.11.04.20.47.06 +2021.11.05.06.04.56 +2021.11.05.06.07.08 +2021.11.05.13.08.42 +2021.11.05.13.41.56 +2021.11.05.13.42.27 +2021.11.05.14.12.54 +2021.11.05.16.04.24 +2021.11.05.19.42.11 +2021.11.05.20.51.02 +2021.11.06 +2021.11.07 +2021.11.07.11.04.46 +2021.11.07.12.06.04 +2021.11.08.00 +2021.11.08.01.51.47 +2021.11.08.12.30.35 +2021.11.08.12.30.51 +2021.11.08.12.31.14 +2021.11.08.14.56.40 +2021.11.08.16.07.04 +2021.11.08.17.18.53 +2021.11.08.17.22.51 +2021.11.09 +2021.11.09.00.35.45 +2021.11.09.08.32.45 +2021.11.09.11.27.09 +2021.11.09.12.53.33 +2021.11.09.13.41.48 +2021.11.09.16.16.13 +2021.11.09.16.18.45 +2021.11.09.18.53.34 +2021.11.1 +2021.11.10 +2021.11.10.00.44.44 +2021.11.10.11.11.54 +2021.11.10.13.02.31 +2021.11.10.17.41.07 +2021.11.10.20.30.57 +2021.11.10.20.45.22 +2021.11.10.21.33.30 +2021.11.11 +2021.11.11.00.26.27 +2021.11.11.06.30.39 +2021.11.11.06.31.57 +2021.11.11.10.04.21 +2021.11.11.14.27.22 +2021.11.11.16.10.05 +2021.11.11.16.34.59 +2021.11.11.20.25.44 +2021.11.12 +2021.11.12.06.15.55 +2021.11.12.13.49.06 +2021.11.12.14.40.22 +2021.11.12.17.05.18 +2021.11.13.09.50.22 +2021.11.13.15.55.10 +2021.11.14 +2021.11.14.11.55.25 +2021.11.14.20.28.34 +2021.11.15 +2021.11.15.00 +2021.11.15.20.12.07 +2021.11.16 +2021.11.16.02.03.58 +2021.11.16.06.49.33 +2021.11.16.06.49.48 +2021.11.16.06.49.57 +2021.11.16.06.51.28 +2021.11.16.16.42.08 +2021.11.16.18.04.56 +2021.11.16.19.19.07 +2021.11.16.23.41.17 +2021.11.17 +2021.11.17.05.54.26 +2021.11.17.05.55.09 +2021.11.17.08.26.55 +2021.11.17.08.30.27 +2021.11.17.12.43.31 +2021.11.17.14.11.48 +2021.11.17.14.13.46 +2021.11.17.14.15.31 +2021.11.17.14.18.28 +2021.11.17.15.51.01 +2021.11.18 +2021.11.18.06.33.30 +2021.11.18.06.44.41 +2021.11.18.06.46.36 +2021.11.18.08.49.12 +2021.11.18.13.47.51 +2021.11.18.13.48.29 +2021.11.18.16.03.05 +2021.11.18.16.03.34 +2021.11.18.16.04.16 +2021.11.18.16.04.58 +2021.11.18.16.06.03 +2021.11.18.16.07.31 +2021.11.18.16.59.41 +2021.11.19.08.07.16 +2021.11.19.08.14.35 +2021.11.19.08.29.02 +2021.11.19.08.29.04 +2021.11.19.19.43.21 +2021.11.19.19.47.13 +2021.11.2 +2021.11.20 +2021.11.20.13.24.25 +2021.11.20.16.12.52 +2021.11.20.19.20.32 +2021.11.21 +2021.11.22 +2021.11.22.14.12.01 +2021.11.22.15.24.15 +2021.11.23 +2021.11.23.03.23.53 +2021.11.23.03.24.17 +2021.11.23.1 +2021.11.23.17.03.49 +2021.11.23.19.18.04 +2021.11.23.20.00.06 +2021.11.23.20.00.37 +2021.11.25 +2021.11.25.19.10.54 +2021.11.25.20.09.27 +2021.11.26 +2021.11.26.06.16.55 +2021.11.26.23.11.41 +2021.11.27 +2021.11.27.20.04.21 +2021.11.28 +2021.11.28.13.12.27 +2021.11.28.20.57.40 +2021.11.28.21.09.04 +2021.11.29 +2021.11.29.00 +2021.11.29.12.56.12 +2021.11.29.15.18.09 +2021.11.29.20.15.42 +2021.11.29.20.33.06 +2021.11.29.22.05.59 +2021.11.29.22.17.03 +2021.11.3 +2021.11.30 +2021.11.30.01.02.30 +2021.11.30.01.13.34 +2021.11.30.01.13.56 +2021.11.30.01.14.29 +2021.11.30.01.14.50 +2021.11.30.01.15.24 +2021.11.30.01.21.31 +2021.11.30.02.56.36 +2021.11.30.08.47.36 +2021.11.4 +2021.11.4.0 +2021.11.4.15.26.3 +2021.11.5 +2021.11.5.post0 +2021.11.7 +2021.11.9 +2021.1112 +2021.1113 +2021.1114 +2021.12 +2021.12.0 +2021.12.01.07.22.59 +2021.12.01.12.44.56 +2021.12.01.14.55.33 +2021.12.01.14.57.30 +2021.12.01.20.09.37 +2021.12.01.21.50.36 +2021.12.01.23.47.03 +2021.12.01.23.52.30 +2021.12.02.07.24.04 +2021.12.02.07.24.50 +2021.12.02.07.27.15 +2021.12.02.13.07.22 +2021.12.02.17.12.32 +2021.12.03.06.35.07 +2021.12.03.06.35.54 +2021.12.03.06.37.06 +2021.12.03.08.21.30 +2021.12.05.10.31.58 +2021.12.05.20.29.01 +2021.12.05.20.40.01 +2021.12.06 +2021.12.07.05.32.24 +2021.12.07.08.05.09 +2021.12.07.13.39.21 +2021.12.08.05.46.13 +2021.12.08.05.59.51 +2021.12.08.09.24.44 +2021.12.08.18.31.22 +2021.12.09.08.18.11 +2021.12.09.09.29.57 +2021.12.09.09.29.59 +2021.12.09.09.30.27 +2021.12.09.09.30.48 +2021.12.09.09.36.11 +2021.12.09.14.59.11 +2021.12.1 +2021.12.10 +2021.12.10.07.17.27 +2021.12.10.14.02.49 +2021.12.10.18.18.24 +2021.12.11.13.00.52 +2021.12.11.13.03.49 +2021.12.11.13.14.30 +2021.12.11.19.41.15 +2021.12.11.19.51.40 +2021.12.11.20.48.53 +2021.12.12 +2021.12.13.11.03.33 +2021.12.14 +2021.12.14.06.33.15 +2021.12.14.07.11.41 +2021.12.14.08.51.52 +2021.12.14.17.54.38 +2021.12.14.22.09.21 +2021.12.14.23.47.20 +2021.12.15.01.15.50 +2021.12.15.01.15.53 +2021.12.15.02.16.59 +2021.12.15.02.32.19 +2021.12.15.03.46.39 +2021.12.15.14.57.56 +2021.12.15.23.54.31 +2021.12.16 +2021.12.16.23.38.36 +2021.12.17 +2021.12.17.10.55.22 +2021.12.17.16.44.26 +2021.12.18.06.45.12 +2021.12.19 +2021.12.2 +2021.12.20.00 +2021.12.20.19.09.43 +2021.12.21 +2021.12.21.12.48.53 +2021.12.21.14.59.39 +2021.12.22.16.51.01 +2021.12.22.18.14.36 +2021.12.23 +2021.12.23.19.21.51 +2021.12.24 +2021.12.24.10.42.15 +2021.12.24.10.42.22 +2021.12.25.08.18.31 +2021.12.25.08.18.48 +2021.12.27 +2021.12.27.00 +2021.12.28 +2021.12.28.08.47.33 +2021.12.29 +2021.12.29.09.38.02 +2021.12.29.20.24.27 +2021.12.29.20.25.32 +2021.12.3 +2021.12.30.03.08.12 +2021.12.30.12.59.11 +2021.12.30.13.02.53 +2021.12.30.13.14.56 +2021.12.31.07.26.12 +2021.12.31.11.59.58 +2021.12.4 +2021.12.5 +2021.12.6 +2021.12.7 +2021.12.8 +2021.12.9 +2021.2 +2021.2.0 +2021.2.0rc2 +2021.2.1 +2021.2.10 +2021.2.11 +2021.2.12 +2021.2.13 +2021.2.14 +2021.2.16 +2021.2.17 +2021.2.1rc1 +2021.2.2 +2021.2.21 +2021.2.21b25 +2021.2.22 +2021.2.23 +2021.2.26 +2021.2.2rc1 +2021.2.3 +2021.2.4 +2021.2.4.1 +2021.2.4rc1 +2021.2.5 +2021.2.582707922 +2021.2.6 +2021.2.7 +2021.2.8 +2021.2.8.1 +2021.2.9 +2021.2.post0 +2021.3 +2021.3.0 +2021.3.1 +2021.3.11 +2021.3.11.10.32.22 +2021.3.13 +2021.3.14 +2021.3.16 +2021.3.17 +2021.3.17.16.51.43 +2021.3.2 +2021.3.21 +2021.3.22 +2021.3.24 +2021.3.25 +2021.3.3 +2021.3.31 +2021.3.4 +2021.3.5 +2021.3.6 +2021.3.6.15.24.2 +2021.3.680753044 +2021.3.7 +2021.3.8 +2021.4 +2021.4.0 +2021.4.1 +2021.4.10 +2021.4.11b34 +2021.4.11b9 +2021.4.13 +2021.4.14 +2021.4.17 +2021.4.18 +2021.4.24 +2021.4.26 +2021.4.28 +2021.4.29 +2021.4.4 +2021.4.4.21.44.8 +2021.4.5.14.42.35 +2021.4.7 +2021.4.765268190 +2021.4.8 +2021.5 +2021.5.0 +2021.5.1 +2021.5.10 +2021.5.11 +2021.5.12 +2021.5.13 +2021.5.16 +2021.5.17 +2021.5.19 +2021.5.2 +2021.5.24 +2021.5.25 +2021.5.26 +2021.5.27.641 +2021.5.28 +2021.5.29 +2021.5.3 +2021.5.30 +2021.5.31 +2021.5.5 +2021.5.6 +2021.5.9 +2021.6 +2021.6.0 +2021.6.0a15 +2021.6.1 +2021.6.10 +2021.6.12 +2021.6.14 +2021.6.16 +2021.6.18 +2021.6.2 +2021.6.21.0 +2021.6.3 +2021.6.5 +2021.6.6 +2021.6.8 +2021.6.9.13.34.11 +2021.6_1 +2021.7 +2021.7.0 +2021.7.1 +2021.7.10 +2021.7.11 +2021.7.12.0 +2021.7.13.7.29.27 +2021.7.14.0 +2021.7.17 +2021.7.18 +2021.7.18.0 +2021.7.19 +2021.7.2 +2021.7.21 +2021.7.21.3 +2021.7.23 +2021.7.24 +2021.7.25.0 +2021.7.28 +2021.7.28.0 +2021.7.28b40 +2021.7.29 +2021.7.3 +2021.7.30 +2021.7.31b41 +2021.7.4 +2021.7.5 +2021.7.5b38 +2021.7.6 +2021.7.7 +2021.7.8 +2021.8 +2021.8.0 +2021.8.1 +2021.8.1.0 +2021.8.10.0 +2021.8.11b42 +2021.8.12 +2021.8.15.0 +2021.8.16.0 +2021.8.17 +2021.8.17.1 +2021.8.17b10 +2021.8.17b43 +2021.8.18 +2021.8.2 +2021.8.2.0 +2021.8.2.1 +2021.8.21 +2021.8.24 +2021.8.25.12.59.41 +2021.8.26 +2021.8.26.15.40.13 +2021.8.27 +2021.8.28 +2021.8.29 +2021.8.3 +2021.8.3.0 +2021.8.3.1 +2021.8.3.3 +2021.8.30 +2021.8.30.10.33.11 +2021.8.30.10.8.27 +2021.8.31 +2021.8.4.0 +2021.8.5 +2021.8.8 +2021.8.8.0 +2021.9 +2021.9.0 +2021.9.1 +2021.9.11 +2021.9.12 +2021.9.14 +2021.9.19 +2021.9.2 +2021.9.21 +2021.9.22 +2021.9.23 +2021.9.24 +2021.9.26 +2021.9.3 +2021.9.3.15.46.13 +2021.9.30 +2021.9.7 +2021.9.8 +2021.9.8.16.34.17 +20210000.2 +20210000.3 +20210000.4 +20210000.5 +20210000.6 +20210000.7 +20210000.8 +20210102.00.51.07 +20210105.19.56.05 +20210108.02.17.20 +20210108.04.26.17 +20210108.08.21.29 +20210108.13.24.12 +20210110.19.04.49 +20210112.006 +20210112.19.57.36 +20210113.16.44.02 +20210113.17.02.50 +20210115.02.16.22 +20210115.03.22.51 +20210115.12.20.49 +20210115.14.50.57 +20210115.15.43.54 +20210116.19.10.46 +20210121 +20210121.15.56.33 +20210121.20.06.44 +20210124.03.42.57 +20210125.16.44.43 +20210126.16.57.31 +20210127.23.39.54 +20210128.12.03.21 +20210128.12.03.56 +20210128.14.04.15 +20210128.14.24.20 +20210131.00.15.24 +20210201 +20210201.07.13.24 +20210201.15.55.08 +20210202.09.24.34 +20210202.10.00.43 +20210202.12.20.44 +20210203.19.10.38 +20210208.21.14.19 +20210208.23.14.50 +20210212 +20210214 +20210215.10.16.34 +20210216.16.42.04 +20210216.19.02.30 +20210217.14.12.40 +20210218.10.46.08 +20210218.12.04.41 +20210222 +20210223.14.15.12 +20210224.15.35.00 +20210225.22.08.08 +20210227.18.40.55 +20210228.15.56.43 +20210303.22.35.50 +20210305.18.36.31 +20210309.16.52.40 +20210310 +20210311.15.21.12 +20210316.01.11.00 +20210316.08.08.13 +20210318.22.45.14 +20210322.19.32.40 +20210323183018 +20210324.0 +20210324.1 +20210324.14.43.57 +20210324.2 +20210325 +20210328.19.53.44 +20210401.09.07.52 +20210401.09.28.16 +20210401.09.42.39 +20210402.10.23.36 +20210406.10.37.11 +20210407.13.35.54 +20210407.19.40.12 +20210408.12.11.25 +20210411.14.41.52 +20210412.17.10.53 +20210413.15.08.36 +20210413.15.41.36 +20210413.22.32.05 +20210413.23.10.14 +20210414.20.14.38 +20210415 +20210419.0 +20210422 +20210428.17.55.05 +20210429.05.51.05 +20210503 +20210503.0 +20210503.16.24.35 +20210503.16.24.43 +20210510.0 +20210510.16.10.10 +20210513.19.03.05 +20210514 +20210518.0 +20210518.05.38.16 +20210522.14.45.50 +20210528.07.43.59 +20210529.16.24.44 +20210601.0 +20210602 +20210603 +20210605 +20210607.0 +20210607.14.04.52 +20210607.18.59.32 +20210608 +20210611 +20210611.09.28.12 +20210611.11.15.13 +20210614.0 +20210614.09.43.24 +20210615 +20210616.00.03.58 +20210616.10.39.26 +20210616.10.41.11 +20210618.18.33.48 +20210620 +20210621.09.51.19 +20210621.10.58.06 +20210622 +20210623 +20210624 +20210624.05.11.16 +20210625 +20210628.0 +20210629 +20210629.04.48.38 +20210706 +20210707.07.18.35 +20210707.08.32.29 +20210709 +20210712.0 +20210713 +20210715 +20210715.19.00.25 +20210716 +20210716.00.13.07 +20210719.21.34.15 +20210720 +20210720.0 +20210721 +20210722 +20210722.09.03.22 +20210722.11.02.29 +20210722.11.32.12 +20210723.15.27.31 +20210724 +20210724.11.19.00 +20210726.08.02.39 +20210727 +20210728 +20210728.17.28.20 +20210728.19.03.57 +20210729.03.47.45 +20210729.03.48.17 +20210729.09.00.28 +20210729.10.42.54 +20210729.10.45.01 +20210806.19.18.10 +20210806.19.31.16 +20210807.08.23.00 +20210810 +20210811 +20210811.20.28.45 +20210812 +20210812.05.13.08 +20210816.13.23.04 +20210818 +20210818.12.29.35 +20210819 +20210820.21.03.38 +20210821 +20210821.05.07.55 +20210821.11.21.34 +20210822 +20210823 +20210823.0 +20210823.13.43.14 +20210824.03.28.15 +20210825 +20210826 +20210826.08.07.45 +20210826.22.22.33 +20210826.23.23.19 +20210826.23.25.21 +20210827.20.13.46 +20210829.23.20.27 +20210830.12.29.40 +20210831.15.55.07 +20210903.11.39.04 +20210904 +20210904.10.03.53 +20210907 +20210908 +20210908.14.12.10 +20210909.15.56.47 +20210910 +20210911.08.26.12 +20210913.19.20.31 +20210914 +20210914.05.32.54 +20210915.09.11.11 +20210915.20.01.56 +20210915.21.08.19 +20210916.14.45.39 +20210917.04.45.08 +20210917.22.32.04 +20210918.12.31.35 +20210919 +20210920.20.43.07 +20210922.15.39.45 +20210922.16.57.36 +20210923.0 +20210925.0 +20210926.11.02.19 +20210927.0 +20210927.18.51.54 +20210927.22.13.33 +20210928.1 +20210930.0 +20210930.14.01.57 +20210930.16.20.00 +20211001 +20211001.12.31.09 +20211002.0 +20211005.0 +20211005.21.52.10 +20211006 +20211006.0 +20211007.15.42.23 +20211009.0 +20211012 +20211013.0 +20211013.18.18.49 +20211016.19.53.32 +20211017.19.56.43 +20211018.10.10.05 +20211019.0 +20211021.01.34.40 +20211021.09.06.48 +20211022 +20211022.01.00.43 +20211022.21.53.03 +20211023.17.27.08 +20211024.1 +20211024.17.30.53 +20211026.0 +20211026.23.16.01 +20211027.17.49.07 +20211027.17.50.45 +20211028.07.46.01 +20211029.13.56.28 +20211029.22.10.01 +20211101.0 +20211102.0 +20211103.15.46.37 +20211104.19.06.09 +20211105.13.27.02 +20211106.22.33.02 +20211109.0 +20211110.18.39.16 +20211111.10.18.16 +20211111.17.16.28 +20211111.20.28.57 +20211112.01.25.30 +20211112.06.21.31 +20211112.19.46.23 +20211116.0 +20211117.0 +20211117.12.04.52 +20211117.20.04.19 +20211117.21.03.02 +20211117.21.58.29 +20211118.0 +20211119.09.03.32 +20211119.11.26.38 +20211121.00.06.30 +20211122.06.16.50 +20211123.0 +20211125.12.16.54 +20211125.12.27.26 +20211125.20.27.11 +20211128.0 +20211128.00.08.11 +20211129.0 +20211129.1 +20211130.0 +20211130.01.48.03 +20211130.01.50.17 +20211130.22.43.34 +20211201.13.55.17 +20211201.17.42.33 +20211202.20.12.42 +20211202.23.39.06 +20211203.01.01.51 +20211203.15.18.54 +20211204.14.48.58 +20211206.21.52.16 +20211207.1 +20211207.20.14.40 +20211208.01.10.47 +20211209.0 +20211209.19.32.10 +20211214.1 +20211214.2 +20211215.12.14.32 +20211215.12.27.06 +20211215.12.44.53 +20211215.13.07.04 +20211217.03.46.46 +20211217.16.42.20 +20211218.12.40.33 +20211218.14.05.09 +20211218.15.23.11 +20211219.0 +20211221.0 +20211221.15.22.29 +20211222 +20211226.00.06.59 +2021_0511 +2021_0521 +2021_0525 +2021_0526 +2021_10.12 +2021_6.12 +2021a +2021b +2021c +2021d +2021e +2022 +2022.0 +2022.0.0 +2022.0.0a10 +2022.0.0a9 +2022.0.1 +2022.0.10 +2022.0.11 +2022.0.12 +2022.0.13 +2022.0.14 +2022.0.15 +2022.0.16 +2022.0.17 +2022.0.2 +2022.0.3 +2022.0.4 +2022.0.5 +2022.0.6 +2022.0.7 +2022.0.8 +2022.0.9 +2022.01 +2022.01.01 +2022.01.02.09.41.34 +2022.01.02.17.59.50 +2022.01.03.00 +2022.01.03.16.37.21 +2022.01.04 +2022.01.04.09.05.28 +2022.01.04.16.06.57 +2022.01.04.17.59.36 +2022.01.04.18.50.59 +2022.01.04.19.00.57 +2022.01.05.06.51.46 +2022.01.05.07.11.36 +2022.01.05.11.50.48 +2022.01.05.14.36.24 +2022.01.07 +2022.01.07.08.36.56 +2022.01.07.16.19.52 +2022.01.07.19.03.47 +2022.01.07.22.11.42 +2022.01.08 +2022.01.08.03.20.39 +2022.01.08.08.10.13 +2022.01.08.10.20.55 +2022.01.08.14.07.12 +2022.01.08.19.53.23 +2022.01.09 +2022.01.09.03.57.37 +2022.01.09.03.57.47 +2022.01.09.11.48.37 +2022.01.09.13.08.44 +2022.01.09.15.48.10 +2022.01.1 +2022.01.10 +2022.01.10.00 +2022.01.10.13.01.59 +2022.01.11.08.53.25 +2022.01.11.20.10.31 +2022.01.12.13.10.32 +2022.01.12.13.11.41 +2022.01.12.20.51.50 +2022.01.13.01.57.35 +2022.01.13.20.46.10 +2022.01.13.23.27.45 +2022.01.14 +2022.01.14.18.13.59 +2022.01.14.19.02.00 +2022.01.14.19.02.28 +2022.01.14.19.15.38 +2022.01.14.19.19.28 +2022.01.14.22.50.49 +2022.01.15.11.11.15 +2022.01.17.00 +2022.01.17.15.20.04 +2022.01.17.15.36.21 +2022.01.17.16.16.21 +2022.01.17.22.01.08 +2022.01.18 +2022.01.18.15.20.32 +2022.01.18.20.31.32 +2022.01.19 +2022.01.2 +2022.01.20 +2022.01.20.01.14.54 +2022.01.20.01.15.08 +2022.01.20.05.32.47 +2022.01.20.12.50.15 +2022.01.20.21.36.34 +2022.01.21.17.08.34 +2022.01.21.21.03.24 +2022.01.21.21.05.07 +2022.01.21.21.07.32 +2022.01.21.21.21.16 +2022.01.22.07.12.59 +2022.01.22.07.13.04 +2022.01.22.07.13.29 +2022.01.22.07.50.08 +2022.01.22.20.21.55 +2022.01.22.21.00.53 +2022.01.22.21.08.53 +2022.01.24.00 +2022.01.24.17.45.12 +2022.01.25.10.09.46 +2022.01.25.10.58.41 +2022.01.25.13.00.06 +2022.01.26 +2022.01.26.09.22.36 +2022.01.26.20.27.23 +2022.01.27 +2022.01.27.11.49.45 +2022.01.27.16.51.01 +2022.01.28.02.01.47 +2022.01.28.10.00.37 +2022.01.28.10.42.27 +2022.01.28.17.06.23 +2022.01.28.19.47.10 +2022.01.29.15.10.18 +2022.01.31 +2022.01.31.00 +2022.01.31.19.13.54 +2022.01.31.20.15.53 +2022.02 +2022.02.01 +2022.02.01.00.07.31 +2022.02.01.02.45.46 +2022.02.01.07.05.00 +2022.02.01.07.05.27 +2022.02.01.12.09.01 +2022.02.01.13.45.55 +2022.02.01.15.47.50 +2022.02.02 +2022.02.02.01.33.58 +2022.02.02.14.18.16 +2022.02.02.14.34.19 +2022.02.02.gr3.8 +2022.02.02.gr3.9 +2022.02.03.07.42.55 +2022.02.03.08.02.24 +2022.02.03.08.02.56 +2022.02.03.08.05.34 +2022.02.03.09.37.06 +2022.02.03.14.54.35 +2022.02.03.15.44.48 +2022.02.03.18.02.21 +2022.02.03.19.17.39 +2022.02.04 +2022.02.04.12.07.05 +2022.02.04.12.07.36 +2022.02.05.07.33.31 +2022.02.05.21.28.19 +2022.02.06.08.14.37 +2022.02.06.08.21.47 +2022.02.06.20.08.11 +2022.02.06.21.39.22 +2022.02.06.21.40.56 +2022.02.07.00 +2022.02.07.00.17.20 +2022.02.07.06.12.16 +2022.02.08.09.38.24 +2022.02.10.16.19.14 +2022.02.11 +2022.02.11.06.19.44 +2022.02.11.06.28.12 +2022.02.11.12.54.35 +2022.02.11.13.04.17 +2022.02.11.13.10.37 +2022.02.11.13.56.39 +2022.02.11.15.44.54 +2022.02.11.19.52.51 +2022.02.12 +2022.02.12.07.13.34 +2022.02.12.08.56.54 +2022.02.13.01.05.12 +2022.02.13.04.39.31 +2022.02.13.21.22.14 +2022.02.13.22.17.40 +2022.02.13.22.34.03 +2022.02.13.22.34.12 +2022.02.13.22.45.33 +2022.02.14 +2022.02.14.00 +2022.02.14.00.54.36 +2022.02.14.04.25.21 +2022.02.14.04.40.54 +2022.02.14.12.37.30 +2022.02.14.13.08.13 +2022.02.14.13.20.49 +2022.02.15.09.45.08 +2022.02.15.09.52.15 +2022.02.15.09.56.12 +2022.02.15.10.00.06 +2022.02.15.14.05.09 +2022.02.15.20.00.46 +2022.02.17 +2022.02.17.00.41.37 +2022.02.17.00.42.15 +2022.02.17.06.22.45 +2022.02.17.15.32.38 +2022.02.17.23.50.18 +2022.02.18 +2022.02.18.13.24.38 +2022.02.18.14.45.27 +2022.02.18.15.27.34 +2022.02.18.23.09.53 +2022.02.18.23.56.39 +2022.02.19.23.26.53 +2022.02.2 +2022.02.21.00 +2022.02.21.14.57.59 +2022.02.21.20.20.02 +2022.02.21.21.55.10 +2022.02.22.10.43.58 +2022.02.22.10.45.59 +2022.02.22.12.32.52 +2022.02.22.16.45.10 +2022.02.22.17.02.26 +2022.02.23 +2022.02.23.12.25.49 +2022.02.23.13.44.17 +2022.02.23.17.48.45 +2022.02.24 +2022.02.24.15.28.03 +2022.02.25.03.59.17 +2022.02.25.15.35.46 +2022.02.28.00 +2022.02.28.13.05.22 +2022.02.3 +2022.03 +2022.03.0 +2022.03.01.16.24.47 +2022.03.01.16.41.38 +2022.03.01.17.46.00 +2022.03.01.19.08.06 +2022.03.01.23.33.50 +2022.03.02.15.49.21 +2022.03.02.18.03.40 +2022.03.03 +2022.03.03.08.23.08 +2022.03.03.08.23.49 +2022.03.03.08.24.06 +2022.03.03.08.25.15 +2022.03.03.08.26.51 +2022.03.03.11.30.49 +2022.03.03.19.18.22 +2022.03.03.19.40.07 +2022.03.03.21.25.39 +2022.03.04.01.20.32 +2022.03.04.03.08.50 +2022.03.04.08.01.08 +2022.03.04.08.01.42 +2022.03.04.09.47.34 +2022.03.04.15.23.07 +2022.03.04.17.12.12 +2022.03.04.19.31.39 +2022.03.05.07.13.09 +2022.03.05.13.20.38 +2022.03.06 +2022.03.07 +2022.03.07.00 +2022.03.07.16.58.03 +2022.03.08 +2022.03.08.07.37.14 +2022.03.08.14.05.14 +2022.03.08.16.47.58 +2022.03.08.16.54.15 +2022.03.08.21.07.12 +2022.03.09 +2022.03.09.08.50.50 +2022.03.09.08.54.39 +2022.03.1 +2022.03.10 +2022.03.10.08.54.06 +2022.03.10.14.25.15 +2022.03.10.18.35.59 +2022.03.12.18.14.42 +2022.03.12.18.19.48 +2022.03.13 +2022.03.13.02.29.16 +2022.03.13.06.57.35 +2022.03.13.15.54.52 +2022.03.13.16.57.33 +2022.03.14.00 +2022.03.14.13.26.11 +2022.03.14.13.58.01 +2022.03.15.07.59.01 +2022.03.15.10.12.29 +2022.03.16.03.42.14 +2022.03.16.15.21.47 +2022.03.16.19.59.50 +2022.03.16.23.15.25 +2022.03.17.02.30.57 +2022.03.17.03.37.43 +2022.03.17.11.17.55 +2022.03.17.19.39.04 +2022.03.17.19.40.19 +2022.03.17.19.45.15 +2022.03.18.12.16.01 +2022.03.18.14.08.59 +2022.03.18.16.40.09 +2022.03.18.16.40.38 +2022.03.18.16.41.31 +2022.03.19.12.57.49 +2022.03.19.14.12.41 +2022.03.19.14.15.37 +2022.03.19.14.15.50 +2022.03.19.14.19.35 +2022.03.2 +2022.03.20.11.58.24 +2022.03.20.19.31.27 +2022.03.21.00 +2022.03.21.01.01.44 +2022.03.21.04.26.58 +2022.03.21.21.49.04 +2022.03.22 +2022.03.22.00.01.46 +2022.03.22.12.57.56 +2022.03.22.14.49.54 +2022.03.22.16.50.54 +2022.03.22.19.17.12 +2022.03.23.07.48.24 +2022.03.23.15.32.25 +2022.03.23.16.41.17 +2022.03.23.20.27.24 +2022.03.24 +2022.03.24.20.31.54 +2022.03.24.20.44.18 +2022.03.24.20.51.15 +2022.03.25.05.47.39 +2022.03.25.06.21.54 +2022.03.25.14.56.02 +2022.03.25.19.30.32 +2022.03.25.20.30.42 +2022.03.28.00 +2022.03.28.15.22.23 +2022.03.28.15.31.32 +2022.03.28.19.38.17 +2022.03.28.22.11.58 +2022.03.29.23.54.57 +2022.03.3 +2022.03.30 +2022.03.30.03.10.21 +2022.03.30.08.09.52 +2022.03.30.10.02.27 +2022.03.30.10.05.09 +2022.03.30.10.05.23 +2022.03.30.12.49.41 +2022.03.30.15.14.58 +2022.03.30.18.03.29 +2022.03.31.01.43.29 +2022.03.31.06.39.05 +2022.03.31.07.03.03 +2022.03.31.10.54.08 +2022.03.31.10.54.25 +2022.03.31.11.30.08 +2022.03.31.11.51.51 +2022.03.31.15.11.41 +2022.03.31.16.27.41 +2022.03.31.18.34.20 +2022.03.31.20.32.14 +2022.03.4 +2022.03.5 +2022.04 +2022.04.0 +2022.04.01 +2022.04.01.00.07.17 +2022.04.01.12.17.55 +2022.04.01.12.21.46 +2022.04.01.17.34.01 +2022.04.01.20.05.02 +2022.04.01.23.36.23 +2022.04.02.03.03.45 +2022.04.02.04.11.01 +2022.04.02.19.04.47 +2022.04.03.06.07.57 +2022.04.03.06.15.38 +2022.04.03.06.16.02 +2022.04.03.14.32.43 +2022.04.04.00 +2022.04.04.17.10.15 +2022.04.04.18.29.32 +2022.04.04.20.33.41 +2022.04.04.21.55.16 +2022.04.04.22.18.08 +2022.04.05.07.10.07 +2022.04.05.10.19.05 +2022.04.05.12.13.43 +2022.04.05.18.07.10 +2022.04.06 +2022.04.06.00.23.40 +2022.04.06.00.27.40 +2022.04.06.02.32.01 +2022.04.06.03.27.58 +2022.04.06.11.51.27 +2022.04.06.14.57.25 +2022.04.06.14.58.02 +2022.04.06.15.06.15 +2022.04.06.19.57.51 +2022.04.06.21.38.29 +2022.04.07.02.30.44 +2022.04.07.12.22.25 +2022.04.07.12.27.50 +2022.04.07.15.54.08 +2022.04.07.16.47.44 +2022.04.07.20.54.50 +2022.04.08.02.48.37 +2022.04.08.10.49.38 +2022.04.08.12.39.08 +2022.04.08.13.19.51 +2022.04.08.18.53.04 +2022.04.08.22.00.32 +2022.04.08.23.01.38 +2022.04.09.05.47.49 +2022.04.09.06.33.53 +2022.04.09.06.48.49 +2022.04.09.06.52.04 +2022.04.09.16.11.09 +2022.04.09.19.01.16 +2022.04.1 +2022.04.10.06.46.21 +2022.04.10.07.10.26 +2022.04.10.10.26.59 +2022.04.10.16.18.16 +2022.04.10.22.41.35 +2022.04.11.00 +2022.04.11.11.31.00 +2022.04.11.13.50.18 +2022.04.12 +2022.04.12.10.16.02 +2022.04.12.16.55.22 +2022.04.12.19.15.38 +2022.04.12.19.17.14 +2022.04.12.19.20.34 +2022.04.12.21.56.28 +2022.04.13.05.08.00 +2022.04.13.05.11.22 +2022.04.13.07.17.29 +2022.04.13.11.33.57 +2022.04.13.14.53.36 +2022.04.14.12.05.26 +2022.04.14.12.58.33 +2022.04.14.17.26.44 +2022.04.15.14.15.37 +2022.04.16.04.57.52 +2022.04.16.05.14.45 +2022.04.16.22.19.15 +2022.04.16.22.19.20 +2022.04.16.22.19.42 +2022.04.16.22.20.19 +2022.04.17.06.04.48 +2022.04.17.06.21.01 +2022.04.17.16.40.16 +2022.04.17.23.07.46 +2022.04.18 +2022.04.18.00 +2022.04.18.11.42.44 +2022.04.20.10.57.53 +2022.04.20.14.36.35 +2022.04.20.14.53.59 +2022.04.20.21.24.32 +2022.04.21.13.14.58 +2022.04.21.15.03.25 +2022.04.21.21.03.33 +2022.04.21.23.08.27 +2022.04.23.18.13.34 +2022.04.23.18.15.26 +2022.04.24.01.35.03 +2022.04.24.03.02.13 +2022.04.24.13.06.22 +2022.04.24.15.29.58 +2022.04.24.17.34.15 +2022.04.24.21.17.49 +2022.04.25.00 +2022.04.25.19.26.04 +2022.04.26.12.46.45 +2022.04.26.15.08.43 +2022.04.28.12.57.13 +2022.04.28.22.31.46 +2022.04.29.16.49.17 +2022.04.29.16.50.00 +2022.04.29.16.52.03 +2022.05.0 +2022.05.00 +2022.05.01 +2022.05.01.12.58.40 +2022.05.02.00 +2022.05.02.10.57.49 +2022.05.02.12.53.39 +2022.05.02.14.44.24 +2022.05.02.15.18.36 +2022.05.02.16.32.54 +2022.05.02.16.34.37 +2022.05.02.19.14.43 +2022.05.02.19.15.05 +2022.05.02.19.22.36 +2022.05.02.19.36.47 +2022.05.02.19.41.03 +2022.05.03 +2022.05.03.00.24.50 +2022.05.03.05.37.34 +2022.05.03.11.39.11 +2022.05.04 +2022.05.04.07.00.44 +2022.05.04.16.02.41 +2022.05.04.18.03.34 +2022.05.05 +2022.05.05.16.37.34 +2022.05.05.18.43.04 +2022.05.06 +2022.05.06.13.49.53 +2022.05.06.15.25.04 +2022.05.06.15.28.34 +2022.05.06.15.30.52 +2022.05.06.15.33.36 +2022.05.06.15.33.45 +2022.05.06.15.37.02 +2022.05.06.15.39.26 +2022.05.06.15.39.45 +2022.05.06.15.41.10 +2022.05.08 +2022.05.09.07.01.03 +2022.05.09.07.08.30 +2022.05.1 +2022.05.10 +2022.05.12.00.18.15 +2022.05.12.13.19.50 +2022.05.12.18.05.03 +2022.05.13.08.41.59 +2022.05.13.11.41.30 +2022.05.14 +2022.05.14.22.55.26 +2022.05.15.15.04.08 +2022.05.16.09.20.45 +2022.05.16.12.18.44 +2022.05.17.07.05.47 +2022.05.17.07.07.01 +2022.05.17.07.14.55 +2022.05.17.11.36.49 +2022.05.17.21.59.01 +2022.05.18 +2022.05.18.07.20.58 +2022.05.18.18.43.52 +2022.05.18.23.47.38 +2022.05.19.14.17.20 +2022.05.19.23.06.33 +2022.05.20 +2022.05.20.01.36.03 +2022.05.20.07.13.49 +2022.05.20.08.26.58 +2022.05.20.08.33.30 +2022.05.20.13.10.33 +2022.05.20.15.08.19 +2022.05.20.15.08.39 +2022.05.21.06.26.44 +2022.05.21.06.31.19 +2022.05.21.06.31.58 +2022.05.22.06.13.52 +2022.05.23.11.15.14 +2022.05.23.12.37.52 +2022.05.23.15.49.11 +2022.05.24 +2022.05.24.09.00.05 +2022.05.24.12.49.34 +2022.05.24.12.51.25 +2022.05.24.15.15.50 +2022.05.25.05.16.19 +2022.05.25.14.40.58 +2022.05.25.19.48.06 +2022.05.27 +2022.05.27.12.50.08 +2022.05.27.19.22.16 +2022.05.27.22.09.45 +2022.05.28.12.44.05 +2022.05.28.19.05.45 +2022.05.28.19.06.00 +2022.05.28.20.04.06 +2022.05.30.14.59.12 +2022.05.31.00.48.42 +2022.05.31.13.38.22 +2022.05.31.15.36.22 +2022.06.0 +2022.06.01 +2022.06.01.01.51.44 +2022.06.01.21.06.06 +2022.06.02.02.16.30 +2022.06.02.02.17.23 +2022.06.02.10.52.40 +2022.06.02.15.09.01 +2022.06.02.23.44.30 +2022.06.03.11.00.48 +2022.06.03.22.56.00 +2022.06.04.14.39.47 +2022.06.04.16.15.42 +2022.06.04.16.36.40 +2022.06.04.16.36.45 +2022.06.04.16.37.37 +2022.06.04.16.38.34 +2022.06.04.16.39.23 +2022.06.04.16.42.04 +2022.06.04.16.44.48 +2022.06.04.19.02.46 +2022.06.04.21.26.03 +2022.06.05 +2022.06.05.00.07.29 +2022.06.05.11.06.00 +2022.06.05.11.48.06 +2022.06.05.21.47.29 +2022.06.06 +2022.06.06.01.01.46 +2022.06.06.01.05.55 +2022.06.07.19.41.06 +2022.06.08 +2022.06.08.00.21.30 +2022.06.08.14.40.10 +2022.06.08.23.30.54 +2022.06.09.17.24.24 +2022.06.09.17.26.41 +2022.06.09.18.09.12 +2022.06.10.06.38.26 +2022.06.10.16.38.37 +2022.06.10.18.09.10 +2022.06.11.12.31.12 +2022.06.11.19.09.35 +2022.06.12.00.53.04 +2022.06.12.04.15.50 +2022.06.12.05.34.29 +2022.06.12.05.44.17 +2022.06.12.05.44.19 +2022.06.12.05.44.25 +2022.06.12.05.44.46 +2022.06.13 +2022.06.13.06.53.20 +2022.06.13.08.34.03 +2022.06.13.22.29.59 +2022.06.14.14.10.02 +2022.06.14.22.54.02 +2022.06.15 +2022.06.15.15.40.35 +2022.06.15.16.25.59 +2022.06.16 +2022.06.16.11.22.22 +2022.06.16.11.22.40 +2022.06.16.11.23.39 +2022.06.16.11.24.12 +2022.06.16.14.11.35 +2022.06.16.16.45.41 +2022.06.16.19.05.09 +2022.06.16.23.47.53 +2022.06.17 +2022.06.17.10.28.32 +2022.06.18.07.29.11 +2022.06.18.07.34.24 +2022.06.18.22.23.19 +2022.06.19 +2022.06.19.10.58.48 +2022.06.19.10.59.28 +2022.06.19.10.59.30 +2022.06.19.12.27.42 +2022.06.19.12.27.44 +2022.06.19.18.22.02 +2022.06.19.19.19.32 +2022.06.19.19.20.07 +2022.06.20.05.05.43 +2022.06.20.08.17.39 +2022.06.20.09.10.23 +2022.06.20.09.10.33 +2022.06.20.13.39.20 +2022.06.20.13.43.21 +2022.06.20.13.43.49 +2022.06.20.13.55.54 +2022.06.20.20.00.31 +2022.06.21.09.02.52 +2022.06.21.18.05.41 +2022.06.22.05.59.41 +2022.06.22.08.29.15 +2022.06.22.11.09.47 +2022.06.23 +2022.06.23.15.48.40 +2022.06.23.15.55.08 +2022.06.23.17.21.28 +2022.06.24.18.05.18 +2022.06.24.18.35.54 +2022.06.25.09.06.17 +2022.06.25.15.29.46 +2022.06.25.17.42.13 +2022.06.25.17.47.56 +2022.06.26.11.17.33 +2022.06.26.21.10.23 +2022.06.27 +2022.06.27.13.19.38 +2022.06.27.14.05.07 +2022.06.27.18.29.50 +2022.06.27.18.30.08 +2022.06.28.10.11.26 +2022.06.28.16.51.04 +2022.06.29.00.57.15 +2022.06.29.18.34.42 +2022.06.30.11.45.20 +2022.07.0 +2022.07.01.12.17.33 +2022.07.01.13.48.55 +2022.07.02.13.27.43 +2022.07.02.21.02.52 +2022.07.03.20.57.18 +2022.07.04.22.21.22 +2022.07.05.08.26.14 +2022.07.05.18.27.24 +2022.07.06.01.52.02 +2022.07.08.00.03.22 +2022.07.08.00.07.26 +2022.07.08.02.15.19 +2022.07.09.12.23.27 +2022.07.09.14.16.43 +2022.07.09.19.21.06 +2022.07.1 +2022.07.10.02.43.28 +2022.07.11 +2022.07.11.00.47.13 +2022.07.11.12.35.27 +2022.07.11.13.37.43 +2022.07.11.23.02.51 +2022.07.12 +2022.07.12.00.49.24 +2022.07.12.02.03.03 +2022.07.12.16.49.31 +2022.07.12.18.44.47 +2022.07.13.19.35.11 +2022.07.13.19.56.34 +2022.07.14 +2022.07.14.19.44.54 +2022.07.15.01.49.26 +2022.07.15.23.29.22 +2022.07.16.03.13.38 +2022.07.16.15.13.24 +2022.07.16.15.13.56 +2022.07.16.15.49.25 +2022.07.16.21.43.24 +2022.07.16.21.44.50 +2022.07.18.11.18.34 +2022.07.19.11.33.02 +2022.07.2 +2022.07.20 +2022.07.20.11.32.46 +2022.07.20.21.54.10 +2022.07.21 +2022.07.21.11.35.29 +2022.07.21.20.07.05 +2022.07.22.12.54.13 +2022.07.22.15.28.03 +2022.07.22.22.24.34 +2022.07.22.23.35.10 +2022.07.24.12.20.52 +2022.07.24.16.45.38 +2022.07.24.16.48.29 +2022.07.25 +2022.07.25.00 +2022.07.25.00.42.24 +2022.07.25.01.07.01 +2022.07.25.08.01.08 +2022.07.25.18.25.33 +2022.07.25.20.17.58 +2022.07.25.22.44.11 +2022.07.26.13.05.19 +2022.07.26.13.54.43 +2022.07.26.20.23.31 +2022.07.27.15.36.49 +2022.07.27.17.51.24 +2022.07.27.17.58.24 +2022.07.27.20.15.04 +2022.07.28.00.27.46 +2022.07.28.08.22.44 +2022.07.28.08.23.03 +2022.07.28.19.34.36 +2022.07.29.06.29.02 +2022.07.29.09.27.39 +2022.07.29.13.58.26 +2022.07.29.15.08.20 +2022.07.29.16.12.45 +2022.07.31.08.11.05 +2022.08.0 +2022.08.01 +2022.08.01.00 +2022.08.01.07.10.19 +2022.08.01.09.16.26 +2022.08.01.12.11.42 +2022.08.03.11.04.37 +2022.08.03.11.08.53 +2022.08.03.21.47.28 +2022.08.04.07.32.40 +2022.08.05.23.22.55 +2022.08.06.09.49.16 +2022.08.06.11.18.30 +2022.08.07.13.04.47 +2022.08.08 +2022.08.08.00 +2022.08.08.03.34.54 +2022.08.08.11.16.33 +2022.08.08.12.20.02 +2022.08.08.12.37.47 +2022.08.08.13.43.09 +2022.08.08.17.05.41 +2022.08.08.19.07.35 +2022.08.09 +2022.08.09.07.02.38 +2022.08.09.07.02.39 +2022.08.09.15.26.55 +2022.08.09.17.28.58 +2022.08.10.13.48.17 +2022.08.10.16.37.26 +2022.08.10.16.38.32 +2022.08.10.18.05.48 +2022.08.10.18.48.38 +2022.08.10.20.05.43 +2022.08.11 +2022.08.11.00.12.17 +2022.08.11.11.15.53 +2022.08.11.15.16.27 +2022.08.11.23.31.29 +2022.08.11.23.35.06 +2022.08.12.20.13.33 +2022.08.12.21.14.57 +2022.08.12.21.43.37 +2022.08.12.22.29.55 +2022.08.12.23.25.47 +2022.08.13.16.03.46 +2022.08.14.15.51.06 +2022.08.14.21.53.55 +2022.08.15 +2022.08.15.00 +2022.08.15.02.11.21 +2022.08.15.10.08.14 +2022.08.15.11.50.42 +2022.08.15.12.55.29 +2022.08.15.17.17.32 +2022.08.15.17.58.52 +2022.08.16.09.27.01 +2022.08.16.15.03.11 +2022.08.17.04.11.20 +2022.08.17.04.16.34 +2022.08.17.04.19.03 +2022.08.17.04.22.48 +2022.08.17.04.24.13 +2022.08.17.05.39.09 +2022.08.17.05.43.44 +2022.08.17.05.43.45 +2022.08.17.05.43.55 +2022.08.17.05.44.01 +2022.08.17.05.44.29 +2022.08.17.05.44.30 +2022.08.17.05.44.45 +2022.08.17.05.44.46 +2022.08.17.08.04.28 +2022.08.17.15.27.00 +2022.08.17.15.27.08 +2022.08.18.10.04.32 +2022.08.18.10.05.07 +2022.08.18.10.16.51 +2022.08.18.10.17.30 +2022.08.18.11.35.40 +2022.08.18.12.48.09 +2022.08.18.12.48.10 +2022.08.18.14.00.07 +2022.08.18.16.23.26 +2022.08.18.17.24.14 +2022.08.19.12.00.37 +2022.08.19.12.01.27 +2022.08.19.14.19.32 +2022.08.19.17.16.54 +2022.08.19.17.16.56 +2022.08.19.17.59.09 +2022.08.19.19.19.04 +2022.08.20.09.22.15 +2022.08.21.18.34.05 +2022.08.22.00 +2022.08.22.07.35.10 +2022.08.22.07.35.18 +2022.08.22.08.34.13 +2022.08.22.11.57.44 +2022.08.22.18.18.57 +2022.08.22.19.11.22 +2022.08.22.19.42.11 +2022.08.23 +2022.08.23.01.02.25 +2022.08.23.01.05.47 +2022.08.23.12.33.00 +2022.08.23.13.46.03 +2022.08.24.10.10.27 +2022.08.24.10.11.46 +2022.08.24.10.12.37 +2022.08.24.10.15.47 +2022.08.24.12.13.53 +2022.08.24.17.10.33 +2022.08.24.17.24.27 +2022.08.24.18.03.48 +2022.08.24.23.58.03 +2022.08.25.00.04.55 +2022.08.25.01.17.35 +2022.08.25.07.31.30 +2022.08.25.07.31.47 +2022.08.25.07.31.57 +2022.08.25.07.31.59 +2022.08.25.07.32.05 +2022.08.25.07.32.09 +2022.08.25.07.32.54 +2022.08.25.07.46.05 +2022.08.25.07.46.09 +2022.08.25.11.48.54 +2022.08.25.12.06.07 +2022.08.25.15.20.42 +2022.08.25.16.47.48 +2022.08.25.18.48.53 +2022.08.25.18.48.57 +2022.08.25.22.39.31 +2022.08.26.08.14.11 +2022.08.26.08.26.19 +2022.08.26.08.26.25 +2022.08.26.11.30.01 +2022.08.26.11.30.05 +2022.08.26.14.45.22 +2022.08.26.15.40.48 +2022.08.26.18.27.48 +2022.08.27.13.34.34 +2022.08.29.00 +2022.08.29.04.41.42 +2022.08.29.08.20.16 +2022.08.29.11.49.07 +2022.08.29.12.15.34 +2022.08.29.12.22.51 +2022.08.29.13.16.26 +2022.08.29.15.07.42 +2022.08.29.15.07.45 +2022.08.29.19.12.47 +2022.08.29.23.37.24 +2022.08.30.22.14.57 +2022.08.31.13.07.05 +2022.08.31.15.30.59 +2022.08.31.16.57.19 +2022.09.0 +2022.09.02.01.33.59 +2022.09.02.10.01.46 +2022.09.03.12.13.43 +2022.09.03.13.37.27 +2022.09.03.13.40.36 +2022.09.03.13.42.42 +2022.09.03.14.39.53 +2022.09.03.14.40.23 +2022.09.03.14.41.12 +2022.09.03.14.45.14 +2022.09.03.14.48.41 +2022.09.03.14.49.38 +2022.09.03.14.53.26 +2022.09.03.15.06.47 +2022.09.03.21.29.09 +2022.09.03.21.29.17 +2022.09.04.11.55.37 +2022.09.04.15.41.14 +2022.09.05 +2022.09.05.00 +2022.09.06 +2022.09.06.01.18.53 +2022.09.06.12.54.07 +2022.09.06.13.02.25 +2022.09.06.18.44.04 +2022.09.07.10.16.08 +2022.09.07.10.20.36 +2022.09.08 +2022.09.08.12.51.58 +2022.09.08.12.52.13 +2022.09.08.12.52.26 +2022.09.08.13.58.00 +2022.09.08.21.51.09 +2022.09.08.22.23.30 +2022.09.09.07.11.44 +2022.09.09.15.51.16 +2022.09.09.16.57.07 +2022.09.09.20.09.02 +2022.09.09.20.44.53 +2022.09.09.21.52.25 +2022.09.09.23.02.54 +2022.09.1 +2022.09.10.01.12.28 +2022.09.10.01.14.25 +2022.09.10.01.15.47 +2022.09.10.02.18.18 +2022.09.10.02.18.42 +2022.09.10.02.27.40 +2022.09.10.02.28.29 +2022.09.10.12.23.22 +2022.09.10.12.33.16 +2022.09.10.13.43.21 +2022.09.10.16.02.05 +2022.09.10.16.12.32 +2022.09.10.16.28.22 +2022.09.10.19.24.40 +2022.09.10.23.16.39 +2022.09.11.02.04.12 +2022.09.11.02.24.47 +2022.09.11.13.02.53 +2022.09.11.20.19.58 +2022.09.12.00 +2022.09.12.01.30.37 +2022.09.12.04.26.16 +2022.09.12.22.24.22 +2022.09.13 +2022.09.13.13.36.40 +2022.09.13.14.40.25 +2022.09.13.16.23.17 +2022.09.13.17.57.49 +2022.09.13.19.09.01 +2022.09.13.20.27.40 +2022.09.14 +2022.09.19 +2022.09.19.00 +2022.09.19.03.54.54 +2022.09.19.16.49.46 +2022.09.20.14.36.51 +2022.09.20.14.48.32 +2022.09.21 +2022.09.21.00.03.13 +2022.09.21.08.37.08 +2022.09.21.08.37.32 +2022.09.21.08.37.33 +2022.09.21.18.22.03 +2022.09.23 +2022.09.23.15.53.14 +2022.09.24.21.21.07 +2022.09.24.23.00.28 +2022.09.25.01.17.39 +2022.09.25.11.40.52 +2022.09.25.18.08.47 +2022.09.26.00 +2022.09.26.12.40.38 +2022.09.26.16.20.05 +2022.09.27.00.22.21 +2022.09.27.00.22.29 +2022.09.27.08.36.12 +2022.09.28.12.59.58 +2022.09.28.13.21.13 +2022.09.28.13.36.14 +2022.09.28.16.00.31 +2022.09.29 +2022.09.3 +2022.09.30 +2022.09.30.16.02.29 +2022.09.30.16.14.22 +2022.09.30.17.55.19 +2022.09.4 +2022.09.5 +2022.1 +2022.1.0 +2022.1.1 +2022.1.10 +2022.1.11 +2022.1.12 +2022.1.12.1 +2022.1.12.post1 +2022.1.13 +2022.1.14 +2022.1.15 +2022.1.16 +2022.1.17 +2022.1.18 +2022.1.19 +2022.1.2 +2022.1.20 +2022.1.21 +2022.1.22 +2022.1.23 +2022.1.24 +2022.1.26 +2022.1.28 +2022.1.29 +2022.1.2b11 +2022.1.3 +2022.1.4 +2022.1.5 +2022.1.5.0 +2022.1.6 +2022.1.7 +2022.1.8 +2022.1.9 +2022.10 +2022.10.0 +2022.10.01.09.51.36 +2022.10.01.09.52.16 +2022.10.01.09.52.25 +2022.10.01.09.53.15 +2022.10.01.09.53.32 +2022.10.01.21.03.50 +2022.10.01.21.04.14 +2022.10.02 +2022.10.02.10.42.57 +2022.10.03.00 +2022.10.03.09.31.48 +2022.10.04.09.02.31 +2022.10.04.09.03.00 +2022.10.04.09.22.14 +2022.10.04.09.22.15 +2022.10.04.12.34.07 +2022.10.04.15.24.20 +2022.10.04.15.44.33 +2022.10.04.21.31.52 +2022.10.05.09.22.23 +2022.10.05.09.22.42 +2022.10.05.11.58.53 +2022.10.05.18.13.37 +2022.10.05.18.50.28 +2022.10.06.21.48.30 +2022.10.07 +2022.10.07.16.24.39 +2022.10.07.16.50.25 +2022.10.07.18.54.47 +2022.10.07.20.39.23 +2022.10.09.22.13.28 +2022.10.1 +2022.10.10 +2022.10.10.00 +2022.10.10.08.39.56 +2022.10.10.09.21.20 +2022.10.10.17.37.23 +2022.10.10.17.52.17 +2022.10.11 +2022.10.11.03.04.53 +2022.10.11.20.35.31 +2022.10.12 +2022.10.12.08.08.42 +2022.10.12.08.17.18 +2022.10.12.23.16.12 +2022.10.14.07.49.52 +2022.10.14.15.41.02 +2022.10.14.15.41.33 +2022.10.15.11.07.55 +2022.10.15.22.25.24 +2022.10.16.19.58.59 +2022.10.16.19.59.50 +2022.10.17 +2022.10.17.00 +2022.10.17.13.34.40 +2022.10.17.17.07.36 +2022.10.18 +2022.10.18.08.35.57 +2022.10.18.09.43.36 +2022.10.18.20.25.22 +2022.10.19 +2022.10.19.09.52.52 +2022.10.19.09.53.59 +2022.10.19.15.52.28 +2022.10.19.16.58.22 +2022.10.19.20.54.55 +2022.10.19.21.07.44 +2022.10.19.23.15.01 +2022.10.2 +2022.10.20 +2022.10.20.18.36.53 +2022.10.20.19.20.00 +2022.10.21.03.28.44 +2022.10.21.11.57.06 +2022.10.21.12.10.43 +2022.10.21.13.17.40 +2022.10.21.14.30.20 +2022.10.21.14.35.08 +2022.10.21.15.17.15 +2022.10.21.19.23.07 +2022.10.21.19.23.23 +2022.10.22 +2022.10.22.12.31.00 +2022.10.22.12.31.15 +2022.10.22.12.31.44 +2022.10.22.14.31.27 +2022.10.22.15.55.08 +2022.10.22.16.02.23 +2022.10.22.17.09.49 +2022.10.22.18.03.18 +2022.10.23 +2022.10.23.00.15.36 +2022.10.23.09.56.15 +2022.10.23.10.16.33 +2022.10.24 +2022.10.24.00 +2022.10.24.01.16.58 +2022.10.24.04.43.29 +2022.10.24.11.13.37 +2022.10.24.12.55.15 +2022.10.24.19.29.39 +2022.10.24.19.50.07 +2022.10.25 +2022.10.25.08.18.02 +2022.10.25.15.13.01 +2022.10.25.16.20.36 +2022.10.25.17.48.27 +2022.10.25.18.58.27 +2022.10.25.19.19.58 +2022.10.25.19.19.59 +2022.10.25.20.49.44 +2022.10.25.20.58.40 +2022.10.25.22.17.19 +2022.10.25.22.21.17 +2022.10.25.23.05.27 +2022.10.26 +2022.10.26.08.10.58 +2022.10.26.09.23.38 +2022.10.26.13.53.24 +2022.10.26.15.31.17 +2022.10.26.19.07.37 +2022.10.26.22.14.46 +2022.10.26.22.36.06 +2022.10.27 +2022.10.27.01.17.41 +2022.10.27.02.26.04 +2022.10.27.03.11.11 +2022.10.27.07.15.59 +2022.10.27.07.22.06 +2022.10.27.09.17.03 +2022.10.27.15.23.05 +2022.10.27.19.11.26 +2022.10.28 +2022.10.28.00.55.45 +2022.10.28.07.39.27 +2022.10.28.07.39.35 +2022.10.28.08.56.52 +2022.10.28.09.31.03 +2022.10.28.11.26.40 +2022.10.28.16.47.40 +2022.10.28.21.38.53 +2022.10.28.22.34.20 +2022.10.29.07.48.33 +2022.10.29.15.17.39 +2022.10.29.17.19.28 +2022.10.3 +2022.10.30.22.56.52 +2022.10.31 +2022.10.31.00 +2022.10.31.09.44.47 +2022.10.31.11.03.16 +2022.10.31.14.01.31 +2022.10.31.14.40.35 +2022.10.4 +2022.10.5 +2022.10.7 +2022.10.9 +2022.10_2 +2022.10a0 +2022.11 +2022.11.0 +2022.11.01 +2022.11.01.00.02.24 +2022.11.01.06.59.37 +2022.11.01.08.17.30 +2022.11.01.11.46.43 +2022.11.01.12.20.19 +2022.11.01.14.25.43 +2022.11.01.16.00.02 +2022.11.01.16.03.11 +2022.11.01.17.37.31 +2022.11.01.19.35.10 +2022.11.01.21.11.09 +2022.11.01.22.10.41 +2022.11.02 +2022.11.02.09.53.14 +2022.11.02.11.17.17 +2022.11.02.12.22.38 +2022.11.02.12.28.22 +2022.11.02.14.22.55 +2022.11.02.16.11.00 +2022.11.02.18.55.19 +2022.11.03.07.22.44 +2022.11.03.08.14.18 +2022.11.03.09.46.56 +2022.11.03.12.46.38 +2022.11.03.12.54.01 +2022.11.03.18.10.43 +2022.11.03.18.25.45 +2022.11.03.19.49.26 +2022.11.03.19.49.57 +2022.11.04.03.22.42 +2022.11.04.10.18.53 +2022.11.04.15.44.27 +2022.11.04.17.07.21 +2022.11.04.17.37.23 +2022.11.05.07.19.24 +2022.11.05.07.19.31 +2022.11.05.07.31.22 +2022.11.05.07.36.04 +2022.11.05.07.47.31 +2022.11.05.10.16.40 +2022.11.05.14.39.53 +2022.11.05.16.13.05 +2022.11.05.21.08.08 +2022.11.06.17.49.44 +2022.11.06.17.49.56 +2022.11.06.17.50.12 +2022.11.06.17.50.32 +2022.11.07.00 +2022.11.07.13.22.21 +2022.11.07.14.51.32 +2022.11.07.15.09.20 +2022.11.07.16.21.19 +2022.11.08.02.51.09 +2022.11.08.02.58.38 +2022.11.08.03.00.11 +2022.11.08.08.25.39 +2022.11.08.09.18.47 +2022.11.08.09.28.13 +2022.11.08.10.32.09 +2022.11.08.15.37.06 +2022.11.08.15.44.59 +2022.11.08.22.20.06 +2022.11.08.23.18.36 +2022.11.09.08.34.10 +2022.11.09.12.27.21 +2022.11.09.16.08.53 +2022.11.09.16.09.32 +2022.11.09.16.17.31 +2022.11.09.16.17.33 +2022.11.1 +2022.11.10.07.35.21 +2022.11.10.07.40.53 +2022.11.10.08.14.51 +2022.11.10.11.01.18 +2022.11.10.11.44.43 +2022.11.10.22.07.33 +2022.11.11 +2022.11.11.09.27.49 +2022.11.11.09.27.52 +2022.11.11.09.28.38 +2022.11.11.15.42.04 +2022.11.11.17.16.57 +2022.11.13.03.29.29 +2022.11.14 +2022.11.14.00 +2022.11.14.18.36.06 +2022.11.14.18.36.28 +2022.11.14.21.30.17 +2022.11.15 +2022.11.15.10.48.28 +2022.11.15.11.53.06 +2022.11.15.17.15.22 +2022.11.15.22.41.08 +2022.11.16 +2022.11.16.03.53.15 +2022.11.16.14.37.19 +2022.11.16.14.55.21 +2022.11.16.16.13.51 +2022.11.16.23.01.02 +2022.11.17.00.49.36 +2022.11.17.07.48.06 +2022.11.17.07.56.56 +2022.11.17.07.58.08 +2022.11.17.18.02.58 +2022.11.17.21.05.33 +2022.11.17.21.14.25 +2022.11.18.05.47.36 +2022.11.18.05.48.19 +2022.11.18.09.07.56 +2022.11.18.09.26.27 +2022.11.18.09.29.52 +2022.11.18.11.49.04 +2022.11.18.13.40.02 +2022.11.18.16.18.34 +2022.11.18.17.56.12 +2022.11.19.13.25.46 +2022.11.19.19.07.08 +2022.11.2 +2022.11.20.09.27.35 +2022.11.20.19.08.47 +2022.11.20.19.09.47 +2022.11.20.19.10.04 +2022.11.21 +2022.11.21.0 +2022.11.21.08.53.37 +2022.11.21.08.56.08 +2022.11.21.19.57.06 +2022.11.22.08.31.53 +2022.11.22.12.08.38 +2022.11.22.20.22.19 +2022.11.23 +2022.11.23.04.40.55 +2022.11.23.09.34.39 +2022.11.23.19.37.15 +2022.11.24 +2022.11.25 +2022.11.26.23.51.31 +2022.11.27.00.26.12 +2022.11.27.00.26.45 +2022.11.27.00.27.57 +2022.11.27.15.56.36 +2022.11.28 +2022.11.28.00 +2022.11.29 +2022.11.29.18.43.18 +2022.11.29.22.58.17 +2022.11.3 +2022.11.30 +2022.11.30.02.29.38 +2022.11.30.09.25.24 +2022.11.30.10.38.55 +2022.11.4 +2022.11.5 +2022.11.7 +2022.1115 +2022.1116 +2022.1118 +2022.1119 +2022.1120 +2022.11_16 +2022.12 +2022.12.0 +2022.12.01.03.23.43 +2022.12.01.06.44.48 +2022.12.02.10.47.43 +2022.12.02.15.22.41 +2022.12.03 +2022.12.04.12.58.46 +2022.12.04.13.24.59 +2022.12.04.16.50.45 +2022.12.04.16.52.04 +2022.12.04.16.52.34 +2022.12.04.16.52.51 +2022.12.04.16.55.25 +2022.12.04.17.28.58 +2022.12.04.18.56.23 +2022.12.04.19.22.35 +2022.12.05.00 +2022.12.05.17.50.45 +2022.12.06 +2022.12.06.01.07.15 +2022.12.06.02.30.06 +2022.12.06.12.06.55 +2022.12.06.13.13.30 +2022.12.06.13.31.23 +2022.12.06.20.36.46 +2022.12.07 +2022.12.07.02.23.49 +2022.12.07.11.35.54 +2022.12.07.15.37.06 +2022.12.07.15.37.51 +2022.12.07.18.34.25 +2022.12.08.13.14.06 +2022.12.08.16.56.34 +2022.12.09.08.14.11 +2022.12.09.17.44.31 +2022.12.09.20.17.28 +2022.12.1 +2022.12.10.15.23.58 +2022.12.10.16.12.13 +2022.12.10.19.42.52 +2022.12.10.21.07.48 +2022.12.10.21.24.59 +2022.12.11 +2022.12.11.00.42.28 +2022.12.11.21.21.05 +2022.12.12.00 +2022.12.12.09.01.12 +2022.12.12.09.03.28 +2022.12.12.09.03.37 +2022.12.12.15.21.25 +2022.12.12.22.47.46 +2022.12.13 +2022.12.13.09.45.07 +2022.12.13.12.57.26 +2022.12.13.13.01.22 +2022.12.13.15.42.53 +2022.12.13.15.49.28 +2022.12.13.15.56.10 +2022.12.13.17.03.13 +2022.12.13.21.25.24 +2022.12.14 +2022.12.14.13.10.49 +2022.12.14.21.36.18 +2022.12.15 +2022.12.15.08.47.10 +2022.12.15.12.25.12 +2022.12.15.19.46.12 +2022.12.16 +2022.12.16.14.20.18 +2022.12.17 +2022.12.17.19.22.51 +2022.12.18.15.20.06 +2022.12.18.16.04.29 +2022.12.18.22.53.56 +2022.12.19 +2022.12.19.00 +2022.12.19.12.44.52 +2022.12.19.14.36.50 +2022.12.19.20.52.42 +2022.12.2 +2022.12.20 +2022.12.20.01.36.46 +2022.12.20.16.10.14 +2022.12.20.16.27.48 +2022.12.20.16.44.56 +2022.12.20.17.30.40 +2022.12.20.19.40.49 +2022.12.20.22.03.26 +2022.12.21 +2022.12.21.04.43.24 +2022.12.21.04.51.23 +2022.12.21.05.25.31 +2022.12.21.11.24.57 +2022.12.21.16.48.02 +2022.12.21.17.00.57 +2022.12.21.17.06.39 +2022.12.21.17.38.36 +2022.12.22 +2022.12.22.13.58.53 +2022.12.22.907 +2022.12.24 +2022.12.25 +2022.12.26 +2022.12.26.00 +2022.12.27 +2022.12.27.12.28.39 +2022.12.27.19.59.10 +2022.12.29.18.48.19 +2022.12.29.18.59.25 +2022.12.29.19.05.49 +2022.12.4 +2022.12.6 +2022.12.6.post2 +2022.12.7 +2022.12.9 +2022.13 +2022.14 +2022.15 +2022.16.0 +2022.16.1 +2022.2 +2022.2.0 +2022.2.1 +2022.2.1.0 +2022.2.10 +2022.2.10.14.20.39 +2022.2.11 +2022.2.12 +2022.2.13 +2022.2.2 +2022.2.21 +2022.2.22 +2022.2.22.1 +2022.2.23 +2022.2.24 +2022.2.24.1 +2022.2.24.535 +2022.2.25 +2022.2.27 +2022.2.3 +2022.2.4 +2022.2.5 +2022.2.6 +2022.2.7 +2022.2.8 +2022.2.9 +2022.20.2 +2022.3 +2022.3.0 +2022.3.1 +2022.3.12 +2022.3.13 +2022.3.14 +2022.3.15 +2022.3.16 +2022.3.17 +2022.3.18 +2022.3.2 +2022.3.22 +2022.3.23 +2022.3.24 +2022.3.25 +2022.3.26 +2022.3.27 +2022.3.28 +2022.3.29 +2022.3.29.873 +2022.3.3 +2022.3.30 +2022.3.4 +2022.3.5 +2022.3.6 +2022.3.7 +2022.3.8 +2022.3.8.2 +2022.4 +2022.4.0 +2022.4.0.0 +2022.4.1 +2022.4.10 +2022.4.19 +2022.4.2 +2022.4.21 +2022.4.22 +2022.4.24 +2022.4.26 +2022.4.28 +2022.4.3 +2022.4.30 +2022.4.4 +2022.4.5 +2022.4.6 +2022.4.7 +2022.4.8 +2022.4_1 +2022.5 +2022.5.0 +2022.5.0.0 +2022.5.1 +2022.5.17 +2022.5.18 +2022.5.18.1 +2022.5.19 +2022.5.19.406 +2022.5.2 +2022.5.20 +2022.5.23 +2022.5.26 +2022.5.27 +2022.5.29 +2022.5.3 +2022.5.30 +2022.5.4 +2022.5.5 +2022.5.7 +2022.6 +2022.6.0 +2022.6.0.1 +2022.6.1 +2022.6.10 +2022.6.11 +2022.6.14 +2022.6.15 +2022.6.15.1 +2022.6.15.2 +2022.6.2 +2022.6.21 +2022.6.22 +2022.6.22.1 +2022.6.25 +2022.6.26 +2022.6.28 +2022.6.28.2 +2022.6.29 +2022.6.29.552 +2022.6.3 +2022.6.3.0 +2022.6.30 +2022.6.4.1 +2022.6.6 +2022.6.7 +2022.6.9 +2022.7 +2022.7.0 +2022.7.0.0 +2022.7.1 +2022.7.1.0 +2022.7.1.1 +2022.7.1.2 +2022.7.10 +2022.7.14 +2022.7.17 +2022.7.18 +2022.7.19 +2022.7.21 +2022.7.24 +2022.7.24.1 +2022.7.25 +2022.7.25.0 +2022.7.27 +2022.7.28 +2022.7.29 +2022.7.29.1 +2022.7.30.0 +2022.7.31 +2022.7.4 +2022.7.5 +2022.7.6 +2022.7.7 +2022.7.8 +2022.7.9 +2022.8 +2022.8.0 +2022.8.1 +2022.8.12 +2022.8.13 +2022.8.14 +2022.8.15 +2022.8.17 +2022.8.19 +2022.8.2 +2022.8.22 +2022.8.23 +2022.8.24 +2022.8.24a1 +2022.8.26 +2022.8.27 +2022.8.3 +2022.8.30 +2022.8.31 +2022.8.4 +2022.8.5 +2022.8.7 +2022.8.8 +2022.9 +2022.9.0 +2022.9.0.post1 +2022.9.1 +2022.9.10 +2022.9.11 +2022.9.12 +2022.9.13 +2022.9.14 +2022.9.16 +2022.9.18 +2022.9.19 +2022.9.2 +2022.9.20 +2022.9.21 +2022.9.22 +2022.9.24 +2022.9.26 +2022.9.27 +2022.9.28 +2022.9.29 +2022.9.4 +2022.9.5 +2022.9.8 +2022.9.9 +2022.9a1 +20220000.0 +20220000.1 +20220000.2 +20220000.3 +20220000.4 +20220000.5 +20220102.00.06.34 +20220103 +20220103.0 +20220104 +20220104.16.11.01 +20220104.22.39.10 +20220105 +20220105.0 +20220106 +20220106.12.03.31 +20220107 +20220108 +20220109 +20220109.00.06.58 +20220109.04.01.27 +20220110 +20220110.02.05.02 +20220110.20.09.55 +20220111 +20220111.0 +20220112 +20220113 +20220114 +20220114.15.38.02 +20220114.15.40.11 +20220115 +20220115.02.56.19 +20220116 +20220116.00.05.51 +20220117 +20220117.0 +20220118 +20220118.0 +20220119 +20220119.17.53.52 +20220120 +20220120.0 +20220121 +20220121.06.42.38 +20220122 +20220123 +20220123.00.07.05 +20220124 +20220124.0 +20220124.02.18.51 +20220124.16.57.25 +20220124.17.04.54 +20220124.22.38.37 +20220125 +20220125.0 +20220125.00.18.00 +20220125.16.11.59 +20220125.18.39.47 +20220126 +20220126.11.37.33 +20220126.11.39.10 +20220126.22.29.26 +20220127 +20220127.18.42.07 +20220128 +20220128.13.08.52 +20220129 +20220129.0 +20220129.16.06.28 +20220129.16.08.13 +20220130 +20220131 +20220131.0 +20220201 +20220201.0 +20220201.07.45.27 +20220202 +20220202.11.37.47 +20220202.12.12.12 +20220202.18.59.32 +20220203 +20220203.20.38.08 +20220204 +20220205 +20220206 +20220206.00.52.58 +20220208.0 +20220211.07.10.24 +20220213.00.06.57 +20220213.04.43.34 +20220214.0 +20220215.02.23.33 +20220216.1 +20220220.00.07.42 +20220222 +20220222.23.28.23 +20220223.0 +20220223.22.41.27 +20220224.0 +20220224.17.44.39 +20220225.03.31.47 +20220225.15.45.55 +20220228.0 +20220301.0 +20220301.10.14.41 +20220301.23.37.56 +20220303.17.55.44 +20220304.15.26.29 +20220307.12.18.46 +20220307.15.03.47 +20220307.19.49.09 +20220307.19.52.29 +20220308.0 +20220308.03.14.22 +20220309.0 +20220309.10.15.51 +20220309.10.26.13 +20220309.10.38.21 +20220310.08.22.06 +20220310.1 +20220311.18.55.28 +20220311.3 +20220312.0 +20220313.00.07.29 +20220315.0 +20220316.15.24.44 +20220316.15.37.36 +20220316.15.47.58 +20220317.07.11.18 +20220317.1 +20220317.2 +20220318.0 +20220318.14.19.44 +20220319 +20220320 +20220322.0 +20220323.0 +20220323.06.13.42 +20220323.15.51.04 +20220324.0 +20220324.06.56.10 +20220324.11.24.29 +20220324.11.36.05 +20220324.21.40.27 +20220324.21.51.49 +20220325.0 +20220327.00.07.28 +20220328.23.18.47 +20220329.0 +20220329.2 +20220330.12.52.52 +20220401.0 +20220401.17.51.01 +20220403.00.06.57 +20220403.18.48.30 +20220404.0 +20220406.0 +20220407.15.44.43 +20220407.15.47.58 +20220407.18.26.17 +20220408.19.26.42 +20220409.12.18.21 +20220410.21.44.04 +20220412.0 +20220414.0 +20220417.00.06.20 +20220418.00.10.10 +20220418.00.18.51 +20220419.0 +20220421.17.47.53 +20220421.23.09.34 +20220422.0 +20220422.18.54.11 +20220425.13.26.07 +20220426.1 +20220426.18.04.03 +20220426.21.35.21 +20220427.0 +20220427.06.16.58 +20220427.1 +20220427.13.49.53 +20220429.11.38.10 +20220429.11.52.03 +20220429.12.13.02 +20220430.13.00.46 +20220501.00.07.10 +20220503.0 +20220503.17.00.27 +20220504.21.20.49 +20220506 +20220508.00.07.02 +20220509.0 +20220510.11.54.14 +20220512.0 +20220515.00.07.59 +20220517.0 +20220518.23.07.36 +20220519.19.15.23 +20220520.00.30.12 +20220521.09.08.45 +20220521.17.02.30 +20220522 +20220524 +20220524.0 +20220524.22.16.02 +20220525.1 +20220526.12.30.52 +20220526.13.29.44 +20220526.14.42.14 +20220527.0 +20220527.17.05.57 +20220530.12.10.09 +20220530.14.54.33 +20220530.14.55.53 +20220530.15.09.33 +20220531.0 +20220531.07.10.11 +20220601.00.04.48 +20220601.21.09.53 +20220602.10.15.07 +20220604.17.07.58 +20220607.0 +20220607.14.09.28 +20220608.16.03.47 +20220609.16.02.26 +20220610.12.40.28 +20220612.00.07.30 +20220615.13.25.23 +20220616.17.31.23 +20220621 +20220623.0 +20220626.00.07.50 +20220627.11.46.09 +20220627.12.22.56 +20220627.12.57.43 +20220628.10.01.57 +20220629.11.13.56 +20220629.11.19.17 +20220703.00.07.21 +20220704.12.29.21 +20220705.13.13.13 +20220706.08.19.08 +20220708 +20220708.12.52.59 +20220710.00.07.03 +20220711.13.41.26 +20220713.12.44.52 +20220713.13.46.37 +20220713.19.29.38 +20220716.22.20.30 +20220719.01.41.20 +20220721.23.03.23 +20220722 +20220722.11.22.37 +20220724.00.08.59 +20220726.0 +20220726.04.03.24 +20220728.11.26.04 +20220730.21.57.48 +20220731.21.48.41 +20220801.0 +20220801.08.34.53 +20220802.0 +20220803 +20220803.22.56.22 +20220803.23.08.07 +20220803.23.26.13 +20220804.0 +20220805.15.26.52 +20220809.0 +20220810.19.22.04 +20220810.19.24.46 +20220810.19.37.04 +20220810.19.51.33 +20220811.05.39.04 +20220812.00.22.59 +20220812.00.36.49 +20220812.23.22.47 +20220814.0 +20220816.0 +20220816.15.05.34 +20220816.15.09.16 +20220818.22.08.12 +20220819.01.34.22 +20220820.0 +20220821.00.08.52 +20220822.15.18.02 +20220824.08.32.31 +20220825.0 +20220825.21.52.11 +20220826.07.58.56 +20220830.0 +20220830.16.24.23 +20220831.16.15.28 +202209 +20220902.01.04.57 +20220902.08.41.22 +20220903.08.19.28 +20220906.0 +20220907.0 +20220907.06.48.33 +20220908.12.52.03 +20220909.0 +20220910.17.50.06 +20220912.09.05.00 +20220913.0 +20220913.17.52.32 +20220915.0 +20220915.11.44.35 +20220915.15.57.47 +20220916.0 +20220916.15.06.57 +20220916.15.27.05 +20220920.0 +20220921 +20220922 +20220922.0 +20220923.03.58.38 +20220923.04.30.37 +20220924.20.17.28 +20220924.23.00.31 +20220925.16.19.55 +20220927.0 +20220928.0 +20220928.04.37.13 +20220928.09.28.09 +20220928.11.32.11 +20220928.17.59.51 +20220929.0 +20220930.19.37.53 +20220930.19.40.12 +20221003.07.54.59 +20221004.0 +20221009.0 +20221009.00.10.46 +20221011.0 +20221011.00.58.24 +20221011.07.34.50 +20221011.20.20.26 +20221012 +20221012.16.48.19 +20221012.20.11.42 +20221013.0 +20221013.13.36.52 +20221013.13.52.49 +20221013.14.15.47 +20221013.14.30.05 +20221013.14.45.08 +20221013.14.56.25 +20221013.15.09.17 +20221013.15.27.31 +20221013.15.57.33 +20221013.16.10.27 +20221013.16.28.49 +20221013.16.31.45 +20221013.16.49.30 +20221013.17.09.48 +20221013.17.31.53 +20221013.17.52.03 +20221013.18.14.08 +20221013.18.29.44 +20221013.18.47.54 +20221013.19.03.08 +20221013.19.16.10 +20221013.19.30.25 +20221013.19.42.26 +20221013.19.53.38 +20221013.20.08.00 +20221013.20.28.00 +20221013.20.42.54 +20221013.20.55.29 +20221013.21.09.18 +20221013.21.27.07 +20221013.21.41.14 +20221013.21.54.36 +20221013.22.08.28 +20221013.22.27.30 +20221013.22.43.22 +20221013.22.55.42 +20221013.23.08.06 +20221013.23.27.33 +20221013.23.45.13 +20221013.23.57.32 +20221014.00.28.29 +20221014.00.54.06 +20221014.01.39.28 +20221014.02.42.37 +20221014.03.45.24 +20221014.04.35.13 +20221014.05.16.26 +20221014.05.51.22 +20221014.06.28.48 +20221014.06.51.21 +20221014.07.19.07 +20221014.07.36.43 +20221014.07.57.55 +20221014.08.10.25 +20221014.08.27.51 +20221014.08.46.29 +20221014.08.59.58 +20221014.09.12.23 +20221014.09.27.29 +20221014.09.43.04 +20221014.09.56.05 +20221014.10.08.24 +20221014.10.27.36 +20221014.10.43.52 +20221014.10.56.27 +20221014.11.08.55 +20221014.11.26.59 +20221014.11.40.37 +20221014.11.53.40 +20221014.12.10.09 +20221014.12.29.11 +20221014.12.50.42 +20221014.13.26.05 +20221014.13.53.04 +20221014.14.21.57 +20221014.14.46.18 +20221014.14.59.49 +20221014.15.11.15 +20221014.15.27.51 +20221014.15.44.59 +20221014.15.57.28 +20221014.16.10.16 +20221014.16.28.15 +20221014.16.48.31 +20221014.17.06.45 +20221014.17.29.03 +20221014.17.45.34 +20221014.17.59.47 +20221014.18.10.09 +20221014.18.28.04 +20221014.18.45.41 +20221014.18.59.42 +20221014.19.27.02 +20221014.19.39.52 +20221014.19.52.27 +20221014.20.07.55 +20221014.20.28.29 +20221014.20.44.38 +20221014.20.56.18 +20221014.21.08.43 +20221014.21.27.26 +20221014.21.41.32 +20221014.21.56.19 +20221014.22.08.03 +20221014.22.27.53 +20221014.22.42.39 +20221014.22.54.53 +20221014.23.07.51 +20221014.23.27.11 +20221014.23.43.29 +20221014.23.55.50 +20221015.00.26.45 +20221015.00.52.32 +20221015.01.38.29 +20221015.02.41.43 +20221015.03.42.24 +20221015.04.27.22 +20221015.05.03.35 +20221015.05.32.43 +20221015.05.54.01 +20221015.06.15.14 +20221015.06.29.23 +20221015.06.48.04 +20221015.07.03.09 +20221015.07.15.48 +20221015.07.29.38 +20221015.07.42.25 +20221015.07.53.42 +20221015.08.09.10 +20221015.08.45.14 +20221015.08.59.13 +20221015.09.09.57 +20221015.09.27.53 +20221015.09.42.10 +20221015.09.55.00 +20221015.10.07.47 +20221015.10.27.12 +20221015.10.43.07 +20221015.10.55.02 +20221015.11.07.33 +20221015.11.26.46 +20221015.11.38.54 +20221015.11.52.20 +20221015.12.09.44 +20221015.12.28.36 +20221015.12.49.09 +20221015.13.20.11 +20221015.13.48.49 +20221015.14.03.06 +20221015.14.13.28 +20221015.14.26.58 +20221015.14.41.36 +20221015.14.53.36 +20221015.15.07.38 +20221015.15.27.15 +20221015.15.42.09 +20221015.15.55.27 +20221015.16.08.22 +20221015.16.27.37 +20221015.16.47.11 +20221015.17.04.04 +20221015.17.17.58 +20221015.17.33.22 +20221015.17.47.54 +20221015.17.58.26 +20221015.18.08.12 +20221015.18.27.41 +20221015.18.44.26 +20221015.18.58.04 +20221015.19.08.50 +20221015.19.26.24 +20221015.19.38.03 +20221015.19.52.13 +20221015.20.08.13 +20221015.20.27.30 +20221015.20.42.06 +20221015.20.55.10 +20221015.21.07.52 +20221015.21.26.24 +20221015.21.40.41 +20221015.21.53.45 +20221015.22.07.45 +20221015.22.27.32 +20221015.22.42.33 +20221015.22.54.59 +20221015.23.07.34 +20221015.23.27.26 +20221015.23.43.38 +20221015.23.55.56 +20221016.00.27.19 +20221016.00.52.40 +20221016.01.36.31 +20221016.02.42.32 +20221016.03.45.02 +20221016.04.28.07 +20221016.05.01.20 +20221016.05.28.38 +20221016.05.49.49 +20221016.06.13.05 +20221016.06.28.12 +20221016.06.46.06 +20221016.07.01.21 +20221016.07.14.00 +20221016.07.27.06 +20221016.07.41.46 +20221016.07.53.38 +20221016.08.09.07 +20221016.08.28.00 +20221016.08.44.18 +20221016.08.57.49 +20221016.09.09.54 +20221016.09.26.50 +20221016.09.41.58 +20221016.09.54.50 +20221016.10.07.37 +20221016.10.27.04 +20221016.10.42.39 +20221016.10.56.17 +20221016.11.07.23 +20221016.11.26.12 +20221016.11.39.18 +20221016.11.52.09 +20221016.12.10.12 +20221016.12.28.57 +20221016.12.49.34 +20221016.13.20.45 +20221016.13.48.31 +20221016.14.04.17 +20221016.14.13.17 +20221016.14.26.42 +20221016.14.41.41 +20221016.14.53.46 +20221016.15.08.11 +20221016.15.26.49 +20221016.15.42.43 +20221016.15.56.02 +20221016.16.08.31 +20221016.16.28.30 +20221016.16.47.11 +20221016.17.04.08 +20221016.17.18.07 +20221016.17.33.32 +20221016.17.48.27 +20221016.17.59.13 +20221016.18.08.10 +20221016.18.27.33 +20221016.18.44.45 +20221016.18.57.21 +20221016.19.09.19 +20221016.19.26.24 +20221016.19.38.26 +20221016.19.52.19 +20221016.20.09.05 +20221016.20.27.15 +20221016.20.42.32 +20221016.20.54.48 +20221016.21.07.13 +20221016.21.26.23 +20221016.21.40.08 +20221016.21.53.31 +20221016.22.07.56 +20221016.22.26.53 +20221016.22.42.09 +20221016.22.55.24 +20221016.23.07.57 +20221016.23.27.13 +20221016.23.43.32 +20221016.23.56.20 +20221017.0 +20221017.00.27.06 +20221017.00.53.21 +20221017.01.39.28 +20221017.02.41.44 +20221017.03.47.42 +20221017.04.41.07 +20221017.05.19.53 +20221017.06.04.23 +20221017.06.42.25 +20221017.07.08.36 +20221017.07.36.14 +20221017.08.03.12 +20221017.08.49.28 +20221017.09.05.36 +20221017.09.29.02 +20221017.09.49.01 +20221017.10.04.12 +20221017.10.17.17 +20221017.10.30.22 +20221017.10.47.08 +20221017.11.01.38 +20221017.11.12.17 +20221017.11.26.54 +20221017.11.41.38 +20221017.11.53.47 +20221017.11.57.41 +20221017.12.10.20 +20221017.12.29.44 +20221017.12.51.02 +20221017.13.26.13 +20221017.13.53.00 +20221017.14.21.16 +20221017.14.46.30 +20221017.15.01.07 +20221017.15.12.19 +20221017.15.28.24 +20221017.15.45.41 +20221017.16.00.28 +20221017.16.14.44 +20221017.16.29.52 +20221017.16.50.48 +20221017.17.22.11 +20221017.17.49.42 +20221017.18.17.57 +20221017.18.34.58 +20221017.19.04.19 +20221017.19.29.10 +20221017.19.44.36 +20221017.19.56.05 +20221017.20.08.06 +20221017.20.27.36 +20221017.20.43.22 +20221017.20.55.19 +20221017.21.06.12 +20221017.21.08.04 +20221017.21.26.34 +20221017.21.40.54 +20221017.21.54.26 +20221017.22.07.33 +20221017.22.27.48 +20221017.22.44.28 +20221017.22.55.35 +20221017.23.07.43 +20221017.23.27.44 +20221017.23.44.38 +20221017.23.56.53 +20221018 +20221018.0 +20221018.00.28.46 +20221018.00.52.55 +20221018.01.38.32 +20221018.02.42.17 +20221018.03.43.32 +20221018.04.32.37 +20221018.05.13.34 +20221018.05.50.39 +20221018.06.32.12 +20221018.06.55.10 +20221018.07.21.13 +20221018.07.49.02 +20221018.08.03.37 +20221018.08.16.02 +20221018.08.32.05 +20221018.08.51.22 +20221018.09.13.39 +20221018.09.28.11 +20221018.09.45.43 +20221018.09.59.25 +20221018.10.10.07 +20221018.10.27.36 +20221018.10.46.22 +20221018.10.59.47 +20221018.11.09.29 +20221018.11.26.51 +20221018.11.40.25 +20221018.11.53.19 +20221018.12.10.49 +20221018.12.29.22 +20221018.12.50.27 +20221018.13.25.53 +20221018.13.52.11 +20221018.14.21.04 +20221018.15.09.07 +20221018.15.28.05 +20221018.15.46.27 +20221018.16.00.10 +20221018.16.13.25 +20221018.16.29.33 +20221018.16.40.36 +20221018.16.49.23 +20221018.17.20.00 +20221018.17.48.57 +20221018.18.04.56 +20221018.18.29.11 +20221018.18.49.20 +20221018.19.06.03 +20221018.19.28.02 +20221018.19.41.47 +20221018.19.53.43 +20221018.2 +20221018.20.08.36 +20221018.20.28.07 +20221018.20.43.39 +20221018.20.56.07 +20221018.21.08.07 +20221018.21.27.15 +20221018.21.41.39 +20221018.21.54.10 +20221018.22.07.42 +20221018.22.42.48 +20221018.22.55.15 +20221018.23.08.28 +20221018.23.27.50 +20221018.23.44.58 +20221018.23.57.21 +20221019.00.52.40 +20221019.01.36.55 +20221019.02.42.24 +20221019.03.43.20 +20221019.04.33.25 +20221019.05.14.36 +20221019.05.51.07 +20221019.06.34.26 +20221019.07.11.34 +20221019.07.34.38 +20221019.08.02.27 +20221019.08.17.27 +20221019.08.34.23 +20221019.08.53.55 +20221019.09.14.04 +20221019.09.29.47 +20221019.09.45.57 +20221019.09.59.40 +20221019.10.12.28 +20221019.10.28.31 +20221019.10.46.34 +20221019.10.59.59 +20221019.11.04.28 +20221019.2 +20221020.0 +20221020.17.09.04 +20221021.09.06.10 +20221021.20.04.37 +20221022.17.33.44 +20221022.18.04.19 +20221023.0 +20221023.11.37.23 +20221025.0 +20221025.10.08.06 +20221026.11.29.52 +20221026.15.33.22 +20221027 +20221027.18.03.38 +20221030.00.08.56 +20221031.08.03.19 +20221031.08.08.24 +20221031.08.26.20 +20221031.12.08.43 +20221031.20.14.25 +20221101 +20221101.10.11.00 +20221101.20.40.11 +20221102.08.37.53 +20221102.12.22.14 +20221102.17.17.55 +20221103 +20221104 +20221104.12.22.08 +20221104.2 +20221105 +20221106 +20221106.00.09.13 +20221107 +20221107.0 +20221107.12.05.40 +20221107.13.39.48 +20221108 +20221108.20.03.35 +20221108.20.07.56 +20221108.20.27.37 +20221109 +20221109.0 +20221110 +20221111 +20221111.0 +20221112 +20221113.00.09.28 +20221114 +20221114.19.27.45 +20221114.22.01.57 +20221114.22.55.15 +20221115 +20221115.0 +20221115.10.17.43 +20221115.12.07.17 +20221118.13.54.01 +20221118.13.54.40 +20221118.16.49.21 +20221122 +20221122.0 +20221122.18.30.18 +20221123.0 +20221124.23.58.32 +20221125.14.46.28 +20221128.0 +20221128.20.35.46 +20221129.12.25.01 +20221129.12.30.04 +20221129.15.49.30 +20221129.16.08.02 +20221130.11.37.05 +20221130.11.46.47 +20221130.11.51.51 +20221130.2 +20221130.21.02.34 +20221201.0 +20221201.12.02.37 +20221201.12.57.39 +20221202.16.54.36 +20221202.19.48.02 +20221204.00.20.50 +20221205.0 +20221205.1 +20221205.13.32.09 +20221206.0 +20221207.10.34.51 +20221207.12.36.57 +20221207.23.06.56 +20221208.17.13.33 +20221208.18.39.03 +20221209.00.25.43 +20221209.00.51.36 +20221210.16.41.10 +20221211.22.37.33 +20221212.18.05.15 +20221212.18.07.41 +20221212.22.43.33 +20221213.0 +20221213.03.22.32 +20221213.18.33.29 +20221214.10.15.24 +20221214.10.17.59 +20221215.15.40.39 +20221216.0 +20221217.19.13.38 +20221218.0 +20221221.12.50.28 +20221231.01.35.48 +2022_4.30 +2022a +2022b +2022c +2022d +2022e +2022f +2022g +2023.0 +2023.0.0 +2023.0.0a1 +2023.0.1 +2023.0.2 +2023.01.01 +2023.01.02.00 +2023.01.02.15.58.49 +2023.01.02.15.58.50 +2023.01.02.22.00.51 +2023.01.03.13.13.01 +2023.01.04 +2023.01.04.12.23.09 +2023.01.04.12.54.07 +2023.01.04.13.03.46 +2023.01.07.12.45.19 +2023.01.09 +2023.01.1 +2023.01.11 +2023.01.12.02.23.43 +2023.01.12.02.48.16 +2023.01.12.03.06.02 +2023.01.12.11.18.58 +2023.01.12.13.22.45 +2023.01.12.13.25.31 +2023.01.1202 +2023.01.13 +2023.01.13.20.05.16 +2023.01.13.20.05.23 +2023.01.13.20.05.48 +2023.01.13.20.08.24 +2023.01.14.14.08.20 +2023.01.14.17.24.24 +2023.01.14.23.54.30 +2023.01.15.02.58.09 +2023.01.15.15.00.49 +2023.01.15.15.56.23 +2023.01.15.15.59.52 +2023.01.15.16.23.03 +2023.01.15.17.04.45 +2023.01.16.00 +2023.01.16.02.45.13 +2023.01.16.09.03.45 +2023.01.16.10.03.29 +2023.01.16.18.52.45 +2023.01.16.20.28.38 +2023.01.17 +2023.01.17.12.20.49 +2023.01.17.14.17.22 +2023.01.18.12.01.58 +2023.01.18.19.16.13 +2023.01.20.05.27.27 +2023.01.22.14.31.33 +2023.01.22.14.39.28 +2023.01.22.23.15.20 +2023.01.23.00 +2023.01.23.01.26.33 +2023.01.23.20.28.41 +2023.01.24 +2023.01.24.14.49.06 +2023.01.25 +2023.01.25.04.58.41 +2023.01.25.09.04.33 +2023.01.25.09.30.06 +2023.01.25.21.47.14 +2023.01.26.00.00.57 +2023.01.26.03.13.59 +2023.01.26.09.04.24 +2023.01.26.09.23.31 +2023.01.26.12.13.20 +2023.01.26.12.34.18 +2023.01.26.16.59.55 +2023.01.27 +2023.01.27.16.18.18 +2023.01.27.20.38.35 +2023.01.28 +2023.01.28.02.34.29 +2023.01.28.03.27.41 +2023.01.28.16.04.00 +2023.01.28.17.33.52 +2023.01.29.18.28.15 +2023.01.29.23.43.37 +2023.01.30 +2023.01.30.00 +2023.01.30.13.41.09 +2023.01.31.03.10.11 +2023.02 +2023.02.0 +2023.02.01 +2023.02.01.15.56.57 +2023.02.01.16.07.08 +2023.02.01.17.44.36 +2023.02.01.17.44.57 +2023.02.01.19.46.10 +2023.02.01.20.20.08 +2023.02.01.20.25.27 +2023.02.01.21.25.17 +2023.02.01.21.26.02 +2023.02.02 +2023.02.02.06.21.42 +2023.02.02.06.30.53 +2023.02.02.07.34.49 +2023.02.02.08.33.21 +2023.02.02.08.33.36 +2023.02.02.08.49.57 +2023.02.02.08.57.52 +2023.02.02.09.24.31 +2023.02.02.09.25.07 +2023.02.02.10.20.52 +2023.02.02.10.21.23 +2023.02.02.14.06.17 +2023.02.02.17.24.02 +2023.02.02.19.14.40 +2023.02.03.15.35.07 +2023.02.03.15.35.28 +2023.02.03.20.59.28 +2023.02.03.21.00.05 +2023.02.03.23.27.09 +2023.02.04.03.16.13 +2023.02.04.12.26.59 +2023.02.05.22.35.38 +2023.02.06 +2023.02.06.00 +2023.02.06.13.29.07 +2023.02.06.13.55.07 +2023.02.07.10.12.15 +2023.02.07.10.17.00 +2023.02.07.10.20.08 +2023.02.07.10.21.38 +2023.02.07.16.29.18 +2023.02.07.17.16.20 +2023.02.07.17.29.45 +2023.02.07.21.02.21 +2023.02.07.21.54.18 +2023.02.08 +2023.02.08.00.26.03 +2023.02.08.16.11.02 +2023.02.08.17.58.10 +2023.02.08.20.12.13 +2023.02.09.13.31.53 +2023.02.09.17.40.48 +2023.02.1 +2023.02.10 +2023.02.10.21.46.00 +2023.02.11 +2023.02.11.23.25.27 +2023.02.12.08.25.45 +2023.02.12.11.51.20 +2023.02.13.00 +2023.02.13.04.13.59 +2023.02.13.12.45.21 +2023.02.13.17.41.30 +2023.02.14.01.17.40 +2023.02.14.04.57.01 +2023.02.14.17.15.36 +2023.02.14.20.03.14 +2023.02.14.20.33.56 +2023.02.15 +2023.02.15.05.17.45 +2023.02.15.19.55.44 +2023.02.15.19.59.39 +2023.02.16 +2023.02.16.11.03.50 +2023.02.16.11.04.46 +2023.02.16.16.03.52 +2023.02.16.16.37.04 +2023.02.16.17.12.18 +2023.02.16.23.42.32 +2023.02.17 +2023.02.17.13.34.26 +2023.02.17.18.17.27 +2023.02.18.11.03.35 +2023.02.19.10.16.26 +2023.02.19.10.17.35 +2023.02.19.20.30.33 +2023.02.20.00 +2023.02.20.15.57.59 +2023.02.20.16.09.03 +2023.02.22.13.06.18 +2023.02.22.13.44.02 +2023.02.22.13.48.04 +2023.02.22.17.01.31 +2023.02.22.21.05.40 +2023.02.22.21.06.20 +2023.02.22.21.07.53 +2023.02.22.21.13.16 +2023.02.22.21.13.28 +2023.02.23.00.38.09 +2023.02.23.04.43.58 +2023.02.23.10.32.16 +2023.02.23.15.29.15 +2023.02.23.20.23.31 +2023.02.24 +2023.02.24.11.03.39 +2023.02.24.11.04.05 +2023.02.24.22.31.19 +2023.02.25.20.27.20 +2023.02.26 +2023.02.27 +2023.02.27.00 +2023.02.27.06.53.56 +2023.02.28.00.25.39 +2023.03.0 +2023.03.01 +2023.03.02 +2023.03.02.03.20.38 +2023.03.02.10.11.47 +2023.03.02.10.25.20 +2023.03.02.17.17.57 +2023.03.02.19.21.59 +2023.03.03.08.17.39 +2023.03.03.08.17.52 +2023.03.03.08.25.28 +2023.03.03.08.25.34 +2023.03.03.08.25.57 +2023.03.03.08.26.07 +2023.03.03.08.26.13 +2023.03.03.08.26.22 +2023.03.03.08.27.01 +2023.03.03.08.27.23 +2023.03.03.08.27.24 +2023.03.03.08.27.46 +2023.03.03.14.22.24 +2023.03.03.14.47.34 +2023.03.03.18.50.53 +2023.03.04 +2023.03.04.06.15.04 +2023.03.04.06.15.24 +2023.03.04.06.16.04 +2023.03.04.06.16.51 +2023.03.04.15.25.23 +2023.03.06.00 +2023.03.1 +2023.03.13 +2023.03.13.00 +2023.03.14 +2023.03.20 +2023.03.20.00 +2023.03.22 +2023.03.26 +2023.03.27.00 +2023.03.28 +2023.03.31 +2023.04.03.00 +2023.04.09 +2023.04.10.00 +2023.04.11 +2023.04.12 +2023.04.15 +2023.04.16 +2023.04.17 +2023.04.18 +2023.04.23 +2023.04.27 +2023.04.30 +2023.05.07 +2023.05.08 +2023.05.22.00 +2023.05.31 +2023.06.08.00 +2023.06.12.00 +2023.1 +2023.1.0 +2023.1.1 +2023.1.12 +2023.1.13 +2023.1.2 +2023.1.20 +2023.1.23 +2023.1.23.0 +2023.1.23.1 +2023.1.26 +2023.1.27 +2023.1.30 +2023.1.4 +2023.1.6 +2023.1.7 +2023.1.8 +2023.1.9 +2023.2 +2023.2.0 +2023.2.1 +2023.2.12 +2023.2.13 +2023.2.15 +2023.2.16 +2023.2.17 +2023.2.18 +2023.2.19 +2023.2.2 +2023.2.20 +2023.2.22 +2023.2.23 +2023.2.27 +2023.2.28 +2023.2.3 +2023.2.4 +2023.2.6 +2023.2.7 +2023.2.8 +2023.3 +2023.3.0 +2023.3.1 +2023.3.10 +2023.3.22 +2023.3.23 +2023.3.3 +2023.4 +2023.4.0 +2023.4.1 +2023.4.13 +2023.4.2 +2023.4.22 +2023.4.3 +2023.5 +2023.5.0 +2023.5.10 +2023.5.4 +2023.5.5 +2023.5.7 +2023.6.0 +2023.6.3 +20230000.0 +20230103.0 +20230104.0 +20230104.20.22.07 +20230105 +20230105.11.22.24 +20230107.0 +20230107.00.58.43 +20230110.0 +20230110.02.32.08 +20230111.01.21.32 +20230111.01.47.05 +20230112.11.17.31 +20230112.14.36.41 +20230112.14.58.24 +20230114.00.43.58 +20230115 +20230115.23.09.51 +20230117.18.11.44 +20230119.17.34.49 +20230122 +20230122.00.08.30 +20230123.14.50.44 +20230123.20.35.32 +20230124.0 +20230125.0 +20230125.09.11.37 +20230125.14.04.35 +20230125.18.20.15 +20230125.2 +20230126.14.36.19 +20230127.19.28.03 +20230131.0 +20230131.21.02.59 +20230131.21.18.28 +20230131.22.17.46 +20230202 +20230203.03.49.03 +20230203.04.20.22 +20230204.13.44.51 +20230205.0 +20230207.0 +20230207.02.57.09 +20230209.0 +20230209.1 +20230210.19.32.53 +20230210.19.34.47 +20230211.15.05.31 +20230214.0 +20230214.13.59.03 +20230214.16.05.46 +20230214.23.55.53 +20230219.18.53.59 +20230221.0 +20230221.21.30.25 +20230222.13.51.41 +20230223.14.46.04 +20230225.21.08.29 +20230227.11.55.15 +20230227.20.19.56 +20230301.0 +20230302.0 +20230302.17.23.45 +20230303.0 +20230304.0 +20230306.0 +20230307.0 +20230311.0 +20230313 +20230314.0 +20230315.0 +20230317.0 +20230319.1 +20230322 +20230329.0 +20230404.0 +20230410.0 +20230411.0 +20230414.0 +20230414.1 +20230415.0 +20230417.0 +20230418.1 +20230422.0 +20230424 +20230425.0 +20230428.0 +20230430.0 +20230502.0 +20230516.0 +2023a +2023b +2023c +203 +204 +205 +205.0.0 +206 +206.0.0 +207 +207.0.0 +208 +208.0.0 +208.0.1 +208.0.2 +209 +209.0.0 +21.0 +21.0.0 +21.0.1 +21.0.2 +21.0.3 +21.01 +21.01.0 +21.02 +21.02.0 +21.03 +21.03.0 +21.03.12 +21.03.16 +21.04 +21.04.0 +21.05 +21.06 +21.06.00 +21.07 +21.08 +21.08.0 +21.08.00 +21.08.01 +21.08.02 +21.09 +21.09.0 +21.1 +21.1.0 +21.1.0.0.0 +21.1.1 +21.1.13.1 +21.1.2 +21.1.3 +21.1.7 +21.10 +21.10.0 +21.10.00 +21.10.01 +21.10.1 +21.10.31 +21.10.6 +21.10b0 +21.11 +21.11.0 +21.11.1 +21.11.13 +21.11.28 +21.11.29 +21.11b0 +21.11b1 +21.12 +21.12.0 +21.12.00 +21.12.1 +21.12.19358 +21.12b0 +21.13.19438 +21.15.19533 +21.16.19610 +21.17.19709 +21.18.19737 +21.19.19792 +21.2 +21.2.0 +21.2.1 +21.2.2 +21.2.3 +21.2.4 +21.2.5 +21.20.19883 +21.21.19914 +21.22.19967 +21.23.20043 +21.24.20098 +21.26.20194 +21.3 +21.3.0 +21.3.1 +21.3.2 +21.3.4 +21.3.4.2 +21.4 +21.4.0 +21.4.1 +21.4.3 +21.4b0 +21.4b2 +21.5 +21.5.0 +21.5b0 +21.5b1 +21.5b2 +21.6 +21.6.0 +21.6.0.0.0 +21.6.1 +21.6.10 +21.6.2 +21.6.3 +21.6.6 +21.7 +21.7.0 +21.7.1 +21.7.22 +21.7b0 +21.8 +21.8.0 +21.8.1 +21.8.22 +21.8b0 +21.9 +21.9.0 +21.9.1 +21.9.2 +21.9.3 +21.9b0 +210 +210.0.0 +211 +211.0.0 +212 +212.0.0 +213 +213.0.0 +214 +214.0.0 +215 +215.0.0 +216 +216.0.0 +217 +217.0.0 +218 +218.0.0 +219 +22.0 +22.0.0 +22.0.1 +22.0.10 +22.0.2 +22.0.3 +22.0.4 +22.0.5 +22.0.6 +22.0.7 +22.0.8 +22.0.9 +22.01 +22.01.0 +22.02 +22.02.00 +22.03 +22.03.0 +22.03.0.40 +22.04 +22.04.0 +22.04.00 +22.04.01 +22.04.1 +22.04.5 +22.05 +22.05.0 +22.05.0.41 +22.05.4 +22.06 +22.06.00 +22.06.01 +22.07 +22.07.0 +22.07.0.11 +22.07.1 +22.07.1.14 +22.08 +22.08.00 +22.09 +22.09.0 +22.09.1 +22.1 +22.1.0 +22.1.0.0 +22.1.0.1 +22.1.0.2 +22.1.0.3 +22.1.0.4 +22.1.0.6 +22.1.0.7 +22.1.0.8 +22.1.0.9 +22.1.1 +22.1.11 +22.1.2 +22.1.4 +22.1.5 +22.10 +22.10.0 +22.10.01 +22.10.1 +22.10.13 +22.10.2 +22.10.25 +22.10.27 +22.10.4 +22.10.6 +22.10.post1 +22.11 +22.11.0 +22.11.0.1 +22.11.0.13 +22.11.1 +22.11.17 +22.12 +22.12.0 +22.12.00 +22.12.06 +22.12.1 +22.12.2 +22.12.6 +22.14.0 +22.16.0 +22.18.0 +22.2 +22.2.0 +22.2.1 +22.2.2 +22.2.3 +22.2.4 +22.2.5 +22.2.6 +22.2.7 +22.2.8 +22.20.0 +22.3 +22.3.0 +22.3.1 +22.3.17 +22.3.2 +22.3.20 +22.3.23 +22.3.3 +22.3.4 +22.3.5 +22.4 +22.4.0 +22.4.1 +22.4.2 +22.4.25 +22.5 +22.5.0 +22.5.1 +22.5.2 +22.6 +22.6.0 +22.6.1 +22.6.2 +22.6.22 +22.6.3 +22.6.4 +22.6.5 +22.7 +22.7.0 +22.7.1 +22.8 +22.8.0 +22.8.1 +22.8.1.0 +22.8.10 +22.8.10.1 +22.8.2 +22.8.20 +22.8.22 +22.8.23 +22.8.25 +22.9 +22.9.0 +22.9.1 +22.9.11 +22.9.23 +22.9.24 +22.9.29 +220 +2206 +2206.0.10 +2208.0.1 +2208.1.0 +2208.1.1 +221 +222 +223 +224 +225 +226 +227 +228 +228.0.0 +229 +23.0 +23.0.0 +23.0.0.0 +23.0.0.1 +23.0.0.2 +23.0.0.3 +23.0.0.4 +23.0.1 +23.0.2 +23.0.3 +23.0.4 +23.01 +23.01.0 +23.02 +23.03 +23.03.0 +23.03.0.20 +23.04 +23.04.0 +23.05 +23.05.0 +23.1 +23.1.0 +23.1.1 +23.1.14 +23.1.17 +23.1.2 +23.1.20 +23.1.21 +23.1.3 +23.1.4 +23.1.5 +23.1.7 +23.11.0 +23.13.1 +23.2 +23.2.0 +23.2.1 +23.2.13 +23.2.3 +23.2.4 +23.2.5 +23.2.6 +23.2.7 +23.3 +23.3.0 +23.3.1 +23.3.2 +23.3.3 +23.3.4 +23.3.4.1 +23.3.4.10 +23.3.4.4 +23.3.4.6 +23.4.0 +23.4.1 +23.5 +23.5.0 +23.5.1 +23.5.26 +23.6.0 +23.7.0 +23.8.2 +23.9.0 +23.9.1 +23.9.3 +230 +231 +231.0.0 +232 +232.0.0 +233 +233.0.0 +234 +234.0.0 +235 +235.0.0 +236 +236.0.0 +237 +237.0.0 +238 +238.0.0 +239.0.0 +24.0 +24.0.0 +24.0.1 +24.0.2 +24.0.3 +24.0.4 +24.0.5 +24.0.6 +24.1 +24.1.1 +24.1.2 +24.1.3 +24.1.4 +24.1.5 +24.1.6 +24.1.7 +24.2 +24.2.0 +24.2.1 +24.2.2 +24.3 +24.3.1 +24.3.2 +24.3.3 +24.3.4 +243.0.0 +244.0.0 +245.0.0 +246.0.0 +247.0.0 +248.0.0 +249 +249.0.0 +25.0 +25.0.0 +25.0.1 +25.0.2 +25.0.3 +25.0.4 +25.1 +25.1.0 +25.1.1 +25.1.2 +25.1.3 +25.1.4 +25.1.5 +25.1.6 +25.2 +25.2.0 +25.2.1 +25.2.2 +25.2.3 +25.3 +25.3.0 +25.3.1 +25.3.2 +25.4.0 +250.0.0 +251 +251.0.0 +252 +252.0.0 +253 +253.0.0 +254.0.0 +255.0.0 +256.0.0 +257.0.0 +258.0.0 +259.0.0 +26.0 +26.0.0 +26.0.1 +26.1 +26.1.0 +26.1.1 +26.2 +26.3 +260.0.0 +261.0.0 +262.0.0 +263.0.0 +264.0.0 +265.0.0 +266.0.0 +267.0.0 +268.0.0 +269.0.0 +27.0 +27.0.0 +27.1 +27.1.0 +27.1.2 +27.2 +27.2.0 +27.3.0 +27.3.1 +270.0.0 +27093 +271.0.0 +272.0.0 +273 +273.0.0 +274.0.0 +274.0.1 +274.2 +276.0.0 +277.0.0 +278.0.0 +279.0.0 +28.0.0 +28.1 +28.2 +28.3.0 +28.4.0 +28.5.0 +28.6.0 +28.6.1 +28.7.0 +28.7.1 +28.8.0 +280.0.0 +281 +281.0.0 +287.0.0 +288.0.0 +289.0.0 +29.0.0 +29.0.1 +29.1.0 +290.0.0 +290.0.1 +291.0.0 +292.0.0 +293.0.0 +294.0.0 +295.0.0 +296.0.0 +296.0.1 +297.0.0 +297.0.1 +298.0.0 +299.0.0 +3 +3.0 +3.0.0 +3.0.0.0 +3.0.0.1 +3.0.0.2 +3.0.0.3 +3.0.0.4 +3.0.0.5 +3.0.0.89 +3.0.0.alpha +3.0.0.post1 +3.0.0.post2 +3.0.0.post3 +3.0.0a3 +3.0.0a4 +3.0.0a5 +3.0.0a6 +3.0.0a7 +3.0.0b1 +3.0.0b2 +3.0.0b2.post2 +3.0.0b3 +3.0.0dev +3.0.0rc1 +3.0.0rc2 +3.0.1 +3.0.1.1 +3.0.1.2 +3.0.1.dev2 +3.0.10 +3.0.11 +3.0.11.23 +3.0.12 +3.0.13 +3.0.14 +3.0.15 +3.0.16 +3.0.1658662267 +3.0.1663074851 +3.0.1663481299 +3.0.17 +3.0.18 +3.0.19 +3.0.2 +3.0.20 +3.0.20181206233650 +3.0.20200317203547 +3.0.20200530110633 +3.0.20200706173533 +3.0.20200710214758 +3.0.20200720165847 +3.0.20200724003302 +3.0.20200807132242 +3.0.20201017180608 +3.0.20201020111341 +3.0.20201026152241 +3.0.20201113183607 +3.0.20201116114821 +3.0.20201117141248 +3.0.20201121085451 +3.0.20201203173111 +3.0.20210124104916 +3.0.20210319143721 +3.0.21 +3.0.21.02.21 +3.0.22 +3.0.23 +3.0.24 +3.0.25 +3.0.26 +3.0.27 +3.0.28 +3.0.29 +3.0.3 +3.0.3.3 +3.0.30 +3.0.31 +3.0.32 +3.0.33 +3.0.34 +3.0.35 +3.0.36 +3.0.37 +3.0.38 +3.0.39 +3.0.4 +3.0.4.322 +3.0.4.5 +3.0.4.6 +3.0.4.7 +3.0.40 +3.0.41 +3.0.44 +3.0.45 +3.0.46 +3.0.47 +3.0.4b +3.0.5 +3.0.5.1 +3.0.5.2 +3.0.6 +3.0.66 +3.0.7 +3.0.8 +3.0.9 +3.0.9.1 +3.0.a3 +3.0.alpha +3.0.b127 +3.00 +3.000 +3.004 +3.007 +3.01 +3.02 +3.030 +3.04 +3.05 +3.05.01 +3.05.02 +3.06 +3.06.1 +3.0609 +3.07 +3.0702 +3.08 +3.0800 +3.09 +3.0_0 +3.0_1 +3.0_10 +3.0_11 +3.0_12 +3.0_13 +3.0_2 +3.0_3 +3.0_4 +3.0_5 +3.0_6 +3.0_7 +3.0_8 +3.0_9 +3.0a1 +3.0a2 +3.0a3 +3.0a8 +3.0b1.post3 +3.0b1.post7 +3.0b1.post8 +3.0b2 +3.0b4 +3.0rc2 +3.0rc4 +3.0rc6 +3.1 +3.1.0 +3.1.0.post1 +3.1.0rc1 +3.1.1 +3.1.1.3 +3.1.1.5 +3.1.1.a0 +3.1.10 +3.1.11 +3.1.12 +3.1.13 +3.1.14 +3.1.14.post0 +3.1.15 +3.1.16 +3.1.1658648837 +3.1.1663062229 +3.1.1663587362 +3.1.17 +3.1.18 +3.1.19 +3.1.19316 +3.1.1a1 +3.1.2 +3.1.2.2 +3.1.2.3 +3.1.2.4 +3.1.2.post0 +3.1.20 +3.1.20170329 +3.1.20190125161400 +3.1.20191231 +3.1.20210616134059 +3.1.20210628163208 +3.1.20210816212154 +3.1.20210922130607 +3.1.20210922203925 +3.1.20211001174446 +3.1.20211004060744 +3.1.20211014180718 +3.1.20211019185001 +3.1.20211020155521 +3.1.20211104071347 +3.1.20211107152837 +3.1.20220119140128 +3.1.20220124184855 +3.1.20220202173120 +3.1.20220204090313 +3.1.20220210171524 +3.1.20220217190813 +3.1.20220217222804 +3.1.20220221074232 +3.1.20220224085855 +3.1.20220406080846 +3.1.20220502060230 +3.1.20220607081835 +3.1.20220623174452 +3.1.20220628170238 +3.1.20220801180230 +3.1.20220802125926 +3.1.20220913185150 +3.1.20221008225030 +3.1.20221018083734 +3.1.20221108205138 +3.1.20221109155812 +3.1.20221201130942 +3.1.20230127121939 +3.1.20230201224320 +3.1.20230209161050 +3.1.20230213100550 +3.1.20230302145532 +3.1.20230325110543 +3.1.20230425144158 +3.1.21 +3.1.22 +3.1.23 +3.1.24 +3.1.25 +3.1.26 +3.1.27 +3.1.28 +3.1.29 +3.1.3 +3.1.30 +3.1.31 +3.1.32 +3.1.33 +3.1.34 +3.1.35 +3.1.36 +3.1.38 +3.1.3b2 +3.1.4 +3.1.4.1 +3.1.4.2 +3.1.403 +3.1.408 +3.1.409 +3.1.41 +3.1.410 +3.1.412 +3.1.413 +3.1.415 +3.1.416 +3.1.417 +3.1.418 +3.1.419 +3.1.420 +3.1.423 +3.1.425 +3.1.426 +3.1.5 +3.1.5.dev10 +3.1.5.dev11 +3.1.5.dev12 +3.1.5.dev13 +3.1.5.dev3 +3.1.5.dev4 +3.1.5.dev5 +3.1.5.dev8 +3.1.5.dev9 +3.1.50 +3.1.6 +3.1.6.1 +3.1.6.2 +3.1.7 +3.1.7.1 +3.1.7.2 +3.1.7.post0 +3.1.8 +3.1.9 +3.1.dev1 +3.1.post0 +3.10 +3.10.0 +3.10.0.0 +3.10.0.1 +3.10.0.2 +3.10.1 +3.10.1.0 +3.10.1.1 +3.10.10 +3.10.11 +3.10.12 +3.10.13 +3.10.14 +3.10.2 +3.10.2.0 +3.10.3 +3.10.3.0 +3.10.4 +3.10.4.0 +3.10.5 +3.10.5.0 +3.10.5.1 +3.10.6 +3.10.6.0 +3.10.7 +3.10.8 +3.10.9 +3.10.dev1 +3.100 +3.11 +3.11.0 +3.11.1 +3.11.10 +3.11.11 +3.11.12 +3.11.13 +3.11.14 +3.11.16 +3.11.2 +3.11.3 +3.11.4 +3.11.5 +3.11.6 +3.11.7 +3.11.8 +3.118.20293 +3.11_6 +3.12 +3.12.0 +3.12.1 +3.12.10 +3.12.11 +3.12.12 +3.12.13 +3.12.2 +3.12.3 +3.12.4 +3.12.5 +3.12.6 +3.12.7 +3.12.8 +3.12.9 +3.125.20293 +3.12_26 +3.13 +3.13.0 +3.13.0.1 +3.13.1 +3.13.10 +3.13.2 +3.13.3 +3.13.4 +3.13.5 +3.13.6 +3.13.7 +3.13.8 +3.13.9 +3.130.20302 +3.135.20303 +3.136.20306 +3.13_12 +3.14 +3.14.0 +3.14.1 +3.14.1.1 +3.14.10 +3.14.11 +3.14.12 +3.14.12.8 +3.14.15 +3.14.16 +3.14.2 +3.14.3 +3.14.4 +3.14.5 +3.14.6 +3.14.7 +3.14.8 +3.14.9 +3.141.0 +3.147.20327 +3.149.20327 +3.14_3 +3.15 +3.15.0 +3.15.0.0 +3.15.0.0+boost170 +3.15.1 +3.15.2 +3.15.3 +3.15.4 +3.15.5 +3.15.6 +3.15.7 +3.15.8 +3.151.20327 +3.15_21 +3.16 +3.16.0 +3.16.1 +3.16.10 +3.16.11 +3.16.12 +3.16.14 +3.16.16 +3.16.2 +3.16.2.r1 +3.16.3 +3.16.4 +3.16.5 +3.16.6 +3.16.7 +3.16.8 +3.16_18 +3.17 +3.17.0 +3.17.1 +3.17.19324 +3.17.2 +3.17.3 +3.17.4 +3.17.5 +3.17.6 +3.17.7 +3.17.7.1 +3.17.7.2 +3.17.8 +3.18 +3.18.0 +3.18.0.0 +3.18.0.1 +3.18.1 +3.18.10 +3.18.11 +3.18.12 +3.18.13 +3.18.14 +3.18.15 +3.18.17 +3.18.19324 +3.18.2 +3.18.3 +3.18.4 +3.18.5 +3.18.7 +3.18.8 +3.18.9 +3.19 +3.19.0 +3.19.1 +3.19.10 +3.19.11 +3.19.12 +3.19.13 +3.19.14 +3.19.15 +3.19.16 +3.19.17 +3.19.18 +3.19.19 +3.19.2 +3.19.20 +3.19.21 +3.19.22 +3.19.3 +3.19.4 +3.19.5 +3.19.6 +3.19.7 +3.19.8 +3.19.9 +3.1_0 +3.1_0.1 +3.1_1 +3.1_11 +3.1_12 +3.1_13 +3.1_131 +3.1_137 +3.1_138 +3.1_139 +3.1_14 +3.1_140 +3.1_141 +3.1_143 +3.1_144 +3.1_145 +3.1_147 +3.1_148 +3.1_149 +3.1_15 +3.1_150 +3.1_151 +3.1_152 +3.1_153 +3.1_155 +3.1_157 +3.1_158 +3.1_159 +3.1_160 +3.1_161 +3.1_162 +3.1_2 +3.1_3 +3.1_35 +3.1_37 +3.1_39 +3.1_4 +3.1_40 +3.1_42 +3.1_43 +3.1_47 +3.1_49 +3.1_5 +3.1_6 +3.1_7 +3.1_8 +3.1_9 +3.2 +3.2.0 +3.2.0.91 +3.2.0.post0 +3.2.0rc2 +3.2.1 +3.2.1.93 +3.2.1.post0 +3.2.10 +3.2.11 +3.2.12 +3.2.13 +3.2.14 +3.2.15 +3.2.16 +3.2.17 +3.2.2 +3.2.2.1 +3.2.2.94 +3.2.2.post1 +3.2.20 +3.2.21 +3.2.25 +3.2.28 +3.2.3 +3.2.3.1 +3.2.3.2 +3.2.3.post0 +3.2.34 +3.2.36 +3.2.39 +3.2.4 +3.2.5 +3.2.6 +3.2.6.2 +3.2.6.4 +3.2.6.post2 +3.2.6a +3.2.7 +3.2.8 +3.2.9 +3.2.post2 +3.2.post3 +3.2.post4 +3.2.post5 +3.2.post6 +3.2.post7 +3.2.post8 +3.2.post9 +3.20 +3.20.0 +3.20.1 +3.20.1.r1 +3.20.2 +3.20.3 +3.20.4 +3.20.4.1 +3.20.4.2 +3.20.4.3 +3.20.4.4 +3.20.4.5 +3.20.4.6 +3.20.5 +3.20.6 +3.2021.12.2 +3.2021.15.2 +3.2021.16.2 +3.2021.18.2 +3.2021.22.2 +3.2021.24.2 +3.2021.25.2 +3.2021.26.2 +3.2021.30.2 +3.2021.31.2 +3.2021.32.2 +3.2021.33.2 +3.2021.34.2 +3.2021.37.2 +3.2021.40.2 +3.2021.41.2 +3.2021.42.2 +3.2021.43.2 +3.2021.45.2 +3.2021.46.2 +3.2021.47.2 +3.2021.49.2 +3.2021.52.2 +3.2022.11.2 +3.2022.12.2 +3.2022.13.2 +3.2022.14.2 +3.2022.15.2 +3.2022.16.2 +3.2022.17.2 +3.2022.19.2 +3.2022.25.2 +3.2022.3.2 +3.2022.30.2 +3.2022.31.2 +3.2022.32.2 +3.2022.33.2 +3.2022.34.2 +3.2022.4.2 +3.2022.40.2 +3.2022.41.2 +3.2022.42.2 +3.2022.44.2 +3.2022.45.2 +3.2022.47.2 +3.2022.50.2 +3.2022.8.2 +3.2022.9.2 +3.2023.1.2 +3.2023.2.2 +3.2023.4.2 +3.2023.5.2 +3.2023.7.2 +3.21 +3.21.0 +3.21.1 +3.21.10 +3.21.11 +3.21.12 +3.21.2 +3.21.3 +3.21.4 +3.21.5 +3.21.6 +3.21.7 +3.21.8 +3.21.9 +3.22 +3.22.0 +3.22.0.r1 +3.22.1 +3.22.11 +3.22.14 +3.22.15 +3.22.16 +3.22.2 +3.22.3 +3.22.4 +3.22.5 +3.22.6 +3.23 +3.23.0 +3.23.0.4 +3.23.1 +3.23.1.r1 +3.23.2 +3.23.3 +3.23.4 +3.23.5 +3.23.6 +3.24 +3.24.0 +3.24.0.r1 +3.24.1 +3.24.14 +3.24.18 +3.24.2 +3.24.20 +3.24.21 +3.24.22 +3.24.23 +3.24.24 +3.24.25 +3.24.26 +3.24.27 +3.24.28 +3.24.29 +3.24.3 +3.24.31 +3.24.32 +3.24.33 +3.24.34 +3.24.35 +3.24.36 +3.24.37 +3.24.38 +3.24.4 +3.24.5 +3.24.6 +3.24.7 +3.24.8 +3.25 +3.25.0 +3.25.1 +3.25.2 +3.25.2.r1 +3.25.3 +3.26 +3.26.0 +3.26.1 +3.26.2 +3.26.3 +3.26.4 +3.27 +3.27.0 +3.27.1 +3.28 +3.28.0 +3.28.0.r1 +3.28.1 +3.28.2 +3.28.3 +3.28.4 +3.28.5 +3.28.6 +3.28.7 +3.29 +3.29.0 +3.29.0.r1 +3.29.1 +3.29.2 +3.29.3 +3.2_0 +3.2_1 +3.2_10 +3.2_11 +3.2_12 +3.2_13 +3.2_2 +3.2_3 +3.2_4 +3.2_7 +3.2_8 +3.2_9 +3.2a +3.2rc1 +3.3 +3.3.0 +3.3.0.1 +3.3.0.2 +3.3.0.23 +3.3.0.4 +3.3.0a69 +3.3.0a70 +3.3.1 +3.3.1.1 +3.3.10 +3.3.108 +3.3.11 +3.3.111 +3.3.112 +3.3.113 +3.3.115 +3.3.12 +3.3.13 +3.3.14 +3.3.15 +3.3.16 +3.3.17 +3.3.18 +3.3.19 +3.3.2 +3.3.2.post1 +3.3.20 +3.3.21 +3.3.22 +3.3.23 +3.3.23.1 +3.3.23.2 +3.3.24 +3.3.25 +3.3.26 +3.3.27 +3.3.28 +3.3.29 +3.3.3 +3.3.3.1 +3.3.3.2 +3.3.30 +3.3.31 +3.3.3333 +3.3.4 +3.3.4000 +3.3.5 +3.3.5.1 +3.3.6 +3.3.7 +3.3.7.1 +3.3.8 +3.3.9 +3.3.90.1 +3.3.90.2 +3.3.90.3 +3.3.90.4 +3.3.904 +3.3.dev2 +3.3.post0 +3.3.post2 +3.3.post3 +3.30 +3.30.0 +3.30.0.4 +3.30.0.5 +3.30.0.6 +3.30.0.7 +3.30.1 +3.30.1.1 +3.30.1.2 +3.30.1.3 +3.30.1.r1 +3.30.2 +3.30.3 +3.30.4 +3.30.5 +3.300 +3.31 +3.31.0 +3.31.1 +3.31.20024 +3.32.0 +3.32.0.1 +3.32.0.2 +3.32.0.3 +3.32.0.4 +3.32.0.5 +3.32.1 +3.32.1.1 +3.32.1.2 +3.32.1.3 +3.32.1.4 +3.32.1.5 +3.32.1.6 +3.32.1.7 +3.32.2 +3.32.2.r1 +3.32.20026 +3.32.20028 +3.32.3 +3.32_1 +3.33.0 +3.33.0.r1 +3.33.1 +3.34 +3.34.0 +3.34.0.1 +3.34.0.3 +3.34.0.6 +3.34.0.r1 +3.34.1 +3.34.2 +3.34.3 +3.35 +3.35.0 +3.35.0.2 +3.35.2 +3.35.3 +3.35.4 +3.35.5 +3.35_1 +3.36 +3.36.0 +3.36.0.1 +3.36.0.2 +3.36.0.3 +3.36.0.4 +3.36.0.r1 +3.36.1 +3.36.1.1 +3.36.1.2 +3.36.1.3 +3.36.1.4 +3.36.1.5 +3.36.2 +3.36.3 +3.37 +3.37.0 +3.37.0.r1 +3.37.1 +3.37.3 +3.38.0 +3.38.0.1 +3.38.0.2 +3.38.0.3 +3.38.0.4 +3.38.1 +3.38.2 +3.38.3 +3.38.4 +3.38.5 +3.38.9 +3.39 +3.39.0 +3.39.1 +3.39.2 +3.39.2.0 +3.39.2.1 +3.39.3 +3.39.4 +3.39.4.0 +3.3_0 +3.3_1 +3.3_13 +3.3_2 +3.3_3 +3.3_6 +3.3_7 +3.3a +3.3b1 +3.3b2 +3.3b3 +3.3b4 +3.3rc2 +3.4 +3.4.0 +3.4.0.0 +3.4.0.3 +3.4.0.95 +3.4.1 +3.4.1.0 +3.4.10 +3.4.11 +3.4.12 +3.4.13 +3.4.14 +3.4.15 +3.4.16 +3.4.17 +3.4.18 +3.4.19 +3.4.2 +3.4.2.1 +3.4.2.2 +3.4.2.3 +3.4.2.4 +3.4.2.5 +3.4.3 +3.4.4 +3.4.5 +3.4.6 +3.4.7 +3.4.7.1 +3.4.7.2 +3.4.8 +3.4.9 +3.4.post0 +3.4.post1 +3.4.post2 +3.4.post3 +3.4.post4 +3.4.post5 +3.4.post6 +3.4.rc2 +3.40.0 +3.40.0.1 +3.40.1 +3.40.2 +3.40.3 +3.41.0 +3.41.2 +3.410 +3.42 +3.42.0 +3.42.1 +3.42.2 +3.420 +3.43 +3.43.0 +3.43.1 +3.43.2 +3.430 +3.44 +3.44.0 +3.44.1 +3.44.23 +3.44.24 +3.44.26 +3.44.3 +3.44.4 +3.45 +3.45.0 +3.45.1 +3.45.2 +3.45.20031 +3.45.3 +3.45.5 +3.46 +3.46.0 +3.46.1 +3.47 +3.47.0 +3.47.1 +3.47.2 +3.47.20042 +3.47.3 +3.470 +3.48.0 +3.48.1 +3.48_01 +3.49.0 +3.49.1 +3.4_0 +3.4_10 +3.4_13 +3.4_3 +3.4_5 +3.4_6 +3.4_8 +3.5 +3.5.0 +3.5.0.0 +3.5.0.1 +3.5.0.2 +3.5.0.3 +3.5.0.4 +3.5.0b2 +3.5.0rc2 +3.5.1 +3.5.1.1 +3.5.10 +3.5.11 +3.5.12 +3.5.13 +3.5.14 +3.5.15 +3.5.16 +3.5.17 +3.5.18 +3.5.19 +3.5.2 +3.5.20 +3.5.21 +3.5.22 +3.5.23 +3.5.24 +3.5.25 +3.5.26 +3.5.28 +3.5.3 +3.5.3.0 +3.5.31 +3.5.32 +3.5.4 +3.5.42 +3.5.44 +3.5.45 +3.5.46 +3.5.47 +3.5.49 +3.5.5 +3.5.50 +3.5.51 +3.5.52 +3.5.53 +3.5.54 +3.5.55 +3.5.56 +3.5.57 +3.5.58 +3.5.59 +3.5.6 +3.5.60 +3.5.63 +3.5.65 +3.5.66 +3.5.67 +3.5.68 +3.5.7 +3.5.8 +3.5.9 +3.5.post0 +3.5.post1 +3.5.post2 +3.5.rc1 +3.50.0 +3.50.1 +3.50.2 +3.51.0 +3.51.1 +3.51.2 +3.51.20059 +3.51.3 +3.51.4 +3.52 +3.52.0 +3.52.1 +3.53.0 +3.53.1 +3.54.0 +3.55 +3.55.0 +3.55.1 +3.55.2 +3.55.3 +3.55.4 +3.55.6 +3.56 +3.56.0 +3.56.3 +3.56.5 +3.56.6 +3.56.7 +3.56.8 +3.56.9 +3.57 +3.57.0 +3.58 +3.58.0 +3.59 +3.59.0 +3.59.1 +3.5_0 +3.5_11 +3.5_15 +3.5_2 +3.5_21 +3.5_3 +3.5_5 +3.6 +3.6.0 +3.6.0.0 +3.6.01 +3.6.0a3 +3.6.0a4 +3.6.0b1 +3.6.0b2 +3.6.0b3 +3.6.0b4 +3.6.0rc1 +3.6.1 +3.6.10 +3.6.11 +3.6.12 +3.6.13 +3.6.14 +3.6.15 +3.6.16 +3.6.17 +3.6.18 +3.6.19 +3.6.2 +3.6.2.0 +3.6.2.1 +3.6.2.2 +3.6.20 +3.6.23 +3.6.24 +3.6.29 +3.6.3 +3.6.3.0 +3.6.30 +3.6.32 +3.6.33 +3.6.34 +3.6.35 +3.6.36 +3.6.37 +3.6.38 +3.6.39 +3.6.4 +3.6.4.0 +3.6.41 +3.6.42 +3.6.43 +3.6.5 +3.6.6 +3.6.7 +3.6.8 +3.6.9 +3.60 +3.60.0 +3.60.1 +3.61 +3.61.0 +3.62 +3.62.0 +3.63 +3.63.0 +3.64 +3.64.0 +3.64.1 +3.64.2 +3.65 +3.65.0 +3.66 +3.66.0 +3.66.1 +3.66.11 +3.66.12 +3.66.14 +3.66.2 +3.66.24 +3.66.29 +3.66.31 +3.66.32 +3.66.4 +3.66.5 +3.66.6 +3.66.8 +3.66.9 +3.67 +3.67.0 +3.67.1 +3.68.0 +3.68.1 +3.68.2 +3.69 +3.69.0 +3.69.1 +3.69.11 +3.69.12 +3.69.2 +3.6_1 +3.6_13 +3.6_14 +3.6_20 +3.6_6 +3.7 +3.7.0 +3.7.0.1 +3.7.0.8 +3.7.00 +3.7.01 +3.7.1 +3.7.10 +3.7.11 +3.7.12 +3.7.13 +3.7.14 +3.7.15 +3.7.16 +3.7.17 +3.7.19 +3.7.2 +3.7.20 +3.7.22 +3.7.28 +3.7.3 +3.7.4 +3.7.4.1 +3.7.4.2 +3.7.4.3 +3.7.4.post0 +3.7.5 +3.7.5.1 +3.7.6 +3.7.6.0 +3.7.7 +3.7.7.0 +3.7.7.1 +3.7.8 +3.7.8.2 +3.7.9 +3.70.0 +3.70.20151 +3.70.3 +3.70.4 +3.71 +3.71.0 +3.71.1 +3.71.10 +3.71.20168 +3.71.3 +3.71.6 +3.71.7 +3.71.8 +3.71.9 +3.72 +3.72.0 +3.73 +3.73.0 +3.73.1 +3.73.2 +3.73.3 +3.73.4 +3.74 +3.74.0 +3.74.1 +3.74.2 +3.74.3 +3.75 +3.75.0 +3.75.3 +3.75.4 +3.76 +3.76.0 +3.77 +3.77.0 +3.78 +3.78.0 +3.79.0 +3.79.2 +3.79.3 +3.7_3 +3.7_4 +3.7_5 +3.7_6 +3.7_7 +3.7_8 +3.8 +3.8.0 +3.8.0.0 +3.8.1 +3.8.1.0 +3.8.1.0+boost170 +3.8.1.post1 +3.8.10 +3.8.11 +3.8.12 +3.8.13 +3.8.14 +3.8.15 +3.8.16 +3.8.17 +3.8.18 +3.8.19 +3.8.2 +3.8.2.0 +3.8.3 +3.8.3.0 +3.8.3.1 +3.8.4 +3.8.4.0 +3.8.5 +3.8.5.0 +3.8.6 +3.8.7 +3.8.8 +3.8.9 +3.80 +3.80.0 +3.81 +3.81.0 +3.82 +3.82.0 +3.82.1 +3.82.3 +3.82.4 +3.82.5 +3.82.6 +3.83 +3.83.0 +3.83.1 +3.83.2 +3.84.0 +3.84.1 +3.84.2 +3.84.3 +3.84.4 +3.84.5 +3.84.6 +3.85.0 +3.85.1 +3.85.2 +3.85.3 +3.86.0 +3.86.3 +3.86.4 +3.86.5 +3.86.7 +3.86.8 +3.86.9 +3.87.0 +3.87.20218 +3.88 +3.88.0 +3.88.1 +3.88.2 +3.88.3 +3.89 +3.89.0 +3.89.20246 +3.8_1 +3.8_2 +3.8_3 +3.9 +3.9.0 +3.9.0.0 +3.9.0.post1 +3.9.1 +3.9.1.0 +3.9.1.1 +3.9.1.post1 +3.9.10 +3.9.11 +3.9.12 +3.9.13 +3.9.14 +3.9.15 +3.9.16 +3.9.18 +3.9.19 +3.9.2 +3.9.2.0 +3.9.2.1 +3.9.2.2 +3.9.20 +3.9.21 +3.9.23 +3.9.24 +3.9.25 +3.9.26 +3.9.27 +3.9.29 +3.9.3 +3.9.3.0 +3.9.30 +3.9.33 +3.9.34 +3.9.35 +3.9.36 +3.9.39 +3.9.3_1 +3.9.3_2 +3.9.4 +3.9.4.0 +3.9.43 +3.9.5 +3.9.5.0 +3.9.6 +3.9.6.0 +3.9.7 +3.9.7.0 +3.9.8 +3.9.8.0 +3.9.9 +3.90 +3.90.0 +3.901 +3.93.20259 +3.98_1.11 +3.98_1.16 +3.98_1.19 +3.98_1.20 +3.98_1.6 +3.99_0.10 +3.99_0.11 +3.99_0.12 +3.99_0.13 +3.99_0.14 +3.99_0.3 +3.99_0.5 +3.99_0.6 +3.99_0.7 +3.99_0.8 +3.99_0.9 +3.9_0 +3.9_3 +30 +30.1.2 +30.2.0 +30.3.0 +30.3.1 +300 +301 +3012.100 +302 +302.0.0 +303 +303.0.0 +304 +304.0.0 +3042.102 +3042.80.1 +3042.80.2 +3042.83.2 +3042.89 +3042.89.1 +3042.89.2 +3043.102 +305.0.0 +306.0.0 +3062.100 +307.0.0 +308.0.0 +309.0.0 +31 +31.0.0 +31.0.1 +31.2.0 +310.0.0 +311.0.0 +312.0.0 +313.0.0 +313.0.1 +314.0.0 +315.0.0 +316.0.0 +317.0.0 +318.0.0 +319.0.0 +32 +32.0.0 +32.0.1 +32.1.0 +32.3.0 +32.3.1 +320.0.0 +321.0.0 +322.0.0 +323 +323.0.0 +324 +324.0.0 +325 +325.0.0 +326.0.0 +327.0.0 +328.0.0 +329.0.0 +33.1.0 +33.1.1 +33.4.0 +330 +330.0.0 +331 +331.0.0 +332.0.0 +333.0.0 +334.0.0 +335.0.0 +336.0.0 +337.0.0 +338.0.0 +339.0.0 +34.0 +340.0.0 +341.0.0 +342.0.0 +343.0.0 +344.0.0 +346.0.0 +347.0.0 +348.0.0 +349.0.0 +35.0 +35.0.0 +35.7.6 +35.7.7 +35.7.8 +35.8.0 +35.8.1 +35.8.3 +35.8.4 +35.9.0 +350.0.0 +351.0.0 +352.0.0 +353.0.0 +354.0.0 +355.0.0 +356.0.0 +357.0.0 +358.0.0 +359.0.0 +36 +36.0 +36.0.0 +36.0.1 +36.0.2 +36.2.0 +36.2.2 +36.3.0 +36.6.0 +36.7.2 +360.0.0 +361.0.0 +362.0.0 +363.0.0 +364.0.0 +365.0.0 +365.0.1 +366.0.0 +367.0.0 +368.0.0 +369.0.0 +37 +37.0 +37.0.0 +37.0.1 +37.0.2 +37.0.3 +37.0.4 +37.1 +37.10 +37.17 +37.2 +37.3 +37.52 +37.62 +370.0.0 +371.0.0 +372.0.0 +374.0.0 +375.0.0 +376.0.0 +377.0.0 +378.0.0 +379.0.0 +38 +38.0.0 +38.0.1 +38.0.2 +38.0.3 +38.0.4 +38.06 +38.16 +38.18 +38.2.3 +38.2.4 +38.4.0 +38.5.1 +38.5.2 +38.6.0 +380.0.0 +381.0.0 +382.0.0 +383.0.0 +383.0.1 +384.0.0 +384.0.1 +385.0.0 +386.0.0 +387.0.0 +388.0.0 +389.0.0 +39.0.0 +39.0.1 +39.0.2 +39.1.0 +39.2.0 +390.0.0 +391.0.0 +392.0.0 +393.0.0 +394.0.0 +395.0.0 +396.0.0 +397.0.0 +398.0.0 +399.0.0 +3_6 +4 +4.0 +4.0.0 +4.0.0.0 +4.0.0.1 +4.0.0.2 +4.0.0.99 +4.0.0.post0 +4.0.0.post1 +4.0.0.post2 +4.0.00 +4.0.01 +4.0.0a0 +4.0.0b1 +4.0.0b2 +4.0.0b3 +4.0.0b4 +4.0.0b5 +4.0.0b6 +4.0.1 +4.0.1.2 +4.0.1.post1 +4.0.10 +4.0.10.0 +4.0.11 +4.0.11.0 +4.0.12 +4.0.12.0 +4.0.13 +4.0.14 +4.0.15 +4.0.15.1 +4.0.15.2 +4.0.16 +4.0.17 +4.0.18 +4.0.19 +4.0.2 +4.0.20 +4.0.20190130225346 +4.0.21 +4.0.23 +4.0.24 +4.0.25 +4.0.26 +4.0.27 +4.0.28 +4.0.29.7 +4.0.3 +4.0.3.0 +4.0.30 +4.0.30.25 +4.0.30.43 +4.0.30.44 +4.0.30.45 +4.0.31 +4.0.32 +4.0.34 +4.0.35 +4.0.38 +4.0.39 +4.0.4 +4.0.5 +4.0.5.2 +4.0.6 +4.0.6.0 +4.0.7 +4.0.7.0 +4.0.7.post2 +4.0.8 +4.0.8.1 +4.0.9 +4.0.9.0 +4.0.beta1 +4.007 +4.019 +4.02 +4.028 +4.03 +4.034 +4.04 +4.05 +4.06 +4.06.1 +4.07 +4.08 +4.09 +4.0_0 +4.0_06Jun17 +4.0_1 +4.0_2 +4.0_3 +4.0rc1.post2 +4.1 +4.1.0 +4.1.0.0 +4.1.0.1 +4.1.0.2 +4.1.0.3 +4.1.0.4 +4.1.0.5 +4.1.0.6 +4.1.0.dev0 +4.1.0.p3 +4.1.0.post1 +4.1.1 +4.1.1.0 +4.1.1.p2 +4.1.1.post0 +4.1.10 +4.1.11 +4.1.12 +4.1.13 +4.1.14 +4.1.15 +4.1.16 +4.1.17 +4.1.18 +4.1.19 +4.1.2 +4.1.2.0 +4.1.2.p1 +4.1.2.post0 +4.1.20 +4.1.20190227145202 +4.1.20190305210046 +4.1.20329 +4.1.21 +4.1.22 +4.1.23 +4.1.2351.a80a8b8 +4.1.3 +4.1.3.0 +4.1.3.1 +4.1.4 +4.1.4.0 +4.1.4.1 +4.1.5 +4.1.5.0 +4.1.6 +4.1.6.0 +4.1.7 +4.1.7.0 +4.1.8 +4.1.8.0 +4.1.8.1 +4.1.9 +4.1.9.0 +4.1.95 +4.10 +4.10.0 +4.10.0.112 +4.10.1 +4.10.10 +4.10.11 +4.10.12 +4.10.2 +4.10.21011 +4.10.3 +4.10.4 +4.10.5 +4.10.50 +4.10.6 +4.10.7 +4.10_0 +4.10_1 +4.10_2 +4.10_4 +4.10_8 +4.11 +4.11.0 +4.11.1 +4.11.12 +4.11.2 +4.11.21016 +4.11.3 +4.11.4 +4.11.5 +4.11.6 +4.11.7 +4.11.8 +4.11.9 +4.11_0 +4.12 +4.12.0 +4.12.0.113 +4.12.1 +4.12.2 +4.12.3 +4.12.4 +4.12.5 +4.12.6 +4.12.7 +4.12.9 +4.12_0 +4.13 +4.13.0 +4.13.1 +4.13.2 +4.13.3 +4.13_0 +4.13_19 +4.13_20 +4.13_22 +4.13_23 +4.13_24 +4.13_25 +4.14 +4.14.0 +4.14.0.115 +4.14.1 +4.14.2 +4.14.21026 +4.14.3 +4.14.5 +4.14.6 +4.14_0 +4.15 +4.15.0 +4.15.1 +4.15.2 +4.15.21026 +4.15_0 +4.15_1 +4.16 +4.16.0 +4.16.0.116 +4.16.1 +4.16.1.117 +4.16.2 +4.16.3 +4.16.6 +4.16.8 +4.161950 +4.16_0 +4.16_1 +4.16_2 +4.17 +4.17.0 +4.17.0.1 +4.17.0.2 +4.17.0.4 +4.17.0.5 +4.17.0.6 +4.17.1 +4.17.11 +4.17.13 +4.17.14 +4.17.15 +4.17.2 +4.17.21027 +4.17.3 +4.17.3.6 +4.17.3.7 +4.17.3.8 +4.17.4 +4.17.4.0 +4.17.4.5 +4.17.4.6 +4.17.4.7 +4.17.4.8 +4.17.4.9 +4.17.5 +4.17.5.0 +4.17.5.1 +4.17.5.2 +4.17.5.3 +4.17_0 +4.18 +4.18.0 +4.18.0.118 +4.18.1 +4.18.2 +4.18.21031 +4.18.3 +4.18.4 +4.18.7 +4.18_0 +4.18_1 +4.18_2 +4.19 +4.19.0 +4.19.1 +4.19.13 +4.19.18 +4.19.2 +4.19.20 +4.19.21059 +4.19.22 +4.19.23 +4.19.24 +4.19.25 +4.19.3 +4.19.4 +4.19.5 +4.19.6 +4.19.7 +4.19.8 +4.19.9 +4.19_0 +4.19_1 +4.19_2 +4.1_0 +4.1_1 +4.1_10 +4.1_13 +4.1_15 +4.1_2 +4.1_21Jan17.6cc.jar +4.1_4 +4.1_7 +4.1_8 +4.1_9 +4.1l +4.2 +4.2.0 +4.2.0.0 +4.2.0.1 +4.2.0.100 +4.2.0.2 +4.2.0.p3 +4.2.0.post0 +4.2.0.post1 +4.2.1 +4.2.1.0 +4.2.1.p3 +4.2.10 +4.2.11 +4.2.11.1 +4.2.12 +4.2.13 +4.2.14 +4.2.15 +4.2.2 +4.2.2.0 +4.2.2.1 +4.2.2.2 +4.2.2.3 +4.2.20340 +4.2.3 +4.2.3.0 +4.2.4 +4.2.4.0 +4.2.4.1 +4.2.5 +4.2.5.0 +4.2.5.1 +4.2.5.2 +4.2.6 +4.2.6.0 +4.2.6.1 +4.2.7 +4.2.8 +4.2.9 +4.20 +4.20.0 +4.20.0.120 +4.20.1 +4.20.1.121 +4.20.21059 +4.201720 +4.21.0 +4.21.0.0 +4.21.0.1 +4.21.0.2 +4.21.0.3 +4.21.0.4 +4.21.0.5 +4.21.0.6 +4.21.0.7 +4.21.1 +4.21.10 +4.21.11 +4.21.12 +4.21.2 +4.21.21059 +4.21.3 +4.21.4 +4.21.5 +4.21.6 +4.21.7 +4.21.8 +4.21.9 +4.218 +4.22 +4.22.0 +4.22.0.0 +4.22.1 +4.22.2 +4.22.21108 +4.22.3 +4.22.5 +4.220 +4.222 +4.224 +4.226 +4.228 +4.23 +4.23.0 +4.23.1 +4.23.2 +4.23.21108 +4.23.3 +4.23.4 +4.23.5 +4.23.6 +4.23.7 +4.23.8 +4.23.9 +4.24 +4.24.0 +4.24.1 +4.24.2 +4.24.3 +4.24.4 +4.24.5 +4.24.6 +4.25 +4.25.0 +4.25.1 +4.25.2 +4.26 +4.26.0 +4.26.1 +4.26.3 +4.26.4 +4.27 +4.27.0 +4.27.1 +4.27.2 +4.27.3 +4.27.4 +4.28 +4.28.0 +4.28.1 +4.28.2 +4.28.3 +4.28.4 +4.28.5 +4.29 +4.29.0 +4.29.1 +4.29.2 +4.2_0 +4.2_1 +4.2_16 +4.2_2 +4.2_23 +4.2_3 +4.2_30 +4.2_4 +4.2_5 +4.2_8 +4.3 +4.3.0 +4.3.0.0 +4.3.0.post1 +4.3.042 +4.3.0a +4.3.1 +4.3.1.post1 +4.3.10 +4.3.11 +4.3.11377 +4.3.12 +4.3.13 +4.3.14 +4.3.15 +4.3.16 +4.3.17 +4.3.18 +4.3.19 +4.3.1t +4.3.2 +4.3.20 +4.3.20340 +4.3.21 +4.3.21.1 +4.3.21.2 +4.3.21.3 +4.3.21.4 +4.3.21.5 +4.3.21.6 +4.3.21.7 +4.3.22 +4.3.23 +4.3.24 +4.3.27 +4.3.29 +4.3.3 +4.3.31 +4.3.32 +4.3.33 +4.3.34 +4.3.4 +4.3.4.post0 +4.3.5 +4.3.6 +4.3.7 +4.3.8 +4.3.9 +4.3.post1 +4.30 +4.30.0 +4.30.4 +4.30.5 +4.30.6 +4.30.7 +4.30.8 +4.31 +4.31.0 +4.31.1 +4.31.2 +4.32 +4.32.0 +4.32.1 +4.32.2 +4.32.3 +4.33 +4.33.0 +4.33.1 +4.33.2 +4.33.3 +4.34.0 +4.34.1 +4.34.2 +4.34.3 +4.34.4 +4.35 +4.35.0 +4.35.16 +4.35.6 +4.36.0 +4.36.1 +4.36.2 +4.37.0 +4.37.1 +4.37.2 +4.37.3 +4.37.4 +4.38.0 +4.38.1 +4.38.3 +4.39.0 +4.39.1 +4.39.2 +4.39.3 +4.39.4 +4.3_0 +4.3_1 +4.4 +4.4.0 +4.4.0.0 +4.4.0.103 +4.4.0.3 +4.4.0.4 +4.4.0.5 +4.4.0.6 +4.4.0rc1 +4.4.1 +4.4.1.1 +4.4.1.104 +4.4.10 +4.4.11 +4.4.12 +4.4.13 +4.4.14 +4.4.15 +4.4.16 +4.4.17 +4.4.18 +4.4.19 +4.4.2 +4.4.20 +4.4.21 +4.4.22 +4.4.23 +4.4.28 +4.4.3 +4.4.31 +4.4.32 +4.4.33 +4.4.4 +4.4.5 +4.4.6 +4.4.7 +4.4.8 +4.4.9 +4.4.97 +4.40.0 +4.40.1 +4.40.2 +4.40.21126 +4.40.8 +4.41.0 +4.41.1 +4.41.2 +4.41.21142 +4.41.3 +4.42.0 +4.42.1 +4.42.10 +4.42.3 +4.42.4 +4.42.5 +4.42.6 +4.42.7 +4.42.8 +4.43 +4.43.0 +4.43.1 +4.43.2 +4.43.3 +4.43.4 +4.43.5 +4.43.6 +4.43.8 +4.43.9 +4.44.0 +4.44.1 +4.44.2 +4.44.3 +4.44.4 +4.45.0 +4.46.0 +4.46.1 +4.47.0 +4.47.1 +4.47.2 +4.47.3 +4.47.4 +4.47.5 +4.48.0 +4.48.1 +4.48.2 +4.49 +4.49.0 +4.4_0 +4.4_1 +4.4_2 +4.4_20160413 +4.4_20160526 +4.5 +4.5.0 +4.5.0.post +4.5.1 +4.5.1.0 +4.5.1.1 +4.5.1.2 +4.5.1.3 +4.5.1.4 +4.5.10 +4.5.11 +4.5.12 +4.5.13 +4.5.19 +4.5.2 +4.5.20190815125611 +4.5.20190906201758 +4.5.20191017101802 +4.5.20191023134839 +4.5.20191229160203 +4.5.20343 +4.5.3 +4.5.3.1 +4.5.33 +4.5.36 +4.5.4 +4.5.5 +4.5.6 +4.5.7 +4.5.8 +4.5.9 +4.50 +4.50.0 +4.50.1 +4.50.2 +4.50.3 +4.50.4 +4.50.6 +4.50.7 +4.50.8 +4.51 +4.51.0 +4.52 +4.52.0 +4.53 +4.53.0 +4.53.1 +4.53.2 +4.53.3 +4.54 +4.54.0 +4.54.1 +4.54.2 +4.55 +4.55.0 +4.55.1 +4.55.2 +4.55.3 +4.55.4 +4.56 +4.56.0 +4.56.1 +4.56.2 +4.56.3 +4.57 +4.57.0 +4.57.1 +4.58 +4.58.0 +4.59 +4.59.0 +4.5_0 +4.5_15 +4.5covid19 +4.6 +4.6.0 +4.6.0.106 +4.6.1 +4.6.10 +4.6.11 +4.6.12 +4.6.13 +4.6.14 +4.6.15 +4.6.2 +4.6.2.6 +4.6.3 +4.6.4 +4.6.5 +4.6.6 +4.6.7 +4.6.8 +4.6.9 +4.60 +4.60.0 +4.60.1 +4.60.2 +4.60.3 +4.60.4 +4.61 +4.61.0 +4.61.1 +4.61.2 +4.62 +4.62.0 +4.62.1 +4.62.2 +4.62.3 +4.63 +4.63.0 +4.63.1 +4.63.2 +4.64 +4.64.0 +4.64.1 +4.65 +4.65.0 +4.65.1 +4.65.2 +4.66 +4.66.0 +4.67 +4.67.0 +4.68 +4.68.0 +4.69.0 +4.69.1 +4.6_0 +4.6_12 +4.6_14 +4.6_2 +4.6_3 +4.6_4.1 +4.7 +4.7.0 +4.7.0.post1 +4.7.1 +4.7.1.1 +4.7.10 +4.7.11 +4.7.12 +4.7.15 +4.7.16 +4.7.17 +4.7.18 +4.7.19 +4.7.2 +4.7.21002 +4.7.3 +4.7.4 +4.7.5 +4.7.6 +4.7.7 +4.7.8 +4.7.9 +4.70 +4.71 +4.72 +4.73 +4.74 +4.75 +4.76 +4.77 +4.78 +4.79 +4.7_0 +4.7_1 +4.7_1.1 +4.7_2 +4.8 +4.8.0 +4.8.0.110 +4.8.1 +4.8.1.0 +4.8.10 +4.8.2 +4.8.27 +4.8.28 +4.8.29 +4.8.3 +4.8.4 +4.8.5 +4.8.6 +4.8.7 +4.80 +4.81 +4.82 +4.89 +4.8_0 +4.8_1 +4.9 +4.9.0 +4.9.1 +4.9.2 +4.9.2.1 +4.9.2.2 +4.9.21002 +4.9.2_1 +4.9.3 +4.9.3_1 +4.9.4 +4.9.4.1 +4.9.5 +4.9.6 +4.9.7 +4.9.8 +4.9.9 +4.9_1 +4.9_10 +4.9_11 +4.9_2 +4.9_3 +4.9_4 +4.9_5 +4.9_6 +4.9_7 +4.9_9 +40 +40.0 +40.0.0 +40.0.1 +40.0.2 +40.1 +40.1.1 +40.2.0 +40.4.0 +40.4.3 +40.5.0 +40.6.0 +40.6.1 +40.6.2 +40.6.3 +40.7.0 +40.7.1 +40.7.3 +40.8.0 +40.9.0 +400.0.0 +401.0.0 +402.0.0 +4021.104 +4021.105 +4021.106 +4021.107 +4021.83 +4021.86 +4021.87 +4021.88 +4021.92 +4021.93 +4022.108 +4022.89 +4022.94 +403.0.0 +404.0.0 +405.0.0 +405.0.1 +406.0.0 +407.0.0 +408.0.1 +409.0.0 +409.12 +41 +41.0 +41.0.0 +41.0.1 +41.2.0 +41.4.0 +41.5.1 +41.6.0 +410.0.0 +411.0.0 +412.0.0 +413.0.0 +415.0.0 +416.0.0 +417.0.0 +417.0.1 +418.0.0 +419.0.0 +42 +42.0.0 +42.0.1 +42.0.2 +420.0.0 +421.0.0 +422.0.0 +423.0.0 +424.0.0 +425.0.0 +426.0.0 +427.0.0 +428.0.0 +429.0.0 +43 +43.0 +430.0.0 +431.0.0 +44 +44.0.0 +45 +45.0.0 +45.1 +45.1.0 +45.2.0 +45.3.0 +450.3 +46 +46.0.0 +46.1 +46.1.1 +46.1.3 +46.2.0 +46.3.0 +46.3.1 +46.4.0 +47 +47.0.0 +47.1.0 +47.1.1 +47.2.0 +47.3.0 +47.3.1 +47.3.2 +48 +48.0.0 +481 +49 +49.1.0 +49.1.1 +49.1.2 +49.1.3 +49.2.0 +49.2.1 +49.3.0 +49.3.1 +49.3.2 +49.4.0 +49.5.0 +49.6.0 +499.a107cef +4_10 +4_11 +4_12 +4_13 +4_14 +4_6 +4_9 +5 +5.0 +5.0.0 +5.0.0.0 +5.0.0.1 +5.0.0.124 +5.0.0.2 +5.0.0.2173 +5.0.0.3 +5.0.0.4 +5.0.0.4509.2e5a9a2 +5.0.0.4592.90b8472 +5.0.0.4634.697f757 +5.0.0.4636.2595836 +5.0.0.4636.c0ad18a +5.0.0.5 +5.0.0.post1 +5.0.011 +5.0.018 +5.0.1 +5.0.1.125 +5.0.10 +5.0.100 +5.0.11 +5.0.12 +5.0.13 +5.0.14 +5.0.15 +5.0.16 +5.0.17 +5.0.19 +5.0.2 +5.0.2.126 +5.0.201 +5.0.202 +5.0.20200105154004 +5.0.20200122085940 +5.0.20200126033820 +5.0.20200220195218 +5.0.20200302192450 +5.0.20200416112825 +5.0.203 +5.0.225 +5.0.229 +5.0.3 +5.0.3.0 +5.0.3.1 +5.0.301 +5.0.4 +5.0.4.1 +5.0.4.2 +5.0.4.post1 +5.0.4.post36 +5.0.400 +5.0.401 +5.0.403 +5.0.404 +5.0.405 +5.0.406 +5.0.407 +5.0.408 +5.0.5 +5.0.5.1 +5.0.5.2 +5.0.6 +5.0.6rc1 +5.0.7 +5.0.8 +5.0.88 +5.0.9 +5.002 +5.004 +5.006 +5.008 +5.01 +5.07 +5.0_0 +5.0_1 +5.0_2 +5.1 +5.1.0 +5.1.0.1 +5.1.0.17 +5.1.0b4 +5.1.1 +5.1.1.post0 +5.1.10 +5.1.10.0 +5.1.10.1 +5.1.15 +5.1.16 +5.1.2 +5.1.2.0 +5.1.3 +5.1.3.0 +5.1.4 +5.1.48 +5.1.5 +5.1.5.0 +5.1.5.1 +5.1.6 +5.1.7 +5.1.7.0 +5.1.8 +5.1.8.0 +5.1.8.1 +5.1.8.2 +5.1.8.3 +5.1.9 +5.10 +5.10.0 +5.10.0.138 +5.10.1 +5.10.2 +5.10.3 +5.10.4 +5.10.5 +5.100.0 +5.101.0 +5.102.0 +5.103.0 +5.104.0 +5.105.0 +5.106.0 +5.11 +5.11.0 +5.11.1 +5.11.2 +5.11.3 +5.11.4 +5.11.5 +5.12 +5.12.0 +5.12.0.140 +5.12.1 +5.12.1.141 +5.12.10 +5.12.11 +5.12.13 +5.12.15 +5.12.16 +5.12.18 +5.12.19 +5.12.2 +5.12.23 +5.12.24 +5.12.25 +5.12.3 +5.12.4 +5.12.5 +5.12.6 +5.12.8 +5.12.9 +5.127 +5.128 +5.129 +5.13 +5.13.0 +5.13.1 +5.13.10 +5.13.11 +5.13.13 +5.13.14 +5.13.15 +5.13.16 +5.13.17 +5.13.18 +5.13.2 +5.13.3 +5.13.6 +5.13.8 +5.13.9 +5.133 +5.14 +5.14.0 +5.14.0.142 +5.14.0.177 +5.14.1 +5.14.1.144 +5.14.2 +5.14.3 +5.14.4 +5.14.5 +5.14.7 +5.14.8 +5.15 +5.15.0 +5.15.1 +5.15.2 +5.15.3 +5.15.4 +5.15.5 +5.15.6 +5.15.6.0 +5.15.7 +5.15.8 +5.15.9 +5.16 +5.16.0 +5.16.0.145 +5.16.1 +5.16.1.146 +5.16.2 +5.16.2.147 +5.16.3 +5.16.5 +5.17 +5.17.0 +5.17.1 +5.17.2 +5.17.21182 +5.17.3 +5.17.4 +5.18 +5.18.0 +5.18.0.148 +5.18.1 +5.18.2 +5.18.3 +5.18.4 +5.19 +5.19.0 +5.19.1 +5.19.12 +5.19.13 +5.19.14 +5.19.16 +5.19.2 +5.19.3 +5.19.4 +5.19.5 +5.19.6 +5.19.7 +5.19.8 +5.19.9 +5.1_0 +5.1_1 +5.1_2 +5.1_24Aug19.3e8 +5.1_3.1 +5.1_4 +5.1_5 +5.1_6 +5.1_7 +5.1d +5.2 +5.2.0 +5.2.0.127 +5.2.0.post0 +5.2.1 +5.2.1.129 +5.2.1.post0 +5.2.10.49 +5.2.12 +5.2.15 +5.2.1_10 +5.2.1_12 +5.2.1_13 +5.2.1_14 +5.2.1_15 +5.2.1_18 +5.2.1_20 +5.2.1_22 +5.2.1_23 +5.2.1_7 +5.2.1rc0 +5.2.2 +5.2.2.130 +5.2.2.post1 +5.2.3 +5.2.3.131 +5.2.4 +5.2.40 +5.2.5 +5.2.6 +5.2.7 +5.2.8 +5.20 +5.20.0 +5.20.0.149 +5.20.1 +5.20.1.150 +5.20.2 +5.20.3 +5.20.3.1 +5.20.5 +5.20.6 +5.20190524 +5.20220120 +5.20220220 +5.20220313 +5.20220320 +5.20220420 +5.20220527 +5.20220620 +5.21 +5.21.0 +5.21.1 +5.212 +5.22.0 +5.22.0.1 +5.22.0.151 +5.22.1 +5.22.1.152 +5.22.2.1 +5.22.21182 +5.22.3 +5.22.5 +5.23.0 +5.23.1 +5.23.10 +5.23.11 +5.23.12 +5.23.2 +5.23.21182 +5.23.3 +5.23.4 +5.23.5 +5.23.6 +5.23.7 +5.23.8 +5.23.9 +5.24.0 +5.24.0.153 +5.24.1 +5.24.2 +5.24.3 +5.24.4 +5.25 +5.25.0 +5.25.1 +5.26.0 +5.26.1 +5.26.2 +5.26.2.1 +5.26.3 +5.27.0 +5.27.1 +5.27.4 +5.28.0 +5.29.0 +5.29.2 +5.29.3 +5.29.5 +5.29.6 +5.29.7 +5.29.8 +5.2_0 +5.2_21Apr21.304 +5.3 +5.3.0 +5.3.0.0 +5.3.0.1 +5.3.0.2 +5.3.0.3 +5.3.0.4 +5.3.1 +5.3.11 +5.3.2 +5.3.21 +5.3.28 +5.3.3 +5.3.4 +5.3.5 +5.3.6 +5.3.8 +5.30 +5.30.0 +5.30.1 +5.30.2 +5.30.3 +5.30.3.1 +5.31.0 +5.31.1 +5.31.4 +5.32 +5.32.0 +5.32.0.1 +5.32.1 +5.32.1.1 +5.32.2 +5.32.5 +5.33 +5.33.0 +5.33.3 +5.33.9 +5.34.0 +5.34.36 +5.34.38 +5.35 +5.35.0 +5.36 +5.36.0 +5.37 +5.37.0 +5.37.1 +5.37.3 +5.37.4 +5.37.5 +5.38 +5.38.0 +5.38.1 +5.39 +5.39.0 +5.3_1 +5.3_2 +5.3_4 +5.4 +5.4.0 +5.4.0.132 +5.4.1 +5.4.1.134 +5.4.10 +5.4.10_1.2.0 +5.4.10_1.3.0 +5.4.11 +5.4.12 +5.4.2 +5.4.3 +5.4.4 +5.4.5 +5.4.6 +5.4.7 +5.4.8 +5.4.9 +5.40 +5.40.0 +5.40.1 +5.41 +5.41.0 +5.41.1 +5.41.2 +5.41.3 +5.41.4 +5.41.5 +5.42.0 +5.42.1 +5.42.2 +5.42.3 +5.43.0 +5.43.1 +5.43.2 +5.43.3 +5.43.4 +5.43.5 +5.43.6 +5.43.7 +5.43.8 +5.43.9 +5.44.0 +5.44.21241 +5.45.0 +5.45.4 +5.46.0 +5.47.0 +5.48.0 +5.49.0 +5.4_1 +5.4_10 +5.4_12 +5.4_3 +5.5 +5.5.0 +5.5.1 +5.5.10 +5.5.1016 +5.5.1068 +5.5.11 +5.5.12 +5.5.13 +5.5.14 +5.5.15 +5.5.2 +5.5.2.0_17 +5.5.2.0_17.1 +5.5.2.0_17.4 +5.5.2.0_17.6 +5.5.2.0_17.7 +5.5.2.0_17.8 +5.5.2.0_17.9 +5.5.2.5 +5.5.3 +5.5.4 +5.5.5 +5.5.6 +5.5.7 +5.5.8 +5.5.9 +5.5.985 +5.5.992 +5.5004 +5.506 +5.508 +5.51 +5.52 +5.52.0 +5.54 +5.55 +5.55.0 +5.57.21262 +5.5_0 +5.6 +5.6.0 +5.6.0.0 +5.6.0.135 +5.6.0a1 +5.6.1 +5.6.13 +5.6.13.1 +5.6.13.2 +5.6.13.3 +5.6.15 +5.6.16 +5.6.17 +5.6.18 +5.6.2 +5.6.2_2.0.0 +5.6.2_2.1.0 +5.6.2_2.2.0 +5.6.3 +5.6.4 +5.6.5 +5.6.6 +5.6.7 +5.6.8 +5.6.9 +5.64.0 +5.64.1 +5.65.0 +5.66.0 +5.661 +5.67.0 +5.68.0 +5.69.0 +5.6_1 +5.6_2 +5.7 +5.7.0 +5.7.0.0 +5.7.0.1 +5.7.0.dev20210429 +5.7.0rc2 +5.7.1 +5.7.10 +5.7.11 +5.7.2 +5.7.20 +5.7.28 +5.7.3 +5.7.4 +5.7.5 +5.7.6 +5.7.7 +5.7.8 +5.7.9 +5.70 +5.70.0 +5.70.1 +5.71.0 +5.72 +5.72.0 +5.73 +5.73.0 +5.74 +5.74.0 +5.74.1 +5.75 +5.75.0 +5.76.0 +5.77.0 +5.79.0 +5.7_1 +5.8 +5.8.0 +5.8.0.136 +5.8.0rc1 +5.8.0rc2 +5.8.0rc3 +5.8.1 +5.8.2 +5.8.3 +5.8.4 +5.8.5 +5.8.6 +5.8.7 +5.80.0 +5.81.0 +5.82 +5.82.0 +5.83 +5.83.0 +5.84.0 +5.85 +5.85.0 +5.86 +5.86.0 +5.87.0 +5.88 +5.88.0 +5.89.0 +5.891 +5.9 +5.9.0 +5.9.0a1 +5.9.0rc2 +5.9.1 +5.9.2 +5.9.20201122.0 +5.9.20201206.0 +5.9.20201213.0 +5.9.20201220.0 +5.9.20201227.0 +5.9.20210103.0 +5.9.20210110.0 +5.9.20210117.0 +5.9.20210124.0 +5.9.20210131.0 +5.9.20210207.0 +5.9.20210214.0 +5.9.20210221.0 +5.9.20210228.0 +5.9.20210307.0 +5.9.20210314.0 +5.9.20210321.0 +5.9.20210328.0 +5.9.20210404.0 +5.9.20210411.0 +5.9.20210418.0 +5.9.20210425.0 +5.9.20210502.0 +5.9.20210509.0 +5.9.20210516.0 +5.9.20210523.0 +5.9.20210530.0 +5.9.20210606.0 +5.9.20210613.0 +5.9.20210620.0 +5.9.20210627.0 +5.9.20210704.0 +5.9.20210711.0 +5.9.20210718.0 +5.9.20210725.0 +5.9.20210801.0 +5.9.20210808.0 +5.9.20210815.0 +5.9.20210822.0 +5.9.20210829.0 +5.9.20210905.0 +5.9.20210912.0 +5.9.20210919.0 +5.9.20210926.0 +5.9.20211003.0 +5.9.20211010.0 +5.9.20211017.0 +5.9.20211031.0 +5.9.20211107.0 +5.9.20211114.0 +5.9.20211121.0 +5.9.20211128.0 +5.9.20211205.0 +5.9.20211212.0 +5.9.20211219.0 +5.9.20211226.0 +5.9.20220102.0 +5.9.20220109.0 +5.9.20220116.0 +5.9.20220123.0 +5.9.20220130.0 +5.9.20220206.0 +5.9.20220213.0 +5.9.20220220.0 +5.9.20220227.0 +5.9.20220306.0 +5.9.20220313.0 +5.9.20220320.0 +5.9.20220327.0 +5.9.20220403.0 +5.9.20220410.0 +5.9.20220417.0 +5.9.20220424.0 +5.9.20220501.0 +5.9.20220508.0 +5.9.20220515.0 +5.9.20220522.0 +5.9.20220529.0 +5.9.20220605.0 +5.9.20220612.0 +5.9.20220619.0 +5.9.20220626.0 +5.9.20220703.0 +5.9.20220710.0 +5.9.20220717.0 +5.9.20220724.0 +5.9.20220731.0 +5.9.20220807.0 +5.9.20220814.0 +5.9.20220821.0 +5.9.20220828.0 +5.9.20220904.0 +5.9.20220918.0 +5.9.20220925.0 +5.9.20221002.0 +5.9.20221009.0 +5.9.20221023.0 +5.9.20221030.0 +5.9.20221106.0 +5.9.20221113.0 +5.9.20221120.0 +5.9.20221127.0 +5.9.20221204.0 +5.9.3 +5.9.4 +5.9.5 +5.9.5.1 +5.9.5.2 +5.9.5.3 +5.9.5.4 +5.9.5.5 +5.9.5.6 +5.9.6 +5.9.7 +5.9.8 +5.90.0 +5.911 +5.93 +5.94 +5.94.0 +5.941 +5.95 +5.95.0 +5.96.0 +5.97.0 +5.98.0 +5.99.0 +5.992 +5.9_0.3 +50 +51 +52 +52.1 +52.2 +52.3 +52.4 +52.5 +53 +53.1 +53.2 +53.3 +53.4 +530 +533.63 +54 +54.0 +54.1 +54.2 +54.3 +540.66 +55 +55.0 +56 +56.0 +56.1 +57 +57.0 +57.0.0 +57.0.1 +57.0.2 +57.1 +57.2 +57.4.0 +57.4.1 +57.4.10 +57.4.11 +57.4.12 +57.4.13 +57.4.14 +57.4.15 +57.4.16 +57.4.17 +57.4.18 +57.4.2 +57.4.3 +57.4.4 +57.4.5 +57.4.6 +57.4.7 +57.4.8 +57.4.9 +58 +58.0 +58.0.2 +58.0.3 +58.0.4 +58.1 +58.2 +58.2.0 +58.3.0 +58.4.0 +58.5.2 +58.5.3 +59.0.1 +59.1.0 +59.1.1 +59.2.0 +59.4.0 +59.5.0 +59.6.0 +59.7.0 +59.8.0 +6 +6.0 +6.0.0 +6.0.0.0 +6.0.0.1 +6.0.0.post1 +6.0.1 +6.0.1.155 +6.0.10 +6.0.100 +6.0.101 +6.0.102 +6.0.11 +6.0.12 +6.0.12.1 +6.0.12.2 +6.0.12.3 +6.0.12.4 +6.0.12.5 +6.0.12.6 +6.0.12.7 +6.0.12.8 +6.0.13 +6.0.14 +6.0.16 +6.0.1_10 +6.0.1_11 +6.0.1_3 +6.0.1_6 +6.0.1_7 +6.0.1_8 +6.0.1_9 +6.0.2 +6.0.201 +6.0.20160220 +6.0.202 +6.0.20200523200656 +6.0.20200601095207 +6.0.20221218.0 +6.0.20221225.0 +6.0.20230101.0 +6.0.20230108.0 +6.0.20230115.0 +6.0.20230122.0 +6.0.20230129.0 +6.0.20230205.0 +6.0.20230212.0 +6.0.20230219.0 +6.0.20230226.0 +6.0.20230305.0 +6.0.20230312.0 +6.0.20230319.0 +6.0.20230326.0 +6.0.20230409.0 +6.0.20230416.0 +6.0.20230423.0 +6.0.20230430.0 +6.0.20230507.0 +6.0.20230514.0 +6.0.3 +6.0.300 +6.0.301 +6.0.4 +6.0.401 +6.0.403 +6.0.405 +6.0.408 +6.0.5 +6.0.6 +6.0.7 +6.0.8 +6.0.9 +6.01 +6.02 +6.04 +6.05 +6.06 +6.07 +6.08 +6.09 +6.0_0 +6.0_1 +6.0_2 +6.0_3 +6.0_5 +6.0_76 +6.0_78 +6.0_79 +6.0_80 +6.0_81 +6.0_82 +6.0_84 +6.0_85 +6.0_86 +6.0_88 +6.0_89 +6.0_90 +6.0_91 +6.0_92 +6.0_93 +6.0_94 +6.0rc2 +6.1 +6.1.0 +6.1.0.1 +6.1.0.post1 +6.1.1 +6.1.10 +6.1.11 +6.1.12 +6.1.13 +6.1.14 +6.1.15 +6.1.16 +6.1.2 +6.1.26 +6.1.3 +6.1.3.0 +6.1.4 +6.1.4.0 +6.1.5 +6.1.6 +6.1.7 +6.1.8 +6.1.9 +6.10 +6.10.0 +6.10.0.165 +6.10.1 +6.10.2 +6.10.3 +6.11 +6.11.0 +6.11.1 +6.12 +6.12.0 +6.12.0.90 +6.12.1 +6.12.2 +6.12.3 +6.13 +6.13.0 +6.13.1 +6.13.10 +6.13.11 +6.13.12 +6.13.13 +6.13.14 +6.13.2 +6.13.3 +6.13.4 +6.13.5 +6.13.6 +6.13.7 +6.13.8 +6.13.9 +6.14 +6.14.0 +6.14.06 +6.14.1 +6.14.2 +6.14.3 +6.14.4 +6.14.5 +6.14.6 +6.14.7 +6.14.8 +6.14.9 +6.15 +6.15.0 +6.15.1 +6.15.2 +6.15.2.9 +6.15.3 +6.15.5 +6.16.0 +6.16.00 +6.16.1 +6.16.2 +6.16.3 +6.17.0 +6.17.1 +6.17.2 +6.17.26 +6.17.3 +6.17.4 +6.18 +6.18.0 +6.18.0.0 +6.18.00 +6.18.04 +6.18.1 +6.18.10 +6.18.11 +6.18.12 +6.18.2 +6.18.2.1 +6.18.2.2 +6.18.2.3 +6.18.2.4 +6.18.2.5 +6.18.2.6 +6.18.2.7 +6.18.3 +6.18.4 +6.18.5 +6.18.9 +6.19 +6.19.0 +6.19.1 +6.19.2 +6.19.3 +6.19.4 +6.1_0 +6.1_1 +6.2 +6.2.0 +6.2.0.156 +6.2.1 +6.2.1.0 +6.2.10 +6.2.11 +6.2.12 +6.2.13 +6.2.14 +6.2.1550507116 +6.2.1629922860 +6.2.1802 +6.2.1804 +6.2.1808 +6.2.2 +6.2.2004 +6.2.2005 +6.2.2006 +6.2.21303 +6.2.3 +6.2.3.0 +6.2.32 +6.2.4 +6.2.4.0 +6.2.5 +6.2.5.0 +6.2.6 +6.2.7 +6.2.8 +6.2.9 +6.20.0 +6.20.00 +6.20.1 +6.20.2 +6.20.4 +6.20.4.1 +6.20.6 +6.20180316 +6.20180626 +6.20180807 +6.20180913 +6.20180926 +6.21.0 +6.21.1 +6.21.14 +6.21.2 +6.21.3 +6.21.4 +6.21.5 +6.21.6 +6.21.7 +6.21.8 +6.22 +6.22.0 +6.22.02 +6.22.03 +6.22.04 +6.22.06 +6.22.1 +6.22.10 +6.22.11 +6.22.12 +6.22.14 +6.22.15 +6.22.16 +6.22.17 +6.22.18 +6.22.19 +6.22.2 +6.22.20 +6.22.21 +6.22.6 +6.22.8 +6.22.9 +6.23.0 +6.23.00 +6.23.01 +6.23.02 +6.23.1 +6.23.2 +6.23.3 +6.23.4 +6.230.22310 +6.24.0 +6.24.00 +6.24.01 +6.24.02 +6.24.03 +6.24.04 +6.24.05 +6.24.07 +6.24.1 +6.24.10 +6.24.2 +6.24.3 +6.24.4 +6.24.5 +6.24.6 +6.24.8 +6.24.9 +6.25.0 +6.25.1 +6.25.2 +6.25.3 +6.26.0 +6.26.1 +6.26.10 +6.26.2 +6.26.4 +6.26.6 +6.26.8 +6.265.22338 +6.27.0 +6.27.1 +6.27.2 +6.27.3 +6.28 +6.28.0 +6.28.1 +6.29.0 +6.29.2 +6.29.3 +6.29.5 +6.2_0 +6.2_1 +6.3 +6.3.0 +6.3.008 +6.3.1 +6.3.2 +6.3.200715.1200940 +6.3.210714.1191517 +6.3.210831.1135705 +6.3.210914.1223714 +6.3.210915.1185521 +6.3.211001.1111810 +6.3.3 +6.3.4 +6.3.5 +6.3.6 +6.3.7 +6.3.8 +6.3.9 +6.30.0 +6.30.1 +6.31.0 +6.31.1 +6.31.2 +6.31.3 +6.31.4 +6.31.5 +6.31.6 +6.32.0 +6.32.1 +6.33.0 +6.33.1 +6.34.0 +6.34.1 +6.34.2 +6.35.0 +6.35.1 +6.35.2 +6.35.3 +6.35.4 +6.35.5 +6.36 +6.36.0 +6.36.1 +6.36.2 +6.37.0 +6.37.1 +6.37.2 +6.38.0 +6.38.1 +6.39 +6.39.0 +6.39.1 +6.39.2 +6.39.3 +6.39.4 +6.39.5 +6.39.6 +6.3_0 +6.4 +6.4.0 +6.4.0.157 +6.4.1 +6.4.1.158 +6.4.10 +6.4.11 +6.4.12 +6.4.2 +6.4.2.159 +6.4.2.99 +6.4.211028.1233218 +6.4.211221.1165422 +6.4.3 +6.4.3.160 +6.4.3.4 +6.4.4 +6.4.4.161 +6.4.5 +6.4.6 +6.4.7 +6.4.8 +6.4.9 +6.40.0 +6.40.1 +6.40.2 +6.40.3 +6.41.0 +6.42.0 +6.42.2 +6.42.3 +6.43.0 +6.43.1 +6.43.2 +6.43.3 +6.44.0 +6.44.1 +6.44.2 +6.45.0 +6.45.1 +6.45.2 +6.45.3 +6.45.4 +6.46.0 +6.46.1 +6.46.10 +6.46.11 +6.46.2 +6.46.3 +6.46.5 +6.46.6 +6.46.7 +6.46.8 +6.46.9 +6.47.0 +6.47.1 +6.47.2 +6.47.3 +6.47.4 +6.47.5 +6.48.0 +6.48.1 +6.48.2 +6.48.3 +6.49 +6.49.0 +6.49.1 +6.4_0 +6.4_1 +6.5 +6.5.0 +6.5.1 +6.5.11 +6.5.12 +6.5.13 +6.5.14 +6.5.15 +6.5.18 +6.5.2 +6.5.221019.1152644 +6.5.3 +6.5.4 +6.5.5 +6.5.95 +6.50.0 +6.50.1 +6.51.0 +6.51.1 +6.52 +6.52.0 +6.52.1 +6.52.2 +6.52.3 +6.52.4 +6.53 +6.53.0 +6.54.0 +6.54.1 +6.54.2 +6.54.3 +6.54.4 +6.54.5 +6.54.6 +6.55.0 +6.56.0 +6.56.1 +6.56.2 +6.56.3 +6.56.4 +6.57 +6.57.0 +6.57.1 +6.58.0 +6.58.1 +6.58.2 +6.59.0 +6.59.1 +6.5_0 +6.6 +6.6.0 +6.6.0.162 +6.6.1 +6.6.2 +6.6.3 +6.6.4 +6.60 +6.60.0 +6.60.1 +6.61 +6.61.0 +6.61.1 +6.61.2 +6.61.3 +6.62 +6.62.0 +6.62.1 +6.63 +6.63.0 +6.63.1 +6.63.2 +6.64 +6.64.0 +6.65 +6.65.0 +6.65.1 +6.65.2 +6.66 +6.66.0 +6.66.1 +6.66.2 +6.67 +6.67.0 +6.67.1 +6.68.0 +6.68.1 +6.68.2 +6.69 +6.69.1 +6.6_0 +6.7 +6.7.0 +6.7.0.post2 +6.7.1 +6.7.1.2018.12 +6.7.2 +6.7.3 +6.7.4 +6.7.5 +6.7.6 +6.7.7 +6.7.8 +6.7.9 +6.70 +6.71 +6.72 +6.73 +6.74 +6.75 +6.76 +6.77 +6.78 +6.79 +6.7_0 +6.8 +6.8.0 +6.8.0.163 +6.8.1 +6.8.1.164 +6.8.12 +6.8.2 +6.8.3 +6.8.4 +6.8.5 +6.8.6 +6.8.7 +6.8.8 +6.8.9 +6.80 +6.81 +6.82 +6.86 +6.88 +6.9 +6.9.0 +6.9.1 +6.9.2 +6.9.3 +6.9.4 +6.9.5 +6.9.6 +6.9.7 +6.9.7.1 +6.9.8 +60 +60.0.3 +60.0.4 +60.0.5 +60.1.0 +60.1.1 +60.10.0 +60.2 +60.2.0 +60.3.1 +60.5.0 +60.6.0 +60.7.0 +60.7.1 +60.8.1 +60.8.2 +60.9.0 +60.9.1 +60.9.2 +60.9.3 +609 +61 +61.0.0 +61.1.0 +61.1.1 +61.2.0 +61.3.0 +61.3.1 +62 +62.0.0 +62.1.0 +62.2.0 +62.3.1 +62.3.2 +62.3.3 +62.3.4 +62.5.0 +62.6.0 +62.6.1 +63 +63.1.0 +63.2.0 +63.2.1 +63.2.2 +63.2.3 +63.3.0 +63.4.0 +63.4.1 +63.4.2 +63.4.3 +64 +64.0.0 +64.0.1 +64.0.2 +64.0.3 +64.2 +65 +65.0.0 +65.0.1 +65.0.2 +65.1.0 +65.1.1 +65.2.0 +65.3.0 +65.4.0 +65.4.0.0 +65.4.1 +65.5.0 +65.5.0.0 +65.5.0.1 +65.5.0.2 +65.5.0.3 +65.5.1 +65.6.0.0 +65.6.0.1 +65.6.0.2 +65.6.0.3 +65.6.3 +65.7.0.0 +65.7.0.1 +65.7.0.3 +65.7.0.4 +66 +66.0.0 +66.1.0 +66.1.1 +67 +67.1 +67.1.0 +67.1.0.0 +67.1.0.1 +67.1.0.2 +67.2.0.0 +67.2.0.1 +67.3.0.0 +67.3.0.1 +67.3.0.2 +67.3.1 +67.3.2 +67.3.3 +67.4.0 +67.4.0.0 +67.4.0.1 +67.4.0.2 +67.4.0.3 +68 +68.0.2 +68.1 +68.11.0esr +68.12.0esr +68.2 +68.4.1esr +68.4.2esr +68.5.0esr +68.6.0esr +68.6.1esr +68.7.0esr +68.8.0esr +68.9.0esr +69 +69.0.3 +69.1 +7 +7.0 +7.0.0 +7.0.0.0 +7.0.0.1 +7.0.0.166 +7.0.1 +7.0.1.0 +7.0.1.dev +7.0.10 +7.0.100 +7.0.102 +7.0.10_0 +7.0.10_10 +7.0.10_11 +7.0.10_12 +7.0.10_13 +7.0.10_14 +7.0.10_15 +7.0.10_16 +7.0.10_17 +7.0.10_18 +7.0.10_19 +7.0.10_2 +7.0.10_20 +7.0.10_21 +7.0.10_22 +7.0.10_23 +7.0.10_24 +7.0.10_25 +7.0.10_26 +7.0.10_27 +7.0.10_28 +7.0.10_3 +7.0.10_4 +7.0.10_5 +7.0.10_59 +7.0.10_6 +7.0.10_60 +7.0.10_61 +7.0.10_62 +7.0.10_8 +7.0.10_9 +7.0.11 +7.0.11_0 +7.0.11_1 +7.0.11_11 +7.0.11_12 +7.0.11_13 +7.0.11_14 +7.0.11_2 +7.0.11_3 +7.0.11_4 +7.0.11_5 +7.0.11_6 +7.0.11_7 +7.0.11_8 +7.0.11_9 +7.0.161 +7.0.19 +7.0.2 +7.0.2.0 +7.0.2.99.0.0 +7.0.20 +7.0.20200612160654 +7.0.20200811075006 +7.0.20201119201711 +7.0.21 +7.0.22 +7.0.24 +7.0.3 +7.0.3.0 +7.0.3.1 +7.0.3.99.0.0 +7.0.3.99.1.0 +7.0.3.99.2.0 +7.0.3.99.4.0 +7.0.31 +7.0.32 +7.0.36 +7.0.4 +7.0.4.0 +7.0.4.99.1.2 +7.0.5 +7.0.5.0 +7.0.6 +7.0.6.1 +7.0.6.99.1.0 +7.0.6.99.2.0 +7.0.7 +7.0.7.0 +7.0.7.99.0.0 +7.0.7_39 +7.0.8 +7.0.8.1 +7.0.8.2 +7.0.8_0 +7.0.8_1 +7.0.8_10 +7.0.8_11 +7.0.8_13 +7.0.8_14 +7.0.8_15 +7.0.8_16 +7.0.8_19 +7.0.8_2 +7.0.8_20 +7.0.8_22 +7.0.8_23 +7.0.8_24 +7.0.8_27 +7.0.8_3 +7.0.8_34 +7.0.8_35 +7.0.8_36 +7.0.8_38 +7.0.8_39 +7.0.8_4 +7.0.8_40 +7.0.8_41 +7.0.8_42 +7.0.8_43 +7.0.8_44 +7.0.8_46 +7.0.8_47 +7.0.8_48 +7.0.8_49 +7.0.8_5 +7.0.8_50 +7.0.8_51 +7.0.8_52 +7.0.8_53 +7.0.8_54 +7.0.8_56 +7.0.8_58 +7.0.8_59 +7.0.8_6 +7.0.8_60 +7.0.8_61 +7.0.8_62 +7.0.8_63 +7.0.8_64 +7.0.8_65 +7.0.8_67 +7.0.8_68 +7.0.8_7 +7.0.8_8 +7.0.9 +7.0.9_0 +7.0.9_1 +7.0.9_10 +7.0.9_12 +7.0.9_13 +7.0.9_14 +7.0.9_15 +7.0.9_16 +7.0.9_17 +7.0.9_18 +7.0.9_19 +7.0.9_2 +7.0.9_20 +7.0.9_21 +7.0.9_22 +7.0.9_23 +7.0.9_24 +7.0.9_25 +7.0.9_26 +7.0.9_27 +7.0.9_6 +7.0.9_7 +7.07 +7.0_1 +7.1 +7.1.0 +7.1.0.0 +7.1.0.1 +7.1.0.43 +7.1.0_0 +7.1.0_1 +7.1.0_10 +7.1.0_11 +7.1.0_12 +7.1.0_13 +7.1.0_14 +7.1.0_15 +7.1.0_16 +7.1.0_18 +7.1.0_19 +7.1.0_2 +7.1.0_20 +7.1.0_21 +7.1.0_22 +7.1.0_23 +7.1.0_24 +7.1.0_25 +7.1.0_26 +7.1.0_27 +7.1.0_28 +7.1.0_29 +7.1.0_3 +7.1.0_30 +7.1.0_31 +7.1.0_32 +7.1.0_33 +7.1.0_34 +7.1.0_35 +7.1.0_36 +7.1.0_37 +7.1.0_38 +7.1.0_39 +7.1.0_4 +7.1.0_40 +7.1.0_41 +7.1.0_44 +7.1.0_45 +7.1.0_46 +7.1.0_47 +7.1.0_48 +7.1.0_49 +7.1.0_5 +7.1.0_50 +7.1.0_52 +7.1.0_53 +7.1.0_54 +7.1.0_55 +7.1.0_56 +7.1.0_57 +7.1.0_58 +7.1.0_59 +7.1.0_6 +7.1.0_60 +7.1.0_61 +7.1.0_62 +7.1.0_7 +7.1.0_8 +7.1.0_9 +7.1.0b +7.1.0r +7.1.1 +7.1.1.0 +7.1.10 +7.1.11 +7.1.12 +7.1.13 +7.1.14 +7.1.1_0 +7.1.1_1 +7.1.1_2 +7.1.1_3 +7.1.1_4 +7.1.1_5 +7.1.1_6 +7.1.1_7 +7.1.1_8 +7.1.1_9 +7.1.1b +7.1.2 +7.1.20210316164414 +7.1.20210518142926 +7.1.20210611090601 +7.1.26 +7.1.3 +7.1.3condapatch +7.1.4 +7.1.5 +7.1.6 +7.1.7 +7.1.8 +7.1.9 +7.10 +7.10.0 +7.10.0.175 +7.10.0b1 +7.10.1 +7.10.1b1 +7.10.2 +7.109.22021 +7.11 +7.11.0 +7.11.1 +7.11.10 +7.11.2 +7.11.3 +7.11.4 +7.11.5 +7.11.6 +7.11.7 +7.11.8 +7.11.9 +7.111.22021 +7.114.22021 +7.12 +7.12.0 +7.12.0.176 +7.12.1 +7.12.2 +7.12.3 +7.12.4 +7.12.5 +7.12.6 +7.12.7 +7.125.22022 +7.126.22022 +7.13 +7.13.0 +7.13.0b1 +7.13.1 +7.13.2 +7.13.3 +7.13.4 +7.13.5 +7.132.22039 +7.14 +7.14.0 +7.14.0.177 +7.14.0b1 +7.14.1 +7.14.1b1 +7.14.2 +7.142.22057 +7.147.22086 +7.148.22086 +7.149.22086 +7.15 +7.15.0 +7.15.1 +7.15.2 +7.15.3 +7.15.4 +7.15.5 +7.158.22119 +7.16 +7.16.0 +7.16.0.178 +7.16.1 +7.16.2 +7.16.3 +7.16.4 +7.163.22119 +7.168.22121 +7.169.22121 +7.17 +7.17.0 +7.17.1 +7.17.6 +7.18.0 +7.18.1 +7.18.2 +7.187.22201 +7.19.0 +7.19.1 +7.1p2 +7.2 +7.2.0 +7.2.0.0 +7.2.1 +7.2.1.168 +7.2.10 +7.2.11 +7.2.12 +7.2.13 +7.2.14 +7.2.15 +7.2.16 +7.2.2 +7.2.2.169 +7.2.20 +7.2.21 +7.2.22 +7.2.23 +7.2.24 +7.2.25 +7.2.3 +7.2.3.170 +7.2.30 +7.2.4 +7.2.4.171 +7.2.5 +7.2.5.1 +7.2.6 +7.2.6.1 +7.2.7 +7.2.8 +7.2.9 +7.2.d +7.20.0 +7.20181031 +7.20181105 +7.20181211 +7.20190219 +7.20190322 +7.20190503 +7.20190507 +7.20190626 +7.20190708 +7.20190730 +7.20190819 +7.20190912 +7.20191009 +7.20191017 +7.20191024 +7.20191106 +7.20191114 +7.20191230 +7.20200202.7 +7.20200204 +7.20200219 +7.20200226 +7.20200309 +7.21.0 +7.213.22307 +7.217.22307 +7.22.0 +7.23.0 +7.23.1 +7.230.22310 +7.238.22316 +7.24.0 +7.24.1 +7.24.3 +7.25.0 +7.25.1 +7.251.22317 +7.252.22317 +7.26.0 +7.26.1 +7.26.2 +7.26.3 +7.265.22338 +7.27.0 +7.27.1 +7.28.0 +7.29.0 +7.29.4 +7.298.22349 +7.3 +7.3.0 +7.3.0.0 +7.3.0.2 +7.3.1 +7.3.10 +7.3.11 +7.3.12 +7.3.13 +7.3.14 +7.3.15 +7.3.16 +7.3.17 +7.3.18 +7.3.19 +7.3.2 +7.3.2.0 +7.3.20 +7.3.21 +7.3.21313 +7.3.22 +7.3.23 +7.3.24 +7.3.26 +7.3.27 +7.3.28 +7.3.29 +7.3.3 +7.3.3.0 +7.3.30 +7.3.31 +7.3.32 +7.3.33 +7.3.4 +7.3.5 +7.3.6 +7.3.7 +7.3.8 +7.3.9 +7.30.1 +7.31.0 +7.31.1 +7.310.22362 +7.32.0 +7.33.0 +7.330.23004 +7.352.0 +7.36 +7.37 +7.38 +7.39 +7.3_11 +7.3_12 +7.3_13 +7.3_14 +7.3_15 +7.3_16 +7.3_17 +7.3_18 +7.3_19 +7.3_20 +7.3_21 +7.3_22 +7.3_45 +7.3_48 +7.3_50 +7.3_51.1 +7.3_51.3 +7.3_51.4 +7.3_51.5 +7.3_51.6 +7.3_52 +7.3_53 +7.3_53.1 +7.3_54 +7.3_55 +7.3_56 +7.3_57 +7.3_58 +7.3_58.1 +7.3_58.2 +7.3_58.3 +7.3_59 +7.3_60 +7.4 +7.4.0 +7.4.0.0 +7.4.0.172 +7.4.1 +7.4.1.0 +7.4.10 +7.4.11 +7.4.12 +7.4.13 +7.4.14 +7.4.15 +7.4.16 +7.4.1721 +7.4.2 +7.4.2.0 +7.4.20 +7.4.21 +7.4.21313 +7.4.22 +7.4.23 +7.4.24 +7.4.25 +7.4.26 +7.4.27 +7.4.3 +7.4.3.0 +7.4.3.1 +7.4.3.2 +7.4.4 +7.4.4.0 +7.4.5 +7.4.6 +7.4.7 +7.4.8 +7.4.9 +7.40 +7.43.0.2 +7.43.0.3 +7.43.0.4 +7.43.0.5 +7.43.0.6 +7.44.0 +7.44.1 +7.44.2 +7.44.3 +7.44.4 +7.44.5 +7.44.6 +7.44.7 +7.44.8 +7.44.9 +7.45.0 +7.45.1 +7.45.1.1 +7.45.1.2 +7.45.1.3 +7.45.1.4 +7.45.2.0 +7.45.2.1 +7.45.2.2 +7.45.2.3 +7.47.1 +7.48.0 +7.5 +7.5.0 +7.5.1 +7.5.10 +7.5.12 +7.5.14 +7.5.1rc2 +7.5.1rc4 +7.5.2 +7.5.288.22 +7.5.288.30 +7.5.3 +7.5.3.0 +7.5.4 +7.5.5 +7.5.6 +7.5.7 +7.5.8 +7.5.9 +7.52.1 +7.54.1 +7.56 +7.58.0 +7.59.0 +7.6 +7.6.0 +7.6.0.173 +7.6.0a5 +7.6.1 +7.6.10 +7.6.12 +7.6.14 +7.6.2 +7.6.3 +7.6.3.0 +7.6.4 +7.6.5 +7.6.5.32 +7.6.6 +7.6.7 +7.60.0 +7.61.0 +7.61.1 +7.62.0 +7.63.0 +7.64 +7.64.0 +7.64.1 +7.65.1 +7.65.2 +7.65.3 +7.66 +7.68.0 +7.69.1 +7.7 +7.7.0 +7.7.0.0 +7.7.0.1 +7.7.0a1 +7.7.1 +7.7.15 +7.7.2 +7.7.23 +7.7.3 +7.7.31 +7.7.34 +7.7.4 +7.7.5 +7.7.9 +7.71.0 +7.71.1 +7.75.0 +7.76.0 +7.76.1 +7.77.0 +7.78.0 +7.79.0 +7.79.1 +7.8 +7.8.0 +7.8.0.174 +7.8.1 +7.8.2 +7.8.3 +7.8.5 +7.80.0 +7.800.1 +7.81.0 +7.82.0 +7.83.0 +7.83.1 +7.85.0 +7.86.0 +7.87.0 +7.88.0 +7.88.1 +7.9 +7.9.0 +7.9.0a1 +7.9.1 +7.9.1a1 +7.9.2 +7.9.3 +7.950.1 +7.9p1 +70.0.1 +70.1 +70.a +71 +71.a +71.b +72 +72.0.2 +72.1 +73 +73.0 +73.0.3683.68.0 +74 +74.0 +74.0.1 +74.0.3729.6.0 +75 +75.0 +75.0.3770.8.0 +76 +76.0 +76.0.3809.68.0 +77.0 +77.0.1 +77.0.3865.10.0 +77.0.3865.40.0 +78.0.3904.11.0 +78.0.3904.70.0 +78.0esr +78.1.0esr +78.10.1esr +78.11.0esr +78.12.0esr +78.13.0esr +78.14.0esr +78.15.0esr +78.2.0esr +78.3.0esr +78.4.0esr +78.5.0esr +78.6.0esr +78.7.0esr +78.8.0esr +78.9.0esr +79 +79.0 +79.0.3945.16.0 +8 +8.0 +8.0.0 +8.0.0.0 +8.0.0.1 +8.0.0.179 +8.0.1 +8.0.10 +8.0.11 +8.0.112 +8.0.12 +8.0.121 +8.0.13 +8.0.14 +8.0.144 +8.0.15 +8.0.16 +8.0.17 +8.0.18 +8.0.19 +8.0.192 +8.0.2 +8.0.20 +8.0.20210624101613 +8.0.20210624154013 +8.0.21 +8.0.22 +8.0.23 +8.0.24 +8.0.25 +8.0.26 +8.0.265 +8.0.27 +8.0.28 +8.0.282 +8.0.29 +8.0.3 +8.0.30 +8.0.302 +8.0.31 +8.0.312 +8.0.32 +8.0.332 +8.0.4 +8.0.5 +8.0.5.39 +8.0.6 +8.0.7 +8.0.8 +8.0.9 +8.0_0 +8.0_1 +8.0a1 +8.0a2 +8.0b0 +8.0b1 +8.0b2 +8.0b3 +8.0p1 +8.0rc1 +8.0rc2 +8.0rc3 +8.1 +8.1.0 +8.1.0.180 +8.1.0.77 +8.1.0925 +8.1.0960 +8.1.1 +8.1.10 +8.1.1008 +8.1.11 +8.1.13 +8.1.1343 +8.1.1349 +8.1.2 +8.1.20210627200047 +8.1.20210716111910 +8.1.20210721123742 +8.1.3 +8.1.4 +8.1.5 +8.1.6 +8.1.7 +8.1.8 +8.1.9 +8.1.np1.12 +8.1.np1.13 +8.1.np1.14 +8.10 +8.10.0 +8.10.1 +8.10.10 +8.10.14 +8.10.18 +8.10.2 +8.10.3 +8.10.4 +8.10.5 +8.10.6 +8.10.7 +8.11 +8.11.0 +8.11.1 +8.11.2 +8.11.3 +8.11.4 +8.12 +8.12.0 +8.12.1 +8.12.2 +8.12.24 +8.12.25 +8.12.26 +8.12.27 +8.12.28 +8.12.29 +8.12.30 +8.12.31 +8.12.32 +8.12.33 +8.12.34 +8.12.35 +8.12.36 +8.12.37 +8.12.38 +8.12.39 +8.12.40 +8.12.41 +8.12.42 +8.12.43 +8.12.44 +8.12.45 +8.12.46 +8.12.47 +8.12.48 +8.12.49 +8.12.50 +8.12.51 +8.12.52 +8.12.53 +8.12.54 +8.12.55 +8.12.56 +8.12.57 +8.13 +8.13.0 +8.13.1 +8.13.2 +8.13.3 +8.13.4 +8.13.5 +8.13.6 +8.13.7 +8.14 +8.14.0 +8.14.1 +8.14.2 +8.15 +8.15.0 +8.15.1 +8.16 +8.16.0 +8.17.0 +8.18 +8.18.0 +8.19 +8.19.0 +8.2 +8.2.0 +8.2.0.181 +8.2.0.53 +8.2.0441 +8.2.0444 +8.2.0448 +8.2.0460 +8.2.0464 +8.2.0485 +8.2.0486 +8.2.0488 +8.2.0489 +8.2.0495 +8.2.0504 +8.2.0508 +8.2.0510 +8.2.0515 +8.2.0516 +8.2.0519 +8.2.0520 +8.2.0521 +8.2.0525 +8.2.0529 +8.2.0530 +8.2.0534 +8.2.0535 +8.2.0539 +8.2.0541 +8.2.0548 +8.2.0556 +8.2.0558 +8.2.0566 +8.2.0569 +8.2.0574 +8.2.0577 +8.2.0579 +8.2.0582 +8.2.0583 +8.2.0587 +8.2.0592 +8.2.0595 +8.2.0598 +8.2.0600 +8.2.0606 +8.2.0616 +8.2.0617 +8.2.0618 +8.2.0628 +8.2.0632 +8.2.0633 +8.2.0636 +8.2.0637 +8.2.0640 +8.2.0642 +8.2.0647 +8.2.0649 +8.2.0654 +8.2.0656 +8.2.0659 +8.2.0664 +8.2.0671 +8.2.0676 +8.2.0682 +8.2.0683 +8.2.0692 +8.2.0694 +8.2.0695 +8.2.0701 +8.2.0702 +8.2.0705 +8.2.0707 +8.2.0716 +8.2.0717 +8.2.0719 +8.2.0720 +8.2.0722 +8.2.0724 +8.2.0726 +8.2.0729 +8.2.0730 +8.2.0735 +8.2.0746 +8.2.0747 +8.2.0750 +8.2.0752 +8.2.0754 +8.2.0757 +8.2.0764 +8.2.0766 +8.2.0770 +8.2.0790 +8.2.0793 +8.2.0795 +8.2.0796 +8.2.0801 +8.2.0803 +8.2.0806 +8.2.0812 +8.2.0813 +8.2.0814 +8.2.0815 +8.2.0821 +8.2.0822 +8.2.0825 +8.2.0827 +8.2.0829 +8.2.0830 +8.2.0834 +8.2.0836 +8.2.0841 +8.2.0852 +8.2.0854 +8.2.0855 +8.2.0859 +8.2.0864 +8.2.0869 +8.2.0877 +8.2.0884 +8.2.0888 +8.2.0890 +8.2.0891 +8.2.0892 +8.2.0908 +8.2.0910 +8.2.0914 +8.2.0915 +8.2.0916 +8.2.0931 +8.2.0935 +8.2.0940 +8.2.0950 +8.2.0956 +8.2.0957 +8.2.0959 +8.2.0960 +8.2.0961 +8.2.0974 +8.2.0979 +8.2.0983 +8.2.0986 +8.2.0987 +8.2.0989 +8.2.0991 +8.2.0992 +8.2.0995 +8.2.0997 +8.2.0998 +8.2.1 +8.2.1.32 +8.2.10 +8.2.1009 +8.2.1010 +8.2.1011 +8.2.1014 +8.2.1017 +8.2.1018 +8.2.1023 +8.2.1024 +8.2.1025 +8.2.1030 +8.2.1033 +8.2.1034 +8.2.1036 +8.2.1040 +8.2.1041 +8.2.1042 +8.2.1043 +8.2.1044 +8.2.1045 +8.2.1046 +8.2.1048 +8.2.1051 +8.2.1052 +8.2.1053 +8.2.1055 +8.2.1056 +8.2.1057 +8.2.1058 +8.2.1059 +8.2.1061 +8.2.1064 +8.2.1065 +8.2.1068 +8.2.1070 +8.2.1072 +8.2.1076 +8.2.1078 +8.2.1079 +8.2.1080 +8.2.1081 +8.2.1083 +8.2.11 +8.2.1101 +8.2.1104 +8.2.1106 +8.2.1107 +8.2.1110 +8.2.1111 +8.2.1113 +8.2.1114 +8.2.1118 +8.2.1119 +8.2.1121 +8.2.1123 +8.2.1124 +8.2.1125 +8.2.1126 +8.2.1127 +8.2.1128 +8.2.1131 +8.2.1134 +8.2.1136 +8.2.1139 +8.2.1142 +8.2.1144 +8.2.1145 +8.2.1146 +8.2.1148 +8.2.1149 +8.2.12 +8.2.1266 +8.2.1268 +8.2.1270 +8.2.1271 +8.2.1272 +8.2.1273 +8.2.1274 +8.2.1276 +8.2.1277 +8.2.1279 +8.2.1280 +8.2.1281 +8.2.1282 +8.2.1283 +8.2.1284 +8.2.1286 +8.2.1287 +8.2.1288 +8.2.1289 +8.2.1290 +8.2.1291 +8.2.1292 +8.2.1294 +8.2.1295 +8.2.1296 +8.2.1297 +8.2.1299 +8.2.13 +8.2.1301 +8.2.1302 +8.2.1303 +8.2.1305 +8.2.1306 +8.2.1307 +8.2.1312 +8.2.1313 +8.2.1314 +8.2.1315 +8.2.1317 +8.2.1319 +8.2.1322 +8.2.1324 +8.2.1325 +8.2.1327 +8.2.1328 +8.2.1331 +8.2.1333 +8.2.1334 +8.2.1336 +8.2.1337 +8.2.1341 +8.2.1342 +8.2.1346 +8.2.1347 +8.2.1348 +8.2.1351 +8.2.1352 +8.2.1353 +8.2.1354 +8.2.1356 +8.2.1357 +8.2.1359 +8.2.1360 +8.2.1361 +8.2.1362 +8.2.1364 +8.2.1368 +8.2.1372 +8.2.1373 +8.2.1375 +8.2.1376 +8.2.1377 +8.2.1378 +8.2.1379 +8.2.1381 +8.2.1382 +8.2.1383 +8.2.1385 +8.2.1387 +8.2.1389 +8.2.1390 +8.2.1391 +8.2.1393 +8.2.1395 +8.2.1396 +8.2.1397 +8.2.1398 +8.2.1399 +8.2.14 +8.2.1400 +8.2.1404 +8.2.1405 +8.2.1406 +8.2.1407 +8.2.1409 +8.2.1410 +8.2.1411 +8.2.1412 +8.2.1413 +8.2.1419 +8.2.1421 +8.2.1424 +8.2.1425 +8.2.1427 +8.2.1428 +8.2.1429 +8.2.1431 +8.2.1434 +8.2.1435 +8.2.1438 +8.2.1441 +8.2.1443 +8.2.1444 +8.2.1445 +8.2.1446 +8.2.1449 +8.2.1455 +8.2.1456 +8.2.1457 +8.2.1459 +8.2.1460 +8.2.1464 +8.2.1465 +8.2.1466 +8.2.1468 +8.2.1470 +8.2.1471 +8.2.1475 +8.2.1477 +8.2.1479 +8.2.1480 +8.2.1481 +8.2.1482 +8.2.1484 +8.2.1485 +8.2.1486 +8.2.1487 +8.2.1488 +8.2.1489 +8.2.1490 +8.2.1494 +8.2.1495 +8.2.1497 +8.2.1498 +8.2.1499 +8.2.15 +8.2.15.4 +8.2.1500 +8.2.1501 +8.2.1502 +8.2.1505 +8.2.1507 +8.2.1508 +8.2.1509 +8.2.1510 +8.2.1511 +8.2.1512 +8.2.1513 +8.2.1515 +8.2.1516 +8.2.1517 +8.2.1518 +8.2.1520 +8.2.1522 +8.2.1523 +8.2.1524 +8.2.1526 +8.2.1527 +8.2.1528 +8.2.1530 +8.2.1531 +8.2.1533 +8.2.1534 +8.2.1535 +8.2.1536 +8.2.1537 +8.2.1539 +8.2.1540 +8.2.1541 +8.2.1542 +8.2.1543 +8.2.1544 +8.2.1545 +8.2.1546 +8.2.1548 +8.2.1549 +8.2.1550 +8.2.1558 +8.2.1559 +8.2.1560 +8.2.1561 +8.2.1563 +8.2.1584 +8.2.1586 +8.2.1587 +8.2.1588 +8.2.1591 +8.2.1592 +8.2.1593 +8.2.1594 +8.2.1595 +8.2.1597 +8.2.1598 +8.2.16 +8.2.1603 +8.2.1607 +8.2.1612 +8.2.1616 +8.2.1619 +8.2.1620 +8.2.1621 +8.2.1624 +8.2.1626 +8.2.1628 +8.2.1629 +8.2.1630 +8.2.1632 +8.2.1633 +8.2.1634 +8.2.1635 +8.2.1637 +8.2.1638 +8.2.1640 +8.2.1642 +8.2.1643 +8.2.1646 +8.2.1648 +8.2.1649 +8.2.1651 +8.2.1652 +8.2.1653 +8.2.1655 +8.2.1657 +8.2.1659 +8.2.1663 +8.2.1665 +8.2.1666 +8.2.1667 +8.2.1669 +8.2.1671 +8.2.1673 +8.2.1675 +8.2.1678 +8.2.1680 +8.2.1681 +8.2.1683 +8.2.1684 +8.2.1687 +8.2.1688 +8.2.1690 +8.2.1694 +8.2.1697 +8.2.1699 +8.2.1700 +8.2.1701 +8.2.1703 +8.2.1704 +8.2.1705 +8.2.1706 +8.2.1708 +8.2.1709 +8.2.1710 +8.2.1711 +8.2.1712 +8.2.1713 +8.2.1717 +8.2.1719 +8.2.1724 +8.2.1733 +8.2.1736 +8.2.1738 +8.2.1739 +8.2.1741 +8.2.1743 +8.2.1745 +8.2.1746 +8.2.1747 +8.2.1748 +8.2.1749 +8.2.1751 +8.2.1753 +8.2.1755 +8.2.1756 +8.2.1757 +8.2.1758 +8.2.1761 +8.2.1762 +8.2.1764 +8.2.1766 +8.2.1767 +8.2.1768 +8.2.1770 +8.2.1775 +8.2.1777 +8.2.1778 +8.2.1779 +8.2.1781 +8.2.1782 +8.2.1783 +8.2.1784 +8.2.1786 +8.2.1787 +8.2.1789 +8.2.1792 +8.2.1793 +8.2.1794 +8.2.1795 +8.2.1796 +8.2.1797 +8.2.1799 +8.2.1800 +8.2.1801 +8.2.1802 +8.2.1805 +8.2.1808 +8.2.1810 +8.2.1811 +8.2.1812 +8.2.1814 +8.2.1815 +8.2.1816 +8.2.1817 +8.2.1818 +8.2.1819 +8.2.1821 +8.2.1823 +8.2.1824 +8.2.1825 +8.2.1827 +8.2.1829 +8.2.1830 +8.2.1832 +8.2.1833 +8.2.1834 +8.2.1835 +8.2.1837 +8.2.1838 +8.2.1839 +8.2.1840 +8.2.1842 +8.2.1844 +8.2.1845 +8.2.1846 +8.2.1847 +8.2.1848 +8.2.1852 +8.2.1856 +8.2.1858 +8.2.1859 +8.2.1861 +8.2.1862 +8.2.1863 +8.2.1864 +8.2.1865 +8.2.1867 +8.2.1869 +8.2.1873 +8.2.1875 +8.2.1877 +8.2.1880 +8.2.1881 +8.2.1883 +8.2.1885 +8.2.1886 +8.2.1888 +8.2.1890 +8.2.1891 +8.2.1893 +8.2.1895 +8.2.1896 +8.2.1897 +8.2.1899 +8.2.1900 +8.2.1901 +8.2.1902 +8.2.1904 +8.2.1905 +8.2.1910 +8.2.1911 +8.2.1913 +8.2.1920 +8.2.1923 +8.2.1924 +8.2.1928 +8.2.1929 +8.2.1930 +8.2.1931 +8.2.1932 +8.2.1933 +8.2.1941 +8.2.1943 +8.2.1944 +8.2.1975 +8.2.1976 +8.2.1977 +8.2.1978 +8.2.1979 +8.2.1980 +8.2.1981 +8.2.1982 +8.2.1983 +8.2.1984 +8.2.1985 +8.2.1988 +8.2.1989 +8.2.1991 +8.2.1992 +8.2.1994 +8.2.1995 +8.2.1997 +8.2.1999 +8.2.2 +8.2.2000 +8.2.2004 +8.2.2005 +8.2.2007 +8.2.2009 +8.2.2010 +8.2.2013 +8.2.2014 +8.2.2017 +8.2.2018 +8.2.2019 +8.2.2021 +8.2.20210902094147 +8.2.20210914115719 +8.2.20210918131710 +8.2.20211014150008 +8.2.20211015115235 +8.2.20211020114435 +8.2.20211103155537 +8.2.20211104054942 +8.2.20211116214159 +8.2.20211222191353 +8.2.2022 +8.2.20220103095339 +8.2.20220204150214 +8.2.2023 +8.2.2025 +8.2.2029 +8.2.2030 +8.2.2031 +8.2.2032 +8.2.2033 +8.2.2034 +8.2.2035 +8.2.2036 +8.2.2038 +8.2.2039 +8.2.2040 +8.2.2041 +8.2.2042 +8.2.2044 +8.2.2045 +8.2.2051 +8.2.2054 +8.2.2055 +8.2.2058 +8.2.2060 +8.2.2061 +8.2.2062 +8.2.2063 +8.2.2065 +8.2.2067 +8.2.2069 +8.2.2070 +8.2.2072 +8.2.2073 +8.2.2077 +8.2.2078 +8.2.2079 +8.2.2080 +8.2.2081 +8.2.2082 +8.2.2083 +8.2.2084 +8.2.2086 +8.2.2087 +8.2.2089 +8.2.2091 +8.2.2092 +8.2.2093 +8.2.2094 +8.2.2095 +8.2.2096 +8.2.2098 +8.2.2099 +8.2.2100 +8.2.2101 +8.2.2102 +8.2.2103 +8.2.2105 +8.2.2106 +8.2.2107 +8.2.2108 +8.2.2110 +8.2.2112 +8.2.2113 +8.2.2115 +8.2.2116 +8.2.2117 +8.2.2118 +8.2.2119 +8.2.2121 +8.2.2122 +8.2.2123 +8.2.2124 +8.2.2125 +8.2.2127 +8.2.2129 +8.2.2130 +8.2.2131 +8.2.2132 +8.2.2133 +8.2.2134 +8.2.2135 +8.2.2136 +8.2.2137 +8.2.2138 +8.2.2139 +8.2.2140 +8.2.2143 +8.2.2144 +8.2.2148 +8.2.2149 +8.2.2151 +8.2.2152 +8.2.2154 +8.2.2156 +8.2.2157 +8.2.2158 +8.2.2159 +8.2.2160 +8.2.2161 +8.2.2165 +8.2.2166 +8.2.2167 +8.2.2169 +8.2.2171 +8.2.2173 +8.2.2176 +8.2.2177 +8.2.2178 +8.2.2181 +8.2.2182 +8.2.2183 +8.2.2184 +8.2.2185 +8.2.2187 +8.2.2190 +8.2.2192 +8.2.2193 +8.2.2194 +8.2.2195 +8.2.2197 +8.2.2198 +8.2.2199 +8.2.2201 +8.2.2202 +8.2.2203 +8.2.2204 +8.2.2205 +8.2.2206 +8.2.2207 +8.2.2208 +8.2.2209 +8.2.2211 +8.2.2212 +8.2.2213 +8.2.2214 +8.2.2215 +8.2.2218 +8.2.2220 +8.2.2221 +8.2.2224 +8.2.2226 +8.2.2227 +8.2.2228 +8.2.2230 +8.2.2233 +8.2.2234 +8.2.2237 +8.2.2238 +8.2.2239 +8.2.2241 +8.2.2243 +8.2.2244 +8.2.2246 +8.2.2248 +8.2.2249 +8.2.2250 +8.2.2251 +8.2.2253 +8.2.2256 +8.2.2257 +8.2.2259 +8.2.2261 +8.2.2263 +8.2.2264 +8.2.2266 +8.2.2267 +8.2.2268 +8.2.2269 +8.2.2270 +8.2.2271 +8.2.2274 +8.2.2277 +8.2.2280 +8.2.2282 +8.2.2283 +8.2.2284 +8.2.2285 +8.2.2286 +8.2.2288 +8.2.2289 +8.2.2290 +8.2.2291 +8.2.2293 +8.2.2294 +8.2.2295 +8.2.2298 +8.2.2299 +8.2.2300 +8.2.2301 +8.2.2302 +8.2.2304 +8.2.2305 +8.2.2306 +8.2.2307 +8.2.2310 +8.2.2311 +8.2.2312 +8.2.2314 +8.2.2315 +8.2.2316 +8.2.2317 +8.2.2318 +8.2.2319 +8.2.2320 +8.2.2321 +8.2.2322 +8.2.2324 +8.2.2326 +8.2.2327 +8.2.2328 +8.2.2330 +8.2.2331 +8.2.2332 +8.2.2335 +8.2.2340 +8.2.2343 +8.2.2344 +8.2.2347 +8.2.2349 +8.2.2352 +8.2.2353 +8.2.2355 +8.2.2357 +8.2.2358 +8.2.2359 +8.2.2361 +8.2.2362 +8.2.2363 +8.2.2367 +8.2.2368 +8.2.2369 +8.2.2371 +8.2.2372 +8.2.2374 +8.2.2375 +8.2.2377 +8.2.2380 +8.2.2382 +8.2.2384 +8.2.2385 +8.2.2387 +8.2.2388 +8.2.2389 +8.2.2390 +8.2.2391 +8.2.2393 +8.2.2394 +8.2.2398 +8.2.2400 +8.2.2401 +8.2.2402 +8.2.2403 +8.2.2406 +8.2.2408 +8.2.2409 +8.2.2410 +8.2.2411 +8.2.2412 +8.2.2415 +8.2.2417 +8.2.2418 +8.2.2419 +8.2.2423 +8.2.2424 +8.2.2425 +8.2.2427 +8.2.2428 +8.2.2430 +8.2.2431 +8.2.2432 +8.2.2433 +8.2.2434 +8.2.2436 +8.2.2438 +8.2.2440 +8.2.2441 +8.2.2442 +8.2.2443 +8.2.2445 +8.2.2446 +8.2.2451 +8.2.2453 +8.2.2462 +8.2.2464 +8.2.2465 +8.2.2466 +8.2.2467 +8.2.2468 +8.2.2470 +8.2.2471 +8.2.2475 +8.2.2476 +8.2.2479 +8.2.2484 +8.2.2486 +8.2.2488 +8.2.2489 +8.2.2490 +8.2.2491 +8.2.2492 +8.2.2493 +8.2.2494 +8.2.2497 +8.2.2498 +8.2.2500 +8.2.2501 +8.2.2505 +8.2.2506 +8.2.2508 +8.2.2509 +8.2.2510 +8.2.2514 +8.2.2516 +8.2.2517 +8.2.2519 +8.2.2520 +8.2.2521 +8.2.2523 +8.2.2525 +8.2.2526 +8.2.2527 +8.2.2528 +8.2.2529 +8.2.2530 +8.2.2531 +8.2.2532 +8.2.2533 +8.2.2536 +8.2.2537 +8.2.2538 +8.2.2540 +8.2.2541 +8.2.2543 +8.2.2544 +8.2.2545 +8.2.2548 +8.2.2550 +8.2.2551 +8.2.2553 +8.2.2556 +8.2.2557 +8.2.2558 +8.2.2559 +8.2.2560 +8.2.2561 +8.2.2562 +8.2.2563 +8.2.2564 +8.2.2565 +8.2.2566 +8.2.2567 +8.2.2569 +8.2.2572 +8.2.2573 +8.2.2574 +8.2.2575 +8.2.2576 +8.2.2578 +8.2.2580 +8.2.2582 +8.2.2583 +8.2.2585 +8.2.2589 +8.2.2590 +8.2.2595 +8.2.2596 +8.2.2600 +8.2.2601 +8.2.2602 +8.2.2603 +8.2.2604 +8.2.2606 +8.2.2607 +8.2.2608 +8.2.2609 +8.2.2610 +8.2.2611 +8.2.2615 +8.2.2622 +8.2.2623 +8.2.2625 +8.2.2627 +8.2.2628 +8.2.2629 +8.2.2630 +8.2.2631 +8.2.2632 +8.2.2634 +8.2.2635 +8.2.2637 +8.2.2639 +8.2.2642 +8.2.2647 +8.2.2648 +8.2.2649 +8.2.2650 +8.2.2653 +8.2.2655 +8.2.2657 +8.2.2659 +8.2.2660 +8.2.2661 +8.2.2662 +8.2.2663 +8.2.2665 +8.2.2666 +8.2.2668 +8.2.2671 +8.2.2673 +8.2.2674 +8.2.2676 +8.2.2677 +8.2.2678 +8.2.2679 +8.2.2681 +8.2.2684 +8.2.2685 +8.2.2687 +8.2.2688 +8.2.2689 +8.2.2691 +8.2.2693 +8.2.2694 +8.2.2695 +8.2.2703 +8.2.2705 +8.2.2706 +8.2.2707 +8.2.2709 +8.2.2710 +8.2.2712 +8.2.2713 +8.2.2715 +8.2.2718 +8.2.2719 +8.2.2721 +8.2.2724 +8.2.2725 +8.2.2728 +8.2.2734 +8.2.2735 +8.2.2736 +8.2.2738 +8.2.2739 +8.2.2740 +8.2.2741 +8.2.2743 +8.2.2745 +8.2.2747 +8.2.2752 +8.2.2753 +8.2.2754 +8.2.2755 +8.2.2756 +8.2.2758 +8.2.2760 +8.2.2761 +8.2.2763 +8.2.2764 +8.2.2767 +8.2.2769 +8.2.2770 +8.2.2771 +8.2.2772 +8.2.2773 +8.2.2774 +8.2.2775 +8.2.2776 +8.2.2778 +8.2.2779 +8.2.2780 +8.2.2781 +8.2.2783 +8.2.2784 +8.2.2786 +8.2.2787 +8.2.2791 +8.2.2792 +8.2.2795 +8.2.2798 +8.2.2799 +8.2.2800 +8.2.2801 +8.2.2802 +8.2.2803 +8.2.2804 +8.2.2805 +8.2.2808 +8.2.2810 +8.2.2811 +8.2.2814 +8.2.2815 +8.2.2817 +8.2.2818 +8.2.2819 +8.2.2820 +8.2.2821 +8.2.2822 +8.2.2823 +8.2.2824 +8.2.2825 +8.2.2827 +8.2.2831 +8.2.2832 +8.2.2833 +8.2.2834 +8.2.2838 +8.2.2840 +8.2.2841 +8.2.2842 +8.2.2844 +8.2.2845 +8.2.2846 +8.2.2847 +8.2.2848 +8.2.2850 +8.2.2860 +8.2.2863 +8.2.2864 +8.2.2865 +8.2.2867 +8.2.2868 +8.2.2869 +8.2.2871 +8.2.2872 +8.2.2873 +8.2.2874 +8.2.2875 +8.2.2876 +8.2.2877 +8.2.2878 +8.2.2879 +8.2.2881 +8.2.2882 +8.2.2884 +8.2.2885 +8.2.2889 +8.2.2890 +8.2.2891 +8.2.2893 +8.2.2895 +8.2.2896 +8.2.2897 +8.2.2898 +8.2.2899 +8.2.2900 +8.2.2901 +8.2.2903 +8.2.2905 +8.2.2907 +8.2.2908 +8.2.2910 +8.2.2911 +8.2.2912 +8.2.2913 +8.2.2914 +8.2.2915 +8.2.2917 +8.2.2918 +8.2.2920 +8.2.2921 +8.2.2922 +8.2.2925 +8.2.2928 +8.2.2929 +8.2.2930 +8.2.2932 +8.2.2933 +8.2.2934 +8.2.2937 +8.2.2938 +8.2.2942 +8.2.2943 +8.2.2946 +8.2.2948 +8.2.2949 +8.2.2955 +8.2.2956 +8.2.2958 +8.2.2961 +8.2.2962 +8.2.2965 +8.2.2966 +8.2.2967 +8.2.2968 +8.2.2971 +8.2.2973 +8.2.2976 +8.2.2978 +8.2.2982 +8.2.2983 +8.2.2984 +8.2.2989 +8.2.2991 +8.2.2993 +8.2.2995 +8.2.2998 +8.2.2999 +8.2.3 +8.2.3001 +8.2.3004 +8.2.3006 +8.2.3008 +8.2.3009 +8.2.3012 +8.2.3013 +8.2.3014 +8.2.3015 +8.2.3018 +8.2.3020 +8.2.3021 +8.2.3024 +8.2.3025 +8.2.3027 +8.2.3028 +8.2.3032 +8.2.3033 +8.2.3034 +8.2.3038 +8.2.3040 +8.2.3043 +8.2.3044 +8.2.3045 +8.2.3046 +8.2.3047 +8.2.3048 +8.2.3049 +8.2.3053 +8.2.3055 +8.2.3056 +8.2.3057 +8.2.3060 +8.2.3062 +8.2.3066 +8.2.3067 +8.2.3070 +8.2.3072 +8.2.3075 +8.2.3076 +8.2.3077 +8.2.3080 +8.2.3081 +8.2.3082 +8.2.3083 +8.2.3084 +8.2.3086 +8.2.3088 +8.2.3089 +8.2.3090 +8.2.3092 +8.2.3094 +8.2.3095 +8.2.3097 +8.2.3099 +8.2.3103 +8.2.3104 +8.2.3105 +8.2.3107 +8.2.3108 +8.2.3109 +8.2.3111 +8.2.3113 +8.2.3114 +8.2.3115 +8.2.3118 +8.2.3119 +8.2.3120 +8.2.3122 +8.2.3125 +8.2.3126 +8.2.3129 +8.2.3131 +8.2.3132 +8.2.3134 +8.2.3135 +8.2.3136 +8.2.3137 +8.2.3138 +8.2.3139 +8.2.3140 +8.2.3142 +8.2.3143 +8.2.3145 +8.2.3147 +8.2.3149 +8.2.3150 +8.2.3152 +8.2.3154 +8.2.3155 +8.2.3156 +8.2.3157 +8.2.3158 +8.2.3159 +8.2.3160 +8.2.3161 +8.2.3163 +8.2.3165 +8.2.3166 +8.2.3168 +8.2.3169 +8.2.3171 +8.2.3172 +8.2.3173 +8.2.3174 +8.2.3175 +8.2.3176 +8.2.3177 +8.2.3178 +8.2.3179 +8.2.3180 +8.2.3182 +8.2.3183 +8.2.3185 +8.2.3187 +8.2.3188 +8.2.3189 +8.2.3192 +8.2.3194 +8.2.3196 +8.2.3197 +8.2.3198 +8.2.3199 +8.2.3201 +8.2.3203 +8.2.3204 +8.2.3205 +8.2.3206 +8.2.3207 +8.2.3210 +8.2.3211 +8.2.3213 +8.2.3215 +8.2.3219 +8.2.3221 +8.2.3222 +8.2.3223 +8.2.3226 +8.2.3227 +8.2.3228 +8.2.3232 +8.2.3233 +8.2.3234 +8.2.3235 +8.2.3236 +8.2.3237 +8.2.3238 +8.2.3239 +8.2.3242 +8.2.3247 +8.2.3249 +8.2.3250 +8.2.3253 +8.2.3255 +8.2.3257 +8.2.3258 +8.2.3260 +8.2.3263 +8.2.3264 +8.2.3266 +8.2.3268 +8.2.3269 +8.2.3270 +8.2.3272 +8.2.3273 +8.2.3274 +8.2.3275 +8.2.3278 +8.2.3279 +8.2.3281 +8.2.3282 +8.2.3283 +8.2.3284 +8.2.3289 +8.2.3290 +8.2.3299 +8.2.3300 +8.2.3301 +8.2.3306 +8.2.3307 +8.2.3310 +8.2.3311 +8.2.3312 +8.2.3313 +8.2.3316 +8.2.3318 +8.2.3319 +8.2.3320 +8.2.3321 +8.2.3322 +8.2.3323 +8.2.3326 +8.2.3327 +8.2.3331 +8.2.3332 +8.2.3333 +8.2.3334 +8.2.3336 +8.2.3338 +8.2.3340 +8.2.3341 +8.2.3344 +8.2.3346 +8.2.3347 +8.2.3350 +8.2.3351 +8.2.3352 +8.2.3353 +8.2.3354 +8.2.3356 +8.2.3357 +8.2.3358 +8.2.3360 +8.2.3361 +8.2.3367 +8.2.3368 +8.2.3370 +8.2.3371 +8.2.3373 +8.2.3375 +8.2.3376 +8.2.3377 +8.2.3378 +8.2.3380 +8.2.3382 +8.2.3383 +8.2.3384 +8.2.3385 +8.2.3386 +8.2.3388 +8.2.3389 +8.2.3391 +8.2.3392 +8.2.3393 +8.2.3394 +8.2.3397 +8.2.3398 +8.2.3399 +8.2.3401 +8.2.3402 +8.2.3403 +8.2.3404 +8.2.3405 +8.2.3407 +8.2.3408 +8.2.3409 +8.2.3412 +8.2.3413 +8.2.3416 +8.2.3417 +8.2.3419 +8.2.3420 +8.2.3423 +8.2.3427 +8.2.3437 +8.2.3447 +8.2.3457 +8.2.3582 +8.2.3901 +8.2.4 +8.2.4950 +8.2.5 +8.2.6 +8.2.7 +8.2.8 +8.2.9 +8.20 +8.20.0 +8.20.21357 +8.200.0 +8.20200226 +8.20200309 +8.20200522 +8.20200617 +8.20200618 +8.20200720.1 +8.20200810 +8.20200908 +8.20201007 +8.20201104 +8.20201127 +8.20201129 +8.20210127 +8.20210128 +8.20210224 +8.20210310 +8.20210330 +8.20210331 +8.20210428 +8.20210621 +8.20210715 +8.20210803 +8.20210903 +8.20211011 +8.20211028 +8.20211123 +8.20211231 +8.21 +8.21.0 +8.22.0 +8.23.0 +8.23.1 +8.24.0 +8.240 +8.244 +8.25 +8.25.0 +8.26.0 +8.27.0 +8.28.0 +8.29 +8.29.0 +8.3 +8.3.0 +8.3.0.2 +8.3.0.3 +8.3.0b0 +8.3.1 +8.3.10 +8.3.11 +8.3.2 +8.3.2.44 +8.3.20220518163624 +8.3.20220525163636 +8.3.20220717184004 +8.3.20220801194920 +8.3.20220825133457 +8.3.20220831150015 +8.3.20220909144501 +8.3.20220913105718 +8.3.20220916115321 +8.3.20221016151607 +8.3.20221028160159 +8.3.20221115203138 +8.3.20221209165047 +8.3.20230109181936 +8.3.276 +8.3.286 +8.3.297 +8.3.3 +8.3.305 +8.3.307 +8.3.308 +8.3.309 +8.3.310 +8.3.311 +8.3.312 +8.3.314 +8.3.315 +8.3.316 +8.3.319 +8.3.320 +8.3.321 +8.3.322 +8.3.323 +8.3.324 +8.3.325 +8.3.326 +8.3.327 +8.3.328 +8.3.329 +8.3.331 +8.3.334 +8.3.335 +8.3.336 +8.3.337 +8.3.338 +8.3.339 +8.3.342 +8.3.343 +8.3.346 +8.3.348 +8.3.349 +8.3.350 +8.3.351 +8.3.352 +8.3.361 +8.3.362 +8.3.363 +8.3.368 +8.3.372 +8.3.376 +8.3.4 +8.3.5 +8.3.6 +8.3.7 +8.3.8 +8.3.9 +8.30 +8.30.0 +8.304 +8.305 +8.307 +8.31 +8.31.0 +8.32 +8.32.0 +8.33 +8.33.0 +8.34.0 +8.35.0 +8.36.0 +8.37 +8.37.0 +8.38 +8.38.0 +8.39 +8.39.0 +8.39.2 +8.3p1 +8.4 +8.4.0 +8.4.0.27 +8.4.1 +8.4.1.50 +8.4.2 +8.4.20230127112827 +8.4.20230128170514 +8.4.20230201194352 +8.4.20230213094415 +8.4.20230426093816 +8.4.20230511084951 +8.4.21326 +8.4.3 +8.4.371.19 +8.4.371.22 +8.4.4 +8.4.5 +8.4.8 +8.40.0 +8.40.1 +8.40.2 +8.40.5 +8.41 +8.41.0 +8.41.1 +8.41.3 +8.42.0 +8.42.1 +8.42.2 +8.43 +8.43.0 +8.43.7 +8.44 +8.45 +8.4p1 +8.5 +8.5.0 +8.5.1 +8.5.10 +8.5.11 +8.5.13 +8.5.14 +8.5.15 +8.5.16 +8.5.17 +8.5.18 +8.5.19 +8.5.2 +8.5.20 +8.5.21 +8.5.22 +8.5.27 +8.5.28 +8.5.29 +8.5.3 +8.5.4 +8.5.5 +8.5.6 +8.5.8 +8.5.9 +8.500.0 +8.5p1 +8.6 +8.6.0 +8.6.1 +8.6.10 +8.6.11 +8.6.12 +8.6.13 +8.6.14 +8.6.15 +8.6.16 +8.6.17 +8.6.18 +8.6.2 +8.6.3 +8.6.4 +8.6.5 +8.6.6 +8.6.7 +8.6.8 +8.6.9 +8.600.0 +8.6p1 +8.7 +8.7.0 +8.7.1 +8.7.11 +8.7.12 +8.7.13 +8.7.14 +8.7.15 +8.7.17 +8.7.18 +8.7.19 +8.7.2 +8.7.20 +8.7.23 +8.7.3 +8.7.4 +8.7.5 +8.7.6 +8.7.7 +8.7p1 +8.8 +8.8.0 +8.8.0.121 +8.8.1 +8.8.160 +8.8.2 +8.8.294 +8.8.3 +8.8.4 +8.8.5 +8.8.8 +8.8.9 +8.8p1 +8.9 +8.9.0 +8.9.1 +8.9.10 +8.9.11 +8.9.13 +8.9.15 +8.9.2 +8.9.21 +8.9.3 +8.9.39 +8.9.4 +8.9.5 +8.9.6 +8.9.7 +8.9.8 +8.9.83 +8.9.9 +8.9p1 +80.0 +80.0.3987.106.0 +80.0.3987.16.0 +81 +81.0 +81.0.4044.20.0 +81.0.4044.69.0 +82 +82.0 +83 +83.0 +83.0.4103.14.0 +83.0.4103.39.0 +84 +84.0 +84.0.4147.30.0 +85 +85.0 +85.0.4183.38.0 +85.0.4183.83.0 +85.0.4183.87.0 +86.0 +86.0.4240.22.0 +87.0 +87.0.4280.20.0 +87.0.4280.88.0 +88 +88.0 +88.0.1 +88.0.4324.27.0 +88.0.4324.27.1 +88.0.4324.96.0 +89.0 +89.0.4389.23.0 +895 +8d +9 +9.0 +9.0.0 +9.0.0065 +9.0.0335 +9.0.0814 +9.0.0_1 +9.0.1 +9.0.10 +9.0.11 +9.0.12 +9.0.13 +9.0.14 +9.0.1425 +9.0.15 +9.0.16 +9.0.17 +9.0.18 +9.0.19 +9.0.2 +9.0.20 +9.0.21 +9.0.22 +9.0.3 +9.0.30729.6161 +9.0.4 +9.0.5 +9.0.6 +9.0.7 +9.0.8 +9.0.9 +9.01 +9.0_0 +9.0p1 +9.1 +9.1.0 +9.1.1 +9.1.2 +9.1.23.1 +9.1.3 +9.10 +9.10.0 +9.10.1 +9.107.22008 +9.11.0 +9.11.1 +9.11.2 +9.11.4 +9.110.22021 +9.113.22021 +9.12.0 +9.12.1 +9.12.2 +9.12.3 +9.12.4 +9.128.22026 +9.13.0 +9.13.2 +9.13.3 +9.13.4 +9.13.5 +9.13.6 +9.13.7 +9.132.22039 +9.134.22048 +9.147.22086 +9.15.0 +9.163.22119 +9.168.22121 +9.169.22121 +9.173.22126 +9.189.22201 +9.1p1 +9.2 +9.2.0 +9.2.1 +9.2.148 +9.2.2 +9.2.2.1 +9.2.2.2 +9.2.3 +9.2.4 +9.2.5 +9.2.6 +9.2.7 +9.20 +9.200.4 +9.200.6 +9.200.7 +9.207.22283 +9.213.22307 +9.22 +9.230.22310 +9.238.22316 +9.251.22317 +9.2p1 +9.3 +9.3.0 +9.3.0.0 +9.3.0.1 +9.3.0.2 +9.3.0.3 +9.3.0.4 +9.3.1 +9.3.2 +9.3.23 +9.3.28 +9.3.3 +9.3.31 +9.3.4 +9.3.5 +9.3.6 +9.3.9 +9.300.22349 +9.38.1 +9.397a52e +9.3p1 +9.4 +9.4.0 +9.4.0.0 +9.4.0.1 +9.4.0.10 +9.4.0.11 +9.4.0.12 +9.4.0.13 +9.4.0.14 +9.4.0.15 +9.4.0.16 +9.4.0.17 +9.4.0.2 +9.4.0.5 +9.4.0.6 +9.4.0.7 +9.4.0.8 +9.4.0.9 +9.4.1 +9.4.12 +9.4.14 +9.4.2 +9.4.4 +9.5 +9.5.0 +9.5.1 +9.5.2 +9.5.3 +9.5.4 +9.53.1 +9.53.3 +9.54.0 +9.5r1.6 +9.6 +9.6.0 +9.6.0.1 +9.6.0.2 +9.6.1 +9.6.2 +9.6.3 +9.6.7 +9.6.8 +9.6.9 +9.7 +9.7.0 +9.7.0.1 +9.7.1 +9.8 +9.8.0 +9.8.0.2 +9.8.1 +9.8.2 +9.8.3 +9.8.4 +9.8_3 +9.8_6 +9.9 +9.9.0 +9.9.0.0 +9.9.1 +9.9.2 +9.9.3 +9.9.4 +9.900.3 +9.900.4 +9.900.5 +90 +90.0 +90.0.4430.24.0 +91 +91.0 +91.0.2 +91.0.4472.19.0 +91.1.0esr +91.10.0 +91.10.0esr +91.11.0 +91.11.0esr +91.12.0 +91.12.0esr +91.13.0 +91.13.0esr +91.2.0esr +91.3.0esr +91.4.0esr +91.4.1esr +91.5.0esr +91.6.0esr +91.6.1esr +91.7.1esr +91.8.0 +91.8.0esr +91.9.0 +91.9.0esr +91.9.1 +92 +92.0 +92.0.4515.43.0 +921 +927.0.2 +93 +93.0 +93.0.4577.15.0 +94 +94.0 +94.0.1 +94.0.2 +949.0.1 +95 +95.0 +95.0.2 +95.0.4638.10.0 +95.0.4638.17.0 +96 +96.0 +96.0.1 +96.0.2 +96.0.3 +96.0.4664.35.0 +96.0.4664.45.0 +96.3 +97 +97.0 +97.0.1 +97.0.2 +97.0.4692.20.0 +97.0.4692.36.0 +97.0.4692.71.0 +97.1 +97.2 +97.3 +97.4 +973.0.1 +98 +98.0 +98.0.1 +98.0.2 +98.0.4758.48.0 +98.0.4758.80.0 +98.1 +98.2 +98.3 +99 +99.0 +99.0.4844.17.0 +99.0.4844.35.0 +99.0.4844.51.0 +99.1 +99.2 +9999.27 +9999.32 +9_3 +9c +9d +9e +ESMF_6_3_0rp1_ESMP_01 +Release_2017_09 +Release_2017_09_3 +dev +master +r1206 +r26 +r7271.1a4dbf6 +test +v.1.1.0 +v0.0.1 +v0.0.2 +v0.0.3 +v0.0.5 +v0.04 +v0.1 +v0.1.0 +v0.1.1 +v0.1.2 +v0.1.90 +v0.14.0 +v0.2.0 +v0.2.1 +v0.2.2 +v0.2.3 +v0.22.2 +v0.22.3 +v0.23.0 +v0.27.2 +v0.27.3 +v0.3.0 +v0.3.1 +v0.3.2 +v0.3.7 +v0.4.0 +v0.4.1 +v0.4.2 +v0.4.8 +v0.5 +v0.5.0 +v0.5.3 +v0.6.0 +v0.6.0b0 +v0.6.5 +v0.6.6 +v0.6.7 +v0.6.9 +v0.7.0 +v0.7.0a4 +v0.7.0a6 +v0.8.0 +v0.8.1 +v1.0 +v1.0.0 +v1.0.1 +v1.0b +v1.1 +v1.1.0 +v1.1.1 +v1.1.11 +v1.1.3 +v1.1.alpha +v1.10 +v1.11 +v1.13 +v1.14 +v1.14.19 +v1.15 +v1.16 +v1.17 +v1.18 +v1.19 +v1.2 +v1.2.1 +v1.2.2 +v1.20 +v1.21 +v1.22 +v1.23 +v1.24 +v1.25 +v1.26 +v1.27 +v1.28 +v1.29 +v1.3.1 +v1.3.190304ac +v1.3.2 +v1.30 +v1.4 +v1.4.0 +v1.4.0b1 +v1.4.1 +v1.4dev1 +v1.6.3 +v1.9 +v1.9.0 +v2.0.0 +v2.0.1 +v2.0.2 +v2.008 +v2.0_gamma +v2.0_gamma2 +v2.1.0 +v2.2.0 +v2.2.1 +v2.2.2 +v2.28.0 +v2.4.1 +v3.0.3.1 +v3.8 +v4.0 +v4.3.6 +v5.0 +v5.0_beta.2_8_g390494d7c +win_3.1.2 From 7c77768bbd96f76c816c9bbd1e08d29676b016ff Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 12:24:52 +0200 Subject: [PATCH 11/22] fix: tests and docs --- ...a_lock__test__packages_for_platform-2.snap | 2 +- crates/rattler_conda_types/src/version/mod.rs | 15 +- ...da_types__version__parse__test__parse.snap | 52 +- test-data/parsed_versions.txt | 28553 ++++++++++++++++ 4 files changed, 28587 insertions(+), 35 deletions(-) create mode 100644 test-data/parsed_versions.txt diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-2.snap b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-2.snap index 27e0fe2de..f4606bb1f 100644 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-2.snap +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-2.snap @@ -2134,7 +2134,7 @@ expression: "conda_lock.packages_for_platform(Platform::Osx64).collect::> platform: osx-64 dependencies: __osx: ">=10.12" - certifi: ">=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index f00212665..1fc43608c 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -627,7 +627,7 @@ impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatt write!(f, "[{}]", epoch.unwrap_or(0))?; for segment in iter { write!(f, ", ")?; - write!(f, "[{}]", segment.components().format(", "))?; + write!(f, "[{:?}]", segment.components().format(", "))?; } write!(f, "]")?; @@ -659,7 +659,7 @@ impl<'v, I: Iterator> + 'v> fmt::Display for SegmentForma } /// Either a number, literal or the infinity. -#[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize)] +#[derive(Clone, Eq, PartialEq, Hash, Serialize, Deserialize)] enum Component { Numeral(u64), @@ -761,6 +761,17 @@ impl PartialOrd for Component { } impl Display for Component { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + match self { + Component::Numeral(n) => write!(f, "{}", n), + Component::Iden(s) => write!(f, "{}", s), + Component::Post => write!(f, "post"), + Component::Dev => write!(f, "dev"), + } + } +} + +impl Debug for Component { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { Component::Numeral(n) => write!(f, "{}", n), diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index f88026dbf..2a482bf67 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -11,11 +11,8 @@ expression: index_map ), "1!1.2a.3-rc1": Version( Version { - epoch: Some( - 1, - ), - version: [[1], [2, a], [3], [0, rc, 1]], - local: [], + version: [[1], [1], [2, 'a'], [3], [0, 'rc', 1]], + local: [[0]], }, ), "1+": Error( @@ -29,23 +26,20 @@ expression: index_map ), "1+2": Version( Version { - epoch: None, - version: [[1]], - local: [[2]], + version: [[0], [1]], + local: [[0], [2]], }, ), "1-2-3": Version( Version { - epoch: None, - version: [[1], [2], [3]], - local: [], + version: [[0], [1], [2], [3]], + local: [[0]], }, ), "1-2-3_": Version( Version { - epoch: None, - version: [[1], [2], [3, _]], - local: [], + version: [[0], [1], [2], [3, '_']], + local: [[0]], }, ), "1-2_3": Error( @@ -53,16 +47,14 @@ expression: index_map ), "1.0.1_": Version( Version { - epoch: None, - version: [[1], [0], [1, _]], - local: [], + version: [[0], [1], [0], [1, '_']], + local: [[0]], }, ), "1.0.1post.za": Version( Version { - epoch: None, - version: [[1], [0], [1, post], [0, za]], - local: [], + version: [[0], [1], [0], [1, inf], [0, 'za']], + local: [[0]], }, ), "1@2": Error( @@ -70,30 +62,26 @@ expression: index_map ), "1_": Version( Version { - epoch: None, - version: [[1, _]], - local: [], + version: [[0], [1, '_']], + local: [[0]], }, ), "1_2_3": Version( Version { - epoch: None, - version: [[1], [2], [3]], - local: [], + version: [[0], [1], [2], [3]], + local: [[0]], }, ), "1_2_3_": Version( Version { - epoch: None, - version: [[1], [2], [3, _]], - local: [], + version: [[0], [1], [2], [3, '_']], + local: [[0]], }, ), "1__": Version( Version { - epoch: None, - version: [[1], [0, _]], - local: [], + version: [[0], [1], [0, '_']], + local: [[0]], }, ), "1___": Error( diff --git a/test-data/parsed_versions.txt b/test-data/parsed_versions.txt new file mode 100644 index 000000000..cc480651e --- /dev/null +++ b/test-data/parsed_versions.txt @@ -0,0 +1,28553 @@ +# This is a versions and the result of parsing them with Conda. +# +# To recreate this do the following: +# +# 1. Initially versions are extracted from repodata.json using the following jq expression: +# +# ```shell +# jq -n -r '[inputs | .packages[], ."packages.conda"[] | .version] | unique[]' repodata1.json repodata2.json ... repodataN.json > versions.txt +# ``` +# +# This produces a list of unique versions found in a bunch of repodata files. +# +# 2. The following python code is then run to use Conda to parse the versions: +# +# ```python +# from conda.models.version import VersionOrder +# lines = open('versions.txt', 'r').readlines() +# parsed_lines = [ f"{line.strip()}={VersionOrder(line).version}\n" for line in lines ] +# open("parsed_versions.txt", "w").writelines(parsed_lines) +# ``` +# +# This generates the parsed versions found below. + +0=[[0], [0]] +0.0=[[0], [0], [0]] +0.0.0=[[0], [0], [0], [0]] +0.0.0.0.10=[[0], [0], [0], [0], [0], [10]] +0.0.0.0.12=[[0], [0], [0], [0], [0], [12]] +0.0.0.0.8=[[0], [0], [0], [0], [0], [8]] +0.0.0.5=[[0], [0], [0], [0], [5]] +0.0.0.6=[[0], [0], [0], [0], [6]] +0.0.0.9=[[0], [0], [0], [0], [9]] +0.0.0.9000=[[0], [0], [0], [0], [9000]] +0.0.0.9999=[[0], [0], [0], [0], [9999]] +0.0.0a1=[[0], [0], [0], [0, 'a', 1]] +0.0.0rc0=[[0], [0], [0], [0, 'rc', 0]] +0.0.1=[[0], [0], [0], [1]] +0.0.1.0=[[0], [0], [0], [1], [0]] +0.0.1.1.1=[[0], [0], [0], [1], [1], [1]] +0.0.1.1.9=[[0], [0], [0], [1], [1], [9]] +0.0.1.2=[[0], [0], [0], [1], [2]] +0.0.1.3=[[0], [0], [0], [1], [3]] +0.0.1.4=[[0], [0], [0], [1], [4]] +0.0.1.7=[[0], [0], [0], [1], [7]] +0.0.1.73=[[0], [0], [0], [1], [73]] +0.0.1.8=[[0], [0], [0], [1], [8]] +0.0.1.9000=[[0], [0], [0], [1], [9000]] +0.0.1.dev=[[0], [0], [0], [1], [0, 'DEV']] +0.0.1.post7=[[0], [0], [0], [1], [0, inf, 7]] +0.0.10=[[0], [0], [0], [10]] +0.0.10.post1=[[0], [0], [0], [10], [0, inf, 1]] +0.0.100=[[0], [0], [0], [100]] +0.0.101=[[0], [0], [0], [101]] +0.0.102=[[0], [0], [0], [102]] +0.0.103=[[0], [0], [0], [103]] +0.0.104=[[0], [0], [0], [104]] +0.0.107=[[0], [0], [0], [107]] +0.0.108=[[0], [0], [0], [108]] +0.0.109=[[0], [0], [0], [109]] +0.0.10a3=[[0], [0], [0], [10, 'a', 3]] +0.0.11=[[0], [0], [0], [11]] +0.0.110=[[0], [0], [0], [110]] +0.0.111=[[0], [0], [0], [111]] +0.0.112=[[0], [0], [0], [112]] +0.0.113=[[0], [0], [0], [113]] +0.0.114=[[0], [0], [0], [114]] +0.0.115=[[0], [0], [0], [115]] +0.0.117=[[0], [0], [0], [117]] +0.0.118=[[0], [0], [0], [118]] +0.0.119=[[0], [0], [0], [119]] +0.0.11a3=[[0], [0], [0], [11, 'a', 3]] +0.0.12=[[0], [0], [0], [12]] +0.0.120=[[0], [0], [0], [120]] +0.0.121=[[0], [0], [0], [121]] +0.0.122=[[0], [0], [0], [122]] +0.0.13=[[0], [0], [0], [13]] +0.0.13.post0=[[0], [0], [0], [13], [0, inf, 0]] +0.0.132=[[0], [0], [0], [132]] +0.0.134=[[0], [0], [0], [134]] +0.0.137=[[0], [0], [0], [137]] +0.0.139=[[0], [0], [0], [139]] +0.0.13a3=[[0], [0], [0], [13, 'a', 3]] +0.0.14=[[0], [0], [0], [14]] +0.0.14.5=[[0], [0], [0], [14], [5]] +0.0.14.6=[[0], [0], [0], [14], [6]] +0.0.14.7=[[0], [0], [0], [14], [7]] +0.0.14.8=[[0], [0], [0], [14], [8]] +0.0.140=[[0], [0], [0], [140]] +0.0.141=[[0], [0], [0], [141]] +0.0.142=[[0], [0], [0], [142]] +0.0.144=[[0], [0], [0], [144]] +0.0.145=[[0], [0], [0], [145]] +0.0.146=[[0], [0], [0], [146]] +0.0.148=[[0], [0], [0], [148]] +0.0.149=[[0], [0], [0], [149]] +0.0.15=[[0], [0], [0], [15]] +0.0.15.0=[[0], [0], [0], [15], [0]] +0.0.15.1=[[0], [0], [0], [15], [1]] +0.0.15.2=[[0], [0], [0], [15], [2]] +0.0.15.3=[[0], [0], [0], [15], [3]] +0.0.15.5=[[0], [0], [0], [15], [5]] +0.0.15.6=[[0], [0], [0], [15], [6]] +0.0.15.7=[[0], [0], [0], [15], [7]] +0.0.15.8=[[0], [0], [0], [15], [8]] +0.0.15.post1=[[0], [0], [0], [15], [0, inf, 1]] +0.0.150=[[0], [0], [0], [150]] +0.0.151=[[0], [0], [0], [151]] +0.0.152=[[0], [0], [0], [152]] +0.0.153=[[0], [0], [0], [153]] +0.0.154=[[0], [0], [0], [154]] +0.0.155=[[0], [0], [0], [155]] +0.0.156=[[0], [0], [0], [156]] +0.0.157=[[0], [0], [0], [157]] +0.0.158=[[0], [0], [0], [158]] +0.0.159=[[0], [0], [0], [159]] +0.0.16=[[0], [0], [0], [16]] +0.0.16.dev0=[[0], [0], [0], [16], [0, 'DEV', 0]] +0.0.16.post2=[[0], [0], [0], [16], [0, inf, 2]] +0.0.160=[[0], [0], [0], [160]] +0.0.162=[[0], [0], [0], [162]] +0.0.17=[[0], [0], [0], [17]] +0.0.171=[[0], [0], [0], [171]] +0.0.172=[[0], [0], [0], [172]] +0.0.174=[[0], [0], [0], [174]] +0.0.175=[[0], [0], [0], [175]] +0.0.176=[[0], [0], [0], [176]] +0.0.177=[[0], [0], [0], [177]] +0.0.178=[[0], [0], [0], [178]] +0.0.18=[[0], [0], [0], [18]] +0.0.182=[[0], [0], [0], [182]] +0.0.184=[[0], [0], [0], [184]] +0.0.185=[[0], [0], [0], [185]] +0.0.186=[[0], [0], [0], [186]] +0.0.187=[[0], [0], [0], [187]] +0.0.188=[[0], [0], [0], [188]] +0.0.189=[[0], [0], [0], [189]] +0.0.19=[[0], [0], [0], [19]] +0.0.19.post0=[[0], [0], [0], [19], [0, inf, 0]] +0.0.190=[[0], [0], [0], [190]] +0.0.191=[[0], [0], [0], [191]] +0.0.193=[[0], [0], [0], [193]] +0.0.194=[[0], [0], [0], [194]] +0.0.196=[[0], [0], [0], [196]] +0.0.198=[[0], [0], [0], [198]] +0.0.199=[[0], [0], [0], [199]] +0.0.1a0=[[0], [0], [0], [1, 'a', 0]] +0.0.1a1=[[0], [0], [0], [1, 'a', 1]] +0.0.1a11=[[0], [0], [0], [1, 'a', 11]] +0.0.1a12=[[0], [0], [0], [1, 'a', 12]] +0.0.1a3=[[0], [0], [0], [1, 'a', 3]] +0.0.1a4=[[0], [0], [0], [1, 'a', 4]] +0.0.1b0=[[0], [0], [0], [1, 'b', 0]] +0.0.1b1=[[0], [0], [0], [1, 'b', 1]] +0.0.1post2=[[0], [0], [0], [1, inf, 2]] +0.0.1rc2=[[0], [0], [0], [1, 'rc', 2]] +0.0.1rc3=[[0], [0], [0], [1, 'rc', 3]] +0.0.1rc4=[[0], [0], [0], [1, 'rc', 4]] +0.0.1rc5=[[0], [0], [0], [1, 'rc', 5]] +0.0.1rc7=[[0], [0], [0], [1, 'rc', 7]] +0.0.2=[[0], [0], [0], [2]] +0.0.2.0=[[0], [0], [0], [2], [0]] +0.0.2.1=[[0], [0], [0], [2], [1]] +0.0.2.20.1=[[0], [0], [0], [2], [20], [1]] +0.0.2.28=[[0], [0], [0], [2], [28]] +0.0.2.3=[[0], [0], [0], [2], [3]] +0.0.2.6=[[0], [0], [0], [2], [6]] +0.0.2.70=[[0], [0], [0], [2], [70]] +0.0.2.71=[[0], [0], [0], [2], [71]] +0.0.2.72=[[0], [0], [0], [2], [72]] +0.0.2.73=[[0], [0], [0], [2], [73]] +0.0.2.74=[[0], [0], [0], [2], [74]] +0.0.2.75=[[0], [0], [0], [2], [75]] +0.0.2.8=[[0], [0], [0], [2], [8]] +0.0.2.9=[[0], [0], [0], [2], [9]] +0.0.2.9.9=[[0], [0], [0], [2], [9], [9]] +0.0.2.post1=[[0], [0], [0], [2], [0, inf, 1]] +0.0.2.post12=[[0], [0], [0], [2], [0, inf, 12]] +0.0.2.post2=[[0], [0], [0], [2], [0, inf, 2]] +0.0.2.post3=[[0], [0], [0], [2], [0, inf, 3]] +0.0.20=[[0], [0], [0], [20]] +0.0.200=[[0], [0], [0], [200]] +0.0.20080929=[[0], [0], [0], [20080929]] +0.0.20090618=[[0], [0], [0], [20090618]] +0.0.201=[[0], [0], [0], [201]] +0.0.20120106=[[0], [0], [0], [20120106]] +0.0.20161017=[[0], [0], [0], [20161017]] +0.0.2017.12.03=[[0], [0], [0], [2017], [12], [3]] +0.0.20170418=[[0], [0], [0], [20170418]] +0.0.20180411=[[0], [0], [0], [20180411]] +0.0.20180625=[[0], [0], [0], [20180625]] +0.0.20190712172645=[[0], [0], [0], [20190712172645]] +0.0.202=[[0], [0], [0], [202]] +0.0.20200320191924=[[0], [0], [0], [20200320191924]] +0.0.20200720112859=[[0], [0], [0], [20200720112859]] +0.0.20200909083119=[[0], [0], [0], [20200909083119]] +0.0.20210525=[[0], [0], [0], [20210525]] +0.0.20210729=[[0], [0], [0], [20210729]] +0.0.20220707223719=[[0], [0], [0], [20220707223719]] +0.0.203=[[0], [0], [0], [203]] +0.0.204=[[0], [0], [0], [204]] +0.0.205=[[0], [0], [0], [205]] +0.0.207=[[0], [0], [0], [207]] +0.0.208=[[0], [0], [0], [208]] +0.0.209=[[0], [0], [0], [209]] +0.0.21=[[0], [0], [0], [21]] +0.0.21.dev0=[[0], [0], [0], [21], [0, 'DEV', 0]] +0.0.21.post1=[[0], [0], [0], [21], [0, inf, 1]] +0.0.210=[[0], [0], [0], [210]] +0.0.211=[[0], [0], [0], [211]] +0.0.212=[[0], [0], [0], [212]] +0.0.213=[[0], [0], [0], [213]] +0.0.215=[[0], [0], [0], [215]] +0.0.218=[[0], [0], [0], [218]] +0.0.22=[[0], [0], [0], [22]] +0.0.22.dev0=[[0], [0], [0], [22], [0, 'DEV', 0]] +0.0.220=[[0], [0], [0], [220]] +0.0.23=[[0], [0], [0], [23]] +0.0.233=[[0], [0], [0], [233]] +0.0.24=[[0], [0], [0], [24]] +0.0.24.dev0=[[0], [0], [0], [24], [0, 'DEV', 0]] +0.0.245=[[0], [0], [0], [245]] +0.0.247=[[0], [0], [0], [247]] +0.0.248=[[0], [0], [0], [248]] +0.0.249=[[0], [0], [0], [249]] +0.0.25=[[0], [0], [0], [25]] +0.0.25.dev0=[[0], [0], [0], [25], [0, 'DEV', 0]] +0.0.25.dev2=[[0], [0], [0], [25], [0, 'DEV', 2]] +0.0.25.dev3=[[0], [0], [0], [25], [0, 'DEV', 3]] +0.0.25.dev5=[[0], [0], [0], [25], [0, 'DEV', 5]] +0.0.25.dev6=[[0], [0], [0], [25], [0, 'DEV', 6]] +0.0.25.dev7=[[0], [0], [0], [25], [0, 'DEV', 7]] +0.0.250=[[0], [0], [0], [250]] +0.0.251=[[0], [0], [0], [251]] +0.0.257=[[0], [0], [0], [257]] +0.0.259=[[0], [0], [0], [259]] +0.0.26=[[0], [0], [0], [26]] +0.0.260=[[0], [0], [0], [260]] +0.0.261=[[0], [0], [0], [261]] +0.0.262=[[0], [0], [0], [262]] +0.0.264=[[0], [0], [0], [264]] +0.0.265=[[0], [0], [0], [265]] +0.0.269=[[0], [0], [0], [269]] +0.0.27=[[0], [0], [0], [27]] +0.0.270=[[0], [0], [0], [270]] +0.0.271=[[0], [0], [0], [271]] +0.0.28=[[0], [0], [0], [28]] +0.0.29=[[0], [0], [0], [29]] +0.0.2a=[[0], [0], [0], [2, 'a']] +0.0.2a1=[[0], [0], [0], [2, 'a', 1]] +0.0.2a12=[[0], [0], [0], [2, 'a', 12]] +0.0.2a13=[[0], [0], [0], [2, 'a', 13]] +0.0.2a14=[[0], [0], [0], [2, 'a', 14]] +0.0.2a15=[[0], [0], [0], [2, 'a', 15]] +0.0.2a16=[[0], [0], [0], [2, 'a', 16]] +0.0.2a17=[[0], [0], [0], [2, 'a', 17]] +0.0.2a18=[[0], [0], [0], [2, 'a', 18]] +0.0.2a19=[[0], [0], [0], [2, 'a', 19]] +0.0.2a2=[[0], [0], [0], [2, 'a', 2]] +0.0.2a20=[[0], [0], [0], [2, 'a', 20]] +0.0.2a21=[[0], [0], [0], [2, 'a', 21]] +0.0.2a22=[[0], [0], [0], [2, 'a', 22]] +0.0.2a23=[[0], [0], [0], [2, 'a', 23]] +0.0.2a24=[[0], [0], [0], [2, 'a', 24]] +0.0.2a25=[[0], [0], [0], [2, 'a', 25]] +0.0.2a26=[[0], [0], [0], [2, 'a', 26]] +0.0.2a27=[[0], [0], [0], [2, 'a', 27]] +0.0.2a28=[[0], [0], [0], [2, 'a', 28]] +0.0.2a29=[[0], [0], [0], [2, 'a', 29]] +0.0.2a30=[[0], [0], [0], [2, 'a', 30]] +0.0.2a31=[[0], [0], [0], [2, 'a', 31]] +0.0.2a32=[[0], [0], [0], [2, 'a', 32]] +0.0.2b3=[[0], [0], [0], [2, 'b', 3]] +0.0.3=[[0], [0], [0], [3]] +0.0.3.0=[[0], [0], [0], [3], [0]] +0.0.3.1=[[0], [0], [0], [3], [1]] +0.0.3.2=[[0], [0], [0], [3], [2]] +0.0.3.3=[[0], [0], [0], [3], [3]] +0.0.3.post1=[[0], [0], [0], [3], [0, inf, 1]] +0.0.3.post2=[[0], [0], [0], [3], [0, inf, 2]] +0.0.30=[[0], [0], [0], [30]] +0.0.31=[[0], [0], [0], [31]] +0.0.316=[[0], [0], [0], [316]] +0.0.317=[[0], [0], [0], [317]] +0.0.318=[[0], [0], [0], [318]] +0.0.319=[[0], [0], [0], [319]] +0.0.32=[[0], [0], [0], [32]] +0.0.320=[[0], [0], [0], [320]] +0.0.33=[[0], [0], [0], [33]] +0.0.34=[[0], [0], [0], [34]] +0.0.35=[[0], [0], [0], [35]] +0.0.36=[[0], [0], [0], [36]] +0.0.37=[[0], [0], [0], [37]] +0.0.38=[[0], [0], [0], [38]] +0.0.39=[[0], [0], [0], [39]] +0.0.39.1=[[0], [0], [0], [39], [1]] +0.0.3a1=[[0], [0], [0], [3, 'a', 1]] +0.0.3a3=[[0], [0], [0], [3, 'a', 3]] +0.0.3rc6=[[0], [0], [0], [3, 'rc', 6]] +0.0.4=[[0], [0], [0], [4]] +0.0.4.1=[[0], [0], [0], [4], [1]] +0.0.4.10=[[0], [0], [0], [4], [10]] +0.0.4.12=[[0], [0], [0], [4], [12]] +0.0.4.13=[[0], [0], [0], [4], [13]] +0.0.4.14=[[0], [0], [0], [4], [14]] +0.0.4.15=[[0], [0], [0], [4], [15]] +0.0.4.16=[[0], [0], [0], [4], [16]] +0.0.4.2=[[0], [0], [0], [4], [2]] +0.0.4.5=[[0], [0], [0], [4], [5]] +0.0.4.6=[[0], [0], [0], [4], [6]] +0.0.4.dev0=[[0], [0], [0], [4], [0, 'DEV', 0]] +0.0.4.dev1=[[0], [0], [0], [4], [0, 'DEV', 1]] +0.0.4.post1=[[0], [0], [0], [4], [0, inf, 1]] +0.0.40=[[0], [0], [0], [40]] +0.0.41=[[0], [0], [0], [41]] +0.0.42=[[0], [0], [0], [42]] +0.0.43=[[0], [0], [0], [43]] +0.0.44=[[0], [0], [0], [44]] +0.0.45=[[0], [0], [0], [45]] +0.0.46=[[0], [0], [0], [46]] +0.0.47=[[0], [0], [0], [47]] +0.0.48=[[0], [0], [0], [48]] +0.0.49=[[0], [0], [0], [49]] +0.0.4a=[[0], [0], [0], [4, 'a']] +0.0.4a1=[[0], [0], [0], [4, 'a', 1]] +0.0.4post1=[[0], [0], [0], [4, inf, 1]] +0.0.5=[[0], [0], [0], [5]] +0.0.5.1=[[0], [0], [0], [5], [1]] +0.0.5.9001=[[0], [0], [0], [5], [9001]] +0.0.50=[[0], [0], [0], [50]] +0.0.51=[[0], [0], [0], [51]] +0.0.52=[[0], [0], [0], [52]] +0.0.53=[[0], [0], [0], [53]] +0.0.54=[[0], [0], [0], [54]] +0.0.55=[[0], [0], [0], [55]] +0.0.56=[[0], [0], [0], [56]] +0.0.57=[[0], [0], [0], [57]] +0.0.58=[[0], [0], [0], [58]] +0.0.59=[[0], [0], [0], [59]] +0.0.5a1=[[0], [0], [0], [5, 'a', 1]] +0.0.5b0=[[0], [0], [0], [5, 'b', 0]] +0.0.6=[[0], [0], [0], [6]] +0.0.6.1=[[0], [0], [0], [6], [1]] +0.0.6.3=[[0], [0], [0], [6], [3]] +0.0.6.dev0=[[0], [0], [0], [6], [0, 'DEV', 0]] +0.0.60=[[0], [0], [0], [60]] +0.0.61=[[0], [0], [0], [61]] +0.0.62=[[0], [0], [0], [62]] +0.0.63=[[0], [0], [0], [63]] +0.0.64=[[0], [0], [0], [64]] +0.0.65=[[0], [0], [0], [65]] +0.0.66=[[0], [0], [0], [66]] +0.0.67=[[0], [0], [0], [67]] +0.0.68=[[0], [0], [0], [68]] +0.0.69=[[0], [0], [0], [69]] +0.0.6rc1=[[0], [0], [0], [6, 'rc', 1]] +0.0.7=[[0], [0], [0], [7]] +0.0.7.1=[[0], [0], [0], [7], [1]] +0.0.7.2=[[0], [0], [0], [7], [2]] +0.0.7.post1=[[0], [0], [0], [7], [0, inf, 1]] +0.0.7.post2=[[0], [0], [0], [7], [0, inf, 2]] +0.0.70=[[0], [0], [0], [70]] +0.0.71=[[0], [0], [0], [71]] +0.0.72=[[0], [0], [0], [72]] +0.0.73=[[0], [0], [0], [73]] +0.0.74=[[0], [0], [0], [74]] +0.0.75=[[0], [0], [0], [75]] +0.0.76=[[0], [0], [0], [76]] +0.0.77=[[0], [0], [0], [77]] +0.0.78=[[0], [0], [0], [78]] +0.0.79=[[0], [0], [0], [79]] +0.0.8=[[0], [0], [0], [8]] +0.0.8.1=[[0], [0], [0], [8], [1]] +0.0.8.dev0=[[0], [0], [0], [8], [0, 'DEV', 0]] +0.0.8.dev1=[[0], [0], [0], [8], [0, 'DEV', 1]] +0.0.8.post1=[[0], [0], [0], [8], [0, inf, 1]] +0.0.80=[[0], [0], [0], [80]] +0.0.81=[[0], [0], [0], [81]] +0.0.82=[[0], [0], [0], [82]] +0.0.83=[[0], [0], [0], [83]] +0.0.84=[[0], [0], [0], [84]] +0.0.85=[[0], [0], [0], [85]] +0.0.86=[[0], [0], [0], [86]] +0.0.87=[[0], [0], [0], [87]] +0.0.88=[[0], [0], [0], [88]] +0.0.89=[[0], [0], [0], [89]] +0.0.8b0=[[0], [0], [0], [8, 'b', 0]] +0.0.9=[[0], [0], [0], [9]] +0.0.9.1=[[0], [0], [0], [9], [1]] +0.0.9.2=[[0], [0], [0], [9], [2]] +0.0.9.post2=[[0], [0], [0], [9], [0, inf, 2]] +0.0.90=[[0], [0], [0], [90]] +0.0.9019=[[0], [0], [0], [9019]] +0.0.91=[[0], [0], [0], [91]] +0.0.92=[[0], [0], [0], [92]] +0.0.93=[[0], [0], [0], [93]] +0.0.94=[[0], [0], [0], [94]] +0.0.95=[[0], [0], [0], [95]] +0.0.96=[[0], [0], [0], [96]] +0.0.97=[[0], [0], [0], [97]] +0.0.98=[[0], [0], [0], [98]] +0.0.99=[[0], [0], [0], [99]] +0.0.9999=[[0], [0], [0], [9999]] +0.0.post129=[[0], [0], [0], [0, inf, 129]] +0.0.post131=[[0], [0], [0], [0, inf, 131]] +0.0.post134=[[0], [0], [0], [0, inf, 134]] +0.0.post136=[[0], [0], [0], [0, inf, 136]] +0.0.post138=[[0], [0], [0], [0, inf, 138]] +0.0.post140=[[0], [0], [0], [0, inf, 140]] +0.000144=[[0], [0], [144]] +0.000145=[[0], [0], [145]] +0.001013=[[0], [0], [1013]] +0.0014=[[0], [0], [14]] +0.002=[[0], [0], [2]] +0.002006=[[0], [0], [2006]] +0.002009=[[0], [0], [2009]] +0.003=[[0], [0], [3]] +0.004=[[0], [0], [4]] +0.004011=[[0], [0], [4011]] +0.005=[[0], [0], [5]] +0.006=[[0], [0], [6]] +0.006007=[[0], [0], [6007]] +0.007=[[0], [0], [7]] +0.008=[[0], [0], [8]] +0.008002=[[0], [0], [8002]] +0.008004=[[0], [0], [8004]] +0.008005=[[0], [0], [8005]] +0.008006=[[0], [0], [8006]] +0.008007=[[0], [0], [8007]] +0.009=[[0], [0], [9]] +0.01=[[0], [0], [1]] +0.010=[[0], [0], [10]] +0.012=[[0], [0], [12]] +0.013=[[0], [0], [13]] +0.014=[[0], [0], [14]] +0.016=[[0], [0], [16]] +0.018=[[0], [0], [18]] +0.02=[[0], [0], [2]] +0.02.04=[[0], [0], [2], [4]] +0.020=[[0], [0], [20]] +0.021=[[0], [0], [21]] +0.025=[[0], [0], [25]] +0.026=[[0], [0], [26]] +0.027=[[0], [0], [27]] +0.028=[[0], [0], [28]] +0.029=[[0], [0], [29]] +0.03=[[0], [0], [3]] +0.030=[[0], [0], [30]] +0.031=[[0], [0], [31]] +0.039=[[0], [0], [39]] +0.04=[[0], [0], [4]] +0.04.19=[[0], [0], [4], [19]] +0.04.20=[[0], [0], [4], [20]] +0.04.21=[[0], [0], [4], [21]] +0.048=[[0], [0], [48]] +0.04_22=[[0], [0], [4], [22]] +0.5=[[0], [0], [5]] +0.06=[[0], [0], [6]] +0.0608=[[0], [0], [608]] +0.063=[[0], [0], [63]] +0.07=[[0], [0], [7]] +0.076=[[0], [0], [76]] +0.08=[[0], [0], [8]] +0.09=[[0], [0], [9]] +0.094002=[[0], [0], [94002]] +0.094003=[[0], [0], [94003]] +0.097=[[0], [0], [97]] +0.0_1=[[0], [0], [0], [1]] +0.0_17=[[0], [0], [0], [17]] +0.0_18=[[0], [0], [0], [18]] +0.0_18.1=[[0], [0], [0], [18], [1]] +0.0_2=[[0], [0], [0], [2]] +0.0_24=[[0], [0], [0], [24]] +0.0_25=[[0], [0], [0], [25]] +0.0_26=[[0], [0], [0], [26]] +0.0_27=[[0], [0], [0], [27]] +0.0_3=[[0], [0], [0], [3]] +0.0_4=[[0], [0], [0], [4]] +0.0_4.1=[[0], [0], [0], [4], [1]] +0.0_5=[[0], [0], [0], [5]] +0.0_54=[[0], [0], [0], [54]] +0.0_54.1=[[0], [0], [0], [54], [1]] +0.0_54.2=[[0], [0], [0], [54], [2]] +0.0_55=[[0], [0], [0], [55]] +0.0_55.1=[[0], [0], [0], [55], [1]] +0.0_7=[[0], [0], [0], [7]] +0.0_8=[[0], [0], [0], [8]] +0.0_86=[[0], [0], [0], [86]] +0.0_86.1=[[0], [0], [0], [86], [1]] +0.0_9=[[0], [0], [0], [9]] +0.0_9_1=[[0], [0], [0], [9], [1]] +0.0_9_2=[[0], [0], [0], [9], [2]] +0.0_9_4=[[0], [0], [0], [9], [4]] +0.0b32=[[0], [0], [0, 'b', 32]] +0.1=[[0], [0], [1]] +0.1.0=[[0], [0], [1], [0]] +0.1.0.0=[[0], [0], [1], [0], [0]] +0.1.0.1=[[0], [0], [1], [0], [1]] +0.1.0.2=[[0], [0], [1], [0], [2]] +0.1.0.30=[[0], [0], [1], [0], [30]] +0.1.0.99=[[0], [0], [1], [0], [99]] +0.1.0.b1=[[0], [0], [1], [0], [0, 'b', 1]] +0.1.0.beta.6=[[0], [0], [1], [0], [0, 'beta'], [6]] +0.1.0.dev1=[[0], [0], [1], [0], [0, 'DEV', 1]] +0.1.0.dev2=[[0], [0], [1], [0], [0, 'DEV', 2]] +0.1.0.post0=[[0], [0], [1], [0], [0, inf, 0]] +0.1.0.post10=[[0], [0], [1], [0], [0, inf, 10]] +0.1.0.post11=[[0], [0], [1], [0], [0, inf, 11]] +0.1.0.post12=[[0], [0], [1], [0], [0, inf, 12]] +0.1.0.post13=[[0], [0], [1], [0], [0, inf, 13]] +0.1.0.post14=[[0], [0], [1], [0], [0, inf, 14]] +0.1.0.post7=[[0], [0], [1], [0], [0, inf, 7]] +0.1.0.post8=[[0], [0], [1], [0], [0, inf, 8]] +0.1.0.post9=[[0], [0], [1], [0], [0, inf, 9]] +0.1.00e9c9d=[[0], [0], [1], [0, 'e', 9, 'c', 9, 'd']] +0.1.01=[[0], [0], [1], [1]] +0.1.04=[[0], [0], [1], [4]] +0.1.5=[[0], [0], [1], [5]] +0.1.0a=[[0], [0], [1], [0, 'a']] +0.1.0a0=[[0], [0], [1], [0, 'a', 0]] +0.1.0a1=[[0], [0], [1], [0, 'a', 1]] +0.1.0a2=[[0], [0], [1], [0, 'a', 2]] +0.1.0a20180905=[[0], [0], [1], [0, 'a', 20180905]] +0.1.0a3=[[0], [0], [1], [0, 'a', 3]] +0.1.0a4=[[0], [0], [1], [0, 'a', 4]] +0.1.0a5=[[0], [0], [1], [0, 'a', 5]] +0.1.0a6=[[0], [0], [1], [0, 'a', 6]] +0.1.0a65=[[0], [0], [1], [0, 'a', 65]] +0.1.0a66=[[0], [0], [1], [0, 'a', 66]] +0.1.0a67=[[0], [0], [1], [0, 'a', 67]] +0.1.0a70=[[0], [0], [1], [0, 'a', 70]] +0.1.0a71=[[0], [0], [1], [0, 'a', 71]] +0.1.0a72=[[0], [0], [1], [0, 'a', 72]] +0.1.0a73=[[0], [0], [1], [0, 'a', 73]] +0.1.0a74=[[0], [0], [1], [0, 'a', 74]] +0.1.0a75=[[0], [0], [1], [0, 'a', 75]] +0.1.0a77=[[0], [0], [1], [0, 'a', 77]] +0.1.0a79=[[0], [0], [1], [0, 'a', 79]] +0.1.0a80=[[0], [0], [1], [0, 'a', 80]] +0.1.0a83=[[0], [0], [1], [0, 'a', 83]] +0.1.0a84=[[0], [0], [1], [0, 'a', 84]] +0.1.0a85=[[0], [0], [1], [0, 'a', 85]] +0.1.0alpha=[[0], [0], [1], [0, 'alpha']] +0.1.0b0=[[0], [0], [1], [0, 'b', 0]] +0.1.0b2=[[0], [0], [1], [0, 'b', 2]] +0.1.0b4=[[0], [0], [1], [0, 'b', 4]] +0.1.0b5=[[0], [0], [1], [0, 'b', 5]] +0.1.0b7=[[0], [0], [1], [0, 'b', 7]] +0.1.0b8=[[0], [0], [1], [0, 'b', 8]] +0.1.0b9=[[0], [0], [1], [0, 'b', 9]] +0.1.0beta=[[0], [0], [1], [0, 'beta']] +0.1.0beta3=[[0], [0], [1], [0, 'beta', 3]] +0.1.0dev=[[0], [0], [1], [0, 'DEV']] +0.1.0dev0=[[0], [0], [1], [0, 'DEV', 0]] +0.1.0rc0=[[0], [0], [1], [0, 'rc', 0]] +0.1.0rc1=[[0], [0], [1], [0, 'rc', 1]] +0.1.0rc2=[[0], [0], [1], [0, 'rc', 2]] +0.1.1=[[0], [0], [1], [1]] +0.1.1.0=[[0], [0], [1], [1], [0]] +0.1.1.1=[[0], [0], [1], [1], [1]] +0.1.1.18=[[0], [0], [1], [1], [18]] +0.1.1.21=[[0], [0], [1], [1], [21]] +0.1.1.26=[[0], [0], [1], [1], [26]] +0.1.1.27=[[0], [0], [1], [1], [27]] +0.1.1.30=[[0], [0], [1], [1], [30]] +0.1.1.31=[[0], [0], [1], [1], [31]] +0.1.1.32=[[0], [0], [1], [1], [32]] +0.1.1.33=[[0], [0], [1], [1], [33]] +0.1.1.34=[[0], [0], [1], [1], [34]] +0.1.1.35=[[0], [0], [1], [1], [35]] +0.1.1.36=[[0], [0], [1], [1], [36]] +0.1.1.37=[[0], [0], [1], [1], [37]] +0.1.1.8=[[0], [0], [1], [1], [8]] +0.1.1.dev0=[[0], [0], [1], [1], [0, 'DEV', 0]] +0.1.1.dev1=[[0], [0], [1], [1], [0, 'DEV', 1]] +0.1.1.post0=[[0], [0], [1], [1], [0, inf, 0]] +0.1.1.post2=[[0], [0], [1], [1], [0, inf, 2]] +0.1.1.post200513=[[0], [0], [1], [1], [0, inf, 200513]] +0.1.1.post20200531=[[0], [0], [1], [1], [0, inf, 20200531]] +0.1.1.post20200602=[[0], [0], [1], [1], [0, inf, 20200602]] +0.1.1.post20200603=[[0], [0], [1], [1], [0, inf, 20200603]] +0.1.1.post20200604=[[0], [0], [1], [1], [0, inf, 20200604]] +0.1.1.post20200605=[[0], [0], [1], [1], [0, inf, 20200605]] +0.1.1.post20200606=[[0], [0], [1], [1], [0, inf, 20200606]] +0.1.1.post20200608=[[0], [0], [1], [1], [0, inf, 20200608]] +0.1.1.post20200609=[[0], [0], [1], [1], [0, inf, 20200609]] +0.1.1.post20200610=[[0], [0], [1], [1], [0, inf, 20200610]] +0.1.1.post20200611=[[0], [0], [1], [1], [0, inf, 20200611]] +0.1.1.post20200612=[[0], [0], [1], [1], [0, inf, 20200612]] +0.1.1.post20200615=[[0], [0], [1], [1], [0, inf, 20200615]] +0.1.1.post20200616=[[0], [0], [1], [1], [0, inf, 20200616]] +0.1.1.post20200617=[[0], [0], [1], [1], [0, inf, 20200617]] +0.1.1.post20200620=[[0], [0], [1], [1], [0, inf, 20200620]] +0.1.1.post20200622=[[0], [0], [1], [1], [0, inf, 20200622]] +0.1.1.post20200623=[[0], [0], [1], [1], [0, inf, 20200623]] +0.1.1.post20200630=[[0], [0], [1], [1], [0, inf, 20200630]] +0.1.1.post20200704=[[0], [0], [1], [1], [0, inf, 20200704]] +0.1.1.post20200711=[[0], [0], [1], [1], [0, inf, 20200711]] +0.1.1.post20200715=[[0], [0], [1], [1], [0, inf, 20200715]] +0.1.1.post20200716=[[0], [0], [1], [1], [0, inf, 20200716]] +0.1.10=[[0], [0], [1], [10]] +0.1.10.8=[[0], [0], [1], [10], [8]] +0.1.100=[[0], [0], [1], [100]] +0.1.101=[[0], [0], [1], [101]] +0.1.103=[[0], [0], [1], [103]] +0.1.104=[[0], [0], [1], [104]] +0.1.11=[[0], [0], [1], [11]] +0.1.112=[[0], [0], [1], [112]] +0.1.12=[[0], [0], [1], [12]] +0.1.13=[[0], [0], [1], [13]] +0.1.13.1=[[0], [0], [1], [13], [1]] +0.1.13.2=[[0], [0], [1], [13], [2]] +0.1.13.3=[[0], [0], [1], [13], [3]] +0.1.137=[[0], [0], [1], [137]] +0.1.138=[[0], [0], [1], [138]] +0.1.139=[[0], [0], [1], [139]] +0.1.14=[[0], [0], [1], [14]] +0.1.140=[[0], [0], [1], [140]] +0.1.141=[[0], [0], [1], [141]] +0.1.142=[[0], [0], [1], [142]] +0.1.143=[[0], [0], [1], [143]] +0.1.144=[[0], [0], [1], [144]] +0.1.145=[[0], [0], [1], [145]] +0.1.148=[[0], [0], [1], [148]] +0.1.149=[[0], [0], [1], [149]] +0.1.15=[[0], [0], [1], [15]] +0.1.15.post1=[[0], [0], [1], [15], [0, inf, 1]] +0.1.150=[[0], [0], [1], [150]] +0.1.151=[[0], [0], [1], [151]] +0.1.152=[[0], [0], [1], [152]] +0.1.16=[[0], [0], [1], [16]] +0.1.16.0=[[0], [0], [1], [16], [0]] +0.1.1617247075=[[0], [0], [1], [1617247075]] +0.1.164=[[0], [0], [1], [164]] +0.1.167=[[0], [0], [1], [167]] +0.1.168=[[0], [0], [1], [168]] +0.1.169=[[0], [0], [1], [169]] +0.1.17=[[0], [0], [1], [17]] +0.1.170=[[0], [0], [1], [170]] +0.1.171=[[0], [0], [1], [171]] +0.1.173=[[0], [0], [1], [173]] +0.1.175=[[0], [0], [1], [175]] +0.1.178=[[0], [0], [1], [178]] +0.1.18=[[0], [0], [1], [18]] +0.1.18.0=[[0], [0], [1], [18], [0]] +0.1.18.3=[[0], [0], [1], [18], [3]] +0.1.18.4=[[0], [0], [1], [18], [4]] +0.1.18.post1=[[0], [0], [1], [18], [0, inf, 1]] +0.1.180=[[0], [0], [1], [180]] +0.1.182=[[0], [0], [1], [182]] +0.1.185=[[0], [0], [1], [185]] +0.1.186=[[0], [0], [1], [186]] +0.1.189=[[0], [0], [1], [189]] +0.1.19=[[0], [0], [1], [19]] +0.1.19.2=[[0], [0], [1], [19], [2]] +0.1.191=[[0], [0], [1], [191]] +0.1.192=[[0], [0], [1], [192]] +0.1.195=[[0], [0], [1], [195]] +0.1.197=[[0], [0], [1], [197]] +0.1.1a=[[0], [0], [1], [1, 'a']] +0.1.1a1=[[0], [0], [1], [1, 'a', 1]] +0.1.1a2=[[0], [0], [1], [1, 'a', 2]] +0.1.1a3=[[0], [0], [1], [1, 'a', 3]] +0.1.1a6=[[0], [0], [1], [1, 'a', 6]] +0.1.1rc.1=[[0], [0], [1], [1, 'rc'], [1]] +0.1.1rc0=[[0], [0], [1], [1, 'rc', 0]] +0.1.2=[[0], [0], [1], [2]] +0.1.2.0=[[0], [0], [1], [2], [0]] +0.1.2.1=[[0], [0], [1], [2], [1]] +0.1.2.2=[[0], [0], [1], [2], [2]] +0.1.2.dev24=[[0], [0], [1], [2], [0, 'DEV', 24]] +0.1.2.dev25=[[0], [0], [1], [2], [0, 'DEV', 25]] +0.1.2.dev5=[[0], [0], [1], [2], [0, 'DEV', 5]] +0.1.2.post0=[[0], [0], [1], [2], [0, inf, 0]] +0.1.2.post1=[[0], [0], [1], [2], [0, inf, 1]] +0.1.2.post2=[[0], [0], [1], [2], [0, inf, 2]] +0.1.2.post20200910=[[0], [0], [1], [2], [0, inf, 20200910]] +0.1.2.post20200911=[[0], [0], [1], [2], [0, inf, 20200911]] +0.1.2.post20200912=[[0], [0], [1], [2], [0, inf, 20200912]] +0.1.2.post20200926=[[0], [0], [1], [2], [0, inf, 20200926]] +0.1.2.post20200929=[[0], [0], [1], [2], [0, inf, 20200929]] +0.1.2.post20201009=[[0], [0], [1], [2], [0, inf, 20201009]] +0.1.2.post20201013=[[0], [0], [1], [2], [0, inf, 20201013]] +0.1.2.post20201016=[[0], [0], [1], [2], [0, inf, 20201016]] +0.1.2.post20201030=[[0], [0], [1], [2], [0, inf, 20201030]] +0.1.2.post20201122=[[0], [0], [1], [2], [0, inf, 20201122]] +0.1.2.post20201204=[[0], [0], [1], [2], [0, inf, 20201204]] +0.1.2.post20201210=[[0], [0], [1], [2], [0, inf, 20201210]] +0.1.2.post20201211=[[0], [0], [1], [2], [0, inf, 20201211]] +0.1.2.post20201213=[[0], [0], [1], [2], [0, inf, 20201213]] +0.1.2.post20201216=[[0], [0], [1], [2], [0, inf, 20201216]] +0.1.2.post20201218=[[0], [0], [1], [2], [0, inf, 20201218]] +0.1.2.post20210109=[[0], [0], [1], [2], [0, inf, 20210109]] +0.1.2.post20210112=[[0], [0], [1], [2], [0, inf, 20210112]] +0.1.2.post20210113=[[0], [0], [1], [2], [0, inf, 20210113]] +0.1.2.post20210115=[[0], [0], [1], [2], [0, inf, 20210115]] +0.1.2.post20210126=[[0], [0], [1], [2], [0, inf, 20210126]] +0.1.2.post20210127=[[0], [0], [1], [2], [0, inf, 20210127]] +0.1.2.post20210128=[[0], [0], [1], [2], [0, inf, 20210128]] +0.1.2.post4=[[0], [0], [1], [2], [0, inf, 4]] +0.1.20=[[0], [0], [1], [20]] +0.1.201=[[0], [0], [1], [201]] +0.1.2018.08.10=[[0], [0], [1], [2018], [8], [10]] +0.1.2018.08.28=[[0], [0], [1], [2018], [8], [28]] +0.1.2019.07.25=[[0], [0], [1], [2019], [7], [25]] +0.1.2019.12.24=[[0], [0], [1], [2019], [12], [24]] +0.1.203=[[0], [0], [1], [203]] +0.1.204=[[0], [0], [1], [204]] +0.1.205=[[0], [0], [1], [205]] +0.1.206=[[0], [0], [1], [206]] +0.1.207=[[0], [0], [1], [207]] +0.1.208=[[0], [0], [1], [208]] +0.1.209=[[0], [0], [1], [209]] +0.1.21=[[0], [0], [1], [21]] +0.1.210=[[0], [0], [1], [210]] +0.1.211=[[0], [0], [1], [211]] +0.1.213=[[0], [0], [1], [213]] +0.1.214=[[0], [0], [1], [214]] +0.1.215=[[0], [0], [1], [215]] +0.1.216=[[0], [0], [1], [216]] +0.1.217=[[0], [0], [1], [217]] +0.1.218=[[0], [0], [1], [218]] +0.1.219=[[0], [0], [1], [219]] +0.1.22=[[0], [0], [1], [22]] +0.1.22.dev0=[[0], [0], [1], [22], [0, 'DEV', 0]] +0.1.220=[[0], [0], [1], [220]] +0.1.221=[[0], [0], [1], [221]] +0.1.222=[[0], [0], [1], [222]] +0.1.223=[[0], [0], [1], [223]] +0.1.224=[[0], [0], [1], [224]] +0.1.225=[[0], [0], [1], [225]] +0.1.226=[[0], [0], [1], [226]] +0.1.227=[[0], [0], [1], [227]] +0.1.228=[[0], [0], [1], [228]] +0.1.229=[[0], [0], [1], [229]] +0.1.23=[[0], [0], [1], [23]] +0.1.23.dev0=[[0], [0], [1], [23], [0, 'DEV', 0]] +0.1.230=[[0], [0], [1], [230]] +0.1.231=[[0], [0], [1], [231]] +0.1.232=[[0], [0], [1], [232]] +0.1.233=[[0], [0], [1], [233]] +0.1.234=[[0], [0], [1], [234]] +0.1.235=[[0], [0], [1], [235]] +0.1.236=[[0], [0], [1], [236]] +0.1.237=[[0], [0], [1], [237]] +0.1.238=[[0], [0], [1], [238]] +0.1.239=[[0], [0], [1], [239]] +0.1.24=[[0], [0], [1], [24]] +0.1.240=[[0], [0], [1], [240]] +0.1.241=[[0], [0], [1], [241]] +0.1.242=[[0], [0], [1], [242]] +0.1.243=[[0], [0], [1], [243]] +0.1.244=[[0], [0], [1], [244]] +0.1.245=[[0], [0], [1], [245]] +0.1.246=[[0], [0], [1], [246]] +0.1.247=[[0], [0], [1], [247]] +0.1.248=[[0], [0], [1], [248]] +0.1.249=[[0], [0], [1], [249]] +0.1.25=[[0], [0], [1], [25]] +0.1.250=[[0], [0], [1], [250]] +0.1.251=[[0], [0], [1], [251]] +0.1.252=[[0], [0], [1], [252]] +0.1.253=[[0], [0], [1], [253]] +0.1.255=[[0], [0], [1], [255]] +0.1.256=[[0], [0], [1], [256]] +0.1.257=[[0], [0], [1], [257]] +0.1.258=[[0], [0], [1], [258]] +0.1.259=[[0], [0], [1], [259]] +0.1.26=[[0], [0], [1], [26]] +0.1.260=[[0], [0], [1], [260]] +0.1.261=[[0], [0], [1], [261]] +0.1.262=[[0], [0], [1], [262]] +0.1.263=[[0], [0], [1], [263]] +0.1.264=[[0], [0], [1], [264]] +0.1.265=[[0], [0], [1], [265]] +0.1.266=[[0], [0], [1], [266]] +0.1.267=[[0], [0], [1], [267]] +0.1.268=[[0], [0], [1], [268]] +0.1.269=[[0], [0], [1], [269]] +0.1.27=[[0], [0], [1], [27]] +0.1.270=[[0], [0], [1], [270]] +0.1.271=[[0], [0], [1], [271]] +0.1.272=[[0], [0], [1], [272]] +0.1.273=[[0], [0], [1], [273]] +0.1.274=[[0], [0], [1], [274]] +0.1.275=[[0], [0], [1], [275]] +0.1.277=[[0], [0], [1], [277]] +0.1.278=[[0], [0], [1], [278]] +0.1.279=[[0], [0], [1], [279]] +0.1.28=[[0], [0], [1], [28]] +0.1.28.2=[[0], [0], [1], [28], [2]] +0.1.280=[[0], [0], [1], [280]] +0.1.281=[[0], [0], [1], [281]] +0.1.282=[[0], [0], [1], [282]] +0.1.283=[[0], [0], [1], [283]] +0.1.285=[[0], [0], [1], [285]] +0.1.286=[[0], [0], [1], [286]] +0.1.287=[[0], [0], [1], [287]] +0.1.288=[[0], [0], [1], [288]] +0.1.29=[[0], [0], [1], [29]] +0.1.290=[[0], [0], [1], [290]] +0.1.292=[[0], [0], [1], [292]] +0.1.293=[[0], [0], [1], [293]] +0.1.294=[[0], [0], [1], [294]] +0.1.295=[[0], [0], [1], [295]] +0.1.296=[[0], [0], [1], [296]] +0.1.297=[[0], [0], [1], [297]] +0.1.298=[[0], [0], [1], [298]] +0.1.299=[[0], [0], [1], [299]] +0.1.2a0=[[0], [0], [1], [2, 'a', 0]] +0.1.2b0=[[0], [0], [1], [2, 'b', 0]] +0.1.3=[[0], [0], [1], [3]] +0.1.3.0=[[0], [0], [1], [3], [0]] +0.1.3.1=[[0], [0], [1], [3], [1]] +0.1.3.2=[[0], [0], [1], [3], [2]] +0.1.3.4=[[0], [0], [1], [3], [4]] +0.1.3.7.0=[[0], [0], [1], [3], [7], [0]] +0.1.3.post0=[[0], [0], [1], [3], [0, inf, 0]] +0.1.3.post20210203=[[0], [0], [1], [3], [0, inf, 20210203]] +0.1.3.post20210204=[[0], [0], [1], [3], [0, inf, 20210204]] +0.1.3.post20210213=[[0], [0], [1], [3], [0, inf, 20210213]] +0.1.3.post20210218=[[0], [0], [1], [3], [0, inf, 20210218]] +0.1.3.post20210219=[[0], [0], [1], [3], [0, inf, 20210219]] +0.1.3.post20210223=[[0], [0], [1], [3], [0, inf, 20210223]] +0.1.3.post20210227=[[0], [0], [1], [3], [0, inf, 20210227]] +0.1.30=[[0], [0], [1], [30]] +0.1.300=[[0], [0], [1], [300]] +0.1.301=[[0], [0], [1], [301]] +0.1.302=[[0], [0], [1], [302]] +0.1.303=[[0], [0], [1], [303]] +0.1.304=[[0], [0], [1], [304]] +0.1.305=[[0], [0], [1], [305]] +0.1.306=[[0], [0], [1], [306]] +0.1.307=[[0], [0], [1], [307]] +0.1.308=[[0], [0], [1], [308]] +0.1.309=[[0], [0], [1], [309]] +0.1.31=[[0], [0], [1], [31]] +0.1.31.1=[[0], [0], [1], [31], [1]] +0.1.31.2=[[0], [0], [1], [31], [2]] +0.1.310=[[0], [0], [1], [310]] +0.1.311=[[0], [0], [1], [311]] +0.1.312=[[0], [0], [1], [312]] +0.1.315=[[0], [0], [1], [315]] +0.1.316=[[0], [0], [1], [316]] +0.1.317=[[0], [0], [1], [317]] +0.1.318=[[0], [0], [1], [318]] +0.1.319=[[0], [0], [1], [319]] +0.1.32=[[0], [0], [1], [32]] +0.1.32.1=[[0], [0], [1], [32], [1]] +0.1.32.2=[[0], [0], [1], [32], [2]] +0.1.320=[[0], [0], [1], [320]] +0.1.321=[[0], [0], [1], [321]] +0.1.322=[[0], [0], [1], [322]] +0.1.323=[[0], [0], [1], [323]] +0.1.324=[[0], [0], [1], [324]] +0.1.325=[[0], [0], [1], [325]] +0.1.326=[[0], [0], [1], [326]] +0.1.327=[[0], [0], [1], [327]] +0.1.328=[[0], [0], [1], [328]] +0.1.329=[[0], [0], [1], [329]] +0.1.33=[[0], [0], [1], [33]] +0.1.330=[[0], [0], [1], [330]] +0.1.331=[[0], [0], [1], [331]] +0.1.332=[[0], [0], [1], [332]] +0.1.334=[[0], [0], [1], [334]] +0.1.336=[[0], [0], [1], [336]] +0.1.337=[[0], [0], [1], [337]] +0.1.338=[[0], [0], [1], [338]] +0.1.339=[[0], [0], [1], [339]] +0.1.34=[[0], [0], [1], [34]] +0.1.340=[[0], [0], [1], [340]] +0.1.341=[[0], [0], [1], [341]] +0.1.342=[[0], [0], [1], [342]] +0.1.35=[[0], [0], [1], [35]] +0.1.36=[[0], [0], [1], [36]] +0.1.37=[[0], [0], [1], [37]] +0.1.38=[[0], [0], [1], [38]] +0.1.39=[[0], [0], [1], [39]] +0.1.3_4=[[0], [0], [1], [3], [4]] +0.1.3_5=[[0], [0], [1], [3], [5]] +0.1.3a0=[[0], [0], [1], [3, 'a', 0]] +0.1.3a1=[[0], [0], [1], [3, 'a', 1]] +0.1.3a2=[[0], [0], [1], [3, 'a', 2]] +0.1.4=[[0], [0], [1], [4]] +0.1.4.0=[[0], [0], [1], [4], [0]] +0.1.4.1=[[0], [0], [1], [4], [1]] +0.1.4.2=[[0], [0], [1], [4], [2]] +0.1.4.3=[[0], [0], [1], [4], [3]] +0.1.4.5=[[0], [0], [1], [4], [5]] +0.1.4.6=[[0], [0], [1], [4], [6]] +0.1.40=[[0], [0], [1], [40]] +0.1.41=[[0], [0], [1], [41]] +0.1.42=[[0], [0], [1], [42]] +0.1.43=[[0], [0], [1], [43]] +0.1.44=[[0], [0], [1], [44]] +0.1.45=[[0], [0], [1], [45]] +0.1.46=[[0], [0], [1], [46]] +0.1.47=[[0], [0], [1], [47]] +0.1.48=[[0], [0], [1], [48]] +0.1.49=[[0], [0], [1], [49]] +0.1.4a=[[0], [0], [1], [4, 'a']] +0.1.5=[[0], [0], [1], [5]] +0.1.5.1=[[0], [0], [1], [5], [1]] +0.1.5.2=[[0], [0], [1], [5], [2]] +0.1.5.3=[[0], [0], [1], [5], [3]] +0.1.5.4=[[0], [0], [1], [5], [4]] +0.1.5.5=[[0], [0], [1], [5], [5]] +0.1.5.6=[[0], [0], [1], [5], [6]] +0.1.5.7=[[0], [0], [1], [5], [7]] +0.1.5.8=[[0], [0], [1], [5], [8]] +0.1.5.9=[[0], [0], [1], [5], [9]] +0.1.5.post1=[[0], [0], [1], [5], [0, inf, 1]] +0.1.5.post2=[[0], [0], [1], [5], [0, inf, 2]] +0.1.5.post20210423=[[0], [0], [1], [5], [0, inf, 20210423]] +0.1.5.post20210508=[[0], [0], [1], [5], [0, inf, 20210508]] +0.1.5.post20210511=[[0], [0], [1], [5], [0, inf, 20210511]] +0.1.5.post20210514=[[0], [0], [1], [5], [0, inf, 20210514]] +0.1.5.post20210515=[[0], [0], [1], [5], [0, inf, 20210515]] +0.1.5.post20210604=[[0], [0], [1], [5], [0, inf, 20210604]] +0.1.5.post20210609=[[0], [0], [1], [5], [0, inf, 20210609]] +0.1.5.post20210617=[[0], [0], [1], [5], [0, inf, 20210617]] +0.1.5.post20210624=[[0], [0], [1], [5], [0, inf, 20210624]] +0.1.5.post20210630=[[0], [0], [1], [5], [0, inf, 20210630]] +0.1.5.post20210719=[[0], [0], [1], [5], [0, inf, 20210719]] +0.1.5.post20210727=[[0], [0], [1], [5], [0, inf, 20210727]] +0.1.5.post20210730=[[0], [0], [1], [5], [0, inf, 20210730]] +0.1.5.post20210804=[[0], [0], [1], [5], [0, inf, 20210804]] +0.1.5.post20211023=[[0], [0], [1], [5], [0, inf, 20211023]] +0.1.5.post20220119=[[0], [0], [1], [5], [0, inf, 20220119]] +0.1.5.post20220212=[[0], [0], [1], [5], [0, inf, 20220212]] +0.1.5.post20220305=[[0], [0], [1], [5], [0, inf, 20220305]] +0.1.5.post20220414=[[0], [0], [1], [5], [0, inf, 20220414]] +0.1.5.post20220504=[[0], [0], [1], [5], [0, inf, 20220504]] +0.1.5.post20220506=[[0], [0], [1], [5], [0, inf, 20220506]] +0.1.5.post20220512=[[0], [0], [1], [5], [0, inf, 20220512]] +0.1.5.post20221122=[[0], [0], [1], [5], [0, inf, 20221122]] +0.1.5.post20221213=[[0], [0], [1], [5], [0, inf, 20221213]] +0.1.5.post20221220=[[0], [0], [1], [5], [0, inf, 20221220]] +0.1.5.post20221221=[[0], [0], [1], [5], [0, inf, 20221221]] +0.1.5.post3=[[0], [0], [1], [5], [0, inf, 3]] +0.1.50=[[0], [0], [1], [50]] +0.1.51=[[0], [0], [1], [51]] +0.1.52=[[0], [0], [1], [52]] +0.1.53=[[0], [0], [1], [53]] +0.1.54=[[0], [0], [1], [54]] +0.1.55=[[0], [0], [1], [55]] +0.1.56=[[0], [0], [1], [56]] +0.1.56.1=[[0], [0], [1], [56], [1]] +0.1.57=[[0], [0], [1], [57]] +0.1.57.1=[[0], [0], [1], [57], [1]] +0.1.57.2=[[0], [0], [1], [57], [2]] +0.1.57.4=[[0], [0], [1], [57], [4]] +0.1.57.5=[[0], [0], [1], [57], [5]] +0.1.58=[[0], [0], [1], [58]] +0.1.59=[[0], [0], [1], [59]] +0.1.5a0=[[0], [0], [1], [5, 'a', 0]] +0.1.6=[[0], [0], [1], [6]] +0.1.60=[[0], [0], [1], [60]] +0.1.61=[[0], [0], [1], [61]] +0.1.62=[[0], [0], [1], [62]] +0.1.63=[[0], [0], [1], [63]] +0.1.64=[[0], [0], [1], [64]] +0.1.65=[[0], [0], [1], [65]] +0.1.66=[[0], [0], [1], [66]] +0.1.67=[[0], [0], [1], [67]] +0.1.68=[[0], [0], [1], [68]] +0.1.69=[[0], [0], [1], [69]] +0.1.6a0=[[0], [0], [1], [6, 'a', 0]] +0.1.7=[[0], [0], [1], [7]] +0.1.7.0=[[0], [0], [1], [7], [0]] +0.1.7.1=[[0], [0], [1], [7], [1]] +0.1.7.2=[[0], [0], [1], [7], [2]] +0.1.7.post1=[[0], [0], [1], [7], [0, inf, 1]] +0.1.7.post2=[[0], [0], [1], [7], [0, inf, 2]] +0.1.7.post3=[[0], [0], [1], [7], [0, inf, 3]] +0.1.70=[[0], [0], [1], [70]] +0.1.71=[[0], [0], [1], [71]] +0.1.72=[[0], [0], [1], [72]] +0.1.73=[[0], [0], [1], [73]] +0.1.74=[[0], [0], [1], [74]] +0.1.75=[[0], [0], [1], [75]] +0.1.76=[[0], [0], [1], [76]] +0.1.77=[[0], [0], [1], [77]] +0.1.78=[[0], [0], [1], [78]] +0.1.79=[[0], [0], [1], [79]] +0.1.7_1=[[0], [0], [1], [7], [1]] +0.1.8=[[0], [0], [1], [8]] +0.1.8.0=[[0], [0], [1], [8], [0]] +0.1.8.1=[[0], [0], [1], [8], [1]] +0.1.8.1.1=[[0], [0], [1], [8], [1], [1]] +0.1.8.2=[[0], [0], [1], [8], [2]] +0.1.8.3=[[0], [0], [1], [8], [3]] +0.1.8.4=[[0], [0], [1], [8], [4]] +0.1.8.5=[[0], [0], [1], [8], [5]] +0.1.8.8=[[0], [0], [1], [8], [8]] +0.1.8.9=[[0], [0], [1], [8], [9]] +0.1.8.post1=[[0], [0], [1], [8], [0, inf, 1]] +0.1.8.post2=[[0], [0], [1], [8], [0, inf, 2]] +0.1.8.post3=[[0], [0], [1], [8], [0, inf, 3]] +0.1.80=[[0], [0], [1], [80]] +0.1.81=[[0], [0], [1], [81]] +0.1.82=[[0], [0], [1], [82]] +0.1.83=[[0], [0], [1], [83]] +0.1.84=[[0], [0], [1], [84]] +0.1.85=[[0], [0], [1], [85]] +0.1.86=[[0], [0], [1], [86]] +0.1.87=[[0], [0], [1], [87]] +0.1.88=[[0], [0], [1], [88]] +0.1.89=[[0], [0], [1], [89]] +0.1.9=[[0], [0], [1], [9]] +0.1.9.1=[[0], [0], [1], [9], [1]] +0.1.9.post2=[[0], [0], [1], [9], [0, inf, 2]] +0.1.90=[[0], [0], [1], [90]] +0.1.91=[[0], [0], [1], [91]] +0.1.92=[[0], [0], [1], [92]] +0.1.93=[[0], [0], [1], [93]] +0.1.95=[[0], [0], [1], [95]] +0.1.96=[[0], [0], [1], [96]] +0.1.97=[[0], [0], [1], [97]] +0.1.99=[[0], [0], [1], [99]] +0.1.9_1=[[0], [0], [1], [9], [1]] +0.1.a1a2bc9=[[0], [0], [1], [0, 'a', 1, 'a', 2, 'bc', 9]] +0.1.dev=[[0], [0], [1], [0, 'DEV']] +0.1.dev0=[[0], [0], [1], [0, 'DEV', 0]] +0.1.dev1=[[0], [0], [1], [0, 'DEV', 1]] +0.1.dev109=[[0], [0], [1], [0, 'DEV', 109]] +0.1.dev11=[[0], [0], [1], [0, 'DEV', 11]] +0.1.dev12=[[0], [0], [1], [0, 'DEV', 12]] +0.1.dev2=[[0], [0], [1], [0, 'DEV', 2]] +0.1.dev200325=[[0], [0], [1], [0, 'DEV', 200325]] +0.1.dev273=[[0], [0], [1], [0, 'DEV', 273]] +0.1.post=[[0], [0], [1], [0, inf]] +0.1.post1=[[0], [0], [1], [0, inf, 1]] +0.1.post3=[[0], [0], [1], [0, inf, 3]] +0.1.post7=[[0], [0], [1], [0, inf, 7]] +0.1.post8=[[0], [0], [1], [0, inf, 8]] +0.1.post9=[[0], [0], [1], [0, inf, 9]] +0.1.pre=[[0], [0], [1], [0, 'pre']] +0.10=[[0], [0], [10]] +0.10.0=[[0], [0], [10], [0]] +0.10.0.dev2=[[0], [0], [10], [0], [0, 'DEV', 2]] +0.10.0.post1=[[0], [0], [10], [0], [0, inf, 1]] +0.10.0.post3=[[0], [0], [10], [0], [0, inf, 3]] +0.10.0a=[[0], [0], [10], [0, 'a']] +0.10.0b5=[[0], [0], [10], [0, 'b', 5]] +0.10.0rc1=[[0], [0], [10], [0, 'rc', 1]] +0.10.0rc2=[[0], [0], [10], [0, 'rc', 2]] +0.10.1=[[0], [0], [10], [1]] +0.10.1.0.0=[[0], [0], [10], [1], [0], [0]] +0.10.1.2=[[0], [0], [10], [1], [2]] +0.10.1.2.0=[[0], [0], [10], [1], [2], [0]] +0.10.1.2.2=[[0], [0], [10], [1], [2], [2]] +0.10.1.2729=[[0], [0], [10], [1], [2729]] +0.10.1.2744=[[0], [0], [10], [1], [2744]] +0.10.1.2981=[[0], [0], [10], [1], [2981]] +0.10.1.3049=[[0], [0], [10], [1], [3049]] +0.10.1.3200=[[0], [0], [10], [1], [3200]] +0.10.1.3229=[[0], [0], [10], [1], [3229]] +0.10.1.3266=[[0], [0], [10], [1], [3266]] +0.10.1.3288=[[0], [0], [10], [1], [3288]] +0.10.1.3666=[[0], [0], [10], [1], [3666]] +0.10.1.3751=[[0], [0], [10], [1], [3751]] +0.10.1.3756=[[0], [0], [10], [1], [3756]] +0.10.1.3776=[[0], [0], [10], [1], [3776]] +0.10.10=[[0], [0], [10], [10]] +0.10.100=[[0], [0], [10], [100]] +0.10.101=[[0], [0], [10], [101]] +0.10.103=[[0], [0], [10], [103]] +0.10.104=[[0], [0], [10], [104]] +0.10.105=[[0], [0], [10], [105]] +0.10.106=[[0], [0], [10], [106]] +0.10.107=[[0], [0], [10], [107]] +0.10.108=[[0], [0], [10], [108]] +0.10.109=[[0], [0], [10], [109]] +0.10.10b0=[[0], [0], [10], [10, 'b', 0]] +0.10.11=[[0], [0], [10], [11]] +0.10.110=[[0], [0], [10], [110]] +0.10.111=[[0], [0], [10], [111]] +0.10.112=[[0], [0], [10], [112]] +0.10.113=[[0], [0], [10], [113]] +0.10.114=[[0], [0], [10], [114]] +0.10.115=[[0], [0], [10], [115]] +0.10.117=[[0], [0], [10], [117]] +0.10.118=[[0], [0], [10], [118]] +0.10.12=[[0], [0], [10], [12]] +0.10.120=[[0], [0], [10], [120]] +0.10.122=[[0], [0], [10], [122]] +0.10.124=[[0], [0], [10], [124]] +0.10.125=[[0], [0], [10], [125]] +0.10.126=[[0], [0], [10], [126]] +0.10.127=[[0], [0], [10], [127]] +0.10.128=[[0], [0], [10], [128]] +0.10.129=[[0], [0], [10], [129]] +0.10.13=[[0], [0], [10], [13]] +0.10.130=[[0], [0], [10], [130]] +0.10.131=[[0], [0], [10], [131]] +0.10.132=[[0], [0], [10], [132]] +0.10.133=[[0], [0], [10], [133]] +0.10.14=[[0], [0], [10], [14]] +0.10.15=[[0], [0], [10], [15]] +0.10.16=[[0], [0], [10], [16]] +0.10.17=[[0], [0], [10], [17]] +0.10.18=[[0], [0], [10], [18]] +0.10.19=[[0], [0], [10], [19]] +0.10.1a=[[0], [0], [10], [1, 'a']] +0.10.1a0=[[0], [0], [10], [1, 'a', 0]] +0.10.2=[[0], [0], [10], [2]] +0.10.2.0=[[0], [0], [10], [2], [0]] +0.10.2.1.0=[[0], [0], [10], [2], [1], [0]] +0.10.2.2.0=[[0], [0], [10], [2], [2], [0]] +0.10.20=[[0], [0], [10], [20]] +0.10.21=[[0], [0], [10], [21]] +0.10.22=[[0], [0], [10], [22]] +0.10.23=[[0], [0], [10], [23]] +0.10.24=[[0], [0], [10], [24]] +0.10.25=[[0], [0], [10], [25]] +0.10.26=[[0], [0], [10], [26]] +0.10.27=[[0], [0], [10], [27]] +0.10.28=[[0], [0], [10], [28]] +0.10.29=[[0], [0], [10], [29]] +0.10.2a=[[0], [0], [10], [2, 'a']] +0.10.3=[[0], [0], [10], [3]] +0.10.3.1=[[0], [0], [10], [3], [1]] +0.10.3.2=[[0], [0], [10], [3], [2]] +0.10.3.post1=[[0], [0], [10], [3], [0, inf, 1]] +0.10.30=[[0], [0], [10], [30]] +0.10.31=[[0], [0], [10], [31]] +0.10.32=[[0], [0], [10], [32]] +0.10.33=[[0], [0], [10], [33]] +0.10.33.post1=[[0], [0], [10], [33], [0, inf, 1]] +0.10.34=[[0], [0], [10], [34]] +0.10.35=[[0], [0], [10], [35]] +0.10.36=[[0], [0], [10], [36]] +0.10.37=[[0], [0], [10], [37]] +0.10.3a=[[0], [0], [10], [3, 'a']] +0.10.4=[[0], [0], [10], [4]] +0.10.4.0=[[0], [0], [10], [4], [0]] +0.10.4.0.0=[[0], [0], [10], [4], [0], [0]] +0.10.4.1=[[0], [0], [10], [4], [1]] +0.10.4.2=[[0], [0], [10], [4], [2]] +0.10.4.4=[[0], [0], [10], [4], [4]] +0.10.4.5=[[0], [0], [10], [4], [5]] +0.10.41=[[0], [0], [10], [41]] +0.10.42=[[0], [0], [10], [42]] +0.10.43=[[0], [0], [10], [43]] +0.10.46=[[0], [0], [10], [46]] +0.10.47=[[0], [0], [10], [47]] +0.10.48=[[0], [0], [10], [48]] +0.10.49=[[0], [0], [10], [49]] +0.10.4rc1=[[0], [0], [10], [4, 'rc', 1]] +0.10.5=[[0], [0], [10], [5]] +0.10.5.0=[[0], [0], [10], [5], [0]] +0.10.5.0.0=[[0], [0], [10], [5], [0], [0]] +0.10.5.2=[[0], [0], [10], [5], [2]] +0.10.5.post0=[[0], [0], [10], [5], [0, inf, 0]] +0.10.51=[[0], [0], [10], [51]] +0.10.52=[[0], [0], [10], [52]] +0.10.53=[[0], [0], [10], [53]] +0.10.55=[[0], [0], [10], [55]] +0.10.56=[[0], [0], [10], [56]] +0.10.57=[[0], [0], [10], [57]] +0.10.59=[[0], [0], [10], [59]] +0.10.6=[[0], [0], [10], [6]] +0.10.6.0=[[0], [0], [10], [6], [0]] +0.10.6.0.0=[[0], [0], [10], [6], [0], [0]] +0.10.60=[[0], [0], [10], [60]] +0.10.62=[[0], [0], [10], [62]] +0.10.64=[[0], [0], [10], [64]] +0.10.65=[[0], [0], [10], [65]] +0.10.66=[[0], [0], [10], [66]] +0.10.6b0=[[0], [0], [10], [6, 'b', 0]] +0.10.7=[[0], [0], [10], [7]] +0.10.7.0.0=[[0], [0], [10], [7], [0], [0]] +0.10.7.1=[[0], [0], [10], [7], [1]] +0.10.7.3.0=[[0], [0], [10], [7], [3], [0]] +0.10.7.5.0=[[0], [0], [10], [7], [5], [0]] +0.10.71=[[0], [0], [10], [71]] +0.10.73=[[0], [0], [10], [73]] +0.10.74=[[0], [0], [10], [74]] +0.10.75=[[0], [0], [10], [75]] +0.10.76=[[0], [0], [10], [76]] +0.10.77=[[0], [0], [10], [77]] +0.10.7b0=[[0], [0], [10], [7, 'b', 0]] +0.10.8=[[0], [0], [10], [8]] +0.10.8.1=[[0], [0], [10], [8], [1]] +0.10.8.1.0=[[0], [0], [10], [8], [1], [0]] +0.10.8.2=[[0], [0], [10], [8], [2]] +0.10.8.3=[[0], [0], [10], [8], [3]] +0.10.8.4=[[0], [0], [10], [8], [4]] +0.10.8.5=[[0], [0], [10], [8], [5]] +0.10.81=[[0], [0], [10], [81]] +0.10.82=[[0], [0], [10], [82]] +0.10.83=[[0], [0], [10], [83]] +0.10.84=[[0], [0], [10], [84]] +0.10.85=[[0], [0], [10], [85]] +0.10.86=[[0], [0], [10], [86]] +0.10.8b0=[[0], [0], [10], [8, 'b', 0]] +0.10.9=[[0], [0], [10], [9]] +0.10.9.0=[[0], [0], [10], [9], [0]] +0.10.9.2=[[0], [0], [10], [9], [2]] +0.10.9.3=[[0], [0], [10], [9], [3]] +0.10.9.4=[[0], [0], [10], [9], [4]] +0.10.9.5=[[0], [0], [10], [9], [5]] +0.10.9.6=[[0], [0], [10], [9], [6]] +0.10.9.7=[[0], [0], [10], [9], [7]] +0.10.9.9=[[0], [0], [10], [9], [9]] +0.10.91=[[0], [0], [10], [91]] +0.10.93=[[0], [0], [10], [93]] +0.10.94=[[0], [0], [10], [94]] +0.10.95=[[0], [0], [10], [95]] +0.10.96=[[0], [0], [10], [96]] +0.10.99=[[0], [0], [10], [99]] +0.10.9b0=[[0], [0], [10], [9, 'b', 0]] +0.100=[[0], [0], [100]] +0.100.0=[[0], [0], [100], [0]] +0.100.19=[[0], [0], [100], [19]] +0.100.24=[[0], [0], [100], [24]] +0.100.30=[[0], [0], [100], [30]] +0.100.47=[[0], [0], [100], [47]] +0.100.50=[[0], [0], [100], [50]] +0.100.54=[[0], [0], [100], [54]] +0.100005=[[0], [0], [100005]] +0.100006=[[0], [0], [100006]] +0.100052=[[0], [0], [100052]] +0.100054=[[0], [0], [100054]] +0.100055=[[0], [0], [100055]] +0.101.0=[[0], [0], [101], [0]] +0.1010=[[0], [0], [1010]] +0.1011=[[0], [0], [1011]] +0.102.0=[[0], [0], [102], [0]] +0.102.1=[[0], [0], [102], [1]] +0.103.0=[[0], [0], [103], [0]] +0.104=[[0], [0], [104]] +0.104.0=[[0], [0], [104], [0]] +0.104.1=[[0], [0], [104], [1]] +0.105.0=[[0], [0], [105], [0]] +0.105.13=[[0], [0], [105], [13]] +0.105.22=[[0], [0], [105], [22]] +0.106.0=[[0], [0], [106], [0]] +0.106.1=[[0], [0], [106], [1]] +0.106.6=[[0], [0], [106], [6]] +0.106.8=[[0], [0], [106], [8]] +0.107.0=[[0], [0], [107], [0]] +0.107.10=[[0], [0], [107], [10]] +0.107.14=[[0], [0], [107], [14]] +0.108=[[0], [0], [108]] +0.108.0=[[0], [0], [108], [0]] +0.108.3=[[0], [0], [108], [3]] +0.108.3.2=[[0], [0], [108], [3], [2]] +0.108.6=[[0], [0], [108], [6]] +0.108.7=[[0], [0], [108], [7]] +0.108.8=[[0], [0], [108], [8]] +0.109.0=[[0], [0], [109], [0]] +0.109.2=[[0], [0], [109], [2]] +0.109.6=[[0], [0], [109], [6]] +0.10_0=[[0], [0], [10], [0]] +0.10_1=[[0], [0], [10], [1]] +0.10_108=[[0], [0], [10], [108]] +0.10_2=[[0], [0], [10], [2]] +0.10_40=[[0], [0], [10], [40]] +0.10_46=[[0], [0], [10], [46]] +0.10_47=[[0], [0], [10], [47]] +0.10_48=[[0], [0], [10], [48]] +0.10_49=[[0], [0], [10], [49]] +0.10_5=[[0], [0], [10], [5]] +0.10_50=[[0], [0], [10], [50]] +0.10_51=[[0], [0], [10], [51]] +0.10_52=[[0], [0], [10], [52]] +0.10_53=[[0], [0], [10], [53]] +0.10_54=[[0], [0], [10], [54]] +0.10_6=[[0], [0], [10], [6]] +0.10_7=[[0], [0], [10], [7]] +0.10_8=[[0], [0], [10], [8]] +0.10_9=[[0], [0], [10], [9]] +0.10b0=[[0], [0], [10, 'b', 0]] +0.10rc1=[[0], [0], [10, 'rc', 1]] +0.11=[[0], [0], [11]] +0.11.0=[[0], [0], [11], [0]] +0.11.0.0=[[0], [0], [11], [0], [0]] +0.11.0.0.0=[[0], [0], [11], [0], [0], [0]] +0.11.0.1=[[0], [0], [11], [0], [1]] +0.11.0.5=[[0], [0], [11], [0], [5]] +0.11.0.post1=[[0], [0], [11], [0], [0, inf, 1]] +0.11.0.post2=[[0], [0], [11], [0], [0, inf, 2]] +0.11.0a=[[0], [0], [11], [0, 'a']] +0.11.0rc0=[[0], [0], [11], [0, 'rc', 0]] +0.11.0rc1=[[0], [0], [11], [0, 'rc', 1]] +0.11.0rc2=[[0], [0], [11], [0, 'rc', 2]] +0.11.1=[[0], [0], [11], [1]] +0.11.1.0=[[0], [0], [11], [1], [0]] +0.11.1.1=[[0], [0], [11], [1], [1]] +0.11.1.1.0=[[0], [0], [11], [1], [1], [0]] +0.11.1.post1=[[0], [0], [11], [1], [0, inf, 1]] +0.11.10=[[0], [0], [11], [10]] +0.11.11=[[0], [0], [11], [11]] +0.11.12=[[0], [0], [11], [12]] +0.11.13=[[0], [0], [11], [13]] +0.11.14=[[0], [0], [11], [14]] +0.11.14.1=[[0], [0], [11], [14], [1]] +0.11.14.3=[[0], [0], [11], [14], [3]] +0.11.15=[[0], [0], [11], [15]] +0.11.16=[[0], [0], [11], [16]] +0.11.17=[[0], [0], [11], [17]] +0.11.18=[[0], [0], [11], [18]] +0.11.19=[[0], [0], [11], [19]] +0.11.1a=[[0], [0], [11], [1, 'a']] +0.11.2=[[0], [0], [11], [2]] +0.11.2.0.0=[[0], [0], [11], [2], [0], [0]] +0.11.2.3.1=[[0], [0], [11], [2], [3], [1]] +0.11.20=[[0], [0], [11], [20]] +0.11.21=[[0], [0], [11], [21]] +0.11.22=[[0], [0], [11], [22]] +0.11.224=[[0], [0], [11], [224]] +0.11.23=[[0], [0], [11], [23]] +0.11.24=[[0], [0], [11], [24]] +0.11.25=[[0], [0], [11], [25]] +0.11.3=[[0], [0], [11], [3]] +0.11.3.1=[[0], [0], [11], [3], [1]] +0.11.3.3=[[0], [0], [11], [3], [3]] +0.11.3.post1=[[0], [0], [11], [3], [0, inf, 1]] +0.11.33=[[0], [0], [11], [33]] +0.11.3793=[[0], [0], [11], [3793]] +0.11.3798=[[0], [0], [11], [3798]] +0.11.3856=[[0], [0], [11], [3856]] +0.11.3876=[[0], [0], [11], [3876]] +0.11.4=[[0], [0], [11], [4]] +0.11.4.0.1=[[0], [0], [11], [4], [0], [1]] +0.11.4.2.1=[[0], [0], [11], [4], [2], [1]] +0.11.4.3.1=[[0], [0], [11], [4], [3], [1]] +0.11.4.4.0=[[0], [0], [11], [4], [4], [0]] +0.11.42=[[0], [0], [11], [42]] +0.11.5=[[0], [0], [11], [5]] +0.11.6=[[0], [0], [11], [6]] +0.11.6.post1=[[0], [0], [11], [6], [0, inf, 1]] +0.11.6.post2=[[0], [0], [11], [6], [0, inf, 2]] +0.11.6.post3=[[0], [0], [11], [6], [0, inf, 3]] +0.11.7=[[0], [0], [11], [7]] +0.11.8=[[0], [0], [11], [8]] +0.11.84=[[0], [0], [11], [84]] +0.11.9=[[0], [0], [11], [9]] +0.11.92=[[0], [0], [11], [92]] +0.110=[[0], [0], [110]] +0.110.0=[[0], [0], [110], [0]] +0.110.2=[[0], [0], [110], [2]] +0.111=[[0], [0], [111]] +0.111.0=[[0], [0], [111], [0]] +0.111.6=[[0], [0], [111], [6]] +0.1111a=[[0], [0], [1111, 'a']] +0.1111b=[[0], [0], [1111, 'b']] +0.112=[[0], [0], [112]] +0.112.0=[[0], [0], [112], [0]] +0.113=[[0], [0], [113]] +0.113.0=[[0], [0], [113], [0]] +0.114=[[0], [0], [114]] +0.114.0=[[0], [0], [114], [0]] +0.114.4=[[0], [0], [114], [4]] +0.114.5=[[0], [0], [114], [5]] +0.115.0=[[0], [0], [115], [0]] +0.116.0=[[0], [0], [116], [0]] +0.117.0=[[0], [0], [117], [0]] +0.118.0=[[0], [0], [118], [0]] +0.119.0=[[0], [0], [119], [0]] +0.11_0=[[0], [0], [11], [0]] +0.11_1=[[0], [0], [11], [1]] +0.11_2=[[0], [0], [11], [2]] +0.11_5=[[0], [0], [11], [5]] +0.11_6=[[0], [0], [11], [6]] +0.11c=[[0], [0], [11, 'c']] +0.11rc1=[[0], [0], [11, 'rc', 1]] +0.12=[[0], [0], [12]] +0.12.0=[[0], [0], [12], [0]] +0.12.0.0=[[0], [0], [12], [0], [0]] +0.12.0.1=[[0], [0], [12], [0], [1]] +0.12.0.2=[[0], [0], [12], [0], [2]] +0.12.0.post2=[[0], [0], [12], [0], [0, inf, 2]] +0.12.04=[[0], [0], [12], [4]] +0.12.5=[[0], [0], [12], [5]] +0.12.06=[[0], [0], [12], [6]] +0.12.07=[[0], [0], [12], [7]] +0.12.08=[[0], [0], [12], [8]] +0.12.09=[[0], [0], [12], [9]] +0.12.0a=[[0], [0], [12], [0, 'a']] +0.12.1=[[0], [0], [12], [1]] +0.12.1.1=[[0], [0], [12], [1], [1]] +0.12.1.post1=[[0], [0], [12], [1], [0, inf, 1]] +0.12.1.post2=[[0], [0], [12], [1], [0, inf, 2]] +0.12.10=[[0], [0], [12], [10]] +0.12.11=[[0], [0], [12], [11]] +0.12.12=[[0], [0], [12], [12]] +0.12.13=[[0], [0], [12], [13]] +0.12.14=[[0], [0], [12], [14]] +0.12.15=[[0], [0], [12], [15]] +0.12.16=[[0], [0], [12], [16]] +0.12.17=[[0], [0], [12], [17]] +0.12.18=[[0], [0], [12], [18]] +0.12.19=[[0], [0], [12], [19]] +0.12.1rc1=[[0], [0], [12], [1, 'rc', 1]] +0.12.2=[[0], [0], [12], [2]] +0.12.2.0.0=[[0], [0], [12], [2], [0], [0]] +0.12.20=[[0], [0], [12], [20]] +0.12.21=[[0], [0], [12], [21]] +0.12.22=[[0], [0], [12], [22]] +0.12.23=[[0], [0], [12], [23]] +0.12.233=[[0], [0], [12], [233]] +0.12.24=[[0], [0], [12], [24]] +0.12.25=[[0], [0], [12], [25]] +0.12.26=[[0], [0], [12], [26]] +0.12.27=[[0], [0], [12], [27]] +0.12.28=[[0], [0], [12], [28]] +0.12.29=[[0], [0], [12], [29]] +0.12.3=[[0], [0], [12], [3]] +0.12.30=[[0], [0], [12], [30]] +0.12.31=[[0], [0], [12], [31]] +0.12.32=[[0], [0], [12], [32]] +0.12.33=[[0], [0], [12], [33]] +0.12.34=[[0], [0], [12], [34]] +0.12.35=[[0], [0], [12], [35]] +0.12.36=[[0], [0], [12], [36]] +0.12.4=[[0], [0], [12], [4]] +0.12.4.0.0=[[0], [0], [12], [4], [0], [0]] +0.12.5=[[0], [0], [12], [5]] +0.12.6=[[0], [0], [12], [6]] +0.12.7=[[0], [0], [12], [7]] +0.12.7a0=[[0], [0], [12], [7, 'a', 0]] +0.12.7a12=[[0], [0], [12], [7, 'a', 12]] +0.12.7a17=[[0], [0], [12], [7, 'a', 17]] +0.12.7a5=[[0], [0], [12], [7, 'a', 5]] +0.12.8=[[0], [0], [12], [8]] +0.12.8b4=[[0], [0], [12], [8, 'b', 4]] +0.12.8b6=[[0], [0], [12], [8, 'b', 6]] +0.12.8b9=[[0], [0], [12], [8, 'b', 9]] +0.12.9=[[0], [0], [12], [9]] +0.12.9b0=[[0], [0], [12], [9, 'b', 0]] +0.12.9b1=[[0], [0], [12], [9, 'b', 1]] +0.12.9b5=[[0], [0], [12], [9, 'b', 5]] +0.12.9b7=[[0], [0], [12], [9, 'b', 7]] +0.120.0=[[0], [0], [120], [0]] +0.1202=[[0], [0], [1202]] +0.121.0=[[0], [0], [121], [0]] +0.122=[[0], [0], [122]] +0.122.0=[[0], [0], [122], [0]] +0.124=[[0], [0], [124]] +0.124.0=[[0], [0], [124], [0]] +0.125.0=[[0], [0], [125], [0]] +0.126.0=[[0], [0], [126], [0]] +0.127.0=[[0], [0], [127], [0]] +0.128.0=[[0], [0], [128], [0]] +0.129.0=[[0], [0], [129], [0]] +0.12_0=[[0], [0], [12], [0]] +0.12_1=[[0], [0], [12], [1]] +0.12_10=[[0], [0], [12], [10]] +0.12_2=[[0], [0], [12], [2]] +0.12_4=[[0], [0], [12], [4]] +0.12a4=[[0], [0], [12, 'a', 4]] +0.12rc1=[[0], [0], [12, 'rc', 1]] +0.13=[[0], [0], [13]] +0.13.0=[[0], [0], [13], [0]] +0.13.0.0=[[0], [0], [13], [0], [0]] +0.13.0.3=[[0], [0], [13], [0], [3]] +0.13.00=[[0], [0], [13], [0]] +0.13.01=[[0], [0], [13], [1]] +0.13.04=[[0], [0], [13], [4]] +0.13.5=[[0], [0], [13], [5]] +0.13.06=[[0], [0], [13], [6]] +0.13.1=[[0], [0], [13], [1]] +0.13.1.0=[[0], [0], [13], [1], [0]] +0.13.1.1=[[0], [0], [13], [1], [1]] +0.13.1.2=[[0], [0], [13], [1], [2]] +0.13.1.3=[[0], [0], [13], [1], [3]] +0.13.1.4=[[0], [0], [13], [1], [4]] +0.13.1.5=[[0], [0], [13], [1], [5]] +0.13.1.6=[[0], [0], [13], [1], [6]] +0.13.1.7=[[0], [0], [13], [1], [7]] +0.13.1.8=[[0], [0], [13], [1], [8]] +0.13.1.9=[[0], [0], [13], [1], [9]] +0.13.10=[[0], [0], [13], [10]] +0.13.11=[[0], [0], [13], [11]] +0.13.12=[[0], [0], [13], [12]] +0.13.13=[[0], [0], [13], [13]] +0.13.14=[[0], [0], [13], [14]] +0.13.15=[[0], [0], [13], [15]] +0.13.16=[[0], [0], [13], [16]] +0.13.17=[[0], [0], [13], [17]] +0.13.18=[[0], [0], [13], [18]] +0.13.19=[[0], [0], [13], [19]] +0.13.2=[[0], [0], [13], [2]] +0.13.2.0=[[0], [0], [13], [2], [0]] +0.13.2.1=[[0], [0], [13], [2], [1]] +0.13.2.2=[[0], [0], [13], [2], [2]] +0.13.2.3=[[0], [0], [13], [2], [3]] +0.13.2.4=[[0], [0], [13], [2], [4]] +0.13.2.5=[[0], [0], [13], [2], [5]] +0.13.20=[[0], [0], [13], [20]] +0.13.21=[[0], [0], [13], [21]] +0.13.22=[[0], [0], [13], [22]] +0.13.23=[[0], [0], [13], [23]] +0.13.234=[[0], [0], [13], [234]] +0.13.237=[[0], [0], [13], [237]] +0.13.238=[[0], [0], [13], [238]] +0.13.24=[[0], [0], [13], [24]] +0.13.241=[[0], [0], [13], [241]] +0.13.25=[[0], [0], [13], [25]] +0.13.26=[[0], [0], [13], [26]] +0.13.27=[[0], [0], [13], [27]] +0.13.28=[[0], [0], [13], [28]] +0.13.29=[[0], [0], [13], [29]] +0.13.3=[[0], [0], [13], [3]] +0.13.3.1=[[0], [0], [13], [3], [1]] +0.13.3.3=[[0], [0], [13], [3], [3]] +0.13.3.4=[[0], [0], [13], [3], [4]] +0.13.3.6=[[0], [0], [13], [3], [6]] +0.13.30=[[0], [0], [13], [30]] +0.13.31=[[0], [0], [13], [31]] +0.13.32=[[0], [0], [13], [32]] +0.13.33=[[0], [0], [13], [33]] +0.13.34=[[0], [0], [13], [34]] +0.13.35=[[0], [0], [13], [35]] +0.13.36=[[0], [0], [13], [36]] +0.13.37=[[0], [0], [13], [37]] +0.13.38=[[0], [0], [13], [38]] +0.13.39=[[0], [0], [13], [39]] +0.13.4=[[0], [0], [13], [4]] +0.13.40=[[0], [0], [13], [40]] +0.13.41=[[0], [0], [13], [41]] +0.13.42=[[0], [0], [13], [42]] +0.13.43=[[0], [0], [13], [43]] +0.13.44=[[0], [0], [13], [44]] +0.13.45=[[0], [0], [13], [45]] +0.13.46=[[0], [0], [13], [46]] +0.13.47=[[0], [0], [13], [47]] +0.13.48=[[0], [0], [13], [48]] +0.13.49=[[0], [0], [13], [49]] +0.13.5=[[0], [0], [13], [5]] +0.13.50=[[0], [0], [13], [50]] +0.13.51=[[0], [0], [13], [51]] +0.13.52=[[0], [0], [13], [52]] +0.13.53=[[0], [0], [13], [53]] +0.13.54=[[0], [0], [13], [54]] +0.13.55=[[0], [0], [13], [55]] +0.13.56=[[0], [0], [13], [56]] +0.13.57=[[0], [0], [13], [57]] +0.13.58=[[0], [0], [13], [58]] +0.13.6=[[0], [0], [13], [6]] +0.13.69=[[0], [0], [13], [69]] +0.13.7=[[0], [0], [13], [7]] +0.13.8=[[0], [0], [13], [8]] +0.13.9=[[0], [0], [13], [9]] +0.130.0=[[0], [0], [130], [0]] +0.131.0=[[0], [0], [131], [0]] +0.132.0=[[0], [0], [132], [0]] +0.135.0=[[0], [0], [135], [0]] +0.138.0=[[0], [0], [138], [0]] +0.13_0=[[0], [0], [13], [0]] +0.13_1=[[0], [0], [13], [1]] +0.13_2=[[0], [0], [13], [2]] +0.13_3=[[0], [0], [13], [3]] +0.13_4=[[0], [0], [13], [4]] +0.13_5=[[0], [0], [13], [5]] +0.13_6=[[0], [0], [13], [6]] +0.13_7=[[0], [0], [13], [7]] +0.13_8=[[0], [0], [13], [8]] +0.13rc1=[[0], [0], [13, 'rc', 1]] +0.14=[[0], [0], [14]] +0.14.0=[[0], [0], [14], [0]] +0.14.0.1=[[0], [0], [14], [0], [1]] +0.14.0.10=[[0], [0], [14], [0], [10]] +0.14.0.2=[[0], [0], [14], [0], [2]] +0.14.0.3=[[0], [0], [14], [0], [3]] +0.14.0.4=[[0], [0], [14], [0], [4]] +0.14.0.5=[[0], [0], [14], [0], [5]] +0.14.0.6=[[0], [0], [14], [0], [6]] +0.14.0.7=[[0], [0], [14], [0], [7]] +0.14.0.8=[[0], [0], [14], [0], [8]] +0.14.0.9=[[0], [0], [14], [0], [9]] +0.14.0a0=[[0], [0], [14], [0, 'a', 0]] +0.14.1=[[0], [0], [14], [1]] +0.14.1.0=[[0], [0], [14], [1], [0]] +0.14.1.1=[[0], [0], [14], [1], [1]] +0.14.1.2=[[0], [0], [14], [1], [2]] +0.14.1.3=[[0], [0], [14], [1], [3]] +0.14.10=[[0], [0], [14], [10]] +0.14.11=[[0], [0], [14], [11]] +0.14.12=[[0], [0], [14], [12]] +0.14.13=[[0], [0], [14], [13]] +0.14.14=[[0], [0], [14], [14]] +0.14.15=[[0], [0], [14], [15]] +0.14.16=[[0], [0], [14], [16]] +0.14.17=[[0], [0], [14], [17]] +0.14.18=[[0], [0], [14], [18]] +0.14.19=[[0], [0], [14], [19]] +0.14.2=[[0], [0], [14], [2]] +0.14.2.1=[[0], [0], [14], [2], [1]] +0.14.2.10=[[0], [0], [14], [2], [10]] +0.14.2.2=[[0], [0], [14], [2], [2]] +0.14.2.3=[[0], [0], [14], [2], [3]] +0.14.2.4=[[0], [0], [14], [2], [4]] +0.14.2.5=[[0], [0], [14], [2], [5]] +0.14.2.6=[[0], [0], [14], [2], [6]] +0.14.2.7=[[0], [0], [14], [2], [7]] +0.14.2.8=[[0], [0], [14], [2], [8]] +0.14.2.9=[[0], [0], [14], [2], [9]] +0.14.20=[[0], [0], [14], [20]] +0.14.21=[[0], [0], [14], [21]] +0.14.22=[[0], [0], [14], [22]] +0.14.23=[[0], [0], [14], [23]] +0.14.24=[[0], [0], [14], [24]] +0.14.244=[[0], [0], [14], [244]] +0.14.245=[[0], [0], [14], [245]] +0.14.248=[[0], [0], [14], [248]] +0.14.25=[[0], [0], [14], [25]] +0.14.256=[[0], [0], [14], [256]] +0.14.26=[[0], [0], [14], [26]] +0.14.260=[[0], [0], [14], [260]] +0.14.261=[[0], [0], [14], [261]] +0.14.27=[[0], [0], [14], [27]] +0.14.28=[[0], [0], [14], [28]] +0.14.29=[[0], [0], [14], [29]] +0.14.2_3=[[0], [0], [14], [2], [3]] +0.14.3=[[0], [0], [14], [3]] +0.14.3.1=[[0], [0], [14], [3], [1]] +0.14.3.2=[[0], [0], [14], [3], [2]] +0.14.3.3=[[0], [0], [14], [3], [3]] +0.14.3.4=[[0], [0], [14], [3], [4]] +0.14.3.5=[[0], [0], [14], [3], [5]] +0.14.3.6=[[0], [0], [14], [3], [6]] +0.14.31=[[0], [0], [14], [31]] +0.14.4=[[0], [0], [14], [4]] +0.14.5=[[0], [0], [14], [5]] +0.14.51=[[0], [0], [14], [51]] +0.14.54=[[0], [0], [14], [54]] +0.14.6=[[0], [0], [14], [6]] +0.14.6.1=[[0], [0], [14], [6], [1]] +0.14.6.2=[[0], [0], [14], [6], [2]] +0.14.6.3=[[0], [0], [14], [6], [3]] +0.14.7=[[0], [0], [14], [7]] +0.14.8=[[0], [0], [14], [8]] +0.14.9=[[0], [0], [14], [9]] +0.140.0=[[0], [0], [140], [0]] +0.141.0=[[0], [0], [141], [0]] +0.144.0=[[0], [0], [144], [0]] +0.145.0=[[0], [0], [145], [0]] +0.146.0=[[0], [0], [146], [0]] +0.147.0=[[0], [0], [147], [0]] +0.148.0=[[0], [0], [148], [0]] +0.149.0=[[0], [0], [149], [0]] +0.14_0=[[0], [0], [14], [0]] +0.14_1=[[0], [0], [14], [1]] +0.14rc1=[[0], [0], [14, 'rc', 1]] +0.15=[[0], [0], [15]] +0.15.0=[[0], [0], [15], [0]] +0.15.0.1=[[0], [0], [15], [0], [1]] +0.15.0.2=[[0], [0], [15], [0], [2]] +0.15.07=[[0], [0], [15], [7]] +0.15.1=[[0], [0], [15], [1]] +0.15.10=[[0], [0], [15], [10]] +0.15.100=[[0], [0], [15], [100]] +0.15.11=[[0], [0], [15], [11]] +0.15.12=[[0], [0], [15], [12]] +0.15.13=[[0], [0], [15], [13]] +0.15.14=[[0], [0], [15], [14]] +0.15.15=[[0], [0], [15], [15]] +0.15.16=[[0], [0], [15], [16]] +0.15.17=[[0], [0], [15], [17]] +0.15.18=[[0], [0], [15], [18]] +0.15.19=[[0], [0], [15], [19]] +0.15.1b=[[0], [0], [15], [1, 'b']] +0.15.2=[[0], [0], [15], [2]] +0.15.20=[[0], [0], [15], [20]] +0.15.21=[[0], [0], [15], [21]] +0.15.22=[[0], [0], [15], [22]] +0.15.23=[[0], [0], [15], [23]] +0.15.24=[[0], [0], [15], [24]] +0.15.25=[[0], [0], [15], [25]] +0.15.26=[[0], [0], [15], [26]] +0.15.27=[[0], [0], [15], [27]] +0.15.277=[[0], [0], [15], [277]] +0.15.28=[[0], [0], [15], [28]] +0.15.280=[[0], [0], [15], [280]] +0.15.283=[[0], [0], [15], [283]] +0.15.285=[[0], [0], [15], [285]] +0.15.287=[[0], [0], [15], [287]] +0.15.293=[[0], [0], [15], [293]] +0.15.3=[[0], [0], [15], [3]] +0.15.31=[[0], [0], [15], [31]] +0.15.32=[[0], [0], [15], [32]] +0.15.33=[[0], [0], [15], [33]] +0.15.34=[[0], [0], [15], [34]] +0.15.35=[[0], [0], [15], [35]] +0.15.36=[[0], [0], [15], [36]] +0.15.37=[[0], [0], [15], [37]] +0.15.38=[[0], [0], [15], [38]] +0.15.39=[[0], [0], [15], [39]] +0.15.4=[[0], [0], [15], [4]] +0.15.40=[[0], [0], [15], [40]] +0.15.41=[[0], [0], [15], [41]] +0.15.42=[[0], [0], [15], [42]] +0.15.43=[[0], [0], [15], [43]] +0.15.44=[[0], [0], [15], [44]] +0.15.45=[[0], [0], [15], [45]] +0.15.46=[[0], [0], [15], [46]] +0.15.47=[[0], [0], [15], [47]] +0.15.48=[[0], [0], [15], [48]] +0.15.49=[[0], [0], [15], [49]] +0.15.5=[[0], [0], [15], [5]] +0.15.50=[[0], [0], [15], [50]] +0.15.51=[[0], [0], [15], [51]] +0.15.52=[[0], [0], [15], [52]] +0.15.53=[[0], [0], [15], [53]] +0.15.6=[[0], [0], [15], [6]] +0.15.61=[[0], [0], [15], [61]] +0.15.62=[[0], [0], [15], [62]] +0.15.63=[[0], [0], [15], [63]] +0.15.64=[[0], [0], [15], [64]] +0.15.65=[[0], [0], [15], [65]] +0.15.66=[[0], [0], [15], [66]] +0.15.67=[[0], [0], [15], [67]] +0.15.68=[[0], [0], [15], [68]] +0.15.69=[[0], [0], [15], [69]] +0.15.7=[[0], [0], [15], [7]] +0.15.71=[[0], [0], [15], [71]] +0.15.72=[[0], [0], [15], [72]] +0.15.73=[[0], [0], [15], [73]] +0.15.74=[[0], [0], [15], [74]] +0.15.75=[[0], [0], [15], [75]] +0.15.76=[[0], [0], [15], [76]] +0.15.77=[[0], [0], [15], [77]] +0.15.78=[[0], [0], [15], [78]] +0.15.79=[[0], [0], [15], [79]] +0.15.8=[[0], [0], [15], [8]] +0.15.8.1=[[0], [0], [15], [8], [1]] +0.15.80=[[0], [0], [15], [80]] +0.15.81=[[0], [0], [15], [81]] +0.15.82=[[0], [0], [15], [82]] +0.15.83=[[0], [0], [15], [83]] +0.15.84=[[0], [0], [15], [84]] +0.15.85=[[0], [0], [15], [85]] +0.15.86=[[0], [0], [15], [86]] +0.15.87=[[0], [0], [15], [87]] +0.15.88=[[0], [0], [15], [88]] +0.15.89=[[0], [0], [15], [89]] +0.15.9=[[0], [0], [15], [9]] +0.15.91=[[0], [0], [15], [91]] +0.15.92=[[0], [0], [15], [92]] +0.15.93=[[0], [0], [15], [93]] +0.15.94=[[0], [0], [15], [94]] +0.15.95=[[0], [0], [15], [95]] +0.15.96=[[0], [0], [15], [96]] +0.15.97=[[0], [0], [15], [97]] +0.15.98=[[0], [0], [15], [98]] +0.15.99=[[0], [0], [15], [99]] +0.150.0=[[0], [0], [150], [0]] +0.151.0=[[0], [0], [151], [0]] +0.152.0=[[0], [0], [152], [0]] +0.153.0=[[0], [0], [153], [0]] +0.154.0=[[0], [0], [154], [0]] +0.154.1=[[0], [0], [154], [1]] +0.155.0=[[0], [0], [155], [0]] +0.155.2=[[0], [0], [155], [2]] +0.155.3=[[0], [0], [155], [3]] +0.155.4=[[0], [0], [155], [4]] +0.156.1=[[0], [0], [156], [1]] +0.156.2=[[0], [0], [156], [2]] +0.156.3=[[0], [0], [156], [3]] +0.156.4=[[0], [0], [156], [4]] +0.157.0=[[0], [0], [157], [0]] +0.158.0=[[0], [0], [158], [0]] +0.158.1=[[0], [0], [158], [1]] +0.158.2=[[0], [0], [158], [2]] +0.159.0=[[0], [0], [159], [0]] +0.15_0=[[0], [0], [15], [0]] +0.15_4=[[0], [0], [15], [4]] +0.15b0=[[0], [0], [15, 'b', 0]] +0.15rc1=[[0], [0], [15, 'rc', 1]] +0.16=[[0], [0], [16]] +0.16.0=[[0], [0], [16], [0]] +0.16.0.post0=[[0], [0], [16], [0], [0, inf, 0]] +0.16.1=[[0], [0], [16], [1]] +0.16.1.post1=[[0], [0], [16], [1], [0, inf, 1]] +0.16.10=[[0], [0], [16], [10]] +0.16.11=[[0], [0], [16], [11]] +0.16.12=[[0], [0], [16], [12]] +0.16.13=[[0], [0], [16], [13]] +0.16.14=[[0], [0], [16], [14]] +0.16.15=[[0], [0], [16], [15]] +0.16.16=[[0], [0], [16], [16]] +0.16.17=[[0], [0], [16], [17]] +0.16.18=[[0], [0], [16], [18]] +0.16.19=[[0], [0], [16], [19]] +0.16.2=[[0], [0], [16], [2]] +0.16.20=[[0], [0], [16], [20]] +0.16.21=[[0], [0], [16], [21]] +0.16.22=[[0], [0], [16], [22]] +0.16.23=[[0], [0], [16], [23]] +0.16.3=[[0], [0], [16], [3]] +0.16.30=[[0], [0], [16], [30]] +0.16.31=[[0], [0], [16], [31]] +0.16.4=[[0], [0], [16], [4]] +0.16.5=[[0], [0], [16], [5]] +0.16.6=[[0], [0], [16], [6]] +0.16.7=[[0], [0], [16], [7]] +0.16.8=[[0], [0], [16], [8]] +0.16.9=[[0], [0], [16], [9]] +0.160.0=[[0], [0], [160], [0]] +0.161.0=[[0], [0], [161], [0]] +0.162.0=[[0], [0], [162], [0]] +0.163.0=[[0], [0], [163], [0]] +0.164.0=[[0], [0], [164], [0]] +0.165.0=[[0], [0], [165], [0]] +0.166.0=[[0], [0], [166], [0]] +0.167=[[0], [0], [167]] +0.167.0=[[0], [0], [167], [0]] +0.168.0=[[0], [0], [168], [0]] +0.16_0=[[0], [0], [16], [0]] +0.16_1=[[0], [0], [16], [1]] +0.16b0=[[0], [0], [16, 'b', 0]] +0.17=[[0], [0], [17]] +0.17.0=[[0], [0], [17], [0]] +0.17.0.post1=[[0], [0], [17], [0], [0, inf, 1]] +0.17.0.post2=[[0], [0], [17], [0], [0, inf, 2]] +0.17.1=[[0], [0], [17], [1]] +0.17.1.14=[[0], [0], [17], [1], [14]] +0.17.10=[[0], [0], [17], [10]] +0.17.11=[[0], [0], [17], [11]] +0.17.12=[[0], [0], [17], [12]] +0.17.13=[[0], [0], [17], [13]] +0.17.14=[[0], [0], [17], [14]] +0.17.15=[[0], [0], [17], [15]] +0.17.16=[[0], [0], [17], [16]] +0.17.17=[[0], [0], [17], [17]] +0.17.18=[[0], [0], [17], [18]] +0.17.19=[[0], [0], [17], [19]] +0.17.2=[[0], [0], [17], [2]] +0.17.20=[[0], [0], [17], [20]] +0.17.21=[[0], [0], [17], [21]] +0.17.22=[[0], [0], [17], [22]] +0.17.23=[[0], [0], [17], [23]] +0.17.24=[[0], [0], [17], [24]] +0.17.25=[[0], [0], [17], [25]] +0.17.26=[[0], [0], [17], [26]] +0.17.27=[[0], [0], [17], [27]] +0.17.28=[[0], [0], [17], [28]] +0.17.29=[[0], [0], [17], [29]] +0.17.3=[[0], [0], [17], [3]] +0.17.30=[[0], [0], [17], [30]] +0.17.31=[[0], [0], [17], [31]] +0.17.32=[[0], [0], [17], [32]] +0.17.33=[[0], [0], [17], [33]] +0.17.34=[[0], [0], [17], [34]] +0.17.4=[[0], [0], [17], [4]] +0.17.5=[[0], [0], [17], [5]] +0.17.6=[[0], [0], [17], [6]] +0.17.7=[[0], [0], [17], [7]] +0.17.8=[[0], [0], [17], [8]] +0.17.9=[[0], [0], [17], [9]] +0.170=[[0], [0], [170]] +0.170.0=[[0], [0], [170], [0]] +0.17024=[[0], [0], [17024]] +0.17027=[[0], [0], [17027]] +0.17029=[[0], [0], [17029]] +0.171.0=[[0], [0], [171], [0]] +0.172.0=[[0], [0], [172], [0]] +0.173=[[0], [0], [173]] +0.173.0=[[0], [0], [173], [0]] +0.174.0=[[0], [0], [174], [0]] +0.175=[[0], [0], [175]] +0.175.0=[[0], [0], [175], [0]] +0.176=[[0], [0], [176]] +0.176.0=[[0], [0], [176], [0]] +0.177.0=[[0], [0], [177], [0]] +0.178.0=[[0], [0], [178], [0]] +0.179.0=[[0], [0], [179], [0]] +0.17_6=[[0], [0], [17], [6]] +0.17_8=[[0], [0], [17], [8]] +0.17b0=[[0], [0], [17, 'b', 0]] +0.18=[[0], [0], [18]] +0.18.0=[[0], [0], [18], [0]] +0.18.0.post1=[[0], [0], [18], [0], [0, inf, 1]] +0.18.1=[[0], [0], [18], [1]] +0.18.10=[[0], [0], [18], [10]] +0.18.103=[[0], [0], [18], [103]] +0.18.11=[[0], [0], [18], [11]] +0.18.12=[[0], [0], [18], [12]] +0.18.13=[[0], [0], [18], [13]] +0.18.14=[[0], [0], [18], [14]] +0.18.15=[[0], [0], [18], [15]] +0.18.16=[[0], [0], [18], [16]] +0.18.2=[[0], [0], [18], [2]] +0.18.29=[[0], [0], [18], [29]] +0.18.3=[[0], [0], [18], [3]] +0.18.30=[[0], [0], [18], [30]] +0.18.31=[[0], [0], [18], [31]] +0.18.32=[[0], [0], [18], [32]] +0.18.33=[[0], [0], [18], [33]] +0.18.34=[[0], [0], [18], [34]] +0.18.35=[[0], [0], [18], [35]] +0.18.36=[[0], [0], [18], [36]] +0.18.37=[[0], [0], [18], [37]] +0.18.38=[[0], [0], [18], [38]] +0.18.39=[[0], [0], [18], [39]] +0.18.4=[[0], [0], [18], [4]] +0.18.40=[[0], [0], [18], [40]] +0.18.41=[[0], [0], [18], [41]] +0.18.42=[[0], [0], [18], [42]] +0.18.43=[[0], [0], [18], [43]] +0.18.45=[[0], [0], [18], [45]] +0.18.46=[[0], [0], [18], [46]] +0.18.47=[[0], [0], [18], [47]] +0.18.48=[[0], [0], [18], [48]] +0.18.49=[[0], [0], [18], [49]] +0.18.5=[[0], [0], [18], [5]] +0.18.50=[[0], [0], [18], [50]] +0.18.51=[[0], [0], [18], [51]] +0.18.52=[[0], [0], [18], [52]] +0.18.53=[[0], [0], [18], [53]] +0.18.54=[[0], [0], [18], [54]] +0.18.55=[[0], [0], [18], [55]] +0.18.56=[[0], [0], [18], [56]] +0.18.57=[[0], [0], [18], [57]] +0.18.6=[[0], [0], [18], [6]] +0.18.61=[[0], [0], [18], [61]] +0.18.62=[[0], [0], [18], [62]] +0.18.63=[[0], [0], [18], [63]] +0.18.64=[[0], [0], [18], [64]] +0.18.65=[[0], [0], [18], [65]] +0.18.66=[[0], [0], [18], [66]] +0.18.67=[[0], [0], [18], [67]] +0.18.68=[[0], [0], [18], [68]] +0.18.69=[[0], [0], [18], [69]] +0.18.7=[[0], [0], [18], [7]] +0.18.70=[[0], [0], [18], [70]] +0.18.71=[[0], [0], [18], [71]] +0.18.72=[[0], [0], [18], [72]] +0.18.73=[[0], [0], [18], [73]] +0.18.74=[[0], [0], [18], [74]] +0.18.75=[[0], [0], [18], [75]] +0.18.76=[[0], [0], [18], [76]] +0.18.77=[[0], [0], [18], [77]] +0.18.78=[[0], [0], [18], [78]] +0.18.79=[[0], [0], [18], [79]] +0.18.8=[[0], [0], [18], [8]] +0.18.80=[[0], [0], [18], [80]] +0.18.82=[[0], [0], [18], [82]] +0.18.83=[[0], [0], [18], [83]] +0.18.84=[[0], [0], [18], [84]] +0.18.85=[[0], [0], [18], [85]] +0.18.86=[[0], [0], [18], [86]] +0.18.87=[[0], [0], [18], [87]] +0.18.88=[[0], [0], [18], [88]] +0.18.9=[[0], [0], [18], [9]] +0.18.90=[[0], [0], [18], [90]] +0.180.0=[[0], [0], [180], [0]] +0.181.0=[[0], [0], [181], [0]] +0.182=[[0], [0], [182]] +0.182.0=[[0], [0], [182], [0]] +0.183=[[0], [0], [183]] +0.183.0=[[0], [0], [183], [0]] +0.184=[[0], [0], [184]] +0.184.0=[[0], [0], [184], [0]] +0.185=[[0], [0], [185]] +0.185.0=[[0], [0], [185], [0]] +0.186=[[0], [0], [186]] +0.186.0=[[0], [0], [186], [0]] +0.187=[[0], [0], [187]] +0.187.0=[[0], [0], [187], [0]] +0.188=[[0], [0], [188]] +0.188.0=[[0], [0], [188], [0]] +0.189=[[0], [0], [189]] +0.189.0=[[0], [0], [189], [0]] +0.18_205=[[0], [0], [18], [205]] +0.18b0=[[0], [0], [18, 'b', 0]] +0.19=[[0], [0], [19]] +0.19.0=[[0], [0], [19], [0]] +0.19.0.dev2=[[0], [0], [19], [0], [0, 'DEV', 2]] +0.19.0.post0=[[0], [0], [19], [0], [0, inf, 0]] +0.19.0.post1=[[0], [0], [19], [0], [0, inf, 1]] +0.19.1=[[0], [0], [19], [1]] +0.19.1.1=[[0], [0], [19], [1], [1]] +0.19.1.2=[[0], [0], [19], [1], [2]] +0.19.1.3=[[0], [0], [19], [1], [3]] +0.19.1.4=[[0], [0], [19], [1], [4]] +0.19.1.5=[[0], [0], [19], [1], [5]] +0.19.1.6=[[0], [0], [19], [1], [6]] +0.19.10=[[0], [0], [19], [10]] +0.19.11=[[0], [0], [19], [11]] +0.19.12=[[0], [0], [19], [12]] +0.19.13=[[0], [0], [19], [13]] +0.19.14=[[0], [0], [19], [14]] +0.19.15=[[0], [0], [19], [15]] +0.19.16=[[0], [0], [19], [16]] +0.19.17=[[0], [0], [19], [17]] +0.19.18=[[0], [0], [19], [18]] +0.19.19=[[0], [0], [19], [19]] +0.19.2=[[0], [0], [19], [2]] +0.19.20=[[0], [0], [19], [20]] +0.19.21=[[0], [0], [19], [21]] +0.19.22=[[0], [0], [19], [22]] +0.19.23=[[0], [0], [19], [23]] +0.19.24=[[0], [0], [19], [24]] +0.19.25=[[0], [0], [19], [25]] +0.19.26=[[0], [0], [19], [26]] +0.19.27=[[0], [0], [19], [27]] +0.19.28=[[0], [0], [19], [28]] +0.19.29=[[0], [0], [19], [29]] +0.19.3=[[0], [0], [19], [3]] +0.19.30=[[0], [0], [19], [30]] +0.19.31=[[0], [0], [19], [31]] +0.19.32=[[0], [0], [19], [32]] +0.19.33=[[0], [0], [19], [33]] +0.19.34=[[0], [0], [19], [34]] +0.19.35=[[0], [0], [19], [35]] +0.19.36=[[0], [0], [19], [36]] +0.19.37=[[0], [0], [19], [37]] +0.19.38=[[0], [0], [19], [38]] +0.19.39=[[0], [0], [19], [39]] +0.19.4=[[0], [0], [19], [4]] +0.19.40=[[0], [0], [19], [40]] +0.19.41=[[0], [0], [19], [41]] +0.19.42=[[0], [0], [19], [42]] +0.19.43=[[0], [0], [19], [43]] +0.19.44=[[0], [0], [19], [44]] +0.19.45=[[0], [0], [19], [45]] +0.19.46=[[0], [0], [19], [46]] +0.19.47=[[0], [0], [19], [47]] +0.19.48=[[0], [0], [19], [48]] +0.19.49=[[0], [0], [19], [49]] +0.19.5=[[0], [0], [19], [5]] +0.19.50=[[0], [0], [19], [50]] +0.19.51=[[0], [0], [19], [51]] +0.19.52=[[0], [0], [19], [52]] +0.19.53=[[0], [0], [19], [53]] +0.19.54=[[0], [0], [19], [54]] +0.19.55=[[0], [0], [19], [55]] +0.19.56=[[0], [0], [19], [56]] +0.19.57=[[0], [0], [19], [57]] +0.19.6=[[0], [0], [19], [6]] +0.19.7=[[0], [0], [19], [7]] +0.19.8=[[0], [0], [19], [8]] +0.19.8.1=[[0], [0], [19], [8], [1]] +0.19.9=[[0], [0], [19], [9]] +0.19.alpha2=[[0], [0], [19], [0, 'alpha', 2]] +0.19.alpha3=[[0], [0], [19], [0, 'alpha', 3]] +0.190.0=[[0], [0], [190], [0]] +0.191.0=[[0], [0], [191], [0]] +0.192.0=[[0], [0], [192], [0]] +0.1923=[[0], [0], [1923]] +0.1924=[[0], [0], [1924]] +0.193=[[0], [0], [193]] +0.193.0=[[0], [0], [193], [0]] +0.194=[[0], [0], [194]] +0.194.0=[[0], [0], [194], [0]] +0.195.0=[[0], [0], [195], [0]] +0.196.0=[[0], [0], [196], [0]] +0.198.0=[[0], [0], [198], [0]] +0.199.0=[[0], [0], [199], [0]] +0.19_1=[[0], [0], [19], [1]] +0.19_2=[[0], [0], [19], [2]] +0.19_3=[[0], [0], [19], [3]] +0.19_4=[[0], [0], [19], [4]] +0.1_0=[[0], [0], [1], [0]] +0.1_1=[[0], [0], [1], [1]] +0.1_10=[[0], [0], [1], [10]] +0.1_11=[[0], [0], [1], [11]] +0.1_12=[[0], [0], [1], [12]] +0.1_13.1=[[0], [0], [1], [13], [1]] +0.1_14=[[0], [0], [1], [14]] +0.1_15=[[0], [0], [1], [15]] +0.1_17=[[0], [0], [1], [17]] +0.1_18=[[0], [0], [1], [18]] +0.1_19=[[0], [0], [1], [19]] +0.1_2=[[0], [0], [1], [2]] +0.1_2.1=[[0], [0], [1], [2], [1]] +0.1_20=[[0], [0], [1], [20]] +0.1_2017_10_26=[[0], [0], [1], [2017], [10], [26]] +0.1_21=[[0], [0], [1], [21]] +0.1_22=[[0], [0], [1], [22]] +0.1_23=[[0], [0], [1], [23]] +0.1_24=[[0], [0], [1], [24]] +0.1_25=[[0], [0], [1], [25]] +0.1_26=[[0], [0], [1], [26]] +0.1_28=[[0], [0], [1], [28]] +0.1_29=[[0], [0], [1], [29]] +0.1_3=[[0], [0], [1], [3]] +0.1_3.1=[[0], [0], [1], [3], [1]] +0.1_30=[[0], [0], [1], [30]] +0.1_32=[[0], [0], [1], [32]] +0.1_33=[[0], [0], [1], [33]] +0.1_3_2=[[0], [0], [1], [3], [2]] +0.1_4=[[0], [0], [1], [4]] +0.1_40=[[0], [0], [1], [40]] +0.1_43=[[0], [0], [1], [43]] +0.1_45=[[0], [0], [1], [45]] +0.1_47=[[0], [0], [1], [47]] +0.1_48=[[0], [0], [1], [48]] +0.1_49=[[0], [0], [1], [49]] +0.1_5=[[0], [0], [1], [5]] +0.1_5.1=[[0], [0], [1], [5], [1]] +0.1_50=[[0], [0], [1], [50]] +0.1_6=[[0], [0], [1], [6]] +0.1_7=[[0], [0], [1], [7]] +0.1_8=[[0], [0], [1], [8]] +0.1_8.1=[[0], [0], [1], [8], [1]] +0.1_9=[[0], [0], [1], [9]] +0.1_97=[[0], [0], [1], [97]] +0.1_d4ff4aab=[[0], [0], [1], [0, 'd', 4, 'ff', 4, 'aab']] +0.1a=[[0], [0], [1, 'a']] +0.1a0=[[0], [0], [1, 'a', 0]] +0.1a1=[[0], [0], [1, 'a', 1]] +0.1a1.dev11=[[0], [0], [1, 'a', 1], [0, 'DEV', 11]] +0.1a2=[[0], [0], [1, 'a', 2]] +0.1a5=[[0], [0], [1, 'a', 5]] +0.1a6=[[0], [0], [1, 'a', 6]] +0.1b1=[[0], [0], [1, 'b', 1]] +0.1b10=[[0], [0], [1, 'b', 10]] +0.1b11=[[0], [0], [1, 'b', 11]] +0.1b12=[[0], [0], [1, 'b', 12]] +0.1b2=[[0], [0], [1, 'b', 2]] +0.1b3=[[0], [0], [1, 'b', 3]] +0.1b4=[[0], [0], [1, 'b', 4]] +0.1b5=[[0], [0], [1, 'b', 5]] +0.1b6=[[0], [0], [1, 'b', 6]] +0.1b7=[[0], [0], [1, 'b', 7]] +0.1b8=[[0], [0], [1, 'b', 8]] +0.1b9=[[0], [0], [1, 'b', 9]] +0.1dev44=[[0], [0], [1, 'DEV', 44]] +0.1pre=[[0], [0], [1, 'pre']] +0.1rc0=[[0], [0], [1, 'rc', 0]] +0.1rc1=[[0], [0], [1, 'rc', 1]] +0.1rc1.post2=[[0], [0], [1, 'rc', 1], [0, inf, 2]] +0.1rc2=[[0], [0], [1, 'rc', 2]] +0.1rc3=[[0], [0], [1, 'rc', 3]] +0.1rc4=[[0], [0], [1, 'rc', 4]] +0.2=[[0], [0], [2]] +0.2.0=[[0], [0], [2], [0]] +0.2.0+0.py37fix=[[0], [0], [2], [0]] +0.2.0.0=[[0], [0], [2], [0], [0]] +0.2.0.1=[[0], [0], [2], [0], [1]] +0.2.0.12=[[0], [0], [2], [0], [12]] +0.2.0.13=[[0], [0], [2], [0], [13]] +0.2.0.14=[[0], [0], [2], [0], [14]] +0.2.0.2=[[0], [0], [2], [0], [2]] +0.2.0.3=[[0], [0], [2], [0], [3]] +0.2.0.5=[[0], [0], [2], [0], [5]] +0.2.0.dev0=[[0], [0], [2], [0], [0, 'DEV', 0]] +0.2.0.post0=[[0], [0], [2], [0], [0, inf, 0]] +0.2.0.post1=[[0], [0], [2], [0], [0, inf, 1]] +0.2.0.post2=[[0], [0], [2], [0], [0, inf, 2]] +0.2.00=[[0], [0], [2], [0]] +0.2.01=[[0], [0], [2], [1]] +0.2.02=[[0], [0], [2], [2]] +0.2.0_beta=[[0], [0], [2], [0], [0, 'beta']] +0.2.0a=[[0], [0], [2], [0, 'a']] +0.2.0a0=[[0], [0], [2], [0, 'a', 0]] +0.2.0a1=[[0], [0], [2], [0, 'a', 1]] +0.2.0a13=[[0], [0], [2], [0, 'a', 13]] +0.2.0a14=[[0], [0], [2], [0, 'a', 14]] +0.2.0a15=[[0], [0], [2], [0, 'a', 15]] +0.2.0a2=[[0], [0], [2], [0, 'a', 2]] +0.2.0a8=[[0], [0], [2], [0, 'a', 8]] +0.2.0a9=[[0], [0], [2], [0, 'a', 9]] +0.2.0b0=[[0], [0], [2], [0, 'b', 0]] +0.2.0b1=[[0], [0], [2], [0, 'b', 1]] +0.2.0dev0=[[0], [0], [2], [0, 'DEV', 0]] +0.2.0rc0=[[0], [0], [2], [0, 'rc', 0]] +0.2.0rc2=[[0], [0], [2], [0, 'rc', 2]] +0.2.1=[[0], [0], [2], [1]] +0.2.1.0=[[0], [0], [2], [1], [0]] +0.2.1.1=[[0], [0], [2], [1], [1]] +0.2.1.dev0=[[0], [0], [2], [1], [0, 'DEV', 0]] +0.2.1.dev70=[[0], [0], [2], [1], [0, 'DEV', 70]] +0.2.1.post0=[[0], [0], [2], [1], [0, inf, 0]] +0.2.1.post1=[[0], [0], [2], [1], [0, inf, 1]] +0.2.1.post6=[[0], [0], [2], [1], [0, inf, 6]] +0.2.10=[[0], [0], [2], [10]] +0.2.10.0=[[0], [0], [2], [10], [0]] +0.2.101=[[0], [0], [2], [101]] +0.2.11=[[0], [0], [2], [11]] +0.2.11.1=[[0], [0], [2], [11], [1]] +0.2.11.2=[[0], [0], [2], [11], [2]] +0.2.11.2022=[[0], [0], [2], [11], [2022]] +0.2.12=[[0], [0], [2], [12]] +0.2.12.1=[[0], [0], [2], [12], [1]] +0.2.12.post1=[[0], [0], [2], [12], [0, inf, 1]] +0.2.13=[[0], [0], [2], [13]] +0.2.13.1=[[0], [0], [2], [13], [1]] +0.2.13.2=[[0], [0], [2], [13], [2]] +0.2.13.post2=[[0], [0], [2], [13], [0, inf, 2]] +0.2.13post20171012=[[0], [0], [2], [13, inf, 20171012]] +0.2.14=[[0], [0], [2], [14]] +0.2.14.2.1=[[0], [0], [2], [14], [2], [1]] +0.2.15=[[0], [0], [2], [15]] +0.2.15.0.1=[[0], [0], [2], [15], [0], [1]] +0.2.16=[[0], [0], [2], [16]] +0.2.16.1=[[0], [0], [2], [16], [1]] +0.2.16.1.1=[[0], [0], [2], [16], [1], [1]] +0.2.16.2=[[0], [0], [2], [16], [2]] +0.2.16.3=[[0], [0], [2], [16], [3]] +0.2.16.4=[[0], [0], [2], [16], [4]] +0.2.16.5=[[0], [0], [2], [16], [5]] +0.2.16.6=[[0], [0], [2], [16], [6]] +0.2.17=[[0], [0], [2], [17]] +0.2.17.0.1=[[0], [0], [2], [17], [0], [1]] +0.2.17.1=[[0], [0], [2], [17], [1]] +0.2.17.2=[[0], [0], [2], [17], [2]] +0.2.175=[[0], [0], [2], [175]] +0.2.18=[[0], [0], [2], [18]] +0.2.18.0.1=[[0], [0], [2], [18], [0], [1]] +0.2.18.1.1=[[0], [0], [2], [18], [1], [1]] +0.2.18.2.1=[[0], [0], [2], [18], [2], [1]] +0.2.19=[[0], [0], [2], [19]] +0.2.19.0.1=[[0], [0], [2], [19], [0], [1]] +0.2.19.1=[[0], [0], [2], [19], [1]] +0.2.1a=[[0], [0], [2], [1, 'a']] +0.2.1a0=[[0], [0], [2], [1, 'a', 0]] +0.2.2=[[0], [0], [2], [2]] +0.2.2.0=[[0], [0], [2], [2], [0]] +0.2.2.1=[[0], [0], [2], [2], [1]] +0.2.2.post0=[[0], [0], [2], [2], [0, inf, 0]] +0.2.2.post1=[[0], [0], [2], [2], [0, inf, 1]] +0.2.2.post2=[[0], [0], [2], [2], [0, inf, 2]] +0.2.2.post3=[[0], [0], [2], [2], [0, inf, 3]] +0.2.20=[[0], [0], [2], [20]] +0.2.20.1=[[0], [0], [2], [20], [1]] +0.2.201=[[0], [0], [2], [201]] +0.2.202=[[0], [0], [2], [202]] +0.2.203=[[0], [0], [2], [203]] +0.2.204=[[0], [0], [2], [204]] +0.2.205=[[0], [0], [2], [205]] +0.2.21=[[0], [0], [2], [21]] +0.2.211=[[0], [0], [2], [211]] +0.2.22=[[0], [0], [2], [22]] +0.2.23=[[0], [0], [2], [23]] +0.2.24=[[0], [0], [2], [24]] +0.2.25=[[0], [0], [2], [25]] +0.2.26=[[0], [0], [2], [26]] +0.2.27=[[0], [0], [2], [27]] +0.2.28=[[0], [0], [2], [28]] +0.2.29=[[0], [0], [2], [29]] +0.2.2a1=[[0], [0], [2], [2, 'a', 1]] +0.2.2a2=[[0], [0], [2], [2, 'a', 2]] +0.2.2a3=[[0], [0], [2], [2, 'a', 3]] +0.2.3=[[0], [0], [2], [3]] +0.2.3.1=[[0], [0], [2], [3], [1]] +0.2.3.2=[[0], [0], [2], [3], [2]] +0.2.3.3=[[0], [0], [2], [3], [3]] +0.2.3.4=[[0], [0], [2], [3], [4]] +0.2.3.5=[[0], [0], [2], [3], [5]] +0.2.3.6=[[0], [0], [2], [3], [6]] +0.2.3.7=[[0], [0], [2], [3], [7]] +0.2.3.7.4=[[0], [0], [2], [3], [7], [4]] +0.2.3.7.5=[[0], [0], [2], [3], [7], [5]] +0.2.3.7.6=[[0], [0], [2], [3], [7], [6]] +0.2.3.7.7=[[0], [0], [2], [3], [7], [7]] +0.2.3.post1=[[0], [0], [2], [3], [0, inf, 1]] +0.2.30=[[0], [0], [2], [30]] +0.2.31=[[0], [0], [2], [31]] +0.2.32=[[0], [0], [2], [32]] +0.2.33=[[0], [0], [2], [33]] +0.2.333=[[0], [0], [2], [333]] +0.2.34=[[0], [0], [2], [34]] +0.2.35=[[0], [0], [2], [35]] +0.2.36=[[0], [0], [2], [36]] +0.2.37=[[0], [0], [2], [37]] +0.2.38=[[0], [0], [2], [38]] +0.2.39=[[0], [0], [2], [39]] +0.2.3b0=[[0], [0], [2], [3, 'b', 0]] +0.2.3dev=[[0], [0], [2], [3, 'DEV']] +0.2.3rc=[[0], [0], [2], [3, 'rc']] +0.2.4=[[0], [0], [2], [4]] +0.2.4.0=[[0], [0], [2], [4], [0]] +0.2.4.1=[[0], [0], [2], [4], [1]] +0.2.4.2=[[0], [0], [2], [4], [2]] +0.2.4.post1=[[0], [0], [2], [4], [0, inf, 1]] +0.2.4.post3=[[0], [0], [2], [4], [0, inf, 3]] +0.2.4.post4=[[0], [0], [2], [4], [0, inf, 4]] +0.2.40=[[0], [0], [2], [40]] +0.2.41=[[0], [0], [2], [41]] +0.2.42=[[0], [0], [2], [42]] +0.2.43=[[0], [0], [2], [43]] +0.2.44=[[0], [0], [2], [44]] +0.2.45=[[0], [0], [2], [45]] +0.2.46=[[0], [0], [2], [46]] +0.2.47=[[0], [0], [2], [47]] +0.2.48=[[0], [0], [2], [48]] +0.2.49=[[0], [0], [2], [49]] +0.2.4b0=[[0], [0], [2], [4, 'b', 0]] +0.2.4dev=[[0], [0], [2], [4, 'DEV']] +0.2.5=[[0], [0], [2], [5]] +0.2.5.0=[[0], [0], [2], [5], [0]] +0.2.5.1=[[0], [0], [2], [5], [1]] +0.2.5.2=[[0], [0], [2], [5], [2]] +0.2.5.3=[[0], [0], [2], [5], [3]] +0.2.5.4=[[0], [0], [2], [5], [4]] +0.2.5.5=[[0], [0], [2], [5], [5]] +0.2.5.6=[[0], [0], [2], [5], [6]] +0.2.5.7=[[0], [0], [2], [5], [7]] +0.2.5.post1=[[0], [0], [2], [5], [0, inf, 1]] +0.2.50=[[0], [0], [2], [50]] +0.2.51=[[0], [0], [2], [51]] +0.2.52=[[0], [0], [2], [52]] +0.2.53=[[0], [0], [2], [53]] +0.2.54=[[0], [0], [2], [54]] +0.2.55=[[0], [0], [2], [55]] +0.2.56=[[0], [0], [2], [56]] +0.2.57=[[0], [0], [2], [57]] +0.2.58=[[0], [0], [2], [58]] +0.2.59=[[0], [0], [2], [59]] +0.2.6=[[0], [0], [2], [6]] +0.2.6.0=[[0], [0], [2], [6], [0]] +0.2.6.3=[[0], [0], [2], [6], [3]] +0.2.6.5=[[0], [0], [2], [6], [5]] +0.2.6.post1=[[0], [0], [2], [6], [0, inf, 1]] +0.2.60=[[0], [0], [2], [60]] +0.2.61=[[0], [0], [2], [61]] +0.2.62=[[0], [0], [2], [62]] +0.2.63=[[0], [0], [2], [63]] +0.2.66=[[0], [0], [2], [66]] +0.2.7=[[0], [0], [2], [7]] +0.2.7.0=[[0], [0], [2], [7], [0]] +0.2.7.1=[[0], [0], [2], [7], [1]] +0.2.7.2=[[0], [0], [2], [7], [2]] +0.2.7.post0=[[0], [0], [2], [7], [0, inf, 0]] +0.2.77=[[0], [0], [2], [77]] +0.2.8=[[0], [0], [2], [8]] +0.2.8.0=[[0], [0], [2], [8], [0]] +0.2.8.1=[[0], [0], [2], [8], [1]] +0.2.8.2=[[0], [0], [2], [8], [2]] +0.2.8.7=[[0], [0], [2], [8], [7]] +0.2.8.post1=[[0], [0], [2], [8], [0, inf, 1]] +0.2.9=[[0], [0], [2], [9]] +0.2.9.0=[[0], [0], [2], [9], [0]] +0.2.9.1=[[0], [0], [2], [9], [1]] +0.2.9.2=[[0], [0], [2], [9], [2]] +0.2.9.3=[[0], [0], [2], [9], [3]] +0.2.9.4=[[0], [0], [2], [9], [4]] +0.2.9.5=[[0], [0], [2], [9], [5]] +0.2.9.9=[[0], [0], [2], [9], [9]] +0.2.9.post1=[[0], [0], [2], [9], [0, inf, 1]] +0.2.post=[[0], [0], [2], [0, inf]] +0.2.post0=[[0], [0], [2], [0, inf, 0]] +0.20=[[0], [0], [20]] +0.20.0=[[0], [0], [20], [0]] +0.20.0.1=[[0], [0], [20], [0], [1]] +0.20.0.post0=[[0], [0], [20], [0], [0, inf, 0]] +0.20.1=[[0], [0], [20], [1]] +0.20.10=[[0], [0], [20], [10]] +0.20.11=[[0], [0], [20], [11]] +0.20.11.14=[[0], [0], [20], [11], [14]] +0.20.11.23=[[0], [0], [20], [11], [23]] +0.20.11.7=[[0], [0], [20], [11], [7]] +0.20.12=[[0], [0], [20], [12]] +0.20.12.26=[[0], [0], [20], [12], [26]] +0.20.12.post2=[[0], [0], [20], [12], [0, inf, 2]] +0.20.13=[[0], [0], [20], [13]] +0.20.14=[[0], [0], [20], [14]] +0.20.15=[[0], [0], [20], [15]] +0.20.15.post1=[[0], [0], [20], [15], [0, inf, 1]] +0.20.16=[[0], [0], [20], [16]] +0.20.17=[[0], [0], [20], [17]] +0.20.18=[[0], [0], [20], [18]] +0.20.19=[[0], [0], [20], [19]] +0.20.2=[[0], [0], [20], [2]] +0.20.20=[[0], [0], [20], [20]] +0.20.21=[[0], [0], [20], [21]] +0.20.22=[[0], [0], [20], [22]] +0.20.23=[[0], [0], [20], [23]] +0.20.24=[[0], [0], [20], [24]] +0.20.25=[[0], [0], [20], [25]] +0.20.26=[[0], [0], [20], [26]] +0.20.27=[[0], [0], [20], [27]] +0.20.28=[[0], [0], [20], [28]] +0.20.28.post2=[[0], [0], [20], [28], [0, inf, 2]] +0.20.29=[[0], [0], [20], [29]] +0.20.3=[[0], [0], [20], [3]] +0.20.30=[[0], [0], [20], [30]] +0.20.31=[[0], [0], [20], [31]] +0.20.32=[[0], [0], [20], [32]] +0.20.33=[[0], [0], [20], [33]] +0.20.34=[[0], [0], [20], [34]] +0.20.35=[[0], [0], [20], [35]] +0.20.36=[[0], [0], [20], [36]] +0.20.37=[[0], [0], [20], [37]] +0.20.38=[[0], [0], [20], [38]] +0.20.4=[[0], [0], [20], [4]] +0.20.40=[[0], [0], [20], [40]] +0.20.41=[[0], [0], [20], [41]] +0.20.42=[[0], [0], [20], [42]] +0.20.43=[[0], [0], [20], [43]] +0.20.44=[[0], [0], [20], [44]] +0.20.45=[[0], [0], [20], [45]] +0.20.46=[[0], [0], [20], [46]] +0.20.5=[[0], [0], [20], [5]] +0.20.50=[[0], [0], [20], [50]] +0.20.6=[[0], [0], [20], [6]] +0.20.6.1=[[0], [0], [20], [6], [1]] +0.20.7=[[0], [0], [20], [7]] +0.20.8=[[0], [0], [20], [8]] +0.20.9=[[0], [0], [20], [9]] +0.200.0=[[0], [0], [200], [0]] +0.201=[[0], [0], [201]] +0.201.0=[[0], [0], [201], [0]] +0.202.0=[[0], [0], [202], [0]] +0.2020.5.27=[[0], [0], [2020], [5], [27]] +0.2020.0701=[[0], [0], [2020], [701]] +0.2020.0805=[[0], [0], [2020], [805]] +0.2021.0814=[[0], [0], [2021], [814]] +0.2021.0909=[[0], [0], [2021], [909]] +0.2021.10=[[0], [0], [2021], [10]] +0.2021.11=[[0], [0], [2021], [11]] +0.2021.12=[[0], [0], [2021], [12]] +0.2021.13=[[0], [0], [2021], [13]] +0.2021.14=[[0], [0], [2021], [14]] +0.2021.15=[[0], [0], [2021], [15]] +0.2021.16=[[0], [0], [2021], [16]] +0.2021.17=[[0], [0], [2021], [17]] +0.2021.18=[[0], [0], [2021], [18]] +0.2021.19=[[0], [0], [2021], [19]] +0.2021.20=[[0], [0], [2021], [20]] +0.2021.21=[[0], [0], [2021], [21]] +0.2021.22=[[0], [0], [2021], [22]] +0.2021.23=[[0], [0], [2021], [23]] +0.2021.24=[[0], [0], [2021], [24]] +0.2021.25=[[0], [0], [2021], [25]] +0.2021.26=[[0], [0], [2021], [26]] +0.2021.27=[[0], [0], [2021], [27]] +0.2021.28=[[0], [0], [2021], [28]] +0.2021.29=[[0], [0], [2021], [29]] +0.2021.30=[[0], [0], [2021], [30]] +0.2021.31=[[0], [0], [2021], [31]] +0.2021.32=[[0], [0], [2021], [32]] +0.2021.33=[[0], [0], [2021], [33]] +0.2021.34=[[0], [0], [2021], [34]] +0.2021.35=[[0], [0], [2021], [35]] +0.2021.36=[[0], [0], [2021], [36]] +0.2021.37=[[0], [0], [2021], [37]] +0.2021.38=[[0], [0], [2021], [38]] +0.2021.39=[[0], [0], [2021], [39]] +0.2021.40=[[0], [0], [2021], [40]] +0.2021.41=[[0], [0], [2021], [41]] +0.2021.42=[[0], [0], [2021], [42]] +0.2021.43=[[0], [0], [2021], [43]] +0.2021.44=[[0], [0], [2021], [44]] +0.2021.45=[[0], [0], [2021], [45]] +0.2021.46=[[0], [0], [2021], [46]] +0.2021.47=[[0], [0], [2021], [47]] +0.2021.48=[[0], [0], [2021], [48]] +0.2021.49=[[0], [0], [2021], [49]] +0.2021.50=[[0], [0], [2021], [50]] +0.2021.51=[[0], [0], [2021], [51]] +0.2021.52=[[0], [0], [2021], [52]] +0.2021.6=[[0], [0], [2021], [6]] +0.2021.7=[[0], [0], [2021], [7]] +0.2021.8=[[0], [0], [2021], [8]] +0.2021.9=[[0], [0], [2021], [9]] +0.2022.0421=[[0], [0], [2022], [421]] +0.2022.1=[[0], [0], [2022], [1]] +0.2022.10=[[0], [0], [2022], [10]] +0.2022.11=[[0], [0], [2022], [11]] +0.2022.12=[[0], [0], [2022], [12]] +0.2022.13=[[0], [0], [2022], [13]] +0.2022.14=[[0], [0], [2022], [14]] +0.2022.15=[[0], [0], [2022], [15]] +0.2022.16=[[0], [0], [2022], [16]] +0.2022.17=[[0], [0], [2022], [17]] +0.2022.19=[[0], [0], [2022], [19]] +0.2022.2=[[0], [0], [2022], [2]] +0.2022.20=[[0], [0], [2022], [20]] +0.2022.21=[[0], [0], [2022], [21]] +0.2022.22=[[0], [0], [2022], [22]] +0.2022.23=[[0], [0], [2022], [23]] +0.2022.24=[[0], [0], [2022], [24]] +0.2022.25=[[0], [0], [2022], [25]] +0.2022.26=[[0], [0], [2022], [26]] +0.2022.27=[[0], [0], [2022], [27]] +0.2022.28=[[0], [0], [2022], [28]] +0.2022.29=[[0], [0], [2022], [29]] +0.2022.3=[[0], [0], [2022], [3]] +0.2022.30=[[0], [0], [2022], [30]] +0.2022.31=[[0], [0], [2022], [31]] +0.2022.32=[[0], [0], [2022], [32]] +0.2022.33=[[0], [0], [2022], [33]] +0.2022.34=[[0], [0], [2022], [34]] +0.2022.35=[[0], [0], [2022], [35]] +0.2022.36=[[0], [0], [2022], [36]] +0.2022.37=[[0], [0], [2022], [37]] +0.2022.38=[[0], [0], [2022], [38]] +0.2022.4=[[0], [0], [2022], [4]] +0.2022.40=[[0], [0], [2022], [40]] +0.2022.41=[[0], [0], [2022], [41]] +0.2022.42=[[0], [0], [2022], [42]] +0.2022.43=[[0], [0], [2022], [43]] +0.2022.44=[[0], [0], [2022], [44]] +0.2022.45=[[0], [0], [2022], [45]] +0.2022.46=[[0], [0], [2022], [46]] +0.2022.47=[[0], [0], [2022], [47]] +0.2022.48=[[0], [0], [2022], [48]] +0.2022.49=[[0], [0], [2022], [49]] +0.2022.5=[[0], [0], [2022], [5]] +0.2022.50=[[0], [0], [2022], [50]] +0.2022.51=[[0], [0], [2022], [51]] +0.2022.52=[[0], [0], [2022], [52]] +0.2022.53=[[0], [0], [2022], [53]] +0.2022.6=[[0], [0], [2022], [6]] +0.2022.7=[[0], [0], [2022], [7]] +0.2022.8=[[0], [0], [2022], [8]] +0.2022.8.9=[[0], [0], [2022], [8], [9]] +0.2022.9=[[0], [0], [2022], [9]] +0.2022.9.0=[[0], [0], [2022], [9], [0]] +0.20220715.0=[[0], [0], [20220715], [0]] +0.2023.1=[[0], [0], [2023], [1]] +0.2023.10=[[0], [0], [2023], [10]] +0.2023.11=[[0], [0], [2023], [11]] +0.2023.12=[[0], [0], [2023], [12]] +0.2023.13=[[0], [0], [2023], [13]] +0.2023.14=[[0], [0], [2023], [14]] +0.2023.15=[[0], [0], [2023], [15]] +0.2023.16=[[0], [0], [2023], [16]] +0.2023.17=[[0], [0], [2023], [17]] +0.2023.18=[[0], [0], [2023], [18]] +0.2023.19=[[0], [0], [2023], [19]] +0.2023.2=[[0], [0], [2023], [2]] +0.2023.3=[[0], [0], [2023], [3]] +0.2023.4=[[0], [0], [2023], [4]] +0.2023.5=[[0], [0], [2023], [5]] +0.2023.6=[[0], [0], [2023], [6]] +0.2023.7=[[0], [0], [2023], [7]] +0.2023.8=[[0], [0], [2023], [8]] +0.2023.9=[[0], [0], [2023], [9]] +0.203.0=[[0], [0], [203], [0]] +0.204001=[[0], [0], [204001]] +0.204003=[[0], [0], [204003]] +0.206003=[[0], [0], [206003]] +0.207001=[[0], [0], [207001]] +0.207002=[[0], [0], [207002]] +0.208=[[0], [0], [208]] +0.20_137=[[0], [0], [20], [137]] +0.20_17=[[0], [0], [20], [17]] +0.20_34=[[0], [0], [20], [34]] +0.20_35=[[0], [0], [20], [35]] +0.20_38=[[0], [0], [20], [38]] +0.20_40=[[0], [0], [20], [40]] +0.20_41=[[0], [0], [20], [41]] +0.20_44=[[0], [0], [20], [44]] +0.20_45=[[0], [0], [20], [45]] +0.21=[[0], [0], [21]] +0.21.0=[[0], [0], [21], [0]] +0.21.0_1=[[0], [0], [21], [0], [1]] +0.21.1=[[0], [0], [21], [1]] +0.21.10=[[0], [0], [21], [10]] +0.21.10.24=[[0], [0], [21], [10], [24]] +0.21.11=[[0], [0], [21], [11]] +0.21.12=[[0], [0], [21], [12]] +0.21.13=[[0], [0], [21], [13]] +0.21.14=[[0], [0], [21], [14]] +0.21.15=[[0], [0], [21], [15]] +0.21.16=[[0], [0], [21], [16]] +0.21.17=[[0], [0], [21], [17]] +0.21.18=[[0], [0], [21], [18]] +0.21.19=[[0], [0], [21], [19]] +0.21.2=[[0], [0], [21], [2]] +0.21.20=[[0], [0], [21], [20]] +0.21.21=[[0], [0], [21], [21]] +0.21.22=[[0], [0], [21], [22]] +0.21.23=[[0], [0], [21], [23]] +0.21.24=[[0], [0], [21], [24]] +0.21.25=[[0], [0], [21], [25]] +0.21.2b=[[0], [0], [21], [2, 'b']] +0.21.3=[[0], [0], [21], [3]] +0.21.4=[[0], [0], [21], [4]] +0.21.4.1=[[0], [0], [21], [4], [1]] +0.21.4.18=[[0], [0], [21], [4], [18]] +0.21.5=[[0], [0], [21], [5]] +0.21.5.11=[[0], [0], [21], [5], [11]] +0.21.5.17=[[0], [0], [21], [5], [17]] +0.21.5.20=[[0], [0], [21], [5], [20]] +0.21.5.22=[[0], [0], [21], [5], [22]] +0.21.5.25=[[0], [0], [21], [5], [25]] +0.21.6=[[0], [0], [21], [6]] +0.21.6.10.1=[[0], [0], [21], [6], [10], [1]] +0.21.6.30=[[0], [0], [21], [6], [30]] +0.21.7=[[0], [0], [21], [7]] +0.21.7.24=[[0], [0], [21], [7], [24]] +0.21.8=[[0], [0], [21], [8]] +0.21.8.0=[[0], [0], [21], [8], [0]] +0.21.8a=[[0], [0], [21], [8, 'a']] +0.21.8b=[[0], [0], [21], [8, 'b']] +0.21.9=[[0], [0], [21], [9]] +0.21.9.15=[[0], [0], [21], [9], [15]] +0.21_247=[[0], [0], [21], [247]] +0.21_247.1=[[0], [0], [21], [247], [1]] +0.21_8=[[0], [0], [21], [8]] +0.21b0=[[0], [0], [21, 'b', 0]] +0.22=[[0], [0], [22]] +0.22.0=[[0], [0], [22], [0]] +0.22.0a1=[[0], [0], [22], [0, 'a', 1]] +0.22.1=[[0], [0], [22], [1]] +0.22.10=[[0], [0], [22], [10]] +0.22.10.20=[[0], [0], [22], [10], [20]] +0.22.10.4.4=[[0], [0], [22], [10], [4], [4]] +0.22.11=[[0], [0], [22], [11]] +0.22.11.4.0=[[0], [0], [22], [11], [4], [0]] +0.22.12=[[0], [0], [22], [12]] +0.22.13=[[0], [0], [22], [13]] +0.22.14=[[0], [0], [22], [14]] +0.22.15=[[0], [0], [22], [15]] +0.22.2=[[0], [0], [22], [2]] +0.22.2.post1=[[0], [0], [22], [2], [0, inf, 1]] +0.22.3=[[0], [0], [22], [3]] +0.22.4=[[0], [0], [22], [4]] +0.22.4.16=[[0], [0], [22], [4], [16]] +0.22.5=[[0], [0], [22], [5]] +0.22.6=[[0], [0], [22], [6]] +0.22.7=[[0], [0], [22], [7]] +0.22.8=[[0], [0], [22], [8]] +0.22.8.21.16=[[0], [0], [22], [8], [21], [16]] +0.22.8.27=[[0], [0], [22], [8], [27]] +0.22.9=[[0], [0], [22], [9]] +0.223=[[0], [0], [223]] +0.22_1=[[0], [0], [22], [1]] +0.22_11=[[0], [0], [22], [11]] +0.22_8=[[0], [0], [22], [8]] +0.22b0=[[0], [0], [22, 'b', 0]] +0.23=[[0], [0], [23]] +0.23.0=[[0], [0], [23], [0]] +0.23.1=[[0], [0], [23], [1]] +0.23.10=[[0], [0], [23], [10]] +0.23.11=[[0], [0], [23], [11]] +0.23.12=[[0], [0], [23], [12]] +0.23.13=[[0], [0], [23], [13]] +0.23.14=[[0], [0], [23], [14]] +0.23.15=[[0], [0], [23], [15]] +0.23.16=[[0], [0], [23], [16]] +0.23.17=[[0], [0], [23], [17]] +0.23.18=[[0], [0], [23], [18]] +0.23.18.1=[[0], [0], [23], [18], [1]] +0.23.19=[[0], [0], [23], [19]] +0.23.195983=[[0], [0], [23], [195983]] +0.23.2=[[0], [0], [23], [2]] +0.23.2.13.2=[[0], [0], [23], [2], [13], [2]] +0.23.20=[[0], [0], [23], [20]] +0.23.21=[[0], [0], [23], [21]] +0.23.22=[[0], [0], [23], [22]] +0.23.23=[[0], [0], [23], [23]] +0.23.24=[[0], [0], [23], [24]] +0.23.25=[[0], [0], [23], [25]] +0.23.26=[[0], [0], [23], [26]] +0.23.27=[[0], [0], [23], [27]] +0.23.28=[[0], [0], [23], [28]] +0.23.29=[[0], [0], [23], [29]] +0.23.3=[[0], [0], [23], [3]] +0.23.30=[[0], [0], [23], [30]] +0.23.31=[[0], [0], [23], [31]] +0.23.32=[[0], [0], [23], [32]] +0.23.33=[[0], [0], [23], [33]] +0.23.34=[[0], [0], [23], [34]] +0.23.35=[[0], [0], [23], [35]] +0.23.37=[[0], [0], [23], [37]] +0.23.38=[[0], [0], [23], [38]] +0.23.39=[[0], [0], [23], [39]] +0.23.4=[[0], [0], [23], [4]] +0.23.40=[[0], [0], [23], [40]] +0.23.5=[[0], [0], [23], [5]] +0.23.6=[[0], [0], [23], [6]] +0.23.7=[[0], [0], [23], [7]] +0.23.8=[[0], [0], [23], [8]] +0.23.9=[[0], [0], [23], [9]] +0.2304=[[0], [0], [2304]] +0.236=[[0], [0], [236]] +0.238=[[0], [0], [238]] +0.239=[[0], [0], [239]] +0.23_0=[[0], [0], [23], [0]] +0.23_1=[[0], [0], [23], [1]] +0.23_4=[[0], [0], [23], [4]] +0.23_42=[[0], [0], [23], [42]] +0.23_5=[[0], [0], [23], [5]] +0.23_6=[[0], [0], [23], [6]] +0.23b0=[[0], [0], [23, 'b', 0]] +0.23b2=[[0], [0], [23, 'b', 2]] +0.24=[[0], [0], [24]] +0.24.0=[[0], [0], [24], [0]] +0.24.0.post1=[[0], [0], [24], [0], [0, inf, 1]] +0.24.0.post2=[[0], [0], [24], [0], [0, inf, 2]] +0.24.1=[[0], [0], [24], [1]] +0.24.10=[[0], [0], [24], [10]] +0.24.11=[[0], [0], [24], [11]] +0.24.12=[[0], [0], [24], [12]] +0.24.13=[[0], [0], [24], [13]] +0.24.14=[[0], [0], [24], [14]] +0.24.15=[[0], [0], [24], [15]] +0.24.16=[[0], [0], [24], [16]] +0.24.17=[[0], [0], [24], [17]] +0.24.19=[[0], [0], [24], [19]] +0.24.2=[[0], [0], [24], [2]] +0.24.20=[[0], [0], [24], [20]] +0.24.201332=[[0], [0], [24], [201332]] +0.24.208024=[[0], [0], [24], [208024]] +0.24.21=[[0], [0], [24], [21]] +0.24.210930=[[0], [0], [24], [210930]] +0.24.3=[[0], [0], [24], [3]] +0.24.4=[[0], [0], [24], [4]] +0.24.5=[[0], [0], [24], [5]] +0.24.6=[[0], [0], [24], [6]] +0.24.7=[[0], [0], [24], [7]] +0.24.8=[[0], [0], [24], [8]] +0.24.9=[[0], [0], [24], [9]] +0.240=[[0], [0], [240]] +0.241=[[0], [0], [241]] +0.24b0=[[0], [0], [24, 'b', 0]] +0.25=[[0], [0], [25]] +0.25.0=[[0], [0], [25], [0]] +0.25.1=[[0], [0], [25], [1]] +0.25.1.1=[[0], [0], [25], [1], [1]] +0.25.10=[[0], [0], [25], [10]] +0.25.11=[[0], [0], [25], [11]] +0.25.2=[[0], [0], [25], [2]] +0.25.218240=[[0], [0], [25], [218240]] +0.25.222597=[[0], [0], [25], [222597]] +0.25.228311=[[0], [0], [25], [228311]] +0.25.25=[[0], [0], [25], [25]] +0.25.3=[[0], [0], [25], [3]] +0.25.36=[[0], [0], [25], [36]] +0.25.37=[[0], [0], [25], [37]] +0.25.39=[[0], [0], [25], [39]] +0.25.4=[[0], [0], [25], [4]] +0.25.40=[[0], [0], [25], [40]] +0.25.5=[[0], [0], [25], [5]] +0.25.6=[[0], [0], [25], [6]] +0.25.7=[[0], [0], [25], [7]] +0.25.8=[[0], [0], [25], [8]] +0.25.9=[[0], [0], [25], [9]] +0.25_1=[[0], [0], [25], [1]] +0.25b0=[[0], [0], [25, 'b', 0]] +0.25b1=[[0], [0], [25, 'b', 1]] +0.25b2=[[0], [0], [25, 'b', 2]] +0.26=[[0], [0], [26]] +0.26.0=[[0], [0], [26], [0]] +0.26.1=[[0], [0], [26], [1]] +0.26.10=[[0], [0], [26], [10]] +0.26.11=[[0], [0], [26], [11]] +0.26.12=[[0], [0], [26], [12]] +0.26.2=[[0], [0], [26], [2]] +0.26.232864=[[0], [0], [26], [232864]] +0.26.233415=[[0], [0], [26], [233415]] +0.26.3=[[0], [0], [26], [3]] +0.26.4=[[0], [0], [26], [4]] +0.26.5=[[0], [0], [26], [5]] +0.26.6=[[0], [0], [26], [6]] +0.26.7=[[0], [0], [26], [7]] +0.2614=[[0], [0], [2614]] +0.2620=[[0], [0], [2620]] +0.2621=[[0], [0], [2621]] +0.2622=[[0], [0], [2622]] +0.2623=[[0], [0], [2623]] +0.2624=[[0], [0], [2624]] +0.26_0=[[0], [0], [26], [0]] +0.26b1=[[0], [0], [26, 'b', 1]] +0.27=[[0], [0], [27]] +0.27.0=[[0], [0], [27], [0]] +0.27.0.post1=[[0], [0], [27], [0], [0, inf, 1]] +0.27.1=[[0], [0], [27], [1]] +0.27.10=[[0], [0], [27], [10]] +0.27.11=[[0], [0], [27], [11]] +0.27.12=[[0], [0], [27], [12]] +0.27.13=[[0], [0], [27], [13]] +0.27.14=[[0], [0], [27], [14]] +0.27.15=[[0], [0], [27], [15]] +0.27.16=[[0], [0], [27], [16]] +0.27.2=[[0], [0], [27], [2]] +0.27.236950=[[0], [0], [27], [236950]] +0.27.238334=[[0], [0], [27], [238334]] +0.27.244707=[[0], [0], [27], [244707]] +0.27.253010=[[0], [0], [27], [253010]] +0.27.258160=[[0], [0], [27], [258160]] +0.27.3=[[0], [0], [27], [3]] +0.27.4=[[0], [0], [27], [4]] +0.27.5=[[0], [0], [27], [5]] +0.27.6=[[0], [0], [27], [6]] +0.27.7=[[0], [0], [27], [7]] +0.27.8=[[0], [0], [27], [8]] +0.27.9=[[0], [0], [27], [9]] +0.27_2=[[0], [0], [27], [2]] +0.27b0=[[0], [0], [27, 'b', 0]] +0.28=[[0], [0], [28]] +0.28.0=[[0], [0], [28], [0]] +0.28.1=[[0], [0], [28], [1]] +0.28.10=[[0], [0], [28], [10]] +0.28.11=[[0], [0], [28], [11]] +0.28.12=[[0], [0], [28], [12]] +0.28.13=[[0], [0], [28], [13]] +0.28.14=[[0], [0], [28], [14]] +0.28.15=[[0], [0], [28], [15]] +0.28.16=[[0], [0], [28], [16]] +0.28.18=[[0], [0], [28], [18]] +0.28.19=[[0], [0], [28], [19]] +0.28.2=[[0], [0], [28], [2]] +0.28.20=[[0], [0], [28], [20]] +0.28.21=[[0], [0], [28], [21]] +0.28.22=[[0], [0], [28], [22]] +0.28.23=[[0], [0], [28], [23]] +0.28.24=[[0], [0], [28], [24]] +0.28.3=[[0], [0], [28], [3]] +0.28.4=[[0], [0], [28], [4]] +0.28.5=[[0], [0], [28], [5]] +0.28.6=[[0], [0], [28], [6]] +0.28.7=[[0], [0], [28], [7]] +0.28.8=[[0], [0], [28], [8]] +0.28.9=[[0], [0], [28], [9]] +0.2800=[[0], [0], [2800]] +0.280230=[[0], [0], [280230]] +0.282.0=[[0], [0], [282], [0]] +0.283.0=[[0], [0], [283], [0]] +0.284.0=[[0], [0], [284], [0]] +0.285.0=[[0], [0], [285], [0]] +0.285.1=[[0], [0], [285], [1]] +0.286=[[0], [0], [286]] +0.286.1=[[0], [0], [286], [1]] +0.287=[[0], [0], [287]] +0.287.0=[[0], [0], [287], [0]] +0.288=[[0], [0], [288]] +0.288.0=[[0], [0], [288], [0]] +0.289=[[0], [0], [289]] +0.289.1=[[0], [0], [289], [1]] +0.28_0=[[0], [0], [28], [0]] +0.28_1=[[0], [0], [28], [1]] +0.28b0=[[0], [0], [28, 'b', 0]] +0.28b1=[[0], [0], [28, 'b', 1]] +0.29=[[0], [0], [29]] +0.29.0=[[0], [0], [29], [0]] +0.29.0.gfm.2=[[0], [0], [29], [0], [0, 'gfm'], [2]] +0.29.0.gfm.3=[[0], [0], [29], [0], [0, 'gfm'], [3]] +0.29.0.gfm.4=[[0], [0], [29], [0], [0, 'gfm'], [4]] +0.29.0.gfm.6=[[0], [0], [29], [0], [0, 'gfm'], [6]] +0.29.0.gfm.7=[[0], [0], [29], [0], [0, 'gfm'], [7]] +0.29.0.gfm.8=[[0], [0], [29], [0], [0, 'gfm'], [8]] +0.29.1=[[0], [0], [29], [1]] +0.29.10=[[0], [0], [29], [10]] +0.29.11=[[0], [0], [29], [11]] +0.29.12=[[0], [0], [29], [12]] +0.29.13=[[0], [0], [29], [13]] +0.29.14=[[0], [0], [29], [14]] +0.29.15=[[0], [0], [29], [15]] +0.29.16=[[0], [0], [29], [16]] +0.29.17=[[0], [0], [29], [17]] +0.29.18=[[0], [0], [29], [18]] +0.29.19=[[0], [0], [29], [19]] +0.29.2=[[0], [0], [29], [2]] +0.29.20=[[0], [0], [29], [20]] +0.29.21=[[0], [0], [29], [21]] +0.29.22=[[0], [0], [29], [22]] +0.29.23=[[0], [0], [29], [23]] +0.29.24=[[0], [0], [29], [24]] +0.29.25=[[0], [0], [29], [25]] +0.29.26=[[0], [0], [29], [26]] +0.29.27=[[0], [0], [29], [27]] +0.29.28=[[0], [0], [29], [28]] +0.29.29=[[0], [0], [29], [29]] +0.29.3=[[0], [0], [29], [3]] +0.29.30=[[0], [0], [29], [30]] +0.29.31=[[0], [0], [29], [31]] +0.29.32=[[0], [0], [29], [32]] +0.29.33=[[0], [0], [29], [33]] +0.29.34=[[0], [0], [29], [34]] +0.29.35=[[0], [0], [29], [35]] +0.29.4=[[0], [0], [29], [4]] +0.29.5=[[0], [0], [29], [5]] +0.29.6=[[0], [0], [29], [6]] +0.29.7=[[0], [0], [29], [7]] +0.29.8=[[0], [0], [29], [8]] +0.29.9=[[0], [0], [29], [9]] +0.290=[[0], [0], [290]] +0.290.1=[[0], [0], [290], [1]] +0.291.1=[[0], [0], [291], [1]] +0.292=[[0], [0], [292]] +0.292.0=[[0], [0], [292], [0]] +0.293=[[0], [0], [293]] +0.293.0=[[0], [0], [293], [0]] +0.294=[[0], [0], [294]] +0.294.0=[[0], [0], [294], [0]] +0.295.1=[[0], [0], [295], [1]] +0.296.0=[[0], [0], [296], [0]] +0.297=[[0], [0], [297]] +0.297.1=[[0], [0], [297], [1]] +0.298.1=[[0], [0], [298], [1]] +0.299.0=[[0], [0], [299], [0]] +0.29b0=[[0], [0], [29, 'b', 0]] +0.29b1=[[0], [0], [29, 'b', 1]] +0.2_0=[[0], [0], [2], [0]] +0.2_1=[[0], [0], [2], [1]] +0.2_10=[[0], [0], [2], [10]] +0.2_11=[[0], [0], [2], [11]] +0.2_12=[[0], [0], [2], [12]] +0.2_13=[[0], [0], [2], [13]] +0.2_14=[[0], [0], [2], [14]] +0.2_15=[[0], [0], [2], [15]] +0.2_16=[[0], [0], [2], [16]] +0.2_17=[[0], [0], [2], [17]] +0.2_18=[[0], [0], [2], [18]] +0.2_19=[[0], [0], [2], [19]] +0.2_2=[[0], [0], [2], [2]] +0.2_21=[[0], [0], [2], [21]] +0.2_22=[[0], [0], [2], [22]] +0.2_23=[[0], [0], [2], [23]] +0.2_3=[[0], [0], [2], [3]] +0.2_357=[[0], [0], [2], [357]] +0.2_3571=[[0], [0], [2], [3571]] +0.2_4=[[0], [0], [2], [4]] +0.2_5=[[0], [0], [2], [5]] +0.2_5.2=[[0], [0], [2], [5], [2]] +0.2_6=[[0], [0], [2], [6]] +0.2_6.1=[[0], [0], [2], [6], [1]] +0.2_7=[[0], [0], [2], [7]] +0.2_7.1=[[0], [0], [2], [7], [1]] +0.2_8=[[0], [0], [2], [8]] +0.2_9=[[0], [0], [2], [9]] +0.2a1.dev0=[[0], [0], [2, 'a', 1], [0, 'DEV', 0]] +0.2a20201028=[[0], [0], [2, 'a', 20201028]] +0.2b1.dev0=[[0], [0], [2, 'b', 1], [0, 'DEV', 0]] +0.2rc0=[[0], [0], [2, 'rc', 0]] +0.2rc1=[[0], [0], [2, 'rc', 1]] +0.2rc1.dev0=[[0], [0], [2, 'rc', 1], [0, 'DEV', 0]] +0.2rc2=[[0], [0], [2, 'rc', 2]] +0.2rc3=[[0], [0], [2, 'rc', 3]] +0.3=[[0], [0], [3]] +0.3.0=[[0], [0], [3], [0]] +0.3.0.0=[[0], [0], [3], [0], [0]] +0.3.0.1=[[0], [0], [3], [0], [1]] +0.3.0.2=[[0], [0], [3], [0], [2]] +0.3.0.3=[[0], [0], [3], [0], [3]] +0.3.0.dev0=[[0], [0], [3], [0], [0, 'DEV', 0]] +0.3.0.post=[[0], [0], [3], [0], [0, inf]] +0.3.0.post0=[[0], [0], [3], [0], [0, inf, 0]] +0.3.0.post1=[[0], [0], [3], [0], [0, inf, 1]] +0.3.0.post3=[[0], [0], [3], [0], [0, inf, 3]] +0.3.0a=[[0], [0], [3], [0, 'a']] +0.3.0a0=[[0], [0], [3], [0, 'a', 0]] +0.3.0a1=[[0], [0], [3], [0, 'a', 1]] +0.3.0a22=[[0], [0], [3], [0, 'a', 22]] +0.3.0b0=[[0], [0], [3], [0, 'b', 0]] +0.3.0dev=[[0], [0], [3], [0, 'DEV']] +0.3.0post0=[[0], [0], [3], [0, inf, 0]] +0.3.0rc0=[[0], [0], [3], [0, 'rc', 0]] +0.3.0rc1=[[0], [0], [3], [0, 'rc', 1]] +0.3.0rc2=[[0], [0], [3], [0, 'rc', 2]] +0.3.1=[[0], [0], [3], [1]] +0.3.1.1=[[0], [0], [3], [1], [1]] +0.3.1.2=[[0], [0], [3], [1], [2]] +0.3.1.3=[[0], [0], [3], [1], [3]] +0.3.1.4=[[0], [0], [3], [1], [4]] +0.3.1.post1=[[0], [0], [3], [1], [0, inf, 1]] +0.3.1.post2=[[0], [0], [3], [1], [0, inf, 2]] +0.3.10=[[0], [0], [3], [10]] +0.3.10.0=[[0], [0], [3], [10], [0]] +0.3.10.post1=[[0], [0], [3], [10], [0, inf, 1]] +0.3.10.post2=[[0], [0], [3], [10], [0, inf, 2]] +0.3.10.post3=[[0], [0], [3], [10], [0, inf, 3]] +0.3.10.post4=[[0], [0], [3], [10], [0, inf, 4]] +0.3.10.post5=[[0], [0], [3], [10], [0, inf, 5]] +0.3.10.post6=[[0], [0], [3], [10], [0, inf, 6]] +0.3.10.post7=[[0], [0], [3], [10], [0, inf, 7]] +0.3.11=[[0], [0], [3], [11]] +0.3.11.0=[[0], [0], [3], [11], [0]] +0.3.11.post1=[[0], [0], [3], [11], [0, inf, 1]] +0.3.11.post2=[[0], [0], [3], [11], [0, inf, 2]] +0.3.11.post3=[[0], [0], [3], [11], [0, inf, 3]] +0.3.111=[[0], [0], [3], [111]] +0.3.112=[[0], [0], [3], [112]] +0.3.113=[[0], [0], [3], [113]] +0.3.12=[[0], [0], [3], [12]] +0.3.12.0=[[0], [0], [3], [12], [0]] +0.3.12.1=[[0], [0], [3], [12], [1]] +0.3.12.2=[[0], [0], [3], [12], [2]] +0.3.12.post0=[[0], [0], [3], [12], [0, inf, 0]] +0.3.13=[[0], [0], [3], [13]] +0.3.13.0=[[0], [0], [3], [13], [0]] +0.3.1348=[[0], [0], [3], [1348]] +0.3.14=[[0], [0], [3], [14]] +0.3.14.0=[[0], [0], [3], [14], [0]] +0.3.14.post1=[[0], [0], [3], [14], [0, inf, 1]] +0.3.14.post2=[[0], [0], [3], [14], [0, inf, 2]] +0.3.14.post3=[[0], [0], [3], [14], [0, inf, 3]] +0.3.14.post4=[[0], [0], [3], [14], [0, inf, 4]] +0.3.14b=[[0], [0], [3], [14, 'b']] +0.3.15=[[0], [0], [3], [15]] +0.3.15.1=[[0], [0], [3], [15], [1]] +0.3.15.2=[[0], [0], [3], [15], [2]] +0.3.16=[[0], [0], [3], [16]] +0.3.16.0=[[0], [0], [3], [16], [0]] +0.3.17=[[0], [0], [3], [17]] +0.3.18=[[0], [0], [3], [18]] +0.3.19=[[0], [0], [3], [19]] +0.3.1_1=[[0], [0], [3], [1], [1]] +0.3.1a=[[0], [0], [3], [1, 'a']] +0.3.2=[[0], [0], [3], [2]] +0.3.2.0=[[0], [0], [3], [2], [0]] +0.3.2.1=[[0], [0], [3], [2], [1]] +0.3.2.2=[[0], [0], [3], [2], [2]] +0.3.2.9.1=[[0], [0], [3], [2], [9], [1]] +0.3.2.post0=[[0], [0], [3], [2], [0, inf, 0]] +0.3.2.post1=[[0], [0], [3], [2], [0, inf, 1]] +0.3.2.post2=[[0], [0], [3], [2], [0, inf, 2]] +0.3.2.post3=[[0], [0], [3], [2], [0, inf, 3]] +0.3.20=[[0], [0], [3], [20]] +0.3.21=[[0], [0], [3], [21]] +0.3.22=[[0], [0], [3], [22]] +0.3.23=[[0], [0], [3], [23]] +0.3.24=[[0], [0], [3], [24]] +0.3.25=[[0], [0], [3], [25]] +0.3.26=[[0], [0], [3], [26]] +0.3.27=[[0], [0], [3], [27]] +0.3.28=[[0], [0], [3], [28]] +0.3.28.860c495=[[0], [0], [3], [28], [860, 'c', 495]] +0.3.29=[[0], [0], [3], [29]] +0.3.2_1=[[0], [0], [3], [2], [1]] +0.3.2_2=[[0], [0], [3], [2], [2]] +0.3.2b1=[[0], [0], [3], [2, 'b', 1]] +0.3.2rc1=[[0], [0], [3], [2, 'rc', 1]] +0.3.3=[[0], [0], [3], [3]] +0.3.3.0=[[0], [0], [3], [3], [0]] +0.3.3.1=[[0], [0], [3], [3], [1]] +0.3.3.2=[[0], [0], [3], [3], [2]] +0.3.3.4=[[0], [0], [3], [3], [4]] +0.3.3.4.0=[[0], [0], [3], [3], [4], [0]] +0.3.3.5.0=[[0], [0], [3], [3], [5], [0]] +0.3.3.7.0=[[0], [0], [3], [3], [7], [0]] +0.3.3.9.1=[[0], [0], [3], [3], [9], [1]] +0.3.3.9.2=[[0], [0], [3], [3], [9], [2]] +0.3.3.9.3=[[0], [0], [3], [3], [9], [3]] +0.3.3.dev0=[[0], [0], [3], [3], [0, 'DEV', 0]] +0.3.3.dev1=[[0], [0], [3], [3], [0, 'DEV', 1]] +0.3.3.post0=[[0], [0], [3], [3], [0, inf, 0]] +0.3.3.post1=[[0], [0], [3], [3], [0, inf, 1]] +0.3.3.post2=[[0], [0], [3], [3], [0, inf, 2]] +0.3.3.post3=[[0], [0], [3], [3], [0, inf, 3]] +0.3.3.post4=[[0], [0], [3], [3], [0, inf, 4]] +0.3.3.post5=[[0], [0], [3], [3], [0, inf, 5]] +0.3.3.post6=[[0], [0], [3], [3], [0, inf, 6]] +0.3.3.post7=[[0], [0], [3], [3], [0, inf, 7]] +0.3.30=[[0], [0], [3], [30]] +0.3.31=[[0], [0], [3], [31]] +0.3.32=[[0], [0], [3], [32]] +0.3.33=[[0], [0], [3], [33]] +0.3.34=[[0], [0], [3], [34]] +0.3.35=[[0], [0], [3], [35]] +0.3.36=[[0], [0], [3], [36]] +0.3.37=[[0], [0], [3], [37]] +0.3.38=[[0], [0], [3], [38]] +0.3.39=[[0], [0], [3], [39]] +0.3.3rc1=[[0], [0], [3], [3, 'rc', 1]] +0.3.4=[[0], [0], [3], [4]] +0.3.4.0=[[0], [0], [3], [4], [0]] +0.3.4.0.1=[[0], [0], [3], [4], [0], [1]] +0.3.4.0.2=[[0], [0], [3], [4], [0], [2]] +0.3.4.0.2.6=[[0], [0], [3], [4], [0], [2], [6]] +0.3.4.0.3=[[0], [0], [3], [4], [0], [3]] +0.3.4.0.4=[[0], [0], [3], [4], [0], [4]] +0.3.4.0.5=[[0], [0], [3], [4], [0], [5]] +0.3.4.0.6=[[0], [0], [3], [4], [0], [6]] +0.3.4.1=[[0], [0], [3], [4], [1]] +0.3.4.1.1=[[0], [0], [3], [4], [1], [1]] +0.3.4.2=[[0], [0], [3], [4], [2]] +0.3.4.3=[[0], [0], [3], [4], [3]] +0.3.4.5=[[0], [0], [3], [4], [5]] +0.3.4.7=[[0], [0], [3], [4], [7]] +0.3.4.8=[[0], [0], [3], [4], [8]] +0.3.4.9=[[0], [0], [3], [4], [9]] +0.3.4.post0=[[0], [0], [3], [4], [0, inf, 0]] +0.3.4.post1=[[0], [0], [3], [4], [0, inf, 1]] +0.3.4.post2=[[0], [0], [3], [4], [0, inf, 2]] +0.3.40=[[0], [0], [3], [40]] +0.3.41=[[0], [0], [3], [41]] +0.3.42=[[0], [0], [3], [42]] +0.3.43=[[0], [0], [3], [43]] +0.3.44=[[0], [0], [3], [44]] +0.3.45=[[0], [0], [3], [45]] +0.3.46=[[0], [0], [3], [46]] +0.3.47=[[0], [0], [3], [47]] +0.3.48=[[0], [0], [3], [48]] +0.3.49=[[0], [0], [3], [49]] +0.3.4_1=[[0], [0], [3], [4], [1]] +0.3.4a7=[[0], [0], [3], [4, 'a', 7]] +0.3.5=[[0], [0], [3], [5]] +0.3.5.0=[[0], [0], [3], [5], [0]] +0.3.5.0.1=[[0], [0], [3], [5], [0], [1]] +0.3.5.0.2=[[0], [0], [3], [5], [0], [2]] +0.3.5.1=[[0], [0], [3], [5], [1]] +0.3.5.3=[[0], [0], [3], [5], [3]] +0.3.5.post1=[[0], [0], [3], [5], [0, inf, 1]] +0.3.50=[[0], [0], [3], [50]] +0.3.51=[[0], [0], [3], [51]] +0.3.54=[[0], [0], [3], [54]] +0.3.543=[[0], [0], [3], [543]] +0.3.55=[[0], [0], [3], [55]] +0.3.56=[[0], [0], [3], [56]] +0.3.57=[[0], [0], [3], [57]] +0.3.58=[[0], [0], [3], [58]] +0.3.59=[[0], [0], [3], [59]] +0.3.5_1=[[0], [0], [3], [5], [1]] +0.3.5a=[[0], [0], [3], [5, 'a']] +0.3.6=[[0], [0], [3], [6]] +0.3.6.0=[[0], [0], [3], [6], [0]] +0.3.6.1=[[0], [0], [3], [6], [1]] +0.3.6.1.1=[[0], [0], [3], [6], [1], [1]] +0.3.6.1.2=[[0], [0], [3], [6], [1], [2]] +0.3.6.2=[[0], [0], [3], [6], [2]] +0.3.6.2.1=[[0], [0], [3], [6], [2], [1]] +0.3.6.3=[[0], [0], [3], [6], [3]] +0.3.6.4=[[0], [0], [3], [6], [4]] +0.3.6.4.1=[[0], [0], [3], [6], [4], [1]] +0.3.6.post2=[[0], [0], [3], [6], [0, inf, 2]] +0.3.60=[[0], [0], [3], [60]] +0.3.61=[[0], [0], [3], [61]] +0.3.63=[[0], [0], [3], [63]] +0.3.65=[[0], [0], [3], [65]] +0.3.68=[[0], [0], [3], [68]] +0.3.69=[[0], [0], [3], [69]] +0.3.6_1=[[0], [0], [3], [6], [1]] +0.3.7=[[0], [0], [3], [7]] +0.3.7.0=[[0], [0], [3], [7], [0]] +0.3.7.1=[[0], [0], [3], [7], [1]] +0.3.7.2=[[0], [0], [3], [7], [2]] +0.3.8=[[0], [0], [3], [8]] +0.3.8.1=[[0], [0], [3], [8], [1]] +0.3.8.2=[[0], [0], [3], [8], [2]] +0.3.8.3=[[0], [0], [3], [8], [3]] +0.3.8.4=[[0], [0], [3], [8], [4]] +0.3.8_1=[[0], [0], [3], [8], [1]] +0.3.9=[[0], [0], [3], [9]] +0.3.9.0=[[0], [0], [3], [9], [0]] +0.3.95=[[0], [0], [3], [95]] +0.3.dev16=[[0], [0], [3], [0, 'DEV', 16]] +0.3.dev2130=[[0], [0], [3], [0, 'DEV', 2130]] +0.3.dev2147=[[0], [0], [3], [0, 'DEV', 2147]] +0.3.dev2199=[[0], [0], [3], [0, 'DEV', 2199]] +0.3.dev2206=[[0], [0], [3], [0, 'DEV', 2206]] +0.3.dev2227=[[0], [0], [3], [0, 'DEV', 2227]] +0.3.dev2231=[[0], [0], [3], [0, 'DEV', 2231]] +0.3.post=[[0], [0], [3], [0, inf]] +0.3.post2=[[0], [0], [3], [0, inf, 2]] +0.3.post4=[[0], [0], [3], [0, inf, 4]] +0.3.pre=[[0], [0], [3], [0, 'pre']] +0.3.rc5=[[0], [0], [3], [0, 'rc', 5]] +0.30=[[0], [0], [30]] +0.30.0=[[0], [0], [30], [0]] +0.30.1=[[0], [0], [30], [1]] +0.30.10=[[0], [0], [30], [10]] +0.30.11=[[0], [0], [30], [11]] +0.30.12=[[0], [0], [30], [12]] +0.30.13=[[0], [0], [30], [13]] +0.30.14=[[0], [0], [30], [14]] +0.30.2=[[0], [0], [30], [2]] +0.30.3=[[0], [0], [30], [3]] +0.30.4=[[0], [0], [30], [4]] +0.30.5=[[0], [0], [30], [5]] +0.30.6=[[0], [0], [30], [6]] +0.30.7=[[0], [0], [30], [7]] +0.30.8=[[0], [0], [30], [8]] +0.30.9=[[0], [0], [30], [9]] +0.300=[[0], [0], [300]] +0.300.1=[[0], [0], [300], [1]] +0.301=[[0], [0], [301]] +0.301.1=[[0], [0], [301], [1]] +0.302=[[0], [0], [302]] +0.302.1=[[0], [0], [302], [1]] +0.303.1=[[0], [0], [303], [1]] +0.304=[[0], [0], [304]] +0.304.1=[[0], [0], [304], [1]] +0.305=[[0], [0], [305]] +0.305.0=[[0], [0], [305], [0]] +0.306=[[0], [0], [306]] +0.306.0=[[0], [0], [306], [0]] +0.307.0=[[0], [0], [307], [0]] +0.308.0=[[0], [0], [308], [0]] +0.309.0=[[0], [0], [309], [0]] +0.30b0=[[0], [0], [30, 'b', 0]] +0.30b1=[[0], [0], [30, 'b', 1]] +0.31=[[0], [0], [31]] +0.31.0=[[0], [0], [31], [0]] +0.31.1=[[0], [0], [31], [1]] +0.31.10=[[0], [0], [31], [10]] +0.31.11=[[0], [0], [31], [11]] +0.31.12=[[0], [0], [31], [12]] +0.31.2=[[0], [0], [31], [2]] +0.31.3=[[0], [0], [31], [3]] +0.31.4=[[0], [0], [31], [4]] +0.31.5=[[0], [0], [31], [5]] +0.31.6=[[0], [0], [31], [6]] +0.31.7=[[0], [0], [31], [7]] +0.31.8=[[0], [0], [31], [8]] +0.31.9=[[0], [0], [31], [9]] +0.310.0=[[0], [0], [310], [0]] +0.311.0=[[0], [0], [311], [0]] +0.312.0=[[0], [0], [312], [0]] +0.313.0=[[0], [0], [313], [0]] +0.314=[[0], [0], [314]] +0.314.0=[[0], [0], [314], [0]] +0.315.0=[[0], [0], [315], [0]] +0.316.0=[[0], [0], [316], [0]] +0.317.0=[[0], [0], [317], [0]] +0.318.0=[[0], [0], [318], [0]] +0.318.1=[[0], [0], [318], [1]] +0.319.0=[[0], [0], [319], [0]] +0.319.2=[[0], [0], [319], [2]] +0.31b0=[[0], [0], [31, 'b', 0]] +0.32=[[0], [0], [32]] +0.32.0=[[0], [0], [32], [0]] +0.32.1=[[0], [0], [32], [1]] +0.32.12=[[0], [0], [32], [12]] +0.32.14=[[0], [0], [32], [14]] +0.32.16=[[0], [0], [32], [16]] +0.32.2=[[0], [0], [32], [2]] +0.32.21=[[0], [0], [32], [21]] +0.32.3=[[0], [0], [32], [3]] +0.32.4=[[0], [0], [32], [4]] +0.32.5=[[0], [0], [32], [5]] +0.32.6=[[0], [0], [32], [6]] +0.32.7=[[0], [0], [32], [7]] +0.32.8=[[0], [0], [32], [8]] +0.320.0=[[0], [0], [320], [0]] +0.321.0=[[0], [0], [321], [0]] +0.321.1=[[0], [0], [321], [1]] +0.322.0=[[0], [0], [322], [0]] +0.322.1=[[0], [0], [322], [1]] +0.323.0=[[0], [0], [323], [0]] +0.324.1=[[0], [0], [324], [1]] +0.325.1=[[0], [0], [325], [1]] +0.326.1=[[0], [0], [326], [1]] +0.327=[[0], [0], [327]] +0.327.1=[[0], [0], [327], [1]] +0.328=[[0], [0], [328]] +0.328.0=[[0], [0], [328], [0]] +0.329=[[0], [0], [329]] +0.329.0=[[0], [0], [329], [0]] +0.32b0=[[0], [0], [32, 'b', 0]] +0.33=[[0], [0], [33]] +0.33.0=[[0], [0], [33], [0]] +0.33.0rc1=[[0], [0], [33], [0, 'rc', 1]] +0.33.1=[[0], [0], [33], [1]] +0.33.10=[[0], [0], [33], [10]] +0.33.11=[[0], [0], [33], [11]] +0.33.12=[[0], [0], [33], [12]] +0.33.2=[[0], [0], [33], [2]] +0.33.3=[[0], [0], [33], [3]] +0.33.4=[[0], [0], [33], [4]] +0.33.5=[[0], [0], [33], [5]] +0.33.6=[[0], [0], [33], [6]] +0.33.7=[[0], [0], [33], [7]] +0.33.8=[[0], [0], [33], [8]] +0.33.9=[[0], [0], [33], [9]] +0.330=[[0], [0], [330]] +0.330.0=[[0], [0], [330], [0]] +0.331=[[0], [0], [331]] +0.331.0=[[0], [0], [331], [0]] +0.332=[[0], [0], [332]] +0.33b0=[[0], [0], [33, 'b', 0]] +0.34=[[0], [0], [34]] +0.34.0=[[0], [0], [34], [0]] +0.34.0rc1=[[0], [0], [34], [0, 'rc', 1]] +0.34.0rc2=[[0], [0], [34], [0, 'rc', 2]] +0.34.1=[[0], [0], [34], [1]] +0.34.10=[[0], [0], [34], [10]] +0.34.11=[[0], [0], [34], [11]] +0.34.12=[[0], [0], [34], [12]] +0.34.2=[[0], [0], [34], [2]] +0.34.3=[[0], [0], [34], [3]] +0.34.4=[[0], [0], [34], [4]] +0.34.5=[[0], [0], [34], [5]] +0.34.6=[[0], [0], [34], [6]] +0.34.7=[[0], [0], [34], [7]] +0.34.8=[[0], [0], [34], [8]] +0.34.9=[[0], [0], [34], [9]] +0.35=[[0], [0], [35]] +0.35.0=[[0], [0], [35], [0]] +0.35.1=[[0], [0], [35], [1]] +0.35.10=[[0], [0], [35], [10]] +0.35.11=[[0], [0], [35], [11]] +0.35.12=[[0], [0], [35], [12]] +0.35.13=[[0], [0], [35], [13]] +0.35.14=[[0], [0], [35], [14]] +0.35.16=[[0], [0], [35], [16]] +0.35.17=[[0], [0], [35], [17]] +0.35.18=[[0], [0], [35], [18]] +0.35.19=[[0], [0], [35], [19]] +0.35.2=[[0], [0], [35], [2]] +0.35.20=[[0], [0], [35], [20]] +0.35.3=[[0], [0], [35], [3]] +0.35.4=[[0], [0], [35], [4]] +0.35.5=[[0], [0], [35], [5]] +0.35.6=[[0], [0], [35], [6]] +0.35.7=[[0], [0], [35], [7]] +0.35.8=[[0], [0], [35], [8]] +0.35.9=[[0], [0], [35], [9]] +0.36=[[0], [0], [36]] +0.36.0=[[0], [0], [36], [0]] +0.36.1=[[0], [0], [36], [1]] +0.36.10=[[0], [0], [36], [10]] +0.36.11=[[0], [0], [36], [11]] +0.36.12=[[0], [0], [36], [12]] +0.36.13=[[0], [0], [36], [13]] +0.36.2=[[0], [0], [36], [2]] +0.36.3=[[0], [0], [36], [3]] +0.36.4=[[0], [0], [36], [4]] +0.36.5=[[0], [0], [36], [5]] +0.36.6=[[0], [0], [36], [6]] +0.36.7=[[0], [0], [36], [7]] +0.36.8=[[0], [0], [36], [8]] +0.36.9=[[0], [0], [36], [9]] +0.36b0=[[0], [0], [36, 'b', 0]] +0.37=[[0], [0], [37]] +0.37.0=[[0], [0], [37], [0]] +0.37.1=[[0], [0], [37], [1]] +0.37.2=[[0], [0], [37], [2]] +0.37.3=[[0], [0], [37], [3]] +0.37.4=[[0], [0], [37], [4]] +0.37.5=[[0], [0], [37], [5]] +0.37.6=[[0], [0], [37], [6]] +0.37.7=[[0], [0], [37], [7]] +0.37.8=[[0], [0], [37], [8]] +0.37.9=[[0], [0], [37], [9]] +0.37a=[[0], [0], [37, 'a']] +0.37b0=[[0], [0], [37, 'b', 0]] +0.38=[[0], [0], [38]] +0.38.0=[[0], [0], [38], [0]] +0.38.1=[[0], [0], [38], [1]] +0.38.1.post1=[[0], [0], [38], [1], [0, inf, 1]] +0.38.10=[[0], [0], [38], [10]] +0.38.11=[[0], [0], [38], [11]] +0.38.12=[[0], [0], [38], [12]] +0.38.196=[[0], [0], [38], [196]] +0.38.2=[[0], [0], [38], [2]] +0.38.3=[[0], [0], [38], [3]] +0.38.4=[[0], [0], [38], [4]] +0.38.5=[[0], [0], [38], [5]] +0.38.6=[[0], [0], [38], [6]] +0.38.7=[[0], [0], [38], [7]] +0.38.8=[[0], [0], [38], [8]] +0.38.9=[[0], [0], [38], [9]] +0.39=[[0], [0], [39]] +0.39.0=[[0], [0], [39], [0]] +0.39.1=[[0], [0], [39], [1]] +0.39.10=[[0], [0], [39], [10]] +0.39.11=[[0], [0], [39], [11]] +0.39.12=[[0], [0], [39], [12]] +0.39.13=[[0], [0], [39], [13]] +0.39.2=[[0], [0], [39], [2]] +0.39.3=[[0], [0], [39], [3]] +0.39.4=[[0], [0], [39], [4]] +0.39.5=[[0], [0], [39], [5]] +0.39.6=[[0], [0], [39], [6]] +0.39.7=[[0], [0], [39], [7]] +0.39.8=[[0], [0], [39], [8]] +0.39.9=[[0], [0], [39], [9]] +0.3_0=[[0], [0], [3], [0]] +0.3_0.1=[[0], [0], [3], [0], [1]] +0.3_1=[[0], [0], [3], [1]] +0.3_14=[[0], [0], [3], [14]] +0.3_16=[[0], [0], [3], [16]] +0.3_17=[[0], [0], [3], [17]] +0.3_18=[[0], [0], [3], [18]] +0.3_19=[[0], [0], [3], [19]] +0.3_2=[[0], [0], [3], [2]] +0.3_2.1=[[0], [0], [3], [2], [1]] +0.3_2.2=[[0], [0], [3], [2], [2]] +0.3_2.3=[[0], [0], [3], [2], [3]] +0.3_20=[[0], [0], [3], [20]] +0.3_21=[[0], [0], [3], [21]] +0.3_3=[[0], [0], [3], [3]] +0.3_3.1=[[0], [0], [3], [3], [1]] +0.3_4=[[0], [0], [3], [4]] +0.3_40=[[0], [0], [3], [40]] +0.3_41=[[0], [0], [3], [41]] +0.3_42=[[0], [0], [3], [42]] +0.3_43=[[0], [0], [3], [43]] +0.3_48=[[0], [0], [3], [48]] +0.3_5=[[0], [0], [3], [5]] +0.3_5.1=[[0], [0], [3], [5], [1]] +0.3_54=[[0], [0], [3], [54]] +0.3_56=[[0], [0], [3], [56]] +0.3_57=[[0], [0], [3], [57]] +0.3_58=[[0], [0], [3], [58]] +0.3_59=[[0], [0], [3], [59]] +0.3_6=[[0], [0], [3], [6]] +0.3_60=[[0], [0], [3], [60]] +0.3_61=[[0], [0], [3], [61]] +0.3_62=[[0], [0], [3], [62]] +0.3_63=[[0], [0], [3], [63]] +0.3_64=[[0], [0], [3], [64]] +0.3_7=[[0], [0], [3], [7]] +0.3_8=[[0], [0], [3], [8]] +0.3_81=[[0], [0], [3], [81]] +0.3_819=[[0], [0], [3], [819]] +0.3_8196=[[0], [0], [3], [8196]] +0.3_9=[[0], [0], [3], [9]] +0.3a1=[[0], [0], [3, 'a', 1]] +0.3dev=[[0], [0], [3, 'DEV']] +0.3rc1=[[0], [0], [3, 'rc', 1]] +0.4=[[0], [0], [4]] +0.4.0=[[0], [0], [4], [0]] +0.4.0.0=[[0], [0], [4], [0], [0]] +0.4.0.1=[[0], [0], [4], [0], [1]] +0.4.0.7=[[0], [0], [4], [0], [7]] +0.4.0.dev3=[[0], [0], [4], [0], [0, 'DEV', 3]] +0.4.0.post=[[0], [0], [4], [0], [0, inf]] +0.4.0.post0=[[0], [0], [4], [0], [0, inf, 0]] +0.4.0.post1=[[0], [0], [4], [0], [0, inf, 1]] +0.4.0.post2=[[0], [0], [4], [0], [0, inf, 2]] +0.4.0.post3=[[0], [0], [4], [0], [0, inf, 3]] +0.4.00=[[0], [0], [4], [0]] +0.4.0a=[[0], [0], [4], [0, 'a']] +0.4.0a1=[[0], [0], [4], [0, 'a', 1]] +0.4.0a4=[[0], [0], [4], [0, 'a', 4]] +0.4.0a5=[[0], [0], [4], [0, 'a', 5]] +0.4.0b1=[[0], [0], [4], [0, 'b', 1]] +0.4.0b2=[[0], [0], [4], [0, 'b', 2]] +0.4.0b4=[[0], [0], [4], [0, 'b', 4]] +0.4.0b6=[[0], [0], [4], [0, 'b', 6]] +0.4.0b7=[[0], [0], [4], [0, 'b', 7]] +0.4.0b8=[[0], [0], [4], [0, 'b', 8]] +0.4.0b9=[[0], [0], [4], [0, 'b', 9]] +0.4.0rc0=[[0], [0], [4], [0, 'rc', 0]] +0.4.0rc3=[[0], [0], [4], [0, 'rc', 3]] +0.4.0rc4=[[0], [0], [4], [0, 'rc', 4]] +0.4.1=[[0], [0], [4], [1]] +0.4.1.1=[[0], [0], [4], [1], [1]] +0.4.1.dev0=[[0], [0], [4], [1], [0, 'DEV', 0]] +0.4.1.post0=[[0], [0], [4], [1], [0, inf, 0]] +0.4.1.post1=[[0], [0], [4], [1], [0, inf, 1]] +0.4.1.post2=[[0], [0], [4], [1], [0, inf, 2]] +0.4.1.post3=[[0], [0], [4], [1], [0, inf, 3]] +0.4.1.post4=[[0], [0], [4], [1], [0, inf, 4]] +0.4.1.post5=[[0], [0], [4], [1], [0, inf, 5]] +0.4.1.post6=[[0], [0], [4], [1], [0, inf, 6]] +0.4.10=[[0], [0], [4], [10]] +0.4.100=[[0], [0], [4], [100]] +0.4.101=[[0], [0], [4], [101]] +0.4.102=[[0], [0], [4], [102]] +0.4.103=[[0], [0], [4], [103]] +0.4.104=[[0], [0], [4], [104]] +0.4.105=[[0], [0], [4], [105]] +0.4.106=[[0], [0], [4], [106]] +0.4.107=[[0], [0], [4], [107]] +0.4.108=[[0], [0], [4], [108]] +0.4.109=[[0], [0], [4], [109]] +0.4.11=[[0], [0], [4], [11]] +0.4.110=[[0], [0], [4], [110]] +0.4.111=[[0], [0], [4], [111]] +0.4.112=[[0], [0], [4], [112]] +0.4.113=[[0], [0], [4], [113]] +0.4.114=[[0], [0], [4], [114]] +0.4.115=[[0], [0], [4], [115]] +0.4.116=[[0], [0], [4], [116]] +0.4.117=[[0], [0], [4], [117]] +0.4.118=[[0], [0], [4], [118]] +0.4.119=[[0], [0], [4], [119]] +0.4.12=[[0], [0], [4], [12]] +0.4.120=[[0], [0], [4], [120]] +0.4.121=[[0], [0], [4], [121]] +0.4.122=[[0], [0], [4], [122]] +0.4.123=[[0], [0], [4], [123]] +0.4.124=[[0], [0], [4], [124]] +0.4.125=[[0], [0], [4], [125]] +0.4.126=[[0], [0], [4], [126]] +0.4.127=[[0], [0], [4], [127]] +0.4.128=[[0], [0], [4], [128]] +0.4.129=[[0], [0], [4], [129]] +0.4.13=[[0], [0], [4], [13]] +0.4.130=[[0], [0], [4], [130]] +0.4.131=[[0], [0], [4], [131]] +0.4.132=[[0], [0], [4], [132]] +0.4.133=[[0], [0], [4], [133]] +0.4.14=[[0], [0], [4], [14]] +0.4.1432=[[0], [0], [4], [1432]] +0.4.1456=[[0], [0], [4], [1456]] +0.4.1475=[[0], [0], [4], [1475]] +0.4.1488=[[0], [0], [4], [1488]] +0.4.15=[[0], [0], [4], [15]] +0.4.15.1=[[0], [0], [4], [15], [1]] +0.4.15.2=[[0], [0], [4], [15], [2]] +0.4.15.3=[[0], [0], [4], [15], [3]] +0.4.15.4=[[0], [0], [4], [15], [4]] +0.4.15.5=[[0], [0], [4], [15], [5]] +0.4.15.6=[[0], [0], [4], [15], [6]] +0.4.15.7=[[0], [0], [4], [15], [7]] +0.4.15.8=[[0], [0], [4], [15], [8]] +0.4.1500=[[0], [0], [4], [1500]] +0.4.1520=[[0], [0], [4], [1520]] +0.4.1525=[[0], [0], [4], [1525]] +0.4.1527=[[0], [0], [4], [1527]] +0.4.1536=[[0], [0], [4], [1536]] +0.4.1545=[[0], [0], [4], [1545]] +0.4.1555=[[0], [0], [4], [1555]] +0.4.16=[[0], [0], [4], [16]] +0.4.1602=[[0], [0], [4], [1602]] +0.4.1612=[[0], [0], [4], [1612]] +0.4.1620=[[0], [0], [4], [1620]] +0.4.1647b01=[[0], [0], [4], [1647, 'b', 1]] +0.4.1650=[[0], [0], [4], [1650]] +0.4.17=[[0], [0], [4], [17]] +0.4.18=[[0], [0], [4], [18]] +0.4.19=[[0], [0], [4], [19]] +0.4.1a1=[[0], [0], [4], [1, 'a', 1]] +0.4.1a4=[[0], [0], [4], [1, 'a', 4]] +0.4.1dev=[[0], [0], [4], [1, 'DEV']] +0.4.2=[[0], [0], [4], [2]] +0.4.2.1=[[0], [0], [4], [2], [1]] +0.4.2.2=[[0], [0], [4], [2], [2]] +0.4.2.3=[[0], [0], [4], [2], [3]] +0.4.2.5=[[0], [0], [4], [2], [5]] +0.4.2.post0=[[0], [0], [4], [2], [0, inf, 0]] +0.4.2.post1=[[0], [0], [4], [2], [0, inf, 1]] +0.4.2.post2=[[0], [0], [4], [2], [0, inf, 2]] +0.4.2.post3=[[0], [0], [4], [2], [0, inf, 3]] +0.4.2.post4=[[0], [0], [4], [2], [0, inf, 4]] +0.4.2.post5=[[0], [0], [4], [2], [0, inf, 5]] +0.4.20=[[0], [0], [4], [20]] +0.4.21=[[0], [0], [4], [21]] +0.4.22=[[0], [0], [4], [22]] +0.4.23=[[0], [0], [4], [23]] +0.4.24=[[0], [0], [4], [24]] +0.4.25=[[0], [0], [4], [25]] +0.4.26=[[0], [0], [4], [26]] +0.4.27=[[0], [0], [4], [27]] +0.4.28=[[0], [0], [4], [28]] +0.4.29=[[0], [0], [4], [29]] +0.4.2_1=[[0], [0], [4], [2], [1]] +0.4.2a0=[[0], [0], [4], [2, 'a', 0]] +0.4.2a3=[[0], [0], [4], [2, 'a', 3]] +0.4.2b13=[[0], [0], [4], [2, 'b', 13]] +0.4.3=[[0], [0], [4], [3]] +0.4.3.1=[[0], [0], [4], [3], [1]] +0.4.3.2=[[0], [0], [4], [3], [2]] +0.4.3.3=[[0], [0], [4], [3], [3]] +0.4.3.4=[[0], [0], [4], [3], [4]] +0.4.3.5=[[0], [0], [4], [3], [5]] +0.4.3.post0=[[0], [0], [4], [3], [0, inf, 0]] +0.4.3.post1=[[0], [0], [4], [3], [0, inf, 1]] +0.4.3.post2=[[0], [0], [4], [3], [0, inf, 2]] +0.4.3.post3=[[0], [0], [4], [3], [0, inf, 3]] +0.4.3.post4=[[0], [0], [4], [3], [0, inf, 4]] +0.4.3.post5=[[0], [0], [4], [3], [0, inf, 5]] +0.4.30=[[0], [0], [4], [30]] +0.4.31=[[0], [0], [4], [31]] +0.4.32=[[0], [0], [4], [32]] +0.4.33=[[0], [0], [4], [33]] +0.4.34=[[0], [0], [4], [34]] +0.4.35=[[0], [0], [4], [35]] +0.4.38=[[0], [0], [4], [38]] +0.4.39=[[0], [0], [4], [39]] +0.4.3a0=[[0], [0], [4], [3, 'a', 0]] +0.4.3a1=[[0], [0], [4], [3, 'a', 1]] +0.4.4=[[0], [0], [4], [4]] +0.4.4.1=[[0], [0], [4], [4], [1]] +0.4.4.2=[[0], [0], [4], [4], [2]] +0.4.4.3=[[0], [0], [4], [4], [3]] +0.4.4.4=[[0], [0], [4], [4], [4]] +0.4.4.5=[[0], [0], [4], [4], [5]] +0.4.4.6=[[0], [0], [4], [4], [6]] +0.4.4.dev4=[[0], [0], [4], [4], [0, 'DEV', 4]] +0.4.4.post1=[[0], [0], [4], [4], [0, inf, 1]] +0.4.40=[[0], [0], [4], [40]] +0.4.41=[[0], [0], [4], [41]] +0.4.4_1=[[0], [0], [4], [4], [1]] +0.4.5=[[0], [0], [4], [5]] +0.4.5.1=[[0], [0], [4], [5], [1]] +0.4.5.post0=[[0], [0], [4], [5], [0, inf, 0]] +0.4.5.post1=[[0], [0], [4], [5], [0, inf, 1]] +0.4.5.post10=[[0], [0], [4], [5], [0, inf, 10]] +0.4.5.post11=[[0], [0], [4], [5], [0, inf, 11]] +0.4.5.post12=[[0], [0], [4], [5], [0, inf, 12]] +0.4.5.post13=[[0], [0], [4], [5], [0, inf, 13]] +0.4.5.post16=[[0], [0], [4], [5], [0, inf, 16]] +0.4.5.post2=[[0], [0], [4], [5], [0, inf, 2]] +0.4.5.post3=[[0], [0], [4], [5], [0, inf, 3]] +0.4.5.post4=[[0], [0], [4], [5], [0, inf, 4]] +0.4.5.post5=[[0], [0], [4], [5], [0, inf, 5]] +0.4.5.post6=[[0], [0], [4], [5], [0, inf, 6]] +0.4.5.post7=[[0], [0], [4], [5], [0, inf, 7]] +0.4.5.post8=[[0], [0], [4], [5], [0, inf, 8]] +0.4.5.post9=[[0], [0], [4], [5], [0, inf, 9]] +0.4.51=[[0], [0], [4], [51]] +0.4.56=[[0], [0], [4], [56]] +0.4.57=[[0], [0], [4], [57]] +0.4.58=[[0], [0], [4], [58]] +0.4.59=[[0], [0], [4], [59]] +0.4.6=[[0], [0], [4], [6]] +0.4.6.1=[[0], [0], [4], [6], [1]] +0.4.6.2=[[0], [0], [4], [6], [2]] +0.4.6.post0=[[0], [0], [4], [6], [0, inf, 0]] +0.4.6.post1=[[0], [0], [4], [6], [0, inf, 1]] +0.4.6.post2=[[0], [0], [4], [6], [0, inf, 2]] +0.4.6.post3=[[0], [0], [4], [6], [0, inf, 3]] +0.4.63=[[0], [0], [4], [63]] +0.4.65=[[0], [0], [4], [65]] +0.4.66=[[0], [0], [4], [66]] +0.4.67=[[0], [0], [4], [67]] +0.4.68=[[0], [0], [4], [68]] +0.4.7=[[0], [0], [4], [7]] +0.4.7.1=[[0], [0], [4], [7], [1]] +0.4.7.2=[[0], [0], [4], [7], [2]] +0.4.7.4=[[0], [0], [4], [7], [4]] +0.4.7.post0=[[0], [0], [4], [7], [0, inf, 0]] +0.4.8=[[0], [0], [4], [8]] +0.4.8.1=[[0], [0], [4], [8], [1]] +0.4.8.post1=[[0], [0], [4], [8], [0, inf, 1]] +0.4.86=[[0], [0], [4], [86]] +0.4.87=[[0], [0], [4], [87]] +0.4.88=[[0], [0], [4], [88]] +0.4.89=[[0], [0], [4], [89]] +0.4.8_1=[[0], [0], [4], [8], [1]] +0.4.9=[[0], [0], [4], [9]] +0.4.9.1=[[0], [0], [4], [9], [1]] +0.4.9.11=[[0], [0], [4], [9], [11]] +0.4.9.14=[[0], [0], [4], [9], [14]] +0.4.9.15=[[0], [0], [4], [9], [15]] +0.4.9.18=[[0], [0], [4], [9], [18]] +0.4.9.3=[[0], [0], [4], [9], [3]] +0.4.90=[[0], [0], [4], [90]] +0.4.96=[[0], [0], [4], [96]] +0.4.99=[[0], [0], [4], [99]] +0.4.9_3=[[0], [0], [4], [9], [3]] +0.4.dev0=[[0], [0], [4], [0, 'DEV', 0]] +0.4.p0=[[0], [0], [4], [0, 'p', 0]] +0.4.post1=[[0], [0], [4], [0, inf, 1]] +0.4.post2=[[0], [0], [4], [0, inf, 2]] +0.40=[[0], [0], [40]] +0.40.0=[[0], [0], [40], [0]] +0.40.1=[[0], [0], [40], [1]] +0.40.2=[[0], [0], [40], [2]] +0.40.3=[[0], [0], [40], [3]] +0.40.4=[[0], [0], [40], [4]] +0.40.5=[[0], [0], [40], [5]] +0.40.6=[[0], [0], [40], [6]] +0.40.dev0=[[0], [0], [40], [0, 'DEV', 0]] +0.400=[[0], [0], [400]] +0.401=[[0], [0], [401]] +0.403=[[0], [0], [403]] +0.41=[[0], [0], [41]] +0.41.0=[[0], [0], [41], [0]] +0.41.1=[[0], [0], [41], [1]] +0.41.3=[[0], [0], [41], [3]] +0.41.5=[[0], [0], [41], [5]] +0.41.6=[[0], [0], [41], [6]] +0.41.7=[[0], [0], [41], [7]] +0.41_2=[[0], [0], [41], [2]] +0.41_24=[[0], [0], [41], [24]] +0.42=[[0], [0], [42]] +0.42.0=[[0], [0], [42], [0]] +0.42.1=[[0], [0], [42], [1]] +0.42.10=[[0], [0], [42], [10]] +0.42.11=[[0], [0], [42], [11]] +0.42.12=[[0], [0], [42], [12]] +0.42.13=[[0], [0], [42], [13]] +0.42.14=[[0], [0], [42], [14]] +0.42.15=[[0], [0], [42], [15]] +0.42.16=[[0], [0], [42], [16]] +0.42.18=[[0], [0], [42], [18]] +0.42.19=[[0], [0], [42], [19]] +0.42.2=[[0], [0], [42], [2]] +0.42.3=[[0], [0], [42], [3]] +0.42.4=[[0], [0], [42], [4]] +0.42.5=[[0], [0], [42], [5]] +0.42.6=[[0], [0], [42], [6]] +0.42.7=[[0], [0], [42], [7]] +0.42.8=[[0], [0], [42], [8]] +0.4224=[[0], [0], [4224]] +0.4231=[[0], [0], [4231]] +0.4232=[[0], [0], [4232]] +0.4234=[[0], [0], [4234]] +0.428=[[0], [0], [428]] +0.43=[[0], [0], [43]] +0.43.0=[[0], [0], [43], [0]] +0.43.1=[[0], [0], [43], [1]] +0.43.2=[[0], [0], [43], [2]] +0.43.3=[[0], [0], [43], [3]] +0.430=[[0], [0], [430]] +0.44=[[0], [0], [44]] +0.44.0=[[0], [0], [44], [0]] +0.44.1=[[0], [0], [44], [1]] +0.44.2=[[0], [0], [44], [2]] +0.44.3=[[0], [0], [44], [3]] +0.44.4=[[0], [0], [44], [4]] +0.44.5=[[0], [0], [44], [5]] +0.44.6=[[0], [0], [44], [6]] +0.45=[[0], [0], [45]] +0.45.0=[[0], [0], [45], [0]] +0.45.1=[[0], [0], [45], [1]] +0.45.10=[[0], [0], [45], [10]] +0.45.11=[[0], [0], [45], [11]] +0.45.13=[[0], [0], [45], [13]] +0.45.14=[[0], [0], [45], [14]] +0.45.15=[[0], [0], [45], [15]] +0.45.16=[[0], [0], [45], [16]] +0.45.17=[[0], [0], [45], [17]] +0.45.18=[[0], [0], [45], [18]] +0.45.2=[[0], [0], [45], [2]] +0.45.3=[[0], [0], [45], [3]] +0.45.4=[[0], [0], [45], [4]] +0.45.5=[[0], [0], [45], [5]] +0.45.6=[[0], [0], [45], [6]] +0.45.7=[[0], [0], [45], [7]] +0.45.8=[[0], [0], [45], [8]] +0.45.9=[[0], [0], [45], [9]] +0.46=[[0], [0], [46]] +0.46.0=[[0], [0], [46], [0]] +0.46.1=[[0], [0], [46], [1]] +0.46.2=[[0], [0], [46], [2]] +0.46.3=[[0], [0], [46], [3]] +0.46.4=[[0], [0], [46], [4]] +0.46.5=[[0], [0], [46], [5]] +0.46.6=[[0], [0], [46], [6]] +0.46.7=[[0], [0], [46], [7]] +0.47=[[0], [0], [47]] +0.47.0=[[0], [0], [47], [0]] +0.47.1=[[0], [0], [47], [1]] +0.47.2=[[0], [0], [47], [2]] +0.47.3=[[0], [0], [47], [3]] +0.47.4=[[0], [0], [47], [4]] +0.47.5=[[0], [0], [47], [5]] +0.47.6=[[0], [0], [47], [6]] +0.47_3=[[0], [0], [47], [3]] +0.47_4=[[0], [0], [47], [4]] +0.48=[[0], [0], [48]] +0.48.0=[[0], [0], [48], [0]] +0.48.1=[[0], [0], [48], [1]] +0.48.2=[[0], [0], [48], [2]] +0.48.3=[[0], [0], [48], [3]] +0.48.4=[[0], [0], [48], [4]] +0.48.5=[[0], [0], [48], [5]] +0.48.8=[[0], [0], [48], [8]] +0.48_3=[[0], [0], [48], [3]] +0.49=[[0], [0], [49]] +0.49.0=[[0], [0], [49], [0]] +0.49.1=[[0], [0], [49], [1]] +0.49.10=[[0], [0], [49], [10]] +0.49.11=[[0], [0], [49], [11]] +0.49.12=[[0], [0], [49], [12]] +0.49.13=[[0], [0], [49], [13]] +0.49.14=[[0], [0], [49], [14]] +0.49.15=[[0], [0], [49], [15]] +0.49.16=[[0], [0], [49], [16]] +0.49.17=[[0], [0], [49], [17]] +0.49.18=[[0], [0], [49], [18]] +0.49.2=[[0], [0], [49], [2]] +0.49.3=[[0], [0], [49], [3]] +0.49.4=[[0], [0], [49], [4]] +0.49.5=[[0], [0], [49], [5]] +0.49.6=[[0], [0], [49], [6]] +0.49.8=[[0], [0], [49], [8]] +0.49.9=[[0], [0], [49], [9]] +0.49_1=[[0], [0], [49], [1]] +0.49_2=[[0], [0], [49], [2]] +0.4_0=[[0], [0], [4], [0]] +0.4_0.1=[[0], [0], [4], [0], [1]] +0.4_1=[[0], [0], [4], [1]] +0.4_1.2=[[0], [0], [4], [1], [2]] +0.4_10=[[0], [0], [4], [10]] +0.4_11=[[0], [0], [4], [11]] +0.4_11.1=[[0], [0], [4], [11], [1]] +0.4_11.2=[[0], [0], [4], [11], [2]] +0.4_12=[[0], [0], [4], [12]] +0.4_12.1=[[0], [0], [4], [12], [1]] +0.4_12.2=[[0], [0], [4], [12], [2]] +0.4_12.3=[[0], [0], [4], [12], [3]] +0.4_12.4=[[0], [0], [4], [12], [4]] +0.4_124=[[0], [0], [4], [124]] +0.4_1245=[[0], [0], [4], [1245]] +0.4_13=[[0], [0], [4], [13]] +0.4_14=[[0], [0], [4], [14]] +0.4_14.1=[[0], [0], [4], [14], [1]] +0.4_15=[[0], [0], [4], [15]] +0.4_16=[[0], [0], [4], [16]] +0.4_17=[[0], [0], [4], [17]] +0.4_18=[[0], [0], [4], [18]] +0.4_18.1=[[0], [0], [4], [18], [1]] +0.4_18.2=[[0], [0], [4], [18], [2]] +0.4_2=[[0], [0], [4], [2]] +0.4_20=[[0], [0], [4], [20]] +0.4_22=[[0], [0], [4], [22]] +0.4_23=[[0], [0], [4], [23]] +0.4_24=[[0], [0], [4], [24]] +0.4_25=[[0], [0], [4], [25]] +0.4_26=[[0], [0], [4], [26]] +0.4_27=[[0], [0], [4], [27]] +0.4_3=[[0], [0], [4], [3]] +0.4_31=[[0], [0], [4], [31]] +0.4_39=[[0], [0], [4], [39]] +0.4_4=[[0], [0], [4], [4]] +0.4_40=[[0], [0], [4], [40]] +0.4_41=[[0], [0], [4], [41]] +0.4_43=[[0], [0], [4], [43]] +0.4_44=[[0], [0], [4], [44]] +0.4_45=[[0], [0], [4], [45]] +0.4_5=[[0], [0], [4], [5]] +0.4_6=[[0], [0], [4], [6]] +0.4_7=[[0], [0], [4], [7]] +0.4_8=[[0], [0], [4], [8]] +0.4_8.6=[[0], [0], [4], [8], [6]] +0.4_9=[[0], [0], [4], [9]] +0.4_93=[[0], [0], [4], [93]] +0.4_94=[[0], [0], [4], [94]] +0.4_94.1=[[0], [0], [4], [94], [1]] +0.4_95=[[0], [0], [4], [95]] +0.4a1=[[0], [0], [4, 'a', 1]] +0.4a2=[[0], [0], [4, 'a', 2]] +0.4b2=[[0], [0], [4, 'b', 2]] +0.4rc1=[[0], [0], [4, 'rc', 1]] +0.5=[[0], [0], [5]] +0.5.0=[[0], [0], [5], [0]] +0.5.0.0=[[0], [0], [5], [0], [0]] +0.5.0.1=[[0], [0], [5], [0], [1]] +0.5.0.2=[[0], [0], [5], [0], [2]] +0.5.0.5=[[0], [0], [5], [0], [5]] +0.5.0.post0=[[0], [0], [5], [0], [0, inf, 0]] +0.5.0.post1=[[0], [0], [5], [0], [0, inf, 1]] +0.5.0.pre=[[0], [0], [5], [0], [0, 'pre']] +0.5.0a=[[0], [0], [5], [0, 'a']] +0.5.0b3=[[0], [0], [5], [0, 'b', 3]] +0.5.0rc0=[[0], [0], [5], [0, 'rc', 0]] +0.5.0rc1=[[0], [0], [5], [0, 'rc', 1]] +0.5.0rc2=[[0], [0], [5], [0, 'rc', 2]] +0.5.1=[[0], [0], [5], [1]] +0.5.1.0=[[0], [0], [5], [1], [0]] +0.5.1.1=[[0], [0], [5], [1], [1]] +0.5.1.post0=[[0], [0], [5], [1], [0, inf, 0]] +0.5.1.post1=[[0], [0], [5], [1], [0, inf, 1]] +0.5.10=[[0], [0], [5], [10]] +0.5.10.1=[[0], [0], [5], [10], [1]] +0.5.10.2=[[0], [0], [5], [10], [2]] +0.5.10.3=[[0], [0], [5], [10], [3]] +0.5.10.4=[[0], [0], [5], [10], [4]] +0.5.10.5=[[0], [0], [5], [10], [5]] +0.5.10.6=[[0], [0], [5], [10], [6]] +0.5.10.7=[[0], [0], [5], [10], [7]] +0.5.11=[[0], [0], [5], [11]] +0.5.12=[[0], [0], [5], [12]] +0.5.12.1=[[0], [0], [5], [12], [1]] +0.5.13=[[0], [0], [5], [13]] +0.5.1360=[[0], [0], [5], [1360]] +0.5.14=[[0], [0], [5], [14]] +0.5.1447=[[0], [0], [5], [1447]] +0.5.15=[[0], [0], [5], [15]] +0.5.16=[[0], [0], [5], [16]] +0.5.17=[[0], [0], [5], [17]] +0.5.18=[[0], [0], [5], [18]] +0.5.19=[[0], [0], [5], [19]] +0.5.19_1=[[0], [0], [5], [19], [1]] +0.5.19b0=[[0], [0], [5], [19, 'b', 0]] +0.5.1_2=[[0], [0], [5], [1], [2]] +0.5.1dev=[[0], [0], [5], [1, 'DEV']] +0.5.2=[[0], [0], [5], [2]] +0.5.2.1=[[0], [0], [5], [2], [1]] +0.5.2.dev1=[[0], [0], [5], [2], [0, 'DEV', 1]] +0.5.2.post0=[[0], [0], [5], [2], [0, inf, 0]] +0.5.2.post1=[[0], [0], [5], [2], [0, inf, 1]] +0.5.20=[[0], [0], [5], [20]] +0.5.20140801=[[0], [0], [5], [20140801]] +0.5.20191212=[[0], [0], [5], [20191212]] +0.5.20200222=[[0], [0], [5], [20200222]] +0.5.21=[[0], [0], [5], [21]] +0.5.21.1=[[0], [0], [5], [21], [1]] +0.5.21.3=[[0], [0], [5], [21], [3]] +0.5.22=[[0], [0], [5], [22]] +0.5.23=[[0], [0], [5], [23]] +0.5.23.1=[[0], [0], [5], [23], [1]] +0.5.24=[[0], [0], [5], [24]] +0.5.24.1=[[0], [0], [5], [24], [1]] +0.5.24.4=[[0], [0], [5], [24], [4]] +0.5.25=[[0], [0], [5], [25]] +0.5.26=[[0], [0], [5], [26]] +0.5.27=[[0], [0], [5], [27]] +0.5.28=[[0], [0], [5], [28]] +0.5.28.1=[[0], [0], [5], [28], [1]] +0.5.29=[[0], [0], [5], [29]] +0.5.29.1=[[0], [0], [5], [29], [1]] +0.5.29.2=[[0], [0], [5], [29], [2]] +0.5.29.3=[[0], [0], [5], [29], [3]] +0.5.29.4=[[0], [0], [5], [29], [4]] +0.5.29.5=[[0], [0], [5], [29], [5]] +0.5.2b=[[0], [0], [5], [2, 'b']] +0.5.3=[[0], [0], [5], [3]] +0.5.3+git20220429=[[0], [0], [5], [3]] +0.5.3.2=[[0], [0], [5], [3], [2]] +0.5.3.post1=[[0], [0], [5], [3], [0, inf, 1]] +0.5.3.post2=[[0], [0], [5], [3], [0, inf, 2]] +0.5.30=[[0], [0], [5], [30]] +0.5.31=[[0], [0], [5], [31]] +0.5.32=[[0], [0], [5], [32]] +0.5.32.1=[[0], [0], [5], [32], [1]] +0.5.32.2=[[0], [0], [5], [32], [2]] +0.5.32.3=[[0], [0], [5], [32], [3]] +0.5.32.4=[[0], [0], [5], [32], [4]] +0.5.32.5=[[0], [0], [5], [32], [5]] +0.5.32.7=[[0], [0], [5], [32], [7]] +0.5.32.8=[[0], [0], [5], [32], [8]] +0.5.33=[[0], [0], [5], [33]] +0.5.34=[[0], [0], [5], [34]] +0.5.35=[[0], [0], [5], [35]] +0.5.36=[[0], [0], [5], [36]] +0.5.37=[[0], [0], [5], [37]] +0.5.38=[[0], [0], [5], [38]] +0.5.39=[[0], [0], [5], [39]] +0.5.3dev=[[0], [0], [5], [3, 'DEV']] +0.5.4=[[0], [0], [5], [4]] +0.5.4.1=[[0], [0], [5], [4], [1]] +0.5.4.post1=[[0], [0], [5], [4], [0, inf, 1]] +0.5.40=[[0], [0], [5], [40]] +0.5.41=[[0], [0], [5], [41]] +0.5.42=[[0], [0], [5], [42]] +0.5.43=[[0], [0], [5], [43]] +0.5.44=[[0], [0], [5], [44]] +0.5.45=[[0], [0], [5], [45]] +0.5.46=[[0], [0], [5], [46]] +0.5.47=[[0], [0], [5], [47]] +0.5.48=[[0], [0], [5], [48]] +0.5.49=[[0], [0], [5], [49]] +0.5.5=[[0], [0], [5], [5]] +0.5.5.2=[[0], [0], [5], [5], [2]] +0.5.50=[[0], [0], [5], [50]] +0.5.51=[[0], [0], [5], [51]] +0.5.52=[[0], [0], [5], [52]] +0.5.53=[[0], [0], [5], [53]] +0.5.54=[[0], [0], [5], [54]] +0.5.56=[[0], [0], [5], [56]] +0.5.57=[[0], [0], [5], [57]] +0.5.6=[[0], [0], [5], [6]] +0.5.6.1=[[0], [0], [5], [6], [1]] +0.5.61=[[0], [0], [5], [61]] +0.5.62=[[0], [0], [5], [62]] +0.5.7=[[0], [0], [5], [7]] +0.5.8=[[0], [0], [5], [8]] +0.5.9=[[0], [0], [5], [9]] +0.5.9.1=[[0], [0], [5], [9], [1]] +0.5.9.2=[[0], [0], [5], [9], [2]] +0.5.9.4=[[0], [0], [5], [9], [4]] +0.5.9.5=[[0], [0], [5], [9], [5]] +0.5.p0=[[0], [0], [5], [0, 'p', 0]] +0.5.post1=[[0], [0], [5], [0, inf, 1]] +0.50=[[0], [0], [50]] +0.50.0=[[0], [0], [50], [0]] +0.50.1=[[0], [0], [50], [1]] +0.50.10=[[0], [0], [50], [10]] +0.50.11=[[0], [0], [50], [11]] +0.50.12=[[0], [0], [50], [12]] +0.50.13=[[0], [0], [50], [13]] +0.50.14=[[0], [0], [50], [14]] +0.50.16=[[0], [0], [50], [16]] +0.50.17=[[0], [0], [50], [17]] +0.50.2=[[0], [0], [50], [2]] +0.50.20=[[0], [0], [50], [20]] +0.50.21=[[0], [0], [50], [21]] +0.50.22=[[0], [0], [50], [22]] +0.50.23=[[0], [0], [50], [23]] +0.50.3=[[0], [0], [50], [3]] +0.50.4=[[0], [0], [50], [4]] +0.50.5=[[0], [0], [50], [5]] +0.50.6=[[0], [0], [50], [6]] +0.50.7=[[0], [0], [50], [7]] +0.50.8=[[0], [0], [50], [8]] +0.500=[[0], [0], [500]] +0.5001=[[0], [0], [5001]] +0.501=[[0], [0], [501]] +0.50_1=[[0], [0], [50], [1]] +0.51=[[0], [0], [51]] +0.51.0=[[0], [0], [51], [0]] +0.51.1=[[0], [0], [51], [1]] +0.51.2=[[0], [0], [51], [2]] +0.51.4=[[0], [0], [51], [4]] +0.51.5=[[0], [0], [51], [5]] +0.51_1=[[0], [0], [51], [1]] +0.51_2=[[0], [0], [51], [2]] +0.51_3=[[0], [0], [51], [3]] +0.52=[[0], [0], [52]] +0.52.0=[[0], [0], [52], [0]] +0.52.1=[[0], [0], [52], [1]] +0.52.2=[[0], [0], [52], [2]] +0.52.20=[[0], [0], [52], [20]] +0.52.21=[[0], [0], [52], [21]] +0.52.23=[[0], [0], [52], [23]] +0.52.9=[[0], [0], [52], [9]] +0.53=[[0], [0], [53]] +0.53.0=[[0], [0], [53], [0]] +0.53.1=[[0], [0], [53], [1]] +0.53.2=[[0], [0], [53], [2]] +0.53.3=[[0], [0], [53], [3]] +0.54=[[0], [0], [54]] +0.54.0=[[0], [0], [54], [0]] +0.54.1=[[0], [0], [54], [1]] +0.54.2=[[0], [0], [54], [2]] +0.54.3=[[0], [0], [54], [3]] +0.55=[[0], [0], [55]] +0.55.0=[[0], [0], [55], [0]] +0.55.1=[[0], [0], [55], [1]] +0.55.2=[[0], [0], [55], [2]] +0.55.3=[[0], [0], [55], [3]] +0.55.4=[[0], [0], [55], [4]] +0.550=[[0], [0], [550]] +0.56=[[0], [0], [56]] +0.56.0=[[0], [0], [56], [0]] +0.56.1=[[0], [0], [56], [1]] +0.56.2=[[0], [0], [56], [2]] +0.56.3=[[0], [0], [56], [3]] +0.56.4=[[0], [0], [56], [4]] +0.560=[[0], [0], [560]] +0.57=[[0], [0], [57]] +0.57.0=[[0], [0], [57], [0]] +0.57.1=[[0], [0], [57], [1]] +0.57.2=[[0], [0], [57], [2]] +0.57.3=[[0], [0], [57], [3]] +0.570=[[0], [0], [570]] +0.58=[[0], [0], [58]] +0.58.0=[[0], [0], [58], [0]] +0.58.1=[[0], [0], [58], [1]] +0.58.2=[[0], [0], [58], [2]] +0.58.3=[[0], [0], [58], [3]] +0.58.4=[[0], [0], [58], [4]] +0.58.5=[[0], [0], [58], [5]] +0.59=[[0], [0], [59]] +0.59.0=[[0], [0], [59], [0]] +0.59.0b0=[[0], [0], [59], [0, 'b', 0]] +0.59.1=[[0], [0], [59], [1]] +0.59.2=[[0], [0], [59], [2]] +0.59.3=[[0], [0], [59], [3]] +0.59.4=[[0], [0], [59], [4]] +0.59.7=[[0], [0], [59], [7]] +0.59.8=[[0], [0], [59], [8]] +0.590=[[0], [0], [590]] +0.5_0=[[0], [0], [5], [0]] +0.5_0.0=[[0], [0], [5], [0], [0]] +0.5_0.1=[[0], [0], [5], [0], [1]] +0.5_0.2=[[0], [0], [5], [0], [2]] +0.5_1=[[0], [0], [5], [1]] +0.5_10=[[0], [0], [5], [10]] +0.5_10.1=[[0], [0], [5], [10], [1]] +0.5_11=[[0], [0], [5], [11]] +0.5_13.1=[[0], [0], [5], [13], [1]] +0.5_13.2=[[0], [0], [5], [13], [2]] +0.5_13.4=[[0], [0], [5], [13], [4]] +0.5_13.5=[[0], [0], [5], [13], [5]] +0.5_13.6=[[0], [0], [5], [13], [6]] +0.5_14=[[0], [0], [5], [14]] +0.5_2=[[0], [0], [5], [2]] +0.5_2.1=[[0], [0], [5], [2], [1]] +0.5_23.1097=[[0], [0], [5], [23], [1097]] +0.5_3=[[0], [0], [5], [3]] +0.5_3.0=[[0], [0], [5], [3], [0]] +0.5_4=[[0], [0], [5], [4]] +0.5_4.1=[[0], [0], [5], [4], [1]] +0.5_4.2=[[0], [0], [5], [4], [2]] +0.5_4.3=[[0], [0], [5], [4], [3]] +0.5_4.4=[[0], [0], [5], [4], [4]] +0.5_5=[[0], [0], [5], [5]] +0.5_6=[[0], [0], [5], [6]] +0.5_7=[[0], [0], [5], [7]] +0.5_8=[[0], [0], [5], [8]] +0.5_9=[[0], [0], [5], [9]] +0.5rc1=[[0], [0], [5, 'rc', 1]] +0.6=[[0], [0], [6]] +0.6.0=[[0], [0], [6], [0]] +0.6.0.0=[[0], [0], [6], [0], [0]] +0.6.0.1=[[0], [0], [6], [0], [1]] +0.6.0.2=[[0], [0], [6], [0], [2]] +0.6.0.3=[[0], [0], [6], [0], [3]] +0.6.0.4=[[0], [0], [6], [0], [4]] +0.6.0.5=[[0], [0], [6], [0], [5]] +0.6.0.6=[[0], [0], [6], [0], [6]] +0.6.0.7=[[0], [0], [6], [0], [7]] +0.6.0.8=[[0], [0], [6], [0], [8]] +0.6.0.post0=[[0], [0], [6], [0], [0, inf, 0]] +0.6.0.post1=[[0], [0], [6], [0], [0, inf, 1]] +0.6.0.post2=[[0], [0], [6], [0], [0, inf, 2]] +0.6.0.post20220126=[[0], [0], [6], [0], [0, inf, 20220126]] +0.6.0.post3=[[0], [0], [6], [0], [0, inf, 3]] +0.6.0.post4=[[0], [0], [6], [0], [0, inf, 4]] +0.6.0a=[[0], [0], [6], [0, 'a']] +0.6.0a1=[[0], [0], [6], [0, 'a', 1]] +0.6.0a4=[[0], [0], [6], [0, 'a', 4]] +0.6.0a6=[[0], [0], [6], [0, 'a', 6]] +0.6.0a8=[[0], [0], [6], [0, 'a', 8]] +0.6.0b3=[[0], [0], [6], [0, 'b', 3]] +0.6.0rc0=[[0], [0], [6], [0, 'rc', 0]] +0.6.0rc1=[[0], [0], [6], [0, 'rc', 1]] +0.6.1=[[0], [0], [6], [1]] +0.6.1.0=[[0], [0], [6], [1], [0]] +0.6.1.1=[[0], [0], [6], [1], [1]] +0.6.1.1.3=[[0], [0], [6], [1], [1], [3]] +0.6.1.2=[[0], [0], [6], [1], [2]] +0.6.1.3=[[0], [0], [6], [1], [3]] +0.6.10=[[0], [0], [6], [10]] +0.6.10.0=[[0], [0], [6], [10], [0]] +0.6.10.1=[[0], [0], [6], [10], [1]] +0.6.10.2=[[0], [0], [6], [10], [2]] +0.6.10.3=[[0], [0], [6], [10], [3]] +0.6.10.4=[[0], [0], [6], [10], [4]] +0.6.10.5=[[0], [0], [6], [10], [5]] +0.6.11=[[0], [0], [6], [11]] +0.6.11.1=[[0], [0], [6], [11], [1]] +0.6.11.2=[[0], [0], [6], [11], [2]] +0.6.11.3=[[0], [0], [6], [11], [3]] +0.6.11.4=[[0], [0], [6], [11], [4]] +0.6.11.5=[[0], [0], [6], [11], [5]] +0.6.11.6=[[0], [0], [6], [11], [6]] +0.6.12=[[0], [0], [6], [12]] +0.6.12.0=[[0], [0], [6], [12], [0]] +0.6.12.1=[[0], [0], [6], [12], [1]] +0.6.12.2=[[0], [0], [6], [12], [2]] +0.6.12.3=[[0], [0], [6], [12], [3]] +0.6.12.4=[[0], [0], [6], [12], [4]] +0.6.13=[[0], [0], [6], [13]] +0.6.13.0=[[0], [0], [6], [13], [0]] +0.6.13.1=[[0], [0], [6], [13], [1]] +0.6.13.2=[[0], [0], [6], [13], [2]] +0.6.13.3=[[0], [0], [6], [13], [3]] +0.6.14=[[0], [0], [6], [14]] +0.6.14.1=[[0], [0], [6], [14], [1]] +0.6.14.2=[[0], [0], [6], [14], [2]] +0.6.14.4=[[0], [0], [6], [14], [4]] +0.6.14.6=[[0], [0], [6], [14], [6]] +0.6.14.7=[[0], [0], [6], [14], [7]] +0.6.14a1=[[0], [0], [6], [14, 'a', 1]] +0.6.15=[[0], [0], [6], [15]] +0.6.15.1=[[0], [0], [6], [15], [1]] +0.6.15.3=[[0], [0], [6], [15], [3]] +0.6.16=[[0], [0], [6], [16]] +0.6.16.1=[[0], [0], [6], [16], [1]] +0.6.16.2=[[0], [0], [6], [16], [2]] +0.6.16.3=[[0], [0], [6], [16], [3]] +0.6.16.4=[[0], [0], [6], [16], [4]] +0.6.17=[[0], [0], [6], [17]] +0.6.17.3=[[0], [0], [6], [17], [3]] +0.6.17.4=[[0], [0], [6], [17], [4]] +0.6.17.6=[[0], [0], [6], [17], [6]] +0.6.17.7=[[0], [0], [6], [17], [7]] +0.6.18=[[0], [0], [6], [18]] +0.6.18.1=[[0], [0], [6], [18], [1]] +0.6.18.2=[[0], [0], [6], [18], [2]] +0.6.18.6=[[0], [0], [6], [18], [6]] +0.6.19=[[0], [0], [6], [19]] +0.6.19.1=[[0], [0], [6], [19], [1]] +0.6.19.3=[[0], [0], [6], [19], [3]] +0.6.19.4=[[0], [0], [6], [19], [4]] +0.6.19.5=[[0], [0], [6], [19], [5]] +0.6.19.6=[[0], [0], [6], [19], [6]] +0.6.19.7=[[0], [0], [6], [19], [7]] +0.6.1a=[[0], [0], [6], [1, 'a']] +0.6.1a1=[[0], [0], [6], [1, 'a', 1]] +0.6.1rc0=[[0], [0], [6], [1, 'rc', 0]] +0.6.1rc1=[[0], [0], [6], [1, 'rc', 1]] +0.6.2=[[0], [0], [6], [2]] +0.6.2.1=[[0], [0], [6], [2], [1]] +0.6.2.1.0=[[0], [0], [6], [2], [1], [0]] +0.6.2.1.1=[[0], [0], [6], [2], [1], [1]] +0.6.2.1.2=[[0], [0], [6], [2], [1], [2]] +0.6.2.1.3=[[0], [0], [6], [2], [1], [3]] +0.6.2.2=[[0], [0], [6], [2], [2]] +0.6.2.3=[[0], [0], [6], [2], [3]] +0.6.2.5=[[0], [0], [6], [2], [5]] +0.6.2.post0=[[0], [0], [6], [2], [0, inf, 0]] +0.6.20=[[0], [0], [6], [20]] +0.6.21=[[0], [0], [6], [21]] +0.6.22=[[0], [0], [6], [22]] +0.6.22.post1=[[0], [0], [6], [22], [0, inf, 1]] +0.6.23=[[0], [0], [6], [23]] +0.6.24=[[0], [0], [6], [24]] +0.6.25=[[0], [0], [6], [25]] +0.6.26=[[0], [0], [6], [26]] +0.6.27=[[0], [0], [6], [27]] +0.6.28=[[0], [0], [6], [28]] +0.6.29=[[0], [0], [6], [29]] +0.6.2a=[[0], [0], [6], [2, 'a']] +0.6.3=[[0], [0], [6], [3]] +0.6.3.1=[[0], [0], [6], [3], [1]] +0.6.3.1.0=[[0], [0], [6], [3], [1], [0]] +0.6.3.1.1=[[0], [0], [6], [3], [1], [1]] +0.6.30=[[0], [0], [6], [30]] +0.6.31=[[0], [0], [6], [31]] +0.6.32=[[0], [0], [6], [32]] +0.6.33=[[0], [0], [6], [33]] +0.6.34=[[0], [0], [6], [34]] +0.6.35=[[0], [0], [6], [35]] +0.6.36=[[0], [0], [6], [36]] +0.6.37=[[0], [0], [6], [37]] +0.6.38=[[0], [0], [6], [38]] +0.6.39=[[0], [0], [6], [39]] +0.6.3a=[[0], [0], [6], [3, 'a']] +0.6.4=[[0], [0], [6], [4]] +0.6.4.1=[[0], [0], [6], [4], [1]] +0.6.4.2=[[0], [0], [6], [4], [2]] +0.6.40=[[0], [0], [6], [40]] +0.6.42=[[0], [0], [6], [42]] +0.6.43=[[0], [0], [6], [43]] +0.6.44=[[0], [0], [6], [44]] +0.6.45=[[0], [0], [6], [45]] +0.6.46=[[0], [0], [6], [46]] +0.6.47=[[0], [0], [6], [47]] +0.6.48=[[0], [0], [6], [48]] +0.6.49=[[0], [0], [6], [49]] +0.6.4b1=[[0], [0], [6], [4, 'b', 1]] +0.6.4b2=[[0], [0], [6], [4, 'b', 2]] +0.6.5=[[0], [0], [6], [5]] +0.6.50=[[0], [0], [6], [50]] +0.6.51=[[0], [0], [6], [51]] +0.6.52=[[0], [0], [6], [52]] +0.6.53=[[0], [0], [6], [53]] +0.6.54=[[0], [0], [6], [54]] +0.6.55=[[0], [0], [6], [55]] +0.6.56=[[0], [0], [6], [56]] +0.6.57=[[0], [0], [6], [57]] +0.6.58=[[0], [0], [6], [58]] +0.6.59=[[0], [0], [6], [59]] +0.6.5a0=[[0], [0], [6], [5, 'a', 0]] +0.6.5a1=[[0], [0], [6], [5, 'a', 1]] +0.6.5a2=[[0], [0], [6], [5, 'a', 2]] +0.6.5a3=[[0], [0], [6], [5, 'a', 3]] +0.6.5a4=[[0], [0], [6], [5, 'a', 4]] +0.6.6=[[0], [0], [6], [6]] +0.6.6.a0=[[0], [0], [6], [6], [0, 'a', 0]] +0.6.6.post1=[[0], [0], [6], [6], [0, inf, 1]] +0.6.61=[[0], [0], [6], [61]] +0.6.64=[[0], [0], [6], [64]] +0.6.7=[[0], [0], [6], [7]] +0.6.7.2=[[0], [0], [6], [7], [2]] +0.6.7.post0=[[0], [0], [6], [7], [0, inf, 0]] +0.6.7.post2=[[0], [0], [6], [7], [0, inf, 2]] +0.6.70=[[0], [0], [6], [70]] +0.6.71=[[0], [0], [6], [71]] +0.6.72=[[0], [0], [6], [72]] +0.6.73=[[0], [0], [6], [73]] +0.6.74=[[0], [0], [6], [74]] +0.6.75=[[0], [0], [6], [75]] +0.6.76=[[0], [0], [6], [76]] +0.6.77=[[0], [0], [6], [77]] +0.6.78=[[0], [0], [6], [78]] +0.6.79=[[0], [0], [6], [79]] +0.6.7_1=[[0], [0], [6], [7], [1]] +0.6.8=[[0], [0], [6], [8]] +0.6.8.1=[[0], [0], [6], [8], [1]] +0.6.8.2=[[0], [0], [6], [8], [2]] +0.6.8.3=[[0], [0], [6], [8], [3]] +0.6.8.4=[[0], [0], [6], [8], [4]] +0.6.80=[[0], [0], [6], [80]] +0.6.9=[[0], [0], [6], [9]] +0.6.9.0=[[0], [0], [6], [9], [0]] +0.6.9.1=[[0], [0], [6], [9], [1]] +0.6.9.12=[[0], [0], [6], [9], [12]] +0.6.9.14=[[0], [0], [6], [9], [14]] +0.6.9.16=[[0], [0], [6], [9], [16]] +0.6.9.2=[[0], [0], [6], [9], [2]] +0.6.9.3=[[0], [0], [6], [9], [3]] +0.6.9.4=[[0], [0], [6], [9], [4]] +0.6.9.6=[[0], [0], [6], [9], [6]] +0.6.94=[[0], [0], [6], [94]] +0.6.pre=[[0], [0], [6], [0, 'pre']] +0.60=[[0], [0], [60]] +0.60.0=[[0], [0], [60], [0]] +0.60.0b0=[[0], [0], [60], [0, 'b', 0]] +0.60.1=[[0], [0], [60], [1]] +0.60.1b0=[[0], [0], [60], [1, 'b', 0]] +0.60.2=[[0], [0], [60], [2]] +0.60.3=[[0], [0], [60], [3]] +0.60.4=[[0], [0], [60], [4]] +0.60.6=[[0], [0], [60], [6]] +0.60.7=[[0], [0], [60], [7]] +0.60.8=[[0], [0], [60], [8]] +0.600=[[0], [0], [600]] +0.60_10=[[0], [0], [60], [10]] +0.60_11=[[0], [0], [60], [11]] +0.60_13=[[0], [0], [60], [13]] +0.60_14=[[0], [0], [60], [14]] +0.60_15=[[0], [0], [60], [15]] +0.60_16=[[0], [0], [60], [16]] +0.60_17=[[0], [0], [60], [17]] +0.61=[[0], [0], [61]] +0.61.0=[[0], [0], [61], [0]] +0.61.0b0=[[0], [0], [61], [0, 'b', 0]] +0.61.1=[[0], [0], [61], [1]] +0.61.1b0=[[0], [0], [61], [1, 'b', 0]] +0.61.2=[[0], [0], [61], [2]] +0.61.3=[[0], [0], [61], [3]] +0.61.4=[[0], [0], [61], [4]] +0.61.5=[[0], [0], [61], [5]] +0.610=[[0], [0], [610]] +0.62=[[0], [0], [62]] +0.62.0=[[0], [0], [62], [0]] +0.62.0b0=[[0], [0], [62], [0, 'b', 0]] +0.62.1=[[0], [0], [62], [1]] +0.62.1b0=[[0], [0], [62], [1, 'b', 0]] +0.62.2=[[0], [0], [62], [2]] +0.620=[[0], [0], [620]] +0.625=[[0], [0], [625]] +0.63=[[0], [0], [63]] +0.63.0=[[0], [0], [63], [0]] +0.63.0b0=[[0], [0], [63], [0, 'b', 0]] +0.63.1=[[0], [0], [63], [1]] +0.63.2=[[0], [0], [63], [2]] +0.63.3=[[0], [0], [63], [3]] +0.63.4=[[0], [0], [63], [4]] +0.630=[[0], [0], [630]] +0.64=[[0], [0], [64]] +0.64.0=[[0], [0], [64], [0]] +0.64.0b0=[[0], [0], [64], [0, 'b', 0]] +0.64.1=[[0], [0], [64], [1]] +0.64.2=[[0], [0], [64], [2]] +0.641=[[0], [0], [641]] +0.65=[[0], [0], [65]] +0.65.0=[[0], [0], [65], [0]] +0.65.0b0=[[0], [0], [65], [0, 'b', 0]] +0.65.1=[[0], [0], [65], [1]] +0.65.2=[[0], [0], [65], [2]] +0.65.3=[[0], [0], [65], [3]] +0.650=[[0], [0], [650]] +0.66=[[0], [0], [66]] +0.66.0=[[0], [0], [66], [0]] +0.66.0b0=[[0], [0], [66], [0, 'b', 0]] +0.66.1=[[0], [0], [66], [1]] +0.66.10=[[0], [0], [66], [10]] +0.66.11=[[0], [0], [66], [11]] +0.66.1b0=[[0], [0], [66], [1, 'b', 0]] +0.66.2=[[0], [0], [66], [2]] +0.66.3=[[0], [0], [66], [3]] +0.66.4=[[0], [0], [66], [4]] +0.66.5=[[0], [0], [66], [5]] +0.66.6=[[0], [0], [66], [6]] +0.66.7=[[0], [0], [66], [7]] +0.66.8=[[0], [0], [66], [8]] +0.66.9=[[0], [0], [66], [9]] +0.660=[[0], [0], [660]] +0.67=[[0], [0], [67]] +0.67.0=[[0], [0], [67], [0]] +0.67.0b0=[[0], [0], [67], [0, 'b', 0]] +0.67.1=[[0], [0], [67], [1]] +0.67.2b0=[[0], [0], [67], [2, 'b', 0]] +0.670=[[0], [0], [670]] +0.68=[[0], [0], [68]] +0.68.0=[[0], [0], [68], [0]] +0.68.1=[[0], [0], [68], [1]] +0.68.2=[[0], [0], [68], [2]] +0.69=[[0], [0], [69]] +0.69.0=[[0], [0], [69], [0]] +0.69.1=[[0], [0], [69], [1]] +0.69.6=[[0], [0], [69], [6]] +0.69.8=[[0], [0], [69], [8]] +0.6_0=[[0], [0], [6], [0]] +0.6_1=[[0], [0], [6], [1]] +0.6_10=[[0], [0], [6], [10]] +0.6_11=[[0], [0], [6], [11]] +0.6_12=[[0], [0], [6], [12]] +0.6_13=[[0], [0], [6], [13]] +0.6_14=[[0], [0], [6], [14]] +0.6_15=[[0], [0], [6], [15]] +0.6_2=[[0], [0], [6], [2]] +0.6_2.1=[[0], [0], [6], [2], [1]] +0.6_2.2=[[0], [0], [6], [2], [2]] +0.6_2.3=[[0], [0], [6], [2], [3]] +0.6_22=[[0], [0], [6], [22]] +0.6_26=[[0], [0], [6], [26]] +0.6_28=[[0], [0], [6], [28]] +0.6_29=[[0], [0], [6], [29]] +0.6_3=[[0], [0], [6], [3]] +0.6_3.3=[[0], [0], [6], [3], [3]] +0.6_3.4=[[0], [0], [6], [3], [4]] +0.6_30=[[0], [0], [6], [30]] +0.6_4=[[0], [0], [6], [4]] +0.6_5=[[0], [0], [6], [5]] +0.6_6=[[0], [0], [6], [6]] +0.6_7=[[0], [0], [6], [7]] +0.6_70=[[0], [0], [6], [70]] +0.6_8=[[0], [0], [6], [8]] +0.6_9=[[0], [0], [6], [9]] +0.6_9.1=[[0], [0], [6], [9], [1]] +0.6_9.2=[[0], [0], [6], [9], [2]] +0.6_99=[[0], [0], [6], [99]] +0.6a2=[[0], [0], [6, 'a', 2]] +0.6rc1=[[0], [0], [6, 'rc', 1]] +0.7=[[0], [0], [7]] +0.7.0=[[0], [0], [7], [0]] +0.7.0.0=[[0], [0], [7], [0], [0]] +0.7.0.5=[[0], [0], [7], [0], [5]] +0.7.0.7=[[0], [0], [7], [0], [7]] +0.7.0.post4=[[0], [0], [7], [0], [0, inf, 4]] +0.7.0.pre=[[0], [0], [7], [0], [0, 'pre']] +0.7.0a=[[0], [0], [7], [0, 'a']] +0.7.0a4=[[0], [0], [7], [0, 'a', 4]] +0.7.0a5=[[0], [0], [7], [0, 'a', 5]] +0.7.0a6=[[0], [0], [7], [0, 'a', 6]] +0.7.0b0=[[0], [0], [7], [0, 'b', 0]] +0.7.0rc0=[[0], [0], [7], [0, 'rc', 0]] +0.7.0rc1=[[0], [0], [7], [0, 'rc', 1]] +0.7.1=[[0], [0], [7], [1]] +0.7.1.0=[[0], [0], [7], [1], [0]] +0.7.1.1=[[0], [0], [7], [1], [1]] +0.7.1.post2=[[0], [0], [7], [1], [0, inf, 2]] +0.7.1.post3=[[0], [0], [7], [1], [0, inf, 3]] +0.7.1.post4=[[0], [0], [7], [1], [0, inf, 4]] +0.7.1.post6=[[0], [0], [7], [1], [0, inf, 6]] +0.7.1.post7=[[0], [0], [7], [1], [0, inf, 7]] +0.7.10=[[0], [0], [7], [10]] +0.7.11=[[0], [0], [7], [11]] +0.7.11.post0=[[0], [0], [7], [11], [0, inf, 0]] +0.7.12=[[0], [0], [7], [12]] +0.7.13=[[0], [0], [7], [13]] +0.7.14=[[0], [0], [7], [14]] +0.7.15=[[0], [0], [7], [15]] +0.7.16=[[0], [0], [7], [16]] +0.7.17=[[0], [0], [7], [17]] +0.7.17.dev1=[[0], [0], [7], [17], [0, 'DEV', 1]] +0.7.18=[[0], [0], [7], [18]] +0.7.19=[[0], [0], [7], [19]] +0.7.1_1=[[0], [0], [7], [1], [1]] +0.7.1a=[[0], [0], [7], [1, 'a']] +0.7.2=[[0], [0], [7], [2]] +0.7.2.0=[[0], [0], [7], [2], [0]] +0.7.2.1=[[0], [0], [7], [2], [1]] +0.7.2.2=[[0], [0], [7], [2], [2]] +0.7.20=[[0], [0], [7], [20]] +0.7.20170805=[[0], [0], [7], [20170805]] +0.7.21=[[0], [0], [7], [21]] +0.7.22=[[0], [0], [7], [22]] +0.7.23=[[0], [0], [7], [23]] +0.7.24=[[0], [0], [7], [24]] +0.7.25=[[0], [0], [7], [25]] +0.7.26=[[0], [0], [7], [26]] +0.7.27=[[0], [0], [7], [27]] +0.7.28=[[0], [0], [7], [28]] +0.7.29=[[0], [0], [7], [29]] +0.7.3=[[0], [0], [7], [3]] +0.7.3.1=[[0], [0], [7], [3], [1]] +0.7.3.2=[[0], [0], [7], [3], [2]] +0.7.30=[[0], [0], [7], [30]] +0.7.31=[[0], [0], [7], [31]] +0.7.35=[[0], [0], [7], [35]] +0.7.36=[[0], [0], [7], [36]] +0.7.37=[[0], [0], [7], [37]] +0.7.39=[[0], [0], [7], [39]] +0.7.3b0=[[0], [0], [7], [3, 'b', 0]] +0.7.4=[[0], [0], [7], [4]] +0.7.4.1=[[0], [0], [7], [4], [1]] +0.7.4.2=[[0], [0], [7], [4], [2]] +0.7.4.3=[[0], [0], [7], [4], [3]] +0.7.4.4=[[0], [0], [7], [4], [4]] +0.7.40=[[0], [0], [7], [40]] +0.7.41=[[0], [0], [7], [41]] +0.7.42=[[0], [0], [7], [42]] +0.7.43=[[0], [0], [7], [43]] +0.7.44=[[0], [0], [7], [44]] +0.7.45=[[0], [0], [7], [45]] +0.7.46=[[0], [0], [7], [46]] +0.7.47=[[0], [0], [7], [47]] +0.7.48=[[0], [0], [7], [48]] +0.7.49=[[0], [0], [7], [49]] +0.7.5=[[0], [0], [7], [5]] +0.7.5.2=[[0], [0], [7], [5], [2]] +0.7.5.3=[[0], [0], [7], [5], [3]] +0.7.5.4=[[0], [0], [7], [5], [4]] +0.7.51=[[0], [0], [7], [51]] +0.7.52=[[0], [0], [7], [52]] +0.7.53=[[0], [0], [7], [53]] +0.7.54=[[0], [0], [7], [54]] +0.7.55=[[0], [0], [7], [55]] +0.7.56=[[0], [0], [7], [56]] +0.7.57=[[0], [0], [7], [57]] +0.7.58=[[0], [0], [7], [58]] +0.7.59=[[0], [0], [7], [59]] +0.7.6=[[0], [0], [7], [6]] +0.7.6.1=[[0], [0], [7], [6], [1]] +0.7.60=[[0], [0], [7], [60]] +0.7.61=[[0], [0], [7], [61]] +0.7.63=[[0], [0], [7], [63]] +0.7.64=[[0], [0], [7], [64]] +0.7.66=[[0], [0], [7], [66]] +0.7.7=[[0], [0], [7], [7]] +0.7.7.1=[[0], [0], [7], [7], [1]] +0.7.71=[[0], [0], [7], [71]] +0.7.72=[[0], [0], [7], [72]] +0.7.74=[[0], [0], [7], [74]] +0.7.8=[[0], [0], [7], [8]] +0.7.800.2.0=[[0], [0], [7], [800], [2], [0]] +0.7.9=[[0], [0], [7], [9]] +0.7.90=[[0], [0], [7], [90]] +0.7.post3=[[0], [0], [7], [0, inf, 3]] +0.7.post4=[[0], [0], [7], [0, inf, 4]] +0.70=[[0], [0], [70]] +0.70.0=[[0], [0], [70], [0]] +0.70.1=[[0], [0], [70], [1]] +0.70.10=[[0], [0], [70], [10]] +0.70.11=[[0], [0], [70], [11]] +0.70.11.1=[[0], [0], [70], [11], [1]] +0.70.12.1=[[0], [0], [70], [12], [1]] +0.70.12.2=[[0], [0], [70], [12], [2]] +0.70.13=[[0], [0], [70], [13]] +0.70.14=[[0], [0], [70], [14]] +0.70.2=[[0], [0], [70], [2]] +0.70.3=[[0], [0], [70], [3]] +0.70.4=[[0], [0], [70], [4]] +0.70.5=[[0], [0], [70], [5]] +0.70.6=[[0], [0], [70], [6]] +0.70.6.1=[[0], [0], [70], [6], [1]] +0.70.7=[[0], [0], [70], [7]] +0.70.8=[[0], [0], [70], [8]] +0.70.9=[[0], [0], [70], [9]] +0.700=[[0], [0], [700]] +0.701=[[0], [0], [701]] +0.71=[[0], [0], [71]] +0.71.0=[[0], [0], [71], [0]] +0.71.1=[[0], [0], [71], [1]] +0.710=[[0], [0], [710]] +0.711=[[0], [0], [711]] +0.72=[[0], [0], [72]] +0.72.0=[[0], [0], [72], [0]] +0.72.1=[[0], [0], [72], [1]] +0.72.10=[[0], [0], [72], [10]] +0.72.2=[[0], [0], [72], [2]] +0.72.3=[[0], [0], [72], [3]] +0.72.4=[[0], [0], [72], [4]] +0.72.5=[[0], [0], [72], [5]] +0.72.6=[[0], [0], [72], [6]] +0.72.7=[[0], [0], [72], [7]] +0.72.8=[[0], [0], [72], [8]] +0.720=[[0], [0], [720]] +0.722=[[0], [0], [722]] +0.73=[[0], [0], [73]] +0.73.0=[[0], [0], [73], [0]] +0.73.0.debian_1.sage_2016_08_02=[[0], [0], [73], [0], [0, 'debian'], [1], [0, 'sage'], [2016], [8], [2]] +0.73.1=[[0], [0], [73], [1]] +0.73.2=[[0], [0], [73], [2]] +0.73.3=[[0], [0], [73], [3]] +0.73.4=[[0], [0], [73], [4]] +0.73.debian_1.sage_2016_08_02=[[0], [0], [73], [0, 'debian'], [1], [0, 'sage'], [2016], [8], [2]] +0.730=[[0], [0], [730]] +0.74=[[0], [0], [74]] +0.74.0=[[0], [0], [74], [0]] +0.74.1=[[0], [0], [74], [1]] +0.74.10=[[0], [0], [74], [10]] +0.74.11=[[0], [0], [74], [11]] +0.74.2=[[0], [0], [74], [2]] +0.74.3=[[0], [0], [74], [3]] +0.74.4=[[0], [0], [74], [4]] +0.74.5=[[0], [0], [74], [5]] +0.74.6=[[0], [0], [74], [6]] +0.74.7=[[0], [0], [74], [7]] +0.74.8=[[0], [0], [74], [8]] +0.74.9=[[0], [0], [74], [9]] +0.740=[[0], [0], [740]] +0.75=[[0], [0], [75]] +0.75.0=[[0], [0], [75], [0]] +0.75.1=[[0], [0], [75], [1]] +0.75.2=[[0], [0], [75], [2]] +0.75.3=[[0], [0], [75], [3]] +0.750=[[0], [0], [750]] +0.75_7=[[0], [0], [75], [7]] +0.76=[[0], [0], [76]] +0.76.0=[[0], [0], [76], [0]] +0.76.1=[[0], [0], [76], [1]] +0.761=[[0], [0], [761]] +0.76_0=[[0], [0], [76], [0]] +0.77=[[0], [0], [77]] +0.77.0=[[0], [0], [77], [0]] +0.77.1=[[0], [0], [77], [1]] +0.77.2=[[0], [0], [77], [2]] +0.77.3=[[0], [0], [77], [3]] +0.770=[[0], [0], [770]] +0.78=[[0], [0], [78]] +0.78.0=[[0], [0], [78], [0]] +0.78.1=[[0], [0], [78], [1]] +0.78.5=[[0], [0], [78], [5]] +0.780=[[0], [0], [780]] +0.7807=[[0], [0], [7807]] +0.781=[[0], [0], [781]] +0.7811=[[0], [0], [7811]] +0.782=[[0], [0], [782]] +0.79=[[0], [0], [79]] +0.79.0=[[0], [0], [79], [0]] +0.79.1=[[0], [0], [79], [1]] +0.790=[[0], [0], [790]] +0.7905=[[0], [0], [7905]] +0.7_0=[[0], [0], [7], [0]] +0.7_1=[[0], [0], [7], [1]] +0.7_10=[[0], [0], [7], [10]] +0.7_103=[[0], [0], [7], [103]] +0.7_11=[[0], [0], [7], [11]] +0.7_12=[[0], [0], [7], [12]] +0.7_2=[[0], [0], [7], [2]] +0.7_25=[[0], [0], [7], [25]] +0.7_3=[[0], [0], [7], [3]] +0.7_4=[[0], [0], [7], [4]] +0.7_47=[[0], [0], [7], [47]] +0.7_5=[[0], [0], [7], [5]] +0.7_6=[[0], [0], [7], [6]] +0.7_7=[[0], [0], [7], [7]] +0.7_70=[[0], [0], [7], [70]] +0.7_8=[[0], [0], [7], [8]] +0.7_80=[[0], [0], [7], [80]] +0.7_9=[[0], [0], [7], [9]] +0.7_90=[[0], [0], [7], [90]] +0.7dev=[[0], [0], [7, 'DEV']] +0.7rc1=[[0], [0], [7, 'rc', 1]] +0.8=[[0], [0], [8]] +0.8.0=[[0], [0], [8], [0]] +0.8.0.0=[[0], [0], [8], [0], [0]] +0.8.0.1=[[0], [0], [8], [0], [1]] +0.8.0.3=[[0], [0], [8], [0], [3]] +0.8.03=[[0], [0], [8], [3]] +0.8.0a=[[0], [0], [8], [0, 'a']] +0.8.0a2=[[0], [0], [8], [0, 'a', 2]] +0.8.0b4=[[0], [0], [8], [0, 'b', 4]] +0.8.0dev=[[0], [0], [8], [0, 'DEV']] +0.8.0rc=[[0], [0], [8], [0, 'rc']] +0.8.0rc2=[[0], [0], [8], [0, 'rc', 2]] +0.8.0rc3=[[0], [0], [8], [0, 'rc', 3]] +0.8.0rc4=[[0], [0], [8], [0, 'rc', 4]] +0.8.1=[[0], [0], [8], [1]] +0.8.1.0=[[0], [0], [8], [1], [0]] +0.8.1.1=[[0], [0], [8], [1], [1]] +0.8.1.2=[[0], [0], [8], [1], [2]] +0.8.1.4=[[0], [0], [8], [1], [4]] +0.8.1.5=[[0], [0], [8], [1], [5]] +0.8.1.post1=[[0], [0], [8], [1], [0, inf, 1]] +0.8.10=[[0], [0], [8], [10]] +0.8.11=[[0], [0], [8], [11]] +0.8.12=[[0], [0], [8], [12]] +0.8.13=[[0], [0], [8], [13]] +0.8.13b=[[0], [0], [8], [13, 'b']] +0.8.14=[[0], [0], [8], [14]] +0.8.15=[[0], [0], [8], [15]] +0.8.16=[[0], [0], [8], [16]] +0.8.17=[[0], [0], [8], [17]] +0.8.18=[[0], [0], [8], [18]] +0.8.19=[[0], [0], [8], [19]] +0.8.2=[[0], [0], [8], [2]] +0.8.2.0=[[0], [0], [8], [2], [0]] +0.8.2.1=[[0], [0], [8], [2], [1]] +0.8.2.post0=[[0], [0], [8], [2], [0, inf, 0]] +0.8.20=[[0], [0], [8], [20]] +0.8.21=[[0], [0], [8], [21]] +0.8.21.post7=[[0], [0], [8], [21], [0, inf, 7]] +0.8.22=[[0], [0], [8], [22]] +0.8.23=[[0], [0], [8], [23]] +0.8.2337=[[0], [0], [8], [2337]] +0.8.24=[[0], [0], [8], [24]] +0.8.25=[[0], [0], [8], [25]] +0.8.26=[[0], [0], [8], [26]] +0.8.27=[[0], [0], [8], [27]] +0.8.28=[[0], [0], [8], [28]] +0.8.29=[[0], [0], [8], [29]] +0.8.3=[[0], [0], [8], [3]] +0.8.3.1=[[0], [0], [8], [3], [1]] +0.8.3.2=[[0], [0], [8], [3], [2]] +0.8.3.post1=[[0], [0], [8], [3], [0, inf, 1]] +0.8.30=[[0], [0], [8], [30]] +0.8.31=[[0], [0], [8], [31]] +0.8.32=[[0], [0], [8], [32]] +0.8.33=[[0], [0], [8], [33]] +0.8.34=[[0], [0], [8], [34]] +0.8.35=[[0], [0], [8], [35]] +0.8.36=[[0], [0], [8], [36]] +0.8.37=[[0], [0], [8], [37]] +0.8.38=[[0], [0], [8], [38]] +0.8.39=[[0], [0], [8], [39]] +0.8.4=[[0], [0], [8], [4]] +0.8.4.1=[[0], [0], [8], [4], [1]] +0.8.4.2=[[0], [0], [8], [4], [2]] +0.8.4.3=[[0], [0], [8], [4], [3]] +0.8.4.4=[[0], [0], [8], [4], [4]] +0.8.4.5=[[0], [0], [8], [4], [5]] +0.8.4.6=[[0], [0], [8], [4], [6]] +0.8.4.post0=[[0], [0], [8], [4], [0, inf, 0]] +0.8.40=[[0], [0], [8], [40]] +0.8.5=[[0], [0], [8], [5]] +0.8.5.2=[[0], [0], [8], [5], [2]] +0.8.5.3=[[0], [0], [8], [5], [3]] +0.8.5.4=[[0], [0], [8], [5], [4]] +0.8.5.5=[[0], [0], [8], [5], [5]] +0.8.5.6=[[0], [0], [8], [5], [6]] +0.8.5.7=[[0], [0], [8], [5], [7]] +0.8.500.0=[[0], [0], [8], [500], [0]] +0.8.5_2=[[0], [0], [8], [5], [2]] +0.8.5_3=[[0], [0], [8], [5], [3]] +0.8.5_4=[[0], [0], [8], [5], [4]] +0.8.5prealpha=[[0], [0], [8], [5, 'prealpha']] +0.8.6=[[0], [0], [8], [6]] +0.8.6.2=[[0], [0], [8], [6], [2]] +0.8.7=[[0], [0], [8], [7]] +0.8.8=[[0], [0], [8], [8]] +0.8.8.1=[[0], [0], [8], [8], [1]] +0.8.9=[[0], [0], [8], [9]] +0.8.95=[[0], [0], [8], [95]] +0.8.95.1=[[0], [0], [8], [95], [1]] +0.8.95.2=[[0], [0], [8], [95], [2]] +0.8.95.3=[[0], [0], [8], [95], [3]] +0.8.95.4=[[0], [0], [8], [95], [4]] +0.8.95.5=[[0], [0], [8], [95], [5]] +0.8.post1=[[0], [0], [8], [0, inf, 1]] +0.8.rc1=[[0], [0], [8], [0, 'rc', 1]] +0.80=[[0], [0], [80]] +0.80.0=[[0], [0], [80], [0]] +0.800=[[0], [0], [800]] +0.8000=[[0], [0], [8000]] +0.8001=[[0], [0], [8001]] +0.806=[[0], [0], [806]] +0.807=[[0], [0], [807]] +0.808=[[0], [0], [808]] +0.81=[[0], [0], [81]] +0.81.0=[[0], [0], [81], [0]] +0.81.1=[[0], [0], [81], [1]] +0.81.3=[[0], [0], [81], [3]] +0.812=[[0], [0], [812]] +0.82=[[0], [0], [82]] +0.82.0=[[0], [0], [82], [0]] +0.82.1=[[0], [0], [82], [1]] +0.82.10=[[0], [0], [82], [10]] +0.82.2=[[0], [0], [82], [2]] +0.82.3=[[0], [0], [82], [3]] +0.82.4=[[0], [0], [82], [4]] +0.82.5=[[0], [0], [82], [5]] +0.82.6=[[0], [0], [82], [6]] +0.82.7=[[0], [0], [82], [7]] +0.82.8=[[0], [0], [82], [8]] +0.82.9=[[0], [0], [82], [9]] +0.83=[[0], [0], [83]] +0.83.0=[[0], [0], [83], [0]] +0.84=[[0], [0], [84]] +0.84.0=[[0], [0], [84], [0]] +0.84.1=[[0], [0], [84], [1]] +0.84.2=[[0], [0], [84], [2]] +0.85=[[0], [0], [85]] +0.85.0=[[0], [0], [85], [0]] +0.85.1=[[0], [0], [85], [1]] +0.85.2=[[0], [0], [85], [2]] +0.86=[[0], [0], [86]] +0.86.0=[[0], [0], [86], [0]] +0.86.2=[[0], [0], [86], [2]] +0.86.4=[[0], [0], [86], [4]] +0.86.5=[[0], [0], [86], [5]] +0.87=[[0], [0], [87]] +0.87.0=[[0], [0], [87], [0]] +0.88=[[0], [0], [88]] +0.88.0=[[0], [0], [88], [0]] +0.89=[[0], [0], [89]] +0.89.0=[[0], [0], [89], [0]] +0.89.1=[[0], [0], [89], [1]] +0.8_0=[[0], [0], [8], [0]] +0.8_1=[[0], [0], [8], [1]] +0.8_104=[[0], [0], [8], [104]] +0.8_14=[[0], [0], [8], [14]] +0.8_16=[[0], [0], [8], [16]] +0.8_18=[[0], [0], [8], [18]] +0.8_19=[[0], [0], [8], [19]] +0.8_2=[[0], [0], [8], [2]] +0.8_29=[[0], [0], [8], [29]] +0.8_3=[[0], [0], [8], [3]] +0.8_30=[[0], [0], [8], [30]] +0.8_31=[[0], [0], [8], [31]] +0.8_32=[[0], [0], [8], [32]] +0.8_34=[[0], [0], [8], [34]] +0.8_35=[[0], [0], [8], [35]] +0.8_4=[[0], [0], [8], [4]] +0.8_5=[[0], [0], [8], [5]] +0.8_6=[[0], [0], [8], [6]] +0.8_67=[[0], [0], [8], [67]] +0.8_7=[[0], [0], [8], [7]] +0.8_71=[[0], [0], [8], [71]] +0.8_72=[[0], [0], [8], [72]] +0.8_73=[[0], [0], [8], [73]] +0.8_74=[[0], [0], [8], [74]] +0.8_75=[[0], [0], [8], [75]] +0.8_76=[[0], [0], [8], [76]] +0.8_79=[[0], [0], [8], [79]] +0.8_8=[[0], [0], [8], [8]] +0.8_80=[[0], [0], [8], [80]] +0.8_81=[[0], [0], [8], [81]] +0.8_82=[[0], [0], [8], [82]] +0.8_83=[[0], [0], [8], [83]] +0.8_84=[[0], [0], [8], [84]] +0.8_9=[[0], [0], [8], [9]] +0.8rc1=[[0], [0], [8, 'rc', 1]] +0.9=[[0], [0], [9]] +0.9.0=[[0], [0], [9], [0]] +0.9.0.0=[[0], [0], [9], [0], [0]] +0.9.0.1=[[0], [0], [9], [0], [1]] +0.9.0.post0=[[0], [0], [9], [0], [0, inf, 0]] +0.9.0.post1=[[0], [0], [9], [0], [0, inf, 1]] +0.9.0.post4=[[0], [0], [9], [0], [0, inf, 4]] +0.9.0a=[[0], [0], [9], [0, 'a']] +0.9.0b5=[[0], [0], [9], [0, 'b', 5]] +0.9.1=[[0], [0], [9], [1]] +0.9.1.0=[[0], [0], [9], [1], [0]] +0.9.1.1=[[0], [0], [9], [1], [1]] +0.9.1.post0=[[0], [0], [9], [1], [0, inf, 0]] +0.9.1.post1=[[0], [0], [9], [1], [0, inf, 1]] +0.9.10=[[0], [0], [9], [10]] +0.9.10.0=[[0], [0], [9], [10], [0]] +0.9.10.1=[[0], [0], [9], [10], [1]] +0.9.10.2=[[0], [0], [9], [10], [2]] +0.9.10.3=[[0], [0], [9], [10], [3]] +0.9.100=[[0], [0], [9], [100]] +0.9.100.5.0=[[0], [0], [9], [100], [5], [0]] +0.9.11=[[0], [0], [9], [11]] +0.9.12=[[0], [0], [9], [12]] +0.9.12.post1=[[0], [0], [9], [12], [0, inf, 1]] +0.9.12_2=[[0], [0], [9], [12], [2]] +0.9.12_4.2=[[0], [0], [9], [12], [4], [2]] +0.9.12_4.3=[[0], [0], [9], [12], [4], [3]] +0.9.12_4.4=[[0], [0], [9], [12], [4], [4]] +0.9.13=[[0], [0], [9], [13]] +0.9.13.1=[[0], [0], [9], [13], [1]] +0.9.13.4=[[0], [0], [9], [13], [4]] +0.9.13.5=[[0], [0], [9], [13], [5]] +0.9.14=[[0], [0], [9], [14]] +0.9.14.0=[[0], [0], [9], [14], [0]] +0.9.15=[[0], [0], [9], [15]] +0.9.16=[[0], [0], [9], [16]] +0.9.16.post1=[[0], [0], [9], [16], [0, inf, 1]] +0.9.16.post2=[[0], [0], [9], [16], [0, inf, 2]] +0.9.16.post3=[[0], [0], [9], [16], [0, inf, 3]] +0.9.17=[[0], [0], [9], [17]] +0.9.17.post1=[[0], [0], [9], [17], [0, inf, 1]] +0.9.18=[[0], [0], [9], [18]] +0.9.18_1=[[0], [0], [9], [18], [1]] +0.9.19=[[0], [0], [9], [19]] +0.9.1_4=[[0], [0], [9], [1], [4]] +0.9.1_5=[[0], [0], [9], [1], [5]] +0.9.1_8=[[0], [0], [9], [1], [8]] +0.9.1_9=[[0], [0], [9], [1], [9]] +0.9.1b5=[[0], [0], [9], [1, 'b', 5]] +0.9.1post0=[[0], [0], [9], [1, inf, 0]] +0.9.2=[[0], [0], [9], [2]] +0.9.2.0=[[0], [0], [9], [2], [0]] +0.9.2.1=[[0], [0], [9], [2], [1]] +0.9.2.dev2=[[0], [0], [9], [2], [0, 'DEV', 2]] +0.9.20=[[0], [0], [9], [20]] +0.9.200.7.0=[[0], [0], [9], [200], [7], [0]] +0.9.20000=[[0], [0], [9], [20000]] +0.9.2015=[[0], [0], [9], [2015]] +0.9.21=[[0], [0], [9], [21]] +0.9.22=[[0], [0], [9], [22]] +0.9.23=[[0], [0], [9], [23]] +0.9.24=[[0], [0], [9], [24]] +0.9.25=[[0], [0], [9], [25]] +0.9.26=[[0], [0], [9], [26]] +0.9.27=[[0], [0], [9], [27]] +0.9.28=[[0], [0], [9], [28]] +0.9.29=[[0], [0], [9], [29]] +0.9.2_0=[[0], [0], [9], [2], [0]] +0.9.2_1=[[0], [0], [9], [2], [1]] +0.9.2_2=[[0], [0], [9], [2], [2]] +0.9.2b5=[[0], [0], [9], [2, 'b', 5]] +0.9.3=[[0], [0], [9], [3]] +0.9.3.0=[[0], [0], [9], [3], [0]] +0.9.3.1=[[0], [0], [9], [3], [1]] +0.9.3.2543=[[0], [0], [9], [3], [2543]] +0.9.3.2600=[[0], [0], [9], [3], [2600]] +0.9.3.post0=[[0], [0], [9], [3], [0, inf, 0]] +0.9.3.post1=[[0], [0], [9], [3], [0, inf, 1]] +0.9.3.post2=[[0], [0], [9], [3], [0, inf, 2]] +0.9.30=[[0], [0], [9], [30]] +0.9.300.2.0=[[0], [0], [9], [300], [2], [0]] +0.9.31=[[0], [0], [9], [31]] +0.9.32=[[0], [0], [9], [32]] +0.9.33=[[0], [0], [9], [33]] +0.9.34=[[0], [0], [9], [34]] +0.9.35=[[0], [0], [9], [35]] +0.9.36=[[0], [0], [9], [36]] +0.9.37=[[0], [0], [9], [37]] +0.9.38=[[0], [0], [9], [38]] +0.9.39=[[0], [0], [9], [39]] +0.9.4=[[0], [0], [9], [4]] +0.9.4.0=[[0], [0], [9], [4], [0]] +0.9.4.4=[[0], [0], [9], [4], [4]] +0.9.4.6=[[0], [0], [9], [4], [6]] +0.9.4.post0=[[0], [0], [9], [4], [0, inf, 0]] +0.9.4.post1=[[0], [0], [9], [4], [0, inf, 1]] +0.9.40=[[0], [0], [9], [40]] +0.9.400.2.0=[[0], [0], [9], [400], [2], [0]] +0.9.41=[[0], [0], [9], [41]] +0.9.42=[[0], [0], [9], [42]] +0.9.43=[[0], [0], [9], [43]] +0.9.44=[[0], [0], [9], [44]] +0.9.45=[[0], [0], [9], [45]] +0.9.46=[[0], [0], [9], [46]] +0.9.47=[[0], [0], [9], [47]] +0.9.48=[[0], [0], [9], [48]] +0.9.49=[[0], [0], [9], [49]] +0.9.4b5=[[0], [0], [9], [4, 'b', 5]] +0.9.5=[[0], [0], [9], [5]] +0.9.5.1=[[0], [0], [9], [5], [1]] +0.9.5.2=[[0], [0], [9], [5], [2]] +0.9.5.3=[[0], [0], [9], [5], [3]] +0.9.5.5=[[0], [0], [9], [5], [5]] +0.9.5.6=[[0], [0], [9], [5], [6]] +0.9.5.7=[[0], [0], [9], [5], [7]] +0.9.50=[[0], [0], [9], [50]] +0.9.500.2.0=[[0], [0], [9], [500], [2], [0]] +0.9.51=[[0], [0], [9], [51]] +0.9.52=[[0], [0], [9], [52]] +0.9.53=[[0], [0], [9], [53]] +0.9.54=[[0], [0], [9], [54]] +0.9.55=[[0], [0], [9], [55]] +0.9.56=[[0], [0], [9], [56]] +0.9.57=[[0], [0], [9], [57]] +0.9.58=[[0], [0], [9], [58]] +0.9.59=[[0], [0], [9], [59]] +0.9.5_1=[[0], [0], [9], [5], [1]] +0.9.5b6=[[0], [0], [9], [5, 'b', 6]] +0.9.6=[[0], [0], [9], [6]] +0.9.6.1=[[0], [0], [9], [6], [1]] +0.9.6.1.post1=[[0], [0], [9], [6], [1], [0, inf, 1]] +0.9.6.2=[[0], [0], [9], [6], [2]] +0.9.6.3=[[0], [0], [9], [6], [3]] +0.9.6.4=[[0], [0], [9], [6], [4]] +0.9.6.5=[[0], [0], [9], [6], [5]] +0.9.60=[[0], [0], [9], [60]] +0.9.61=[[0], [0], [9], [61]] +0.9.62=[[0], [0], [9], [62]] +0.9.63=[[0], [0], [9], [63]] +0.9.64=[[0], [0], [9], [64]] +0.9.65=[[0], [0], [9], [65]] +0.9.66=[[0], [0], [9], [66]] +0.9.67=[[0], [0], [9], [67]] +0.9.68=[[0], [0], [9], [68]] +0.9.69=[[0], [0], [9], [69]] +0.9.6b7=[[0], [0], [9], [6, 'b', 7]] +0.9.7=[[0], [0], [9], [7]] +0.9.7.1=[[0], [0], [9], [7], [1]] +0.9.7.2=[[0], [0], [9], [7], [2]] +0.9.7.3=[[0], [0], [9], [7], [3]] +0.9.7.6=[[0], [0], [9], [7], [6]] +0.9.7.7=[[0], [0], [9], [7], [7]] +0.9.7.post1=[[0], [0], [9], [7], [0, inf, 1]] +0.9.7.post6=[[0], [0], [9], [7], [0, inf, 6]] +0.9.70=[[0], [0], [9], [70]] +0.9.700.2.0=[[0], [0], [9], [700], [2], [0]] +0.9.71=[[0], [0], [9], [71]] +0.9.72=[[0], [0], [9], [72]] +0.9.73=[[0], [0], [9], [73]] +0.9.74=[[0], [0], [9], [74]] +0.9.75=[[0], [0], [9], [75]] +0.9.76=[[0], [0], [9], [76]] +0.9.77=[[0], [0], [9], [77]] +0.9.78=[[0], [0], [9], [78]] +0.9.79=[[0], [0], [9], [79]] +0.9.8=[[0], [0], [9], [8]] +0.9.8.0=[[0], [0], [9], [8], [0]] +0.9.8.1=[[0], [0], [9], [8], [1]] +0.9.8.2=[[0], [0], [9], [8], [2]] +0.9.8.3=[[0], [0], [9], [8], [3]] +0.9.8.4=[[0], [0], [9], [8], [4]] +0.9.8.5=[[0], [0], [9], [8], [5]] +0.9.8.dev57=[[0], [0], [9], [8], [0, 'DEV', 57]] +0.9.8.post1=[[0], [0], [9], [8], [0, inf, 1]] +0.9.8.post2=[[0], [0], [9], [8], [0, inf, 2]] +0.9.80=[[0], [0], [9], [80]] +0.9.800.1.0=[[0], [0], [9], [800], [1], [0]] +0.9.800.3.0=[[0], [0], [9], [800], [3], [0]] +0.9.800.4.0=[[0], [0], [9], [800], [4], [0]] +0.9.81=[[0], [0], [9], [81]] +0.9.82=[[0], [0], [9], [82]] +0.9.83=[[0], [0], [9], [83]] +0.9.84=[[0], [0], [9], [84]] +0.9.85=[[0], [0], [9], [85]] +0.9.850.1.0=[[0], [0], [9], [850], [1], [0]] +0.9.86=[[0], [0], [9], [86]] +0.9.860.2.0=[[0], [0], [9], [860], [2], [0]] +0.9.87=[[0], [0], [9], [87]] +0.9.870.2.0=[[0], [0], [9], [870], [2], [0]] +0.9.88=[[0], [0], [9], [88]] +0.9.880.1.0=[[0], [0], [9], [880], [1], [0]] +0.9.89=[[0], [0], [9], [89]] +0.9.9=[[0], [0], [9], [9]] +0.9.9.0=[[0], [0], [9], [9], [0]] +0.9.9.1=[[0], [0], [9], [9], [1]] +0.9.9.2=[[0], [0], [9], [9], [2]] +0.9.9.3=[[0], [0], [9], [9], [3]] +0.9.9.4=[[0], [0], [9], [9], [4]] +0.9.9.7=[[0], [0], [9], [9], [7]] +0.9.9.8=[[0], [0], [9], [9], [8]] +0.9.9.9=[[0], [0], [9], [9], [9]] +0.9.9.92=[[0], [0], [9], [9], [92]] +0.9.9.dev57=[[0], [0], [9], [9], [0, 'DEV', 57]] +0.9.9.post1=[[0], [0], [9], [9], [0, inf, 1]] +0.9.90=[[0], [0], [9], [90]] +0.9.900.1.0=[[0], [0], [9], [900], [1], [0]] +0.9.900.2.0=[[0], [0], [9], [900], [2], [0]] +0.9.900.3.0=[[0], [0], [9], [900], [3], [0]] +0.9.91=[[0], [0], [9], [91]] +0.9.92=[[0], [0], [9], [92]] +0.9.921=[[0], [0], [9], [921]] +0.9.93=[[0], [0], [9], [93]] +0.9.94=[[0], [0], [9], [94]] +0.9.95=[[0], [0], [9], [95]] +0.9.96=[[0], [0], [9], [96]] +0.9.97=[[0], [0], [9], [97]] +0.9.98=[[0], [0], [9], [98]] +0.9.99=[[0], [0], [9], [99]] +0.9.dev0=[[0], [0], [9], [0, 'DEV', 0]] +0.90=[[0], [0], [90]] +0.90.0=[[0], [0], [90], [0]] +0.90.1=[[0], [0], [90], [1]] +0.90.2=[[0], [0], [90], [2]] +0.90.3=[[0], [0], [90], [3]] +0.90.7=[[0], [0], [90], [7]] +0.900=[[0], [0], [900]] +0.902=[[0], [0], [902]] +0.91=[[0], [0], [91]] +0.91.0=[[0], [0], [91], [0]] +0.91.1=[[0], [0], [91], [1]] +0.91.3=[[0], [0], [91], [3]] +0.91.4=[[0], [0], [91], [4]] +0.910=[[0], [0], [910]] +0.92=[[0], [0], [92]] +0.92.0=[[0], [0], [92], [0]] +0.92.1=[[0], [0], [92], [1]] +0.92.6=[[0], [0], [92], [6]] +0.920=[[0], [0], [920]] +0.928=[[0], [0], [928]] +0.92_7=[[0], [0], [92], [7]] +0.93=[[0], [0], [93]] +0.93.0=[[0], [0], [93], [0]] +0.93.1=[[0], [0], [93], [1]] +0.93.2=[[0], [0], [93], [2]] +0.93.31=[[0], [0], [93], [31]] +0.93.4=[[0], [0], [93], [4]] +0.93.41=[[0], [0], [93], [41]] +0.93.42=[[0], [0], [93], [42]] +0.93.43=[[0], [0], [93], [43]] +0.930=[[0], [0], [930]] +0.931=[[0], [0], [931]] +0.93_2=[[0], [0], [93], [2]] +0.93_5=[[0], [0], [93], [5]] +0.93_6=[[0], [0], [93], [6]] +0.93_7=[[0], [0], [93], [7]] +0.93_8=[[0], [0], [93], [8]] +0.93_9=[[0], [0], [93], [9]] +0.94=[[0], [0], [94]] +0.94.0=[[0], [0], [94], [0]] +0.94.01=[[0], [0], [94], [1]] +0.94.02=[[0], [0], [94], [2]] +0.94.04=[[0], [0], [94], [4]] +0.94.5=[[0], [0], [94], [5]] +0.94.1=[[0], [0], [94], [1]] +0.94.11=[[0], [0], [94], [11]] +0.94.2=[[0], [0], [94], [2]] +0.94.3=[[0], [0], [94], [3]] +0.940=[[0], [0], [940]] +0.941=[[0], [0], [941]] +0.942=[[0], [0], [942]] +0.95=[[0], [0], [95]] +0.95.0=[[0], [0], [95], [0]] +0.95.01=[[0], [0], [95], [1]] +0.950=[[0], [0], [950]] +0.95_0=[[0], [0], [95], [0]] +0.95_1=[[0], [0], [95], [1]] +0.96=[[0], [0], [96]] +0.96.0=[[0], [0], [96], [0]] +0.96.1=[[0], [0], [96], [1]] +0.96.2=[[0], [0], [96], [2]] +0.96.8=[[0], [0], [96], [8]] +0.960=[[0], [0], [960]] +0.961=[[0], [0], [961]] +0.97=[[0], [0], [97]] +0.97.0=[[0], [0], [97], [0]] +0.97.1=[[0], [0], [97], [1]] +0.97.10=[[0], [0], [97], [10]] +0.97.11=[[0], [0], [97], [11]] +0.97.2=[[0], [0], [97], [2]] +0.97.4=[[0], [0], [97], [4]] +0.97.5=[[0], [0], [97], [5]] +0.97.7=[[0], [0], [97], [7]] +0.97.8=[[0], [0], [97], [8]] +0.97.9=[[0], [0], [97], [9]] +0.9704=[[0], [0], [9704]] +0.971=[[0], [0], [971]] +0.9725=[[0], [0], [9725]] +0.98=[[0], [0], [98]] +0.98.0=[[0], [0], [98], [0]] +0.98.1=[[0], [0], [98], [1]] +0.98.10=[[0], [0], [98], [10]] +0.98.11=[[0], [0], [98], [11]] +0.98.12=[[0], [0], [98], [12]] +0.98.13=[[0], [0], [98], [13]] +0.98.14=[[0], [0], [98], [14]] +0.98.15=[[0], [0], [98], [15]] +0.98.16=[[0], [0], [98], [16]] +0.98.17=[[0], [0], [98], [17]] +0.98.18=[[0], [0], [98], [18]] +0.98.19=[[0], [0], [98], [19]] +0.98.2=[[0], [0], [98], [2]] +0.98.3=[[0], [0], [98], [3]] +0.98.4=[[0], [0], [98], [4]] +0.98.5=[[0], [0], [98], [5]] +0.98.6=[[0], [0], [98], [6]] +0.98.7=[[0], [0], [98], [7]] +0.98.8=[[0], [0], [98], [8]] +0.98.9=[[0], [0], [98], [9]] +0.981=[[0], [0], [981]] +0.982=[[0], [0], [982]] +0.987=[[0], [0], [987]] +0.988=[[0], [0], [988]] +0.989=[[0], [0], [989]] +0.99=[[0], [0], [99]] +0.99.0=[[0], [0], [99], [0]] +0.99.1=[[0], [0], [99], [1]] +0.99.10=[[0], [0], [99], [10]] +0.99.11=[[0], [0], [99], [11]] +0.99.12=[[0], [0], [99], [12]] +0.99.14=[[0], [0], [99], [14]] +0.99.15=[[0], [0], [99], [15]] +0.99.16=[[0], [0], [99], [16]] +0.99.17=[[0], [0], [99], [17]] +0.99.18=[[0], [0], [99], [18]] +0.99.2=[[0], [0], [99], [2]] +0.99.20=[[0], [0], [99], [20]] +0.99.24=[[0], [0], [99], [24]] +0.99.25=[[0], [0], [99], [25]] +0.99.26=[[0], [0], [99], [26]] +0.99.27=[[0], [0], [99], [27]] +0.99.28=[[0], [0], [99], [28]] +0.99.29=[[0], [0], [99], [29]] +0.99.3=[[0], [0], [99], [3]] +0.99.31.3=[[0], [0], [99], [31], [3]] +0.99.31.6=[[0], [0], [99], [31], [6]] +0.99.32=[[0], [0], [99], [32]] +0.99.33=[[0], [0], [99], [33]] +0.99.34=[[0], [0], [99], [34]] +0.99.35=[[0], [0], [99], [35]] +0.99.36=[[0], [0], [99], [36]] +0.99.37=[[0], [0], [99], [37]] +0.99.38=[[0], [0], [99], [38]] +0.99.39=[[0], [0], [99], [39]] +0.99.4=[[0], [0], [99], [4]] +0.99.40=[[0], [0], [99], [40]] +0.99.41=[[0], [0], [99], [41]] +0.99.42=[[0], [0], [99], [42]] +0.99.43=[[0], [0], [99], [43]] +0.99.44=[[0], [0], [99], [44]] +0.99.45=[[0], [0], [99], [45]] +0.99.46=[[0], [0], [99], [46]] +0.99.47=[[0], [0], [99], [47]] +0.99.48=[[0], [0], [99], [48]] +0.99.49=[[0], [0], [99], [49]] +0.99.4a0=[[0], [0], [99], [4, 'a', 0]] +0.99.5=[[0], [0], [99], [5]] +0.99.55=[[0], [0], [99], [55]] +0.99.6=[[0], [0], [99], [6]] +0.99.7=[[0], [0], [99], [7]] +0.99.8=[[0], [0], [99], [8]] +0.99.9=[[0], [0], [99], [9]] +0.99.9901=[[0], [0], [99], [9901]] +0.990=[[0], [0], [990]] +0.991=[[0], [0], [991]] +0.9929=[[0], [0], [9929]] +0.996=[[0], [0], [996]] +0.997004=[[0], [0], [997004]] +0.999=[[0], [0], [999]] +0.9999.3=[[0], [0], [9999], [3]] +0.9999999=[[0], [0], [9999999]] +0.999999999=[[0], [0], [999999999]] +0.999_16=[[0], [0], [999], [16]] +0.999_19=[[0], [0], [999], [19]] +0.999_19.1=[[0], [0], [999], [19], [1]] +0.999_2=[[0], [0], [999], [2]] +0.999_20=[[0], [0], [999], [20]] +0.999_3=[[0], [0], [999], [3]] +0.999_4=[[0], [0], [999], [4]] +0.999_5=[[0], [0], [999], [5]] +0.999_6=[[0], [0], [999], [6]] +0.999_7=[[0], [0], [999], [7]] +0.99_0=[[0], [0], [99], [0]] +0.99_2=[[0], [0], [99], [2]] +0.99_3=[[0], [0], [99], [3]] +0.99b6=[[0], [0], [99, 'b', 6]] +0.9_0=[[0], [0], [9], [0]] +0.9_04=[[0], [0], [9], [4]] +0.9_1=[[0], [0], [9], [1]] +0.9_1.1=[[0], [0], [9], [1], [1]] +0.9_10=[[0], [0], [9], [10]] +0.9_106=[[0], [0], [9], [106]] +0.9_107=[[0], [0], [9], [107]] +0.9_11=[[0], [0], [9], [11]] +0.9_12=[[0], [0], [9], [12]] +0.9_13=[[0], [0], [9], [13]] +0.9_14=[[0], [0], [9], [14]] +0.9_15.1=[[0], [0], [9], [15], [1]] +0.9_16=[[0], [0], [9], [16]] +0.9_17=[[0], [0], [9], [17]] +0.9_18=[[0], [0], [9], [18]] +0.9_19=[[0], [0], [9], [19]] +0.9_2=[[0], [0], [9], [2]] +0.9_2.1=[[0], [0], [9], [2], [1]] +0.9_20=[[0], [0], [9], [20]] +0.9_21=[[0], [0], [9], [21]] +0.9_22=[[0], [0], [9], [22]] +0.9_23=[[0], [0], [9], [23]] +0.9_25=[[0], [0], [9], [25]] +0.9_26=[[0], [0], [9], [26]] +0.9_27=[[0], [0], [9], [27]] +0.9_29=[[0], [0], [9], [29]] +0.9_3=[[0], [0], [9], [3]] +0.9_30=[[0], [0], [9], [30]] +0.9_31=[[0], [0], [9], [31]] +0.9_32=[[0], [0], [9], [32]] +0.9_35=[[0], [0], [9], [35]] +0.9_36=[[0], [0], [9], [36]] +0.9_37=[[0], [0], [9], [37]] +0.9_38=[[0], [0], [9], [38]] +0.9_39=[[0], [0], [9], [39]] +0.9_4=[[0], [0], [9], [4]] +0.9_40=[[0], [0], [9], [40]] +0.9_5=[[0], [0], [9], [5]] +0.9_50=[[0], [0], [9], [50]] +0.9_51=[[0], [0], [9], [51]] +0.9_52=[[0], [0], [9], [52]] +0.9_55=[[0], [0], [9], [55]] +0.9_57=[[0], [0], [9], [57]] +0.9_6=[[0], [0], [9], [6]] +0.9_6.1=[[0], [0], [9], [6], [1]] +0.9_69=[[0], [0], [9], [69]] +0.9_69_3=[[0], [0], [9], [69], [3]] +0.9_7=[[0], [0], [9], [7]] +0.9_7.1=[[0], [0], [9], [7], [1]] +0.9_70=[[0], [0], [9], [70]] +0.9_73=[[0], [0], [9], [73]] +0.9_74=[[0], [0], [9], [74]] +0.9_75=[[0], [0], [9], [75]] +0.9_77=[[0], [0], [9], [77]] +0.9_78=[[0], [0], [9], [78]] +0.9_79=[[0], [0], [9], [79]] +0.9_8=[[0], [0], [9], [8]] +0.9_80=[[0], [0], [9], [80]] +0.9_81=[[0], [0], [9], [81]] +0.9_81_2=[[0], [0], [9], [81], [2]] +0.9_9=[[0], [0], [9], [9]] +0.9b0=[[0], [0], [9, 'b', 0]] +0.9rc2=[[0], [0], [9, 'rc', 2]] +0.9rc3=[[0], [0], [9, 'rc', 3]] +0.post0.dev1081=[[0], [0], [0, inf, 0], [0, 'DEV', 1081]] +022=[[0], [22]] +04Sep15.e78=[[0], [4, 'sep', 15], [0, 'e', 78]] +09.04.2017=[[0], [9], [4], [2017]] +094h=[[0], [94, 'h']] +0_2004.04.21=[[0], [0], [2004], [4], [21]] +1=[[0], [1]] +1!0.94i=[[1], [0], [94, 'i']] +1!0.94j=[[1], [0], [94, 'j']] +1!0.94m=[[1], [0], [94, 'm']] +1!1.0.0=[[1], [1], [0], [0]] +1!152.20180717=[[1], [152], [20180717]] +1!152.20180806=[[1], [152], [20180806]] +1!161.3030=[[1], [161], [3030]] +1!164.3095=[[1], [164], [3095]] +1!2.0.1=[[1], [2], [0], [1]] +1!2.0.2=[[1], [2], [0], [2]] +1!2.2.3=[[1], [2], [2], [3]] +1!3.0.0=[[1], [3], [0], [0]] +1.0=[[0], [1], [0]] +1.0.0=[[0], [1], [0], [0]] +1.0.0.0=[[0], [1], [0], [0], [0]] +1.0.0.1=[[0], [1], [0], [0], [1]] +1.0.0.2=[[0], [1], [0], [0], [2]] +1.0.0.20181017=[[0], [1], [0], [0], [20181017]] +1.0.0.3=[[0], [1], [0], [0], [3]] +1.0.0.b3=[[0], [1], [0], [0], [0, 'b', 3]] +1.0.0.beta.2=[[0], [1], [0], [0], [0, 'beta'], [2]] +1.0.0.beta.3=[[0], [1], [0], [0], [0, 'beta'], [3]] +1.0.0.beta.4=[[0], [1], [0], [0], [0, 'beta'], [4]] +1.0.0.beta.5=[[0], [1], [0], [0], [0, 'beta'], [5]] +1.0.0.beta1=[[0], [1], [0], [0], [0, 'beta', 1]] +1.0.0.dev0=[[0], [1], [0], [0], [0, 'DEV', 0]] +1.0.0.dev2=[[0], [1], [0], [0], [0, 'DEV', 2]] +1.0.0.post1=[[0], [1], [0], [0], [0, inf, 1]] +1.0.0.post2=[[0], [1], [0], [0], [0, inf, 2]] +1.0.0.post3=[[0], [1], [0], [0], [0, inf, 3]] +1.0.0.post4=[[0], [1], [0], [0], [0, inf, 4]] +1.0.007=[[0], [1], [0], [7]] +1.0.0a0=[[0], [1], [0], [0, 'a', 0]] +1.0.0a1=[[0], [1], [0], [0, 'a', 1]] +1.0.0a2=[[0], [1], [0], [0, 'a', 2]] +1.0.0a23=[[0], [1], [0], [0, 'a', 23]] +1.0.0a3=[[0], [1], [0], [0, 'a', 3]] +1.0.0a4=[[0], [1], [0], [0, 'a', 4]] +1.0.0a5=[[0], [1], [0], [0, 'a', 5]] +1.0.0a6=[[0], [1], [0], [0, 'a', 6]] +1.0.0a9=[[0], [1], [0], [0, 'a', 9]] +1.0.0b=[[0], [1], [0], [0, 'b']] +1.0.0b0=[[0], [1], [0], [0, 'b', 0]] +1.0.0b1=[[0], [1], [0], [0, 'b', 1]] +1.0.0b11=[[0], [1], [0], [0, 'b', 11]] +1.0.0b19=[[0], [1], [0], [0, 'b', 19]] +1.0.0b2=[[0], [1], [0], [0, 'b', 2]] +1.0.0b20=[[0], [1], [0], [0, 'b', 20]] +1.0.0b24=[[0], [1], [0], [0, 'b', 24]] +1.0.0b26=[[0], [1], [0], [0, 'b', 26]] +1.0.0b27=[[0], [1], [0], [0, 'b', 27]] +1.0.0b28=[[0], [1], [0], [0, 'b', 28]] +1.0.0b29=[[0], [1], [0], [0, 'b', 29]] +1.0.0b3=[[0], [1], [0], [0, 'b', 3]] +1.0.0b30=[[0], [1], [0], [0, 'b', 30]] +1.0.0b31=[[0], [1], [0], [0, 'b', 31]] +1.0.0b32=[[0], [1], [0], [0, 'b', 32]] +1.0.0b4=[[0], [1], [0], [0, 'b', 4]] +1.0.0b5=[[0], [1], [0], [0, 'b', 5]] +1.0.0b6=[[0], [1], [0], [0, 'b', 6]] +1.0.0b7=[[0], [1], [0], [0, 'b', 7]] +1.0.0b9=[[0], [1], [0], [0, 'b', 9]] +1.0.0beta10=[[0], [1], [0], [0, 'beta', 10]] +1.0.0beta11=[[0], [1], [0], [0, 'beta', 11]] +1.0.0beta12=[[0], [1], [0], [0, 'beta', 12]] +1.0.0beta13=[[0], [1], [0], [0, 'beta', 13]] +1.0.0beta14=[[0], [1], [0], [0, 'beta', 14]] +1.0.0beta15=[[0], [1], [0], [0, 'beta', 15]] +1.0.0beta16=[[0], [1], [0], [0, 'beta', 16]] +1.0.0beta17=[[0], [1], [0], [0, 'beta', 17]] +1.0.0beta18=[[0], [1], [0], [0, 'beta', 18]] +1.0.0beta4=[[0], [1], [0], [0, 'beta', 4]] +1.0.0beta5=[[0], [1], [0], [0, 'beta', 5]] +1.0.0beta6=[[0], [1], [0], [0, 'beta', 6]] +1.0.0beta7=[[0], [1], [0], [0, 'beta', 7]] +1.0.0beta8=[[0], [1], [0], [0, 'beta', 8]] +1.0.0beta9=[[0], [1], [0], [0, 'beta', 9]] +1.0.0rc0=[[0], [1], [0], [0, 'rc', 0]] +1.0.0rc1=[[0], [1], [0], [0, 'rc', 1]] +1.0.0rc10=[[0], [1], [0], [0, 'rc', 10]] +1.0.0rc12=[[0], [1], [0], [0, 'rc', 12]] +1.0.0rc2=[[0], [1], [0], [0, 'rc', 2]] +1.0.0rc3.post1=[[0], [1], [0], [0, 'rc', 3], [0, inf, 1]] +1.0.0rc3.post2=[[0], [1], [0], [0, 'rc', 3], [0, inf, 2]] +1.0.0rc4=[[0], [1], [0], [0, 'rc', 4]] +1.0.0rc6=[[0], [1], [0], [0, 'rc', 6]] +1.0.0rc7=[[0], [1], [0], [0, 'rc', 7]] +1.0.0rc8=[[0], [1], [0], [0, 'rc', 8]] +1.0.0rc9=[[0], [1], [0], [0, 'rc', 9]] +1.0.0rc92=[[0], [1], [0], [0, 'rc', 92]] +1.0.0rc93=[[0], [1], [0], [0, 'rc', 93]] +1.0.1=[[0], [1], [0], [1]] +1.0.1.0=[[0], [1], [0], [1], [0]] +1.0.1.1=[[0], [1], [0], [1], [1]] +1.0.1.1518=[[0], [1], [0], [1], [1518]] +1.0.1.1597=[[0], [1], [0], [1], [1597]] +1.0.1.2=[[0], [1], [0], [1], [2]] +1.0.1.20181028=[[0], [1], [0], [1], [20181028]] +1.0.1.20181030=[[0], [1], [0], [1], [20181030]] +1.0.1.20190102=[[0], [1], [0], [1], [20190102]] +1.0.1.20190122=[[0], [1], [0], [1], [20190122]] +1.0.1.20190823=[[0], [1], [0], [1], [20190823]] +1.0.1.20191029=[[0], [1], [0], [1], [20191029]] +1.0.1.3=[[0], [1], [0], [1], [3]] +1.0.1.4=[[0], [1], [0], [1], [4]] +1.0.1.5=[[0], [1], [0], [1], [5]] +1.0.1.9=[[0], [1], [0], [1], [9]] +1.0.1.beta1=[[0], [1], [0], [1], [0, 'beta', 1]] +1.0.1.dev0=[[0], [1], [0], [1], [0, 'DEV', 0]] +1.0.1.post0=[[0], [1], [0], [1], [0, inf, 0]] +1.0.10=[[0], [1], [0], [10]] +1.0.11=[[0], [1], [0], [11]] +1.0.12=[[0], [1], [0], [12]] +1.0.13=[[0], [1], [0], [13]] +1.0.14=[[0], [1], [0], [14]] +1.0.15=[[0], [1], [0], [15]] +1.0.157409=[[0], [1], [0], [157409]] +1.0.16=[[0], [1], [0], [16]] +1.0.1628549850=[[0], [1], [0], [1628549850]] +1.0.1629029818=[[0], [1], [0], [1629029818]] +1.0.1650254349=[[0], [1], [0], [1650254349]] +1.0.1650280980=[[0], [1], [0], [1650280980]] +1.0.1655855963=[[0], [1], [0], [1655855963]] +1.0.1655946639=[[0], [1], [0], [1655946639]] +1.0.17=[[0], [1], [0], [17]] +1.0.18=[[0], [1], [0], [18]] +1.0.19=[[0], [1], [0], [19]] +1.0.19.1=[[0], [1], [0], [19], [1]] +1.0.19.2=[[0], [1], [0], [19], [2]] +1.0.19.3=[[0], [1], [0], [19], [3]] +1.0.19.4=[[0], [1], [0], [19], [4]] +1.0.19.5=[[0], [1], [0], [19], [5]] +1.0.1_2=[[0], [1], [0], [1], [2]] +1.0.1b0=[[0], [1], [0], [1, 'b', 0]] +1.0.2=[[0], [1], [0], [2]] +1.0.2.0=[[0], [1], [0], [2], [0]] +1.0.2.1=[[0], [1], [0], [2], [1]] +1.0.2.2=[[0], [1], [0], [2], [2]] +1.0.2.3=[[0], [1], [0], [2], [3]] +1.0.2.dev0=[[0], [1], [0], [2], [0, 'DEV', 0]] +1.0.2.g=[[0], [1], [0], [2], [0, 'g']] +1.0.2.post1=[[0], [1], [0], [2], [0, inf, 1]] +1.0.2.post2=[[0], [1], [0], [2], [0, inf, 2]] +1.0.20=[[0], [1], [0], [20]] +1.0.20.10=[[0], [1], [0], [20], [10]] +1.0.20171215=[[0], [1], [0], [20171215]] +1.0.20180209171722=[[0], [1], [0], [20180209171722]] +1.0.20180225105849=[[0], [1], [0], [20180225105849]] +1.0.20180601100346=[[0], [1], [0], [20180601100346]] +1.0.20180622=[[0], [1], [0], [20180622]] +1.0.20181114=[[0], [1], [0], [20181114]] +1.0.20181201184214=[[0], [1], [0], [20181201184214]] +1.0.20181217162649=[[0], [1], [0], [20181217162649]] +1.0.20190228134645=[[0], [1], [0], [20190228134645]] +1.0.20190228155703=[[0], [1], [0], [20190228155703]] +1.0.20190410=[[0], [1], [0], [20190410]] +1.0.20190720=[[0], [1], [0], [20190720]] +1.0.20190902=[[0], [1], [0], [20190902]] +1.0.20190906054215=[[0], [1], [0], [20190906054215]] +1.0.20190906212748=[[0], [1], [0], [20190906212748]] +1.0.20190915164430=[[0], [1], [0], [20190915164430]] +1.0.20191022103248=[[0], [1], [0], [20191022103248]] +1.0.20191225192155=[[0], [1], [0], [20191225192155]] +1.0.20201102=[[0], [1], [0], [20201102]] +1.0.20201224=[[0], [1], [0], [20201224]] +1.0.20210317=[[0], [1], [0], [20210317]] +1.0.20211006=[[0], [1], [0], [20211006]] +1.0.2021_05_05=[[0], [1], [0], [2021], [5], [5]] +1.0.20220720=[[0], [1], [0], [20220720]] +1.0.20230411=[[0], [1], [0], [20230411]] +1.0.21=[[0], [1], [0], [21]] +1.0.22=[[0], [1], [0], [22]] +1.0.221505=[[0], [1], [0], [221505]] +1.0.225602=[[0], [1], [0], [225602]] +1.0.2275031=[[0], [1], [0], [2275031]] +1.0.23=[[0], [1], [0], [23]] +1.0.23.1=[[0], [1], [0], [23], [1]] +1.0.2309030=[[0], [1], [0], [2309030]] +1.0.24=[[0], [1], [0], [24]] +1.0.25=[[0], [1], [0], [25]] +1.0.26=[[0], [1], [0], [26]] +1.0.26.0=[[0], [1], [0], [26], [0]] +1.0.260601=[[0], [1], [0], [260601]] +1.0.2652=[[0], [1], [0], [2652]] +1.0.27=[[0], [1], [0], [27]] +1.0.28=[[0], [1], [0], [28]] +1.0.2878=[[0], [1], [0], [2878]] +1.0.29=[[0], [1], [0], [29]] +1.0.2_2=[[0], [1], [0], [2], [2]] +1.0.2_2.1=[[0], [1], [0], [2], [2], [1]] +1.0.2b0=[[0], [1], [0], [2, 'b', 0]] +1.0.2b1=[[0], [1], [0], [2, 'b', 1]] +1.0.2b6=[[0], [1], [0], [2, 'b', 6]] +1.0.2b7=[[0], [1], [0], [2, 'b', 7]] +1.0.2b9=[[0], [1], [0], [2, 'b', 9]] +1.0.2h=[[0], [1], [0], [2, 'h']] +1.0.2k=[[0], [1], [0], [2, 'k']] +1.0.2l=[[0], [1], [0], [2, 'l']] +1.0.2m=[[0], [1], [0], [2, 'm']] +1.0.2n=[[0], [1], [0], [2, 'n']] +1.0.2o=[[0], [1], [0], [2, 'o']] +1.0.2p=[[0], [1], [0], [2, 'p']] +1.0.2q=[[0], [1], [0], [2, 'q']] +1.0.2r=[[0], [1], [0], [2, 'r']] +1.0.2rc3=[[0], [1], [0], [2, 'rc', 3]] +1.0.2t=[[0], [1], [0], [2, 't']] +1.0.2u=[[0], [1], [0], [2, 'u']] +1.0.3=[[0], [1], [0], [3]] +1.0.3.0=[[0], [1], [0], [3], [0]] +1.0.3.1=[[0], [1], [0], [3], [1]] +1.0.3.2=[[0], [1], [0], [3], [2]] +1.0.3.3=[[0], [1], [0], [3], [3]] +1.0.3.4=[[0], [1], [0], [3], [4]] +1.0.3.5=[[0], [1], [0], [3], [5]] +1.0.3.beta1=[[0], [1], [0], [3], [0, 'beta', 1]] +1.0.3.dev20161029=[[0], [1], [0], [3], [0, 'DEV', 20161029]] +1.0.30=[[0], [1], [0], [30]] +1.0.3032=[[0], [1], [0], [3032]] +1.0.3041=[[0], [1], [0], [3041]] +1.0.31=[[0], [1], [0], [31]] +1.0.3151=[[0], [1], [0], [3151]] +1.0.32=[[0], [1], [0], [32]] +1.0.33=[[0], [1], [0], [33]] +1.0.3342=[[0], [1], [0], [3342]] +1.0.3390=[[0], [1], [0], [3390]] +1.0.34=[[0], [1], [0], [34]] +1.0.3445=[[0], [1], [0], [3445]] +1.0.3471=[[0], [1], [0], [3471]] +1.0.35=[[0], [1], [0], [35]] +1.0.3529=[[0], [1], [0], [3529]] +1.0.3586=[[0], [1], [0], [3586]] +1.0.36=[[0], [1], [0], [36]] +1.0.3606021=[[0], [1], [0], [3606021]] +1.0.3627=[[0], [1], [0], [3627]] +1.0.3698=[[0], [1], [0], [3698]] +1.0.37=[[0], [1], [0], [37]] +1.0.3771=[[0], [1], [0], [3771]] +1.0.38=[[0], [1], [0], [38]] +1.0.3826=[[0], [1], [0], [3826]] +1.0.3c=[[0], [1], [0], [3, 'c']] +1.0.4=[[0], [1], [0], [4]] +1.0.4.0.0.0=[[0], [1], [0], [4], [0], [0], [0]] +1.0.4.2=[[0], [1], [0], [4], [2]] +1.0.4.3=[[0], [1], [0], [4], [3]] +1.0.4.4=[[0], [1], [0], [4], [4]] +1.0.4.5=[[0], [1], [0], [4], [5]] +1.0.4.6=[[0], [1], [0], [4], [6]] +1.0.4.7=[[0], [1], [0], [4], [7]] +1.0.4.beta1=[[0], [1], [0], [4], [0, 'beta', 1]] +1.0.4.dev0=[[0], [1], [0], [4], [0, 'DEV', 0]] +1.0.40=[[0], [1], [0], [40]] +1.0.400=[[0], [1], [0], [400]] +1.0.4053=[[0], [1], [0], [4053]] +1.0.4062=[[0], [1], [0], [4062]] +1.0.41=[[0], [1], [0], [41]] +1.0.410=[[0], [1], [0], [410]] +1.0.4111=[[0], [1], [0], [4111]] +1.0.4154=[[0], [1], [0], [4154]] +1.0.4155=[[0], [1], [0], [4155]] +1.0.42=[[0], [1], [0], [42]] +1.0.4241=[[0], [1], [0], [4241]] +1.0.43=[[0], [1], [0], [43]] +1.0.4312=[[0], [1], [0], [4312]] +1.0.47=[[0], [1], [0], [47]] +1.0.4_1=[[0], [1], [0], [4], [1]] +1.0.5=[[0], [1], [0], [5]] +1.0.5.1=[[0], [1], [0], [5], [1]] +1.0.5.2=[[0], [1], [0], [5], [2]] +1.0.5.2.1=[[0], [1], [0], [5], [2], [1]] +1.0.5.post2=[[0], [1], [0], [5], [0, inf, 2]] +1.0.51=[[0], [1], [0], [51]] +1.0.53=[[0], [1], [0], [53]] +1.0.5_1=[[0], [1], [0], [5], [1]] +1.0.6=[[0], [1], [0], [6]] +1.0.6.1=[[0], [1], [0], [6], [1]] +1.0.6.2=[[0], [1], [0], [6], [2]] +1.0.6.dev0=[[0], [1], [0], [6], [0, 'DEV', 0]] +1.0.61=[[0], [1], [0], [61]] +1.0.62=[[0], [1], [0], [62]] +1.0.63=[[0], [1], [0], [63]] +1.0.64=[[0], [1], [0], [64]] +1.0.65=[[0], [1], [0], [65]] +1.0.66=[[0], [1], [0], [66]] +1.0.67=[[0], [1], [0], [67]] +1.0.6712=[[0], [1], [0], [6712]] +1.0.68=[[0], [1], [0], [68]] +1.0.6812=[[0], [1], [0], [6812]] +1.0.6909=[[0], [1], [0], [6909]] +1.0.7=[[0], [1], [0], [7]] +1.0.7.1=[[0], [1], [0], [7], [1]] +1.0.7.6=[[0], [1], [0], [7], [6]] +1.0.7.post1=[[0], [1], [0], [7], [0, inf, 1]] +1.0.7041=[[0], [1], [0], [7041]] +1.0.8=[[0], [1], [0], [8]] +1.0.8.0=[[0], [1], [0], [8], [0]] +1.0.8.1=[[0], [1], [0], [8], [1]] +1.0.8.2=[[0], [1], [0], [8], [2]] +1.0.8.3=[[0], [1], [0], [8], [3]] +1.0.8.dev0=[[0], [1], [0], [8], [0, 'DEV', 0]] +1.0.8.post0=[[0], [1], [0], [8], [0, inf, 0]] +1.0.8.post1=[[0], [1], [0], [8], [0, inf, 1]] +1.0.81=[[0], [1], [0], [81]] +1.0.82=[[0], [1], [0], [82]] +1.0.84=[[0], [1], [0], [84]] +1.0.85=[[0], [1], [0], [85]] +1.0.86=[[0], [1], [0], [86]] +1.0.9=[[0], [1], [0], [9]] +1.0.9.2=[[0], [1], [0], [9], [2]] +1.0.9.post0=[[0], [1], [0], [9], [0, inf, 0]] +1.0.90=[[0], [1], [0], [90]] +1.0.91=[[0], [1], [0], [91]] +1.0.beta=[[0], [1], [0], [0, 'beta']] +1.0.dev1=[[0], [1], [0], [0, 'DEV', 1]] +1.0.post1=[[0], [1], [0], [0, inf, 1]] +1.0.rev20May22.818=[[0], [1], [0], [0, 'rev', 20, 'may', 22], [818]] +1.00=[[0], [1], [0]] +1.00.0=[[0], [1], [0], [0]] +1.00.44=[[0], [1], [0], [44]] +1.00.78=[[0], [1], [0], [78]] +1.00.81=[[0], [1], [0], [81]] +1.00.89=[[0], [1], [0], [89]] +1.000=[[0], [1], [0]] +1.000036=[[0], [1], [36]] +1.000037=[[0], [1], [37]] +1.0002=[[0], [1], [2]] +1.0007=[[0], [1], [7]] +1.001=[[0], [1], [1]] +1.001002=[[0], [1], [1002]] +1.002=[[0], [1], [2]] +1.002001=[[0], [1], [2001]] +1.002002=[[0], [1], [2002]] +1.002005=[[0], [1], [2005]] +1.003=[[0], [1], [3]] +1.004=[[0], [1], [4]] +1.004000=[[0], [1], [4000]] +1.004003=[[0], [1], [4003]] +1.004004=[[0], [1], [4004]] +1.005=[[0], [1], [5]] +1.006=[[0], [1], [6]] +1.007001=[[0], [1], [7001]] +1.007002=[[0], [1], [7002]] +1.007003=[[0], [1], [7003]] +1.01=[[0], [1], [1]] +1.010=[[0], [1], [10]] +1.012.2=[[0], [1], [12], [2]] +1.012004=[[0], [1], [12004]] +1.012005=[[0], [1], [12005]] +1.013=[[0], [1], [13]] +1.014=[[0], [1], [14]] +1.014000=[[0], [1], [14000]] +1.016=[[0], [1], [16]] +1.016002=[[0], [1], [16002]] +1.016006=[[0], [1], [16006]] +1.016007=[[0], [1], [16007]] +1.018.1=[[0], [1], [18], [1]] +1.01_2=[[0], [1], [1], [2]] +1.02=[[0], [1], [2]] +1.022=[[0], [1], [22]] +1.023=[[0], [1], [23]] +1.02r6=[[0], [1], [2, 'r', 6]] +1.03=[[0], [1], [3]] +1.03.00=[[0], [1], [3], [0]] +1.03.1=[[0], [1], [3], [1]] +1.03.2=[[0], [1], [3], [2]] +1.031=[[0], [1], [31]] +1.033=[[0], [1], [33]] +1.04=[[0], [1], [4]] +1.043=[[0], [1], [43]] +1.045=[[0], [1], [45]] +1.5=[[0], [1], [5]] +1.06=[[0], [1], [6]] +1.07=[[0], [1], [7]] +1.07.1=[[0], [1], [7], [1]] +1.08=[[0], [1], [8]] +1.09=[[0], [1], [9]] +1.0_0=[[0], [1], [0], [0]] +1.0_0.0=[[0], [1], [0], [0], [0]] +1.0_0.2=[[0], [1], [0], [0], [2]] +1.0_1=[[0], [1], [0], [1]] +1.0_1.1=[[0], [1], [0], [1], [1]] +1.0_10=[[0], [1], [0], [10]] +1.0_10.0=[[0], [1], [0], [10], [0]] +1.0_10.1=[[0], [1], [0], [10], [1]] +1.0_11=[[0], [1], [0], [11]] +1.0_11.0=[[0], [1], [0], [11], [0]] +1.0_12=[[0], [1], [0], [12]] +1.0_12.1=[[0], [1], [0], [12], [1]] +1.0_13=[[0], [1], [0], [13]] +1.0_14=[[0], [1], [0], [14]] +1.0_15=[[0], [1], [0], [15]] +1.0_15.1=[[0], [1], [0], [15], [1]] +1.0_16=[[0], [1], [0], [16]] +1.0_17=[[0], [1], [0], [17]] +1.0_18=[[0], [1], [0], [18]] +1.0_19=[[0], [1], [0], [19]] +1.0_2=[[0], [1], [0], [2]] +1.0_2.1=[[0], [1], [0], [2], [1]] +1.0_2.2=[[0], [1], [0], [2], [2]] +1.0_20=[[0], [1], [0], [20]] +1.0_20160527=[[0], [1], [0], [20160527]] +1.0_21=[[0], [1], [0], [21]] +1.0_22=[[0], [1], [0], [22]] +1.0_23=[[0], [1], [0], [23]] +1.0_24=[[0], [1], [0], [24]] +1.0_27=[[0], [1], [0], [27]] +1.0_29=[[0], [1], [0], [29]] +1.0_3=[[0], [1], [0], [3]] +1.0_3.1=[[0], [1], [0], [3], [1]] +1.0_30=[[0], [1], [0], [30]] +1.0_31=[[0], [1], [0], [31]] +1.0_32=[[0], [1], [0], [32]] +1.0_33=[[0], [1], [0], [33]] +1.0_39=[[0], [1], [0], [39]] +1.0_4=[[0], [1], [0], [4]] +1.0_40=[[0], [1], [0], [40]] +1.0_41=[[0], [1], [0], [41]] +1.0_42=[[0], [1], [0], [42]] +1.0_43=[[0], [1], [0], [43]] +1.0_5=[[0], [1], [0], [5]] +1.0_6=[[0], [1], [0], [6]] +1.0_6.1=[[0], [1], [0], [6], [1]] +1.0_7=[[0], [1], [0], [7]] +1.0_8=[[0], [1], [0], [8]] +1.0_8.1=[[0], [1], [0], [8], [1]] +1.0_9=[[0], [1], [0], [9]] +1.0_9.5=[[0], [1], [0], [9], [5]] +1.0a0=[[0], [1], [0, 'a', 0]] +1.0a1=[[0], [1], [0, 'a', 1]] +1.0a16=[[0], [1], [0, 'a', 16]] +1.0a17=[[0], [1], [0, 'a', 17]] +1.0b=[[0], [1], [0, 'b']] +1.0b1=[[0], [1], [0, 'b', 1]] +1.0b10=[[0], [1], [0, 'b', 10]] +1.0b13=[[0], [1], [0, 'b', 13]] +1.0b17=[[0], [1], [0, 'b', 17]] +1.0b19=[[0], [1], [0, 'b', 19]] +1.0b2=[[0], [1], [0, 'b', 2]] +1.0b20=[[0], [1], [0, 'b', 20]] +1.0b22=[[0], [1], [0, 'b', 22]] +1.0b23=[[0], [1], [0, 'b', 23]] +1.0b24=[[0], [1], [0, 'b', 24]] +1.0b25=[[0], [1], [0, 'b', 25]] +1.0b26=[[0], [1], [0, 'b', 26]] +1.0b29=[[0], [1], [0, 'b', 29]] +1.0b3=[[0], [1], [0, 'b', 3]] +1.0b30=[[0], [1], [0, 'b', 30]] +1.0b5=[[0], [1], [0, 'b', 5]] +1.0b5.1=[[0], [1], [0, 'b', 5], [1]] +1.0b6=[[0], [1], [0, 'b', 6]] +1.0b9=[[0], [1], [0, 'b', 9]] +1.0rc1=[[0], [1], [0, 'rc', 1]] +1.0rc2=[[0], [1], [0, 'rc', 2]] +1.0rc3=[[0], [1], [0, 'rc', 3]] +1.1=[[0], [1], [1]] +1.1.0=[[0], [1], [1], [0]] +1.1.0.0=[[0], [1], [1], [0], [0]] +1.1.0.1=[[0], [1], [1], [0], [1]] +1.1.0.11=[[0], [1], [1], [0], [11]] +1.1.0.12=[[0], [1], [1], [0], [12]] +1.1.0.14=[[0], [1], [1], [0], [14]] +1.1.0.2=[[0], [1], [1], [0], [2]] +1.1.0.3=[[0], [1], [1], [0], [3]] +1.1.0.4=[[0], [1], [1], [0], [4]] +1.1.0.6=[[0], [1], [1], [0], [6]] +1.1.0.7=[[0], [1], [1], [0], [7]] +1.1.0.8=[[0], [1], [1], [0], [8]] +1.1.0.9=[[0], [1], [1], [0], [9]] +1.1.0.beta1=[[0], [1], [1], [0], [0, 'beta', 1]] +1.1.0.post=[[0], [1], [1], [0], [0, inf]] +1.1.0.post1=[[0], [1], [1], [0], [0, inf, 1]] +1.1.0.post3=[[0], [1], [1], [0], [0, inf, 3]] +1.1.0_1=[[0], [1], [1], [0], [1]] +1.1.0_rc2=[[0], [1], [1], [0], [0, 'rc', 2]] +1.1.0b0=[[0], [1], [1], [0, 'b', 0]] +1.1.0b2=[[0], [1], [1], [0, 'b', 2]] +1.1.0pre=[[0], [1], [1], [0, 'pre']] +1.1.0rc1=[[0], [1], [1], [0, 'rc', 1]] +1.1.0rc2=[[0], [1], [1], [0, 'rc', 2]] +1.1.0se=[[0], [1], [1], [0, 'se']] +1.1.1=[[0], [1], [1], [1]] +1.1.1.0=[[0], [1], [1], [1], [0]] +1.1.1.1=[[0], [1], [1], [1], [1]] +1.1.1.2=[[0], [1], [1], [1], [2]] +1.1.1.3=[[0], [1], [1], [1], [3]] +1.1.1.4=[[0], [1], [1], [1], [4]] +1.1.1.5=[[0], [1], [1], [1], [5]] +1.1.1.6=[[0], [1], [1], [1], [6]] +1.1.1.beta1=[[0], [1], [1], [1], [0, 'beta', 1]] +1.1.1.post54=[[0], [1], [1], [1], [0, inf, 54]] +1.1.10=[[0], [1], [1], [10]] +1.1.10.8=[[0], [1], [1], [10], [8]] +1.1.10.9=[[0], [1], [1], [10], [9]] +1.1.11=[[0], [1], [1], [11]] +1.1.1106=[[0], [1], [1], [1106]] +1.1.12=[[0], [1], [1], [12]] +1.1.12.1=[[0], [1], [1], [12], [1]] +1.1.12.2=[[0], [1], [1], [12], [2]] +1.1.13=[[0], [1], [1], [13]] +1.1.14=[[0], [1], [1], [14]] +1.1.145=[[0], [1], [1], [145]] +1.1.15=[[0], [1], [1], [15]] +1.1.16=[[0], [1], [1], [16]] +1.1.17=[[0], [1], [1], [17]] +1.1.18=[[0], [1], [1], [18]] +1.1.180=[[0], [1], [1], [180]] +1.1.19=[[0], [1], [1], [19]] +1.1.1_3=[[0], [1], [1], [1], [3]] +1.1.1_5=[[0], [1], [1], [1], [5]] +1.1.1_6=[[0], [1], [1], [1], [6]] +1.1.1_7=[[0], [1], [1], [1], [7]] +1.1.1_9=[[0], [1], [1], [1], [9]] +1.1.1a=[[0], [1], [1], [1, 'a']] +1.1.1b=[[0], [1], [1], [1, 'b']] +1.1.1b0=[[0], [1], [1], [1, 'b', 0]] +1.1.1c=[[0], [1], [1], [1, 'c']] +1.1.1d=[[0], [1], [1], [1, 'd']] +1.1.1e=[[0], [1], [1], [1, 'e']] +1.1.1f=[[0], [1], [1], [1, 'f']] +1.1.1g=[[0], [1], [1], [1, 'g']] +1.1.1h=[[0], [1], [1], [1, 'h']] +1.1.1i=[[0], [1], [1], [1, 'i']] +1.1.1j=[[0], [1], [1], [1, 'j']] +1.1.1k=[[0], [1], [1], [1, 'k']] +1.1.1l=[[0], [1], [1], [1, 'l']] +1.1.1n=[[0], [1], [1], [1, 'n']] +1.1.1o=[[0], [1], [1], [1, 'o']] +1.1.1p=[[0], [1], [1], [1, 'p']] +1.1.1q=[[0], [1], [1], [1, 'q']] +1.1.1s=[[0], [1], [1], [1, 's']] +1.1.1t=[[0], [1], [1], [1, 't']] +1.1.1u=[[0], [1], [1], [1, 'u']] +1.1.2=[[0], [1], [1], [2]] +1.1.2.1=[[0], [1], [1], [2], [1]] +1.1.2.2=[[0], [1], [1], [2], [2]] +1.1.2.3=[[0], [1], [1], [2], [3]] +1.1.2.dev0=[[0], [1], [1], [2], [0, 'DEV', 0]] +1.1.2.dev2=[[0], [1], [1], [2], [0, 'DEV', 2]] +1.1.2.post1=[[0], [1], [1], [2], [0, inf, 1]] +1.1.20=[[0], [1], [1], [20]] +1.1.21=[[0], [1], [1], [21]] +1.1.22=[[0], [1], [1], [22]] +1.1.224.post0=[[0], [1], [1], [224], [0, inf, 0]] +1.1.224.post1=[[0], [1], [1], [224], [0, inf, 1]] +1.1.225=[[0], [1], [1], [225]] +1.1.226=[[0], [1], [1], [226]] +1.1.228=[[0], [1], [1], [228]] +1.1.229=[[0], [1], [1], [229]] +1.1.23=[[0], [1], [1], [23]] +1.1.231=[[0], [1], [1], [231]] +1.1.232=[[0], [1], [1], [232]] +1.1.233=[[0], [1], [1], [233]] +1.1.234=[[0], [1], [1], [234]] +1.1.236=[[0], [1], [1], [236]] +1.1.237=[[0], [1], [1], [237]] +1.1.238=[[0], [1], [1], [238]] +1.1.239=[[0], [1], [1], [239]] +1.1.24=[[0], [1], [1], [24]] +1.1.241=[[0], [1], [1], [241]] +1.1.242=[[0], [1], [1], [242]] +1.1.244=[[0], [1], [1], [244]] +1.1.247=[[0], [1], [1], [247]] +1.1.248=[[0], [1], [1], [248]] +1.1.25=[[0], [1], [1], [25]] +1.1.250=[[0], [1], [1], [250]] +1.1.251=[[0], [1], [1], [251]] +1.1.253=[[0], [1], [1], [253]] +1.1.254=[[0], [1], [1], [254]] +1.1.255=[[0], [1], [1], [255]] +1.1.256=[[0], [1], [1], [256]] +1.1.257=[[0], [1], [1], [257]] +1.1.258=[[0], [1], [1], [258]] +1.1.259=[[0], [1], [1], [259]] +1.1.26=[[0], [1], [1], [26]] +1.1.260=[[0], [1], [1], [260]] +1.1.262=[[0], [1], [1], [262]] +1.1.263=[[0], [1], [1], [263]] +1.1.264=[[0], [1], [1], [264]] +1.1.265=[[0], [1], [1], [265]] +1.1.266=[[0], [1], [1], [266]] +1.1.267=[[0], [1], [1], [267]] +1.1.268=[[0], [1], [1], [268]] +1.1.269=[[0], [1], [1], [269]] +1.1.27=[[0], [1], [1], [27]] +1.1.270=[[0], [1], [1], [270]] +1.1.271=[[0], [1], [1], [271]] +1.1.272=[[0], [1], [1], [272]] +1.1.273=[[0], [1], [1], [273]] +1.1.274=[[0], [1], [1], [274]] +1.1.275=[[0], [1], [1], [275]] +1.1.276=[[0], [1], [1], [276]] +1.1.277=[[0], [1], [1], [277]] +1.1.278=[[0], [1], [1], [278]] +1.1.279=[[0], [1], [1], [279]] +1.1.28=[[0], [1], [1], [28]] +1.1.280=[[0], [1], [1], [280]] +1.1.281=[[0], [1], [1], [281]] +1.1.282=[[0], [1], [1], [282]] +1.1.283=[[0], [1], [1], [283]] +1.1.284=[[0], [1], [1], [284]] +1.1.285=[[0], [1], [1], [285]] +1.1.286=[[0], [1], [1], [286]] +1.1.287=[[0], [1], [1], [287]] +1.1.288=[[0], [1], [1], [288]] +1.1.29=[[0], [1], [1], [29]] +1.1.291=[[0], [1], [1], [291]] +1.1.292=[[0], [1], [1], [292]] +1.1.293=[[0], [1], [1], [293]] +1.1.294=[[0], [1], [1], [294]] +1.1.295=[[0], [1], [1], [295]] +1.1.296=[[0], [1], [1], [296]] +1.1.297=[[0], [1], [1], [297]] +1.1.298=[[0], [1], [1], [298]] +1.1.299=[[0], [1], [1], [299]] +1.1.3=[[0], [1], [1], [3]] +1.1.3.1=[[0], [1], [1], [3], [1]] +1.1.3.2=[[0], [1], [1], [3], [2]] +1.1.3.post0=[[0], [1], [1], [3], [0, inf, 0]] +1.1.30=[[0], [1], [1], [30]] +1.1.301=[[0], [1], [1], [301]] +1.1.302=[[0], [1], [1], [302]] +1.1.303=[[0], [1], [1], [303]] +1.1.304=[[0], [1], [1], [304]] +1.1.305=[[0], [1], [1], [305]] +1.1.306=[[0], [1], [1], [306]] +1.1.307=[[0], [1], [1], [307]] +1.1.308=[[0], [1], [1], [308]] +1.1.309=[[0], [1], [1], [309]] +1.1.310=[[0], [1], [1], [310]] +1.1.311=[[0], [1], [1], [311]] +1.1.313=[[0], [1], [1], [313]] +1.1.32=[[0], [1], [1], [32]] +1.1.33=[[0], [1], [1], [33]] +1.1.35=[[0], [1], [1], [35]] +1.1.37=[[0], [1], [1], [37]] +1.1.39_2=[[0], [1], [1], [39], [2]] +1.1.39_3=[[0], [1], [1], [39], [3]] +1.1.4=[[0], [1], [1], [4]] +1.1.4.1=[[0], [1], [1], [4], [1]] +1.1.4.2=[[0], [1], [1], [4], [2]] +1.1.4.3=[[0], [1], [1], [4], [3]] +1.1.4.4=[[0], [1], [1], [4], [4]] +1.1.4.5=[[0], [1], [1], [4], [5]] +1.1.4.6=[[0], [1], [1], [4], [6]] +1.1.4.7=[[0], [1], [1], [4], [7]] +1.1.4.8=[[0], [1], [1], [4], [8]] +1.1.4.post0=[[0], [1], [1], [4], [0, inf, 0]] +1.1.4.post1=[[0], [1], [1], [4], [0, inf, 1]] +1.1.5=[[0], [1], [1], [5]] +1.1.5.0=[[0], [1], [1], [5], [0]] +1.1.5.1=[[0], [1], [1], [5], [1]] +1.1.5.2=[[0], [1], [1], [5], [2]] +1.1.5.post0=[[0], [1], [1], [5], [0, inf, 0]] +1.1.5.post1=[[0], [1], [1], [5], [0, inf, 1]] +1.1.57_1=[[0], [1], [1], [57], [1]] +1.1.57_2=[[0], [1], [1], [57], [2]] +1.1.57_3=[[0], [1], [1], [57], [3]] +1.1.6=[[0], [1], [1], [6]] +1.1.6.0=[[0], [1], [1], [6], [0]] +1.1.6.1=[[0], [1], [1], [6], [1]] +1.1.6.post1=[[0], [1], [1], [6], [0, inf, 1]] +1.1.6.post2=[[0], [1], [1], [6], [0, inf, 2]] +1.1.6.post3=[[0], [1], [1], [6], [0, inf, 3]] +1.1.6a=[[0], [1], [1], [6, 'a']] +1.1.7=[[0], [1], [1], [7]] +1.1.7.2=[[0], [1], [1], [7], [2]] +1.1.8=[[0], [1], [1], [8]] +1.1.8.0=[[0], [1], [1], [8], [0]] +1.1.8.3=[[0], [1], [1], [8], [3]] +1.1.8.4=[[0], [1], [1], [8], [4]] +1.1.9=[[0], [1], [1], [9]] +1.1.beta=[[0], [1], [1], [0, 'beta']] +1.1.post1=[[0], [1], [1], [0, inf, 1]] +1.10=[[0], [1], [10]] +1.10.0=[[0], [1], [10], [0]] +1.10.0.0=[[0], [1], [10], [0], [0]] +1.10.0.1=[[0], [1], [10], [0], [1]] +1.10.0.2=[[0], [1], [10], [0], [2]] +1.10.0.3=[[0], [1], [10], [0], [3]] +1.10.0.post137=[[0], [1], [10], [0], [0, inf, 137]] +1.10.0.post152=[[0], [1], [10], [0], [0, inf, 152]] +1.10.0.post154=[[0], [1], [10], [0], [0, inf, 154]] +1.10.0.post156=[[0], [1], [10], [0], [0, inf, 156]] +1.10.0.post196=[[0], [1], [10], [0], [0, inf, 196]] +1.10.0.post220=[[0], [1], [10], [0], [0, inf, 220]] +1.10.0.post228=[[0], [1], [10], [0], [0, inf, 228]] +1.10.0.post230=[[0], [1], [10], [0], [0, inf, 230]] +1.10.0.post249=[[0], [1], [10], [0], [0, inf, 249]] +1.10.0.post259=[[0], [1], [10], [0], [0, inf, 259]] +1.10.0.post266=[[0], [1], [10], [0], [0, inf, 266]] +1.10.0.post94=[[0], [1], [10], [0], [0, inf, 94]] +1.10.0a0=[[0], [1], [10], [0, 'a', 0]] +1.10.1=[[0], [1], [10], [1]] +1.10.1.0=[[0], [1], [10], [1], [0]] +1.10.1.4=[[0], [1], [10], [1], [4]] +1.10.1.post0=[[0], [1], [10], [1], [0, inf, 0]] +1.10.1.post20200504175005=[[0], [1], [10], [1], [0, inf, 20200504175005]] +1.10.10=[[0], [1], [10], [10]] +1.10.11=[[0], [1], [10], [11]] +1.10.12=[[0], [1], [10], [12]] +1.10.13=[[0], [1], [10], [13]] +1.10.14=[[0], [1], [10], [14]] +1.10.15=[[0], [1], [10], [15]] +1.10.16=[[0], [1], [10], [16]] +1.10.17=[[0], [1], [10], [17]] +1.10.18=[[0], [1], [10], [18]] +1.10.19=[[0], [1], [10], [19]] +1.10.2=[[0], [1], [10], [2]] +1.10.2.4=[[0], [1], [10], [2], [4]] +1.10.2.post1=[[0], [1], [10], [2], [0, inf, 1]] +1.10.20=[[0], [1], [10], [20]] +1.10.21=[[0], [1], [10], [21]] +1.10.22=[[0], [1], [10], [22]] +1.10.23=[[0], [1], [10], [23]] +1.10.24=[[0], [1], [10], [24]] +1.10.25=[[0], [1], [10], [25]] +1.10.26=[[0], [1], [10], [26]] +1.10.27=[[0], [1], [10], [27]] +1.10.28=[[0], [1], [10], [28]] +1.10.29=[[0], [1], [10], [29]] +1.10.3=[[0], [1], [10], [3]] +1.10.3.14=[[0], [1], [10], [3], [14]] +1.10.3.39=[[0], [1], [10], [3], [39]] +1.10.3.41=[[0], [1], [10], [3], [41]] +1.10.3.43=[[0], [1], [10], [3], [43]] +1.10.3.5=[[0], [1], [10], [3], [5]] +1.10.3.50=[[0], [1], [10], [3], [50]] +1.10.3.52=[[0], [1], [10], [3], [52]] +1.10.3.54=[[0], [1], [10], [3], [54]] +1.10.3.56=[[0], [1], [10], [3], [56]] +1.10.3.65=[[0], [1], [10], [3], [65]] +1.10.30=[[0], [1], [10], [30]] +1.10.31=[[0], [1], [10], [31]] +1.10.32=[[0], [1], [10], [32]] +1.10.33=[[0], [1], [10], [33]] +1.10.34=[[0], [1], [10], [34]] +1.10.35=[[0], [1], [10], [35]] +1.10.3585=[[0], [1], [10], [3585]] +1.10.36=[[0], [1], [10], [36]] +1.10.3616=[[0], [1], [10], [3616]] +1.10.3626=[[0], [1], [10], [3626]] +1.10.3651=[[0], [1], [10], [3651]] +1.10.3653=[[0], [1], [10], [3653]] +1.10.37=[[0], [1], [10], [37]] +1.10.38=[[0], [1], [10], [38]] +1.10.39=[[0], [1], [10], [39]] +1.10.3post1=[[0], [1], [10], [3, inf, 1]] +1.10.3post2=[[0], [1], [10], [3, inf, 2]] +1.10.4=[[0], [1], [10], [4]] +1.10.4.1=[[0], [1], [10], [4], [1]] +1.10.4.11=[[0], [1], [10], [4], [11]] +1.10.4.7=[[0], [1], [10], [4], [7]] +1.10.40=[[0], [1], [10], [40]] +1.10.41=[[0], [1], [10], [41]] +1.10.42=[[0], [1], [10], [42]] +1.10.43=[[0], [1], [10], [43]] +1.10.44=[[0], [1], [10], [44]] +1.10.45=[[0], [1], [10], [45]] +1.10.46=[[0], [1], [10], [46]] +1.10.47=[[0], [1], [10], [47]] +1.10.48=[[0], [1], [10], [48]] +1.10.49=[[0], [1], [10], [49]] +1.10.5=[[0], [1], [10], [5]] +1.10.5.1=[[0], [1], [10], [5], [1]] +1.10.50=[[0], [1], [10], [50]] +1.10.51=[[0], [1], [10], [51]] +1.10.52=[[0], [1], [10], [52]] +1.10.53=[[0], [1], [10], [53]] +1.10.54=[[0], [1], [10], [54]] +1.10.55=[[0], [1], [10], [55]] +1.10.56=[[0], [1], [10], [56]] +1.10.57=[[0], [1], [10], [57]] +1.10.58=[[0], [1], [10], [58]] +1.10.59=[[0], [1], [10], [59]] +1.10.6=[[0], [1], [10], [6]] +1.10.60=[[0], [1], [10], [60]] +1.10.61=[[0], [1], [10], [61]] +1.10.62=[[0], [1], [10], [62]] +1.10.63=[[0], [1], [10], [63]] +1.10.64=[[0], [1], [10], [64]] +1.10.65=[[0], [1], [10], [65]] +1.10.66=[[0], [1], [10], [66]] +1.10.67=[[0], [1], [10], [67]] +1.10.68=[[0], [1], [10], [68]] +1.10.69=[[0], [1], [10], [69]] +1.10.7=[[0], [1], [10], [7]] +1.10.70=[[0], [1], [10], [70]] +1.10.71=[[0], [1], [10], [71]] +1.10.72=[[0], [1], [10], [72]] +1.10.73=[[0], [1], [10], [73]] +1.10.74=[[0], [1], [10], [74]] +1.10.75=[[0], [1], [10], [75]] +1.10.76=[[0], [1], [10], [76]] +1.10.77=[[0], [1], [10], [77]] +1.10.78=[[0], [1], [10], [78]] +1.10.79=[[0], [1], [10], [79]] +1.10.8=[[0], [1], [10], [8]] +1.10.80=[[0], [1], [10], [80]] +1.10.81=[[0], [1], [10], [81]] +1.10.82=[[0], [1], [10], [82]] +1.10.83=[[0], [1], [10], [83]] +1.10.84=[[0], [1], [10], [84]] +1.10.9=[[0], [1], [10], [9]] +1.100=[[0], [1], [100]] +1.100.0=[[0], [1], [100], [0]] +1.100.1=[[0], [1], [100], [1]] +1.100.2=[[0], [1], [100], [2]] +1.1006=[[0], [1], [1006]] +1.100602=[[0], [1], [100602]] +1.100603=[[0], [1], [100603]] +1.101=[[0], [1], [101]] +1.101.0=[[0], [1], [101], [0]] +1.102=[[0], [1], [102]] +1.103=[[0], [1], [103]] +1.103.1=[[0], [1], [103], [1]] +1.104=[[0], [1], [104]] +1.105=[[0], [1], [105]] +1.106=[[0], [1], [106]] +1.107=[[0], [1], [107]] +1.107.2=[[0], [1], [107], [2]] +1.107.3=[[0], [1], [107], [3]] +1.109=[[0], [1], [109]] +1.10_0=[[0], [1], [10], [0]] +1.10_1=[[0], [1], [10], [1]] +1.10_2=[[0], [1], [10], [2]] +1.10_4=[[0], [1], [10], [4]] +1.10_7=[[0], [1], [10], [7]] +1.10rc1=[[0], [1], [10, 'rc', 1]] +1.11=[[0], [1], [11]] +1.11.0=[[0], [1], [11], [0]] +1.11.0.0=[[0], [1], [11], [0], [0]] +1.11.0.post18=[[0], [1], [11], [0], [0, inf, 18]] +1.11.0.post19=[[0], [1], [11], [0], [0, inf, 19]] +1.11.1=[[0], [1], [11], [1]] +1.11.1.1=[[0], [1], [11], [1], [1]] +1.11.1.post3=[[0], [1], [11], [1], [0, inf, 3]] +1.11.10=[[0], [1], [11], [10]] +1.11.10.40=[[0], [1], [11], [10], [40]] +1.11.10.59=[[0], [1], [11], [10], [59]] +1.11.11=[[0], [1], [11], [11]] +1.11.12=[[0], [1], [11], [12]] +1.11.12.31=[[0], [1], [11], [12], [31]] +1.11.12.5=[[0], [1], [11], [12], [5]] +1.11.12.56=[[0], [1], [11], [12], [56]] +1.11.12.92=[[0], [1], [11], [12], [92]] +1.11.120=[[0], [1], [11], [120]] +1.11.13=[[0], [1], [11], [13]] +1.11.14=[[0], [1], [11], [14]] +1.11.14.1=[[0], [1], [11], [14], [1]] +1.11.15=[[0], [1], [11], [15]] +1.11.16=[[0], [1], [11], [16]] +1.11.17=[[0], [1], [11], [17]] +1.11.18=[[0], [1], [11], [18]] +1.11.182=[[0], [1], [11], [182]] +1.11.19=[[0], [1], [11], [19]] +1.11.2=[[0], [1], [11], [2]] +1.11.2.1=[[0], [1], [11], [2], [1]] +1.11.20=[[0], [1], [11], [20]] +1.11.21=[[0], [1], [11], [21]] +1.11.22=[[0], [1], [11], [22]] +1.11.223=[[0], [1], [11], [223]] +1.11.23=[[0], [1], [11], [23]] +1.11.24=[[0], [1], [11], [24]] +1.11.25=[[0], [1], [11], [25]] +1.11.26=[[0], [1], [11], [26]] +1.11.27=[[0], [1], [11], [27]] +1.11.28=[[0], [1], [11], [28]] +1.11.29=[[0], [1], [11], [29]] +1.11.3=[[0], [1], [11], [3]] +1.11.30=[[0], [1], [11], [30]] +1.11.31=[[0], [1], [11], [31]] +1.11.32=[[0], [1], [11], [32]] +1.11.33=[[0], [1], [11], [33]] +1.11.34=[[0], [1], [11], [34]] +1.11.35=[[0], [1], [11], [35]] +1.11.36=[[0], [1], [11], [36]] +1.11.3697=[[0], [1], [11], [3697]] +1.11.37=[[0], [1], [11], [37]] +1.11.3731=[[0], [1], [11], [3731]] +1.11.3744=[[0], [1], [11], [3744]] +1.11.3747=[[0], [1], [11], [3747]] +1.11.3755=[[0], [1], [11], [3755]] +1.11.3762=[[0], [1], [11], [3762]] +1.11.3776=[[0], [1], [11], [3776]] +1.11.38=[[0], [1], [11], [38]] +1.11.39=[[0], [1], [11], [39]] +1.11.4=[[0], [1], [11], [4]] +1.11.40=[[0], [1], [11], [40]] +1.11.41=[[0], [1], [11], [41]] +1.11.42=[[0], [1], [11], [42]] +1.11.43=[[0], [1], [11], [43]] +1.11.44=[[0], [1], [11], [44]] +1.11.45=[[0], [1], [11], [45]] +1.11.46=[[0], [1], [11], [46]] +1.11.47=[[0], [1], [11], [47]] +1.11.48=[[0], [1], [11], [48]] +1.11.49=[[0], [1], [11], [49]] +1.11.5=[[0], [1], [11], [5]] +1.11.5.post0=[[0], [1], [11], [5], [0, inf, 0]] +1.11.54=[[0], [1], [11], [54]] +1.11.55=[[0], [1], [11], [55]] +1.11.56=[[0], [1], [11], [56]] +1.11.57=[[0], [1], [11], [57]] +1.11.58=[[0], [1], [11], [58]] +1.11.59=[[0], [1], [11], [59]] +1.11.6=[[0], [1], [11], [6]] +1.11.6.20=[[0], [1], [11], [6], [20]] +1.11.6.7=[[0], [1], [11], [6], [7]] +1.11.60=[[0], [1], [11], [60]] +1.11.61=[[0], [1], [11], [61]] +1.11.62=[[0], [1], [11], [62]] +1.11.63=[[0], [1], [11], [63]] +1.11.64=[[0], [1], [11], [64]] +1.11.65=[[0], [1], [11], [65]] +1.11.66=[[0], [1], [11], [66]] +1.11.67=[[0], [1], [11], [67]] +1.11.68=[[0], [1], [11], [68]] +1.11.7=[[0], [1], [11], [7]] +1.11.70=[[0], [1], [11], [70]] +1.11.8=[[0], [1], [11], [8]] +1.11.9=[[0], [1], [11], [9]] +1.110=[[0], [1], [110]] +1.111=[[0], [1], [111]] +1.112=[[0], [1], [112]] +1.113=[[0], [1], [113]] +1.114=[[0], [1], [114]] +1.115=[[0], [1], [115]] +1.116=[[0], [1], [116]] +1.117=[[0], [1], [117]] +1.118=[[0], [1], [118]] +1.11_1=[[0], [1], [11], [1]] +1.11_2=[[0], [1], [11], [2]] +1.11rc1=[[0], [1], [11, 'rc', 1]] +1.12=[[0], [1], [12]] +1.12.0=[[0], [1], [12], [0]] +1.12.0.13=[[0], [1], [12], [0], [13]] +1.12.0.9=[[0], [1], [12], [0], [9]] +1.12.1=[[0], [1], [12], [1]] +1.12.10=[[0], [1], [12], [10]] +1.12.100=[[0], [1], [12], [100]] +1.12.101=[[0], [1], [12], [101]] +1.12.102=[[0], [1], [12], [102]] +1.12.103=[[0], [1], [12], [103]] +1.12.104=[[0], [1], [12], [104]] +1.12.105=[[0], [1], [12], [105]] +1.12.106=[[0], [1], [12], [106]] +1.12.107=[[0], [1], [12], [107]] +1.12.108=[[0], [1], [12], [108]] +1.12.109=[[0], [1], [12], [109]] +1.12.11=[[0], [1], [12], [11]] +1.12.110=[[0], [1], [12], [110]] +1.12.111=[[0], [1], [12], [111]] +1.12.112=[[0], [1], [12], [112]] +1.12.113=[[0], [1], [12], [113]] +1.12.114=[[0], [1], [12], [114]] +1.12.115=[[0], [1], [12], [115]] +1.12.116=[[0], [1], [12], [116]] +1.12.117=[[0], [1], [12], [117]] +1.12.118=[[0], [1], [12], [118]] +1.12.119=[[0], [1], [12], [119]] +1.12.12=[[0], [1], [12], [12]] +1.12.120=[[0], [1], [12], [120]] +1.12.121=[[0], [1], [12], [121]] +1.12.122=[[0], [1], [12], [122]] +1.12.123=[[0], [1], [12], [123]] +1.12.124=[[0], [1], [12], [124]] +1.12.125=[[0], [1], [12], [125]] +1.12.126=[[0], [1], [12], [126]] +1.12.127=[[0], [1], [12], [127]] +1.12.128=[[0], [1], [12], [128]] +1.12.129=[[0], [1], [12], [129]] +1.12.13=[[0], [1], [12], [13]] +1.12.130=[[0], [1], [12], [130]] +1.12.131=[[0], [1], [12], [131]] +1.12.132=[[0], [1], [12], [132]] +1.12.133=[[0], [1], [12], [133]] +1.12.134=[[0], [1], [12], [134]] +1.12.135=[[0], [1], [12], [135]] +1.12.136=[[0], [1], [12], [136]] +1.12.137=[[0], [1], [12], [137]] +1.12.138=[[0], [1], [12], [138]] +1.12.139=[[0], [1], [12], [139]] +1.12.14=[[0], [1], [12], [14]] +1.12.140=[[0], [1], [12], [140]] +1.12.141=[[0], [1], [12], [141]] +1.12.142=[[0], [1], [12], [142]] +1.12.143=[[0], [1], [12], [143]] +1.12.144=[[0], [1], [12], [144]] +1.12.145=[[0], [1], [12], [145]] +1.12.146=[[0], [1], [12], [146]] +1.12.147=[[0], [1], [12], [147]] +1.12.148=[[0], [1], [12], [148]] +1.12.149=[[0], [1], [12], [149]] +1.12.15=[[0], [1], [12], [15]] +1.12.150=[[0], [1], [12], [150]] +1.12.151=[[0], [1], [12], [151]] +1.12.152=[[0], [1], [12], [152]] +1.12.153=[[0], [1], [12], [153]] +1.12.154=[[0], [1], [12], [154]] +1.12.155=[[0], [1], [12], [155]] +1.12.156=[[0], [1], [12], [156]] +1.12.157=[[0], [1], [12], [157]] +1.12.158=[[0], [1], [12], [158]] +1.12.159=[[0], [1], [12], [159]] +1.12.16=[[0], [1], [12], [16]] +1.12.160=[[0], [1], [12], [160]] +1.12.161=[[0], [1], [12], [161]] +1.12.162=[[0], [1], [12], [162]] +1.12.163=[[0], [1], [12], [163]] +1.12.164=[[0], [1], [12], [164]] +1.12.165=[[0], [1], [12], [165]] +1.12.166=[[0], [1], [12], [166]] +1.12.167=[[0], [1], [12], [167]] +1.12.168=[[0], [1], [12], [168]] +1.12.169=[[0], [1], [12], [169]] +1.12.17=[[0], [1], [12], [17]] +1.12.170=[[0], [1], [12], [170]] +1.12.171=[[0], [1], [12], [171]] +1.12.172=[[0], [1], [12], [172]] +1.12.173=[[0], [1], [12], [173]] +1.12.174=[[0], [1], [12], [174]] +1.12.175=[[0], [1], [12], [175]] +1.12.176=[[0], [1], [12], [176]] +1.12.177=[[0], [1], [12], [177]] +1.12.178=[[0], [1], [12], [178]] +1.12.179=[[0], [1], [12], [179]] +1.12.18=[[0], [1], [12], [18]] +1.12.180=[[0], [1], [12], [180]] +1.12.181=[[0], [1], [12], [181]] +1.12.182=[[0], [1], [12], [182]] +1.12.183=[[0], [1], [12], [183]] +1.12.184=[[0], [1], [12], [184]] +1.12.185=[[0], [1], [12], [185]] +1.12.186=[[0], [1], [12], [186]] +1.12.187=[[0], [1], [12], [187]] +1.12.188=[[0], [1], [12], [188]] +1.12.189=[[0], [1], [12], [189]] +1.12.19=[[0], [1], [12], [19]] +1.12.190=[[0], [1], [12], [190]] +1.12.191=[[0], [1], [12], [191]] +1.12.192=[[0], [1], [12], [192]] +1.12.193=[[0], [1], [12], [193]] +1.12.194=[[0], [1], [12], [194]] +1.12.195=[[0], [1], [12], [195]] +1.12.196=[[0], [1], [12], [196]] +1.12.197=[[0], [1], [12], [197]] +1.12.198=[[0], [1], [12], [198]] +1.12.199=[[0], [1], [12], [199]] +1.12.1_1=[[0], [1], [12], [1], [1]] +1.12.2=[[0], [1], [12], [2]] +1.12.2.12=[[0], [1], [12], [2], [12]] +1.12.2.13=[[0], [1], [12], [2], [13]] +1.12.2.20=[[0], [1], [12], [2], [20]] +1.12.2.5=[[0], [1], [12], [2], [5]] +1.12.20=[[0], [1], [12], [20]] +1.12.200=[[0], [1], [12], [200]] +1.12.201=[[0], [1], [12], [201]] +1.12.202=[[0], [1], [12], [202]] +1.12.203=[[0], [1], [12], [203]] +1.12.204=[[0], [1], [12], [204]] +1.12.205=[[0], [1], [12], [205]] +1.12.206=[[0], [1], [12], [206]] +1.12.207=[[0], [1], [12], [207]] +1.12.208=[[0], [1], [12], [208]] +1.12.209=[[0], [1], [12], [209]] +1.12.21=[[0], [1], [12], [21]] +1.12.210=[[0], [1], [12], [210]] +1.12.211=[[0], [1], [12], [211]] +1.12.212=[[0], [1], [12], [212]] +1.12.213=[[0], [1], [12], [213]] +1.12.214=[[0], [1], [12], [214]] +1.12.215=[[0], [1], [12], [215]] +1.12.216=[[0], [1], [12], [216]] +1.12.217=[[0], [1], [12], [217]] +1.12.218=[[0], [1], [12], [218]] +1.12.219=[[0], [1], [12], [219]] +1.12.22=[[0], [1], [12], [22]] +1.12.220=[[0], [1], [12], [220]] +1.12.221=[[0], [1], [12], [221]] +1.12.222=[[0], [1], [12], [222]] +1.12.223=[[0], [1], [12], [223]] +1.12.224=[[0], [1], [12], [224]] +1.12.225=[[0], [1], [12], [225]] +1.12.226=[[0], [1], [12], [226]] +1.12.227=[[0], [1], [12], [227]] +1.12.228=[[0], [1], [12], [228]] +1.12.229=[[0], [1], [12], [229]] +1.12.23=[[0], [1], [12], [23]] +1.12.230=[[0], [1], [12], [230]] +1.12.231=[[0], [1], [12], [231]] +1.12.232=[[0], [1], [12], [232]] +1.12.233=[[0], [1], [12], [233]] +1.12.234=[[0], [1], [12], [234]] +1.12.235=[[0], [1], [12], [235]] +1.12.236=[[0], [1], [12], [236]] +1.12.237=[[0], [1], [12], [237]] +1.12.238=[[0], [1], [12], [238]] +1.12.239=[[0], [1], [12], [239]] +1.12.24=[[0], [1], [12], [24]] +1.12.240=[[0], [1], [12], [240]] +1.12.241=[[0], [1], [12], [241]] +1.12.242=[[0], [1], [12], [242]] +1.12.243=[[0], [1], [12], [243]] +1.12.244=[[0], [1], [12], [244]] +1.12.245=[[0], [1], [12], [245]] +1.12.246=[[0], [1], [12], [246]] +1.12.247=[[0], [1], [12], [247]] +1.12.248=[[0], [1], [12], [248]] +1.12.249=[[0], [1], [12], [249]] +1.12.25=[[0], [1], [12], [25]] +1.12.250=[[0], [1], [12], [250]] +1.12.251=[[0], [1], [12], [251]] +1.12.252=[[0], [1], [12], [252]] +1.12.253=[[0], [1], [12], [253]] +1.12.26=[[0], [1], [12], [26]] +1.12.27=[[0], [1], [12], [27]] +1.12.28=[[0], [1], [12], [28]] +1.12.29=[[0], [1], [12], [29]] +1.12.2_1=[[0], [1], [12], [2], [1]] +1.12.3=[[0], [1], [12], [3]] +1.12.30=[[0], [1], [12], [30]] +1.12.31=[[0], [1], [12], [31]] +1.12.32=[[0], [1], [12], [32]] +1.12.33=[[0], [1], [12], [33]] +1.12.34=[[0], [1], [12], [34]] +1.12.35=[[0], [1], [12], [35]] +1.12.36=[[0], [1], [12], [36]] +1.12.37=[[0], [1], [12], [37]] +1.12.38=[[0], [1], [12], [38]] +1.12.3806=[[0], [1], [12], [3806]] +1.12.39=[[0], [1], [12], [39]] +1.12.4=[[0], [1], [12], [4]] +1.12.4.11=[[0], [1], [12], [4], [11]] +1.12.40=[[0], [1], [12], [40]] +1.12.41=[[0], [1], [12], [41]] +1.12.42=[[0], [1], [12], [42]] +1.12.43=[[0], [1], [12], [43]] +1.12.44=[[0], [1], [12], [44]] +1.12.45=[[0], [1], [12], [45]] +1.12.46=[[0], [1], [12], [46]] +1.12.47=[[0], [1], [12], [47]] +1.12.48=[[0], [1], [12], [48]] +1.12.49=[[0], [1], [12], [49]] +1.12.5=[[0], [1], [12], [5]] +1.12.50=[[0], [1], [12], [50]] +1.12.51=[[0], [1], [12], [51]] +1.12.52=[[0], [1], [12], [52]] +1.12.53=[[0], [1], [12], [53]] +1.12.54=[[0], [1], [12], [54]] +1.12.55=[[0], [1], [12], [55]] +1.12.56=[[0], [1], [12], [56]] +1.12.57=[[0], [1], [12], [57]] +1.12.58=[[0], [1], [12], [58]] +1.12.59=[[0], [1], [12], [59]] +1.12.6=[[0], [1], [12], [6]] +1.12.6.15=[[0], [1], [12], [6], [15]] +1.12.6.32=[[0], [1], [12], [6], [32]] +1.12.6.50=[[0], [1], [12], [6], [50]] +1.12.6.53=[[0], [1], [12], [6], [53]] +1.12.6.59=[[0], [1], [12], [6], [59]] +1.12.6.66=[[0], [1], [12], [6], [66]] +1.12.6.8=[[0], [1], [12], [6], [8]] +1.12.60=[[0], [1], [12], [60]] +1.12.61=[[0], [1], [12], [61]] +1.12.62=[[0], [1], [12], [62]] +1.12.63=[[0], [1], [12], [63]] +1.12.64=[[0], [1], [12], [64]] +1.12.65=[[0], [1], [12], [65]] +1.12.66=[[0], [1], [12], [66]] +1.12.67=[[0], [1], [12], [67]] +1.12.68=[[0], [1], [12], [68]] +1.12.69=[[0], [1], [12], [69]] +1.12.7=[[0], [1], [12], [7]] +1.12.70=[[0], [1], [12], [70]] +1.12.71=[[0], [1], [12], [71]] +1.12.72=[[0], [1], [12], [72]] +1.12.73=[[0], [1], [12], [73]] +1.12.74=[[0], [1], [12], [74]] +1.12.75=[[0], [1], [12], [75]] +1.12.76=[[0], [1], [12], [76]] +1.12.77=[[0], [1], [12], [77]] +1.12.78=[[0], [1], [12], [78]] +1.12.79=[[0], [1], [12], [79]] +1.12.8=[[0], [1], [12], [8]] +1.12.8.4=[[0], [1], [12], [8], [4]] +1.12.80=[[0], [1], [12], [80]] +1.12.81=[[0], [1], [12], [81]] +1.12.82=[[0], [1], [12], [82]] +1.12.83=[[0], [1], [12], [83]] +1.12.84=[[0], [1], [12], [84]] +1.12.85=[[0], [1], [12], [85]] +1.12.86=[[0], [1], [12], [86]] +1.12.87=[[0], [1], [12], [87]] +1.12.88=[[0], [1], [12], [88]] +1.12.89=[[0], [1], [12], [89]] +1.12.9=[[0], [1], [12], [9]] +1.12.90=[[0], [1], [12], [90]] +1.12.91=[[0], [1], [12], [91]] +1.12.92=[[0], [1], [12], [92]] +1.12.93=[[0], [1], [12], [93]] +1.12.94=[[0], [1], [12], [94]] +1.12.95=[[0], [1], [12], [95]] +1.12.96=[[0], [1], [12], [96]] +1.12.97=[[0], [1], [12], [97]] +1.12.98=[[0], [1], [12], [98]] +1.12.99=[[0], [1], [12], [99]] +1.12.post1=[[0], [1], [12], [0, inf, 1]] +1.122.0=[[0], [1], [122], [0]] +1.123=[[0], [1], [123]] +1.125=[[0], [1], [125]] +1.128=[[0], [1], [128]] +1.128.1=[[0], [1], [128], [1]] +1.12_0=[[0], [1], [12], [0]] +1.12_2=[[0], [1], [12], [2]] +1.12rc1=[[0], [1], [12, 'rc', 1]] +1.13=[[0], [1], [13]] +1.13.0=[[0], [1], [13], [0]] +1.13.0.1=[[0], [1], [13], [0], [1]] +1.13.0.16=[[0], [1], [13], [0], [16]] +1.13.0.28=[[0], [1], [13], [0], [28]] +1.13.0.4=[[0], [1], [13], [0], [4]] +1.13.0.44=[[0], [1], [13], [0], [44]] +1.13.0.49=[[0], [1], [13], [0], [49]] +1.13.0.55=[[0], [1], [13], [0], [55]] +1.13.0.61=[[0], [1], [13], [0], [61]] +1.13.0.64=[[0], [1], [13], [0], [64]] +1.13.1=[[0], [1], [13], [1]] +1.13.1.post0=[[0], [1], [13], [1], [0, inf, 0]] +1.13.1.post1=[[0], [1], [13], [1], [0, inf, 1]] +1.13.10=[[0], [1], [13], [10]] +1.13.11=[[0], [1], [13], [11]] +1.13.12=[[0], [1], [13], [12]] +1.13.13=[[0], [1], [13], [13]] +1.13.14=[[0], [1], [13], [14]] +1.13.15=[[0], [1], [13], [15]] +1.13.16=[[0], [1], [13], [16]] +1.13.17=[[0], [1], [13], [17]] +1.13.18=[[0], [1], [13], [18]] +1.13.19=[[0], [1], [13], [19]] +1.13.2=[[0], [1], [13], [2]] +1.13.2.107=[[0], [1], [13], [2], [107]] +1.13.2.13=[[0], [1], [13], [2], [13]] +1.13.2.32=[[0], [1], [13], [2], [32]] +1.13.2.36=[[0], [1], [13], [2], [36]] +1.13.20=[[0], [1], [13], [20]] +1.13.21=[[0], [1], [13], [21]] +1.13.22=[[0], [1], [13], [22]] +1.13.23=[[0], [1], [13], [23]] +1.13.24=[[0], [1], [13], [24]] +1.13.25=[[0], [1], [13], [25]] +1.13.26=[[0], [1], [13], [26]] +1.13.27=[[0], [1], [13], [27]] +1.13.28=[[0], [1], [13], [28]] +1.13.29=[[0], [1], [13], [29]] +1.13.3=[[0], [1], [13], [3]] +1.13.30=[[0], [1], [13], [30]] +1.13.31=[[0], [1], [13], [31]] +1.13.32=[[0], [1], [13], [32]] +1.13.33=[[0], [1], [13], [33]] +1.13.34=[[0], [1], [13], [34]] +1.13.35=[[0], [1], [13], [35]] +1.13.36=[[0], [1], [13], [36]] +1.13.37=[[0], [1], [13], [37]] +1.13.38=[[0], [1], [13], [38]] +1.13.39=[[0], [1], [13], [39]] +1.13.4=[[0], [1], [13], [4]] +1.13.40=[[0], [1], [13], [40]] +1.13.41=[[0], [1], [13], [41]] +1.13.42=[[0], [1], [13], [42]] +1.13.43=[[0], [1], [13], [43]] +1.13.44=[[0], [1], [13], [44]] +1.13.45=[[0], [1], [13], [45]] +1.13.46=[[0], [1], [13], [46]] +1.13.47=[[0], [1], [13], [47]] +1.13.48=[[0], [1], [13], [48]] +1.13.49=[[0], [1], [13], [49]] +1.13.5=[[0], [1], [13], [5]] +1.13.50=[[0], [1], [13], [50]] +1.13.6=[[0], [1], [13], [6]] +1.13.7=[[0], [1], [13], [7]] +1.13.8=[[0], [1], [13], [8]] +1.13.9=[[0], [1], [13], [9]] +1.130=[[0], [1], [130]] +1.135.1=[[0], [1], [135], [1]] +1.138.1=[[0], [1], [138], [1]] +1.139.1=[[0], [1], [139], [1]] +1.13_0=[[0], [1], [13], [0]] +1.13_1=[[0], [1], [13], [1]] +1.13a=[[0], [1], [13, 'a']] +1.13rc1=[[0], [1], [13, 'rc', 1]] +1.14=[[0], [1], [14]] +1.14.0=[[0], [1], [14], [0]] +1.14.0.post0=[[0], [1], [14], [0], [0, inf, 0]] +1.14.0rc1=[[0], [1], [14], [0, 'rc', 1]] +1.14.1=[[0], [1], [14], [1]] +1.14.1.post0=[[0], [1], [14], [1], [0, inf, 0]] +1.14.10=[[0], [1], [14], [10]] +1.14.10.1=[[0], [1], [14], [10], [1]] +1.14.11=[[0], [1], [14], [11]] +1.14.12=[[0], [1], [14], [12]] +1.14.13=[[0], [1], [14], [13]] +1.14.14=[[0], [1], [14], [14]] +1.14.15=[[0], [1], [14], [15]] +1.14.16=[[0], [1], [14], [16]] +1.14.17=[[0], [1], [14], [17]] +1.14.18=[[0], [1], [14], [18]] +1.14.19=[[0], [1], [14], [19]] +1.14.2=[[0], [1], [14], [2]] +1.14.20=[[0], [1], [14], [20]] +1.14.20.0=[[0], [1], [14], [20], [0]] +1.14.21=[[0], [1], [14], [21]] +1.14.22=[[0], [1], [14], [22]] +1.14.23=[[0], [1], [14], [23]] +1.14.24=[[0], [1], [14], [24]] +1.14.25=[[0], [1], [14], [25]] +1.14.26=[[0], [1], [14], [26]] +1.14.27=[[0], [1], [14], [27]] +1.14.27.0=[[0], [1], [14], [27], [0]] +1.14.28=[[0], [1], [14], [28]] +1.14.29=[[0], [1], [14], [29]] +1.14.29.0=[[0], [1], [14], [29], [0]] +1.14.3=[[0], [1], [14], [3]] +1.14.30=[[0], [1], [14], [30]] +1.14.30.0=[[0], [1], [14], [30], [0]] +1.14.31=[[0], [1], [14], [31]] +1.14.31.0=[[0], [1], [14], [31], [0]] +1.14.32=[[0], [1], [14], [32]] +1.14.32.0=[[0], [1], [14], [32], [0]] +1.14.33=[[0], [1], [14], [33]] +1.14.33.0=[[0], [1], [14], [33], [0]] +1.14.34=[[0], [1], [14], [34]] +1.14.34.0=[[0], [1], [14], [34], [0]] +1.14.35=[[0], [1], [14], [35]] +1.14.35.0=[[0], [1], [14], [35], [0]] +1.14.36=[[0], [1], [14], [36]] +1.14.36.0=[[0], [1], [14], [36], [0]] +1.14.37=[[0], [1], [14], [37]] +1.14.37.0=[[0], [1], [14], [37], [0]] +1.14.38=[[0], [1], [14], [38]] +1.14.38.0=[[0], [1], [14], [38], [0]] +1.14.39=[[0], [1], [14], [39]] +1.14.39.0=[[0], [1], [14], [39], [0]] +1.14.4=[[0], [1], [14], [4]] +1.14.40=[[0], [1], [14], [40]] +1.14.40.0=[[0], [1], [14], [40], [0]] +1.14.41=[[0], [1], [14], [41]] +1.14.41.0=[[0], [1], [14], [41], [0]] +1.14.42=[[0], [1], [14], [42]] +1.14.42.0=[[0], [1], [14], [42], [0]] +1.14.43=[[0], [1], [14], [43]] +1.14.43.0=[[0], [1], [14], [43], [0]] +1.14.44=[[0], [1], [14], [44]] +1.14.44.0=[[0], [1], [14], [44], [0]] +1.14.45=[[0], [1], [14], [45]] +1.14.45.0=[[0], [1], [14], [45], [0]] +1.14.46=[[0], [1], [14], [46]] +1.14.46.0=[[0], [1], [14], [46], [0]] +1.14.47=[[0], [1], [14], [47]] +1.14.47.0=[[0], [1], [14], [47], [0]] +1.14.48=[[0], [1], [14], [48]] +1.14.48.0=[[0], [1], [14], [48], [0]] +1.14.49=[[0], [1], [14], [49]] +1.14.49.0=[[0], [1], [14], [49], [0]] +1.14.5=[[0], [1], [14], [5]] +1.14.50=[[0], [1], [14], [50]] +1.14.50.0=[[0], [1], [14], [50], [0]] +1.14.51=[[0], [1], [14], [51]] +1.14.51.0=[[0], [1], [14], [51], [0]] +1.14.52=[[0], [1], [14], [52]] +1.14.52.1=[[0], [1], [14], [52], [1]] +1.14.53=[[0], [1], [14], [53]] +1.14.53.0=[[0], [1], [14], [53], [0]] +1.14.54=[[0], [1], [14], [54]] +1.14.54.0=[[0], [1], [14], [54], [0]] +1.14.54.1=[[0], [1], [14], [54], [1]] +1.14.55=[[0], [1], [14], [55]] +1.14.55.0=[[0], [1], [14], [55], [0]] +1.14.55.2=[[0], [1], [14], [55], [2]] +1.14.56=[[0], [1], [14], [56]] +1.14.56.0=[[0], [1], [14], [56], [0]] +1.14.57=[[0], [1], [14], [57]] +1.14.57.0=[[0], [1], [14], [57], [0]] +1.14.58=[[0], [1], [14], [58]] +1.14.58.0=[[0], [1], [14], [58], [0]] +1.14.59=[[0], [1], [14], [59]] +1.14.59.0=[[0], [1], [14], [59], [0]] +1.14.59.1=[[0], [1], [14], [59], [1]] +1.14.6=[[0], [1], [14], [6]] +1.14.60=[[0], [1], [14], [60]] +1.14.60.0=[[0], [1], [14], [60], [0]] +1.14.61=[[0], [1], [14], [61]] +1.14.61.0=[[0], [1], [14], [61], [0]] +1.14.62=[[0], [1], [14], [62]] +1.14.62.0=[[0], [1], [14], [62], [0]] +1.14.63=[[0], [1], [14], [63]] +1.14.63.0=[[0], [1], [14], [63], [0]] +1.14.64=[[0], [1], [14], [64]] +1.14.65=[[0], [1], [14], [65]] +1.14.66=[[0], [1], [14], [66]] +1.14.67=[[0], [1], [14], [67]] +1.14.68=[[0], [1], [14], [68]] +1.14.69=[[0], [1], [14], [69]] +1.14.6_1=[[0], [1], [14], [6], [1]] +1.14.7=[[0], [1], [14], [7]] +1.14.70=[[0], [1], [14], [70]] +1.14.8=[[0], [1], [14], [8]] +1.14.9=[[0], [1], [14], [9]] +1.14.post1=[[0], [1], [14], [0, inf, 1]] +1.141=[[0], [1], [141]] +1.143.1=[[0], [1], [143], [1]] +1.143.3=[[0], [1], [143], [3]] +1.14_4=[[0], [1], [14], [4]] +1.14a1.dev37=[[0], [1], [14, 'a', 1], [0, 'DEV', 37]] +1.14a1.dev48=[[0], [1], [14, 'a', 1], [0, 'DEV', 48]] +1.14rc1=[[0], [1], [14, 'rc', 1]] +1.15=[[0], [1], [15]] +1.15.0=[[0], [1], [15], [0]] +1.15.0.0=[[0], [1], [15], [0], [0]] +1.15.08.25=[[0], [1], [15], [8], [25]] +1.15.1=[[0], [1], [15], [1]] +1.15.1.0=[[0], [1], [15], [1], [0]] +1.15.10=[[0], [1], [15], [10]] +1.15.10.0=[[0], [1], [15], [10], [0]] +1.15.11=[[0], [1], [15], [11]] +1.15.11.0=[[0], [1], [15], [11], [0]] +1.15.12=[[0], [1], [15], [12]] +1.15.12.0=[[0], [1], [15], [12], [0]] +1.15.12.1=[[0], [1], [15], [12], [1]] +1.15.13=[[0], [1], [15], [13]] +1.15.13.0=[[0], [1], [15], [13], [0]] +1.15.13.1=[[0], [1], [15], [13], [1]] +1.15.14=[[0], [1], [15], [14]] +1.15.14.0=[[0], [1], [15], [14], [0]] +1.15.15=[[0], [1], [15], [15]] +1.15.15.0=[[0], [1], [15], [15], [0]] +1.15.16=[[0], [1], [15], [16]] +1.15.16.0=[[0], [1], [15], [16], [0]] +1.15.17=[[0], [1], [15], [17]] +1.15.17.0=[[0], [1], [15], [17], [0]] +1.15.18=[[0], [1], [15], [18]] +1.15.18.0=[[0], [1], [15], [18], [0]] +1.15.19=[[0], [1], [15], [19]] +1.15.2=[[0], [1], [15], [2]] +1.15.2.0=[[0], [1], [15], [2], [0]] +1.15.20=[[0], [1], [15], [20]] +1.15.21=[[0], [1], [15], [21]] +1.15.22=[[0], [1], [15], [22]] +1.15.23=[[0], [1], [15], [23]] +1.15.24=[[0], [1], [15], [24]] +1.15.25=[[0], [1], [15], [25]] +1.15.26=[[0], [1], [15], [26]] +1.15.27=[[0], [1], [15], [27]] +1.15.28=[[0], [1], [15], [28]] +1.15.29=[[0], [1], [15], [29]] +1.15.3=[[0], [1], [15], [3]] +1.15.3.0=[[0], [1], [15], [3], [0]] +1.15.30=[[0], [1], [15], [30]] +1.15.31=[[0], [1], [15], [31]] +1.15.32=[[0], [1], [15], [32]] +1.15.33=[[0], [1], [15], [33]] +1.15.34=[[0], [1], [15], [34]] +1.15.35=[[0], [1], [15], [35]] +1.15.36=[[0], [1], [15], [36]] +1.15.37=[[0], [1], [15], [37]] +1.15.38=[[0], [1], [15], [38]] +1.15.39=[[0], [1], [15], [39]] +1.15.4=[[0], [1], [15], [4]] +1.15.4.0=[[0], [1], [15], [4], [0]] +1.15.40=[[0], [1], [15], [40]] +1.15.41=[[0], [1], [15], [41]] +1.15.42=[[0], [1], [15], [42]] +1.15.43=[[0], [1], [15], [43]] +1.15.44=[[0], [1], [15], [44]] +1.15.45=[[0], [1], [15], [45]] +1.15.46=[[0], [1], [15], [46]] +1.15.47=[[0], [1], [15], [47]] +1.15.48=[[0], [1], [15], [48]] +1.15.49=[[0], [1], [15], [49]] +1.15.5=[[0], [1], [15], [5]] +1.15.5.0=[[0], [1], [15], [5], [0]] +1.15.50=[[0], [1], [15], [50]] +1.15.51=[[0], [1], [15], [51]] +1.15.52=[[0], [1], [15], [52]] +1.15.53=[[0], [1], [15], [53]] +1.15.54=[[0], [1], [15], [54]] +1.15.55=[[0], [1], [15], [55]] +1.15.56=[[0], [1], [15], [56]] +1.15.57=[[0], [1], [15], [57]] +1.15.58=[[0], [1], [15], [58]] +1.15.59=[[0], [1], [15], [59]] +1.15.6=[[0], [1], [15], [6]] +1.15.6.0=[[0], [1], [15], [6], [0]] +1.15.60=[[0], [1], [15], [60]] +1.15.61=[[0], [1], [15], [61]] +1.15.62=[[0], [1], [15], [62]] +1.15.63=[[0], [1], [15], [63]] +1.15.64=[[0], [1], [15], [64]] +1.15.65=[[0], [1], [15], [65]] +1.15.66=[[0], [1], [15], [66]] +1.15.67=[[0], [1], [15], [67]] +1.15.68=[[0], [1], [15], [68]] +1.15.69=[[0], [1], [15], [69]] +1.15.7=[[0], [1], [15], [7]] +1.15.7.0=[[0], [1], [15], [7], [0]] +1.15.70=[[0], [1], [15], [70]] +1.15.71=[[0], [1], [15], [71]] +1.15.72=[[0], [1], [15], [72]] +1.15.73=[[0], [1], [15], [73]] +1.15.74=[[0], [1], [15], [74]] +1.15.75=[[0], [1], [15], [75]] +1.15.76=[[0], [1], [15], [76]] +1.15.77=[[0], [1], [15], [77]] +1.15.78=[[0], [1], [15], [78]] +1.15.79=[[0], [1], [15], [79]] +1.15.8=[[0], [1], [15], [8]] +1.15.8.0=[[0], [1], [15], [8], [0]] +1.15.80=[[0], [1], [15], [80]] +1.15.81=[[0], [1], [15], [81]] +1.15.82=[[0], [1], [15], [82]] +1.15.83=[[0], [1], [15], [83]] +1.15.84=[[0], [1], [15], [84]] +1.15.85=[[0], [1], [15], [85]] +1.15.9=[[0], [1], [15], [9]] +1.15.9.0=[[0], [1], [15], [9], [0]] +1.15_0=[[0], [1], [15], [0]] +1.15rc1=[[0], [1], [15, 'rc', 1]] +1.16=[[0], [1], [16]] +1.16.0=[[0], [1], [16], [0]] +1.16.0.0=[[0], [1], [16], [0], [0]] +1.16.0.2=[[0], [1], [16], [0], [2]] +1.16.1=[[0], [1], [16], [1]] +1.16.1.0=[[0], [1], [16], [1], [0]] +1.16.10=[[0], [1], [16], [10]] +1.16.10.0=[[0], [1], [16], [10], [0]] +1.16.100=[[0], [1], [16], [100]] +1.16.101=[[0], [1], [16], [101]] +1.16.102=[[0], [1], [16], [102]] +1.16.103=[[0], [1], [16], [103]] +1.16.104=[[0], [1], [16], [104]] +1.16.105=[[0], [1], [16], [105]] +1.16.106=[[0], [1], [16], [106]] +1.16.107=[[0], [1], [16], [107]] +1.16.108=[[0], [1], [16], [108]] +1.16.109=[[0], [1], [16], [109]] +1.16.11=[[0], [1], [16], [11]] +1.16.110=[[0], [1], [16], [110]] +1.16.111=[[0], [1], [16], [111]] +1.16.112=[[0], [1], [16], [112]] +1.16.113=[[0], [1], [16], [113]] +1.16.114=[[0], [1], [16], [114]] +1.16.115=[[0], [1], [16], [115]] +1.16.116=[[0], [1], [16], [116]] +1.16.117=[[0], [1], [16], [117]] +1.16.118=[[0], [1], [16], [118]] +1.16.119=[[0], [1], [16], [119]] +1.16.12=[[0], [1], [16], [12]] +1.16.120=[[0], [1], [16], [120]] +1.16.121=[[0], [1], [16], [121]] +1.16.122=[[0], [1], [16], [122]] +1.16.123=[[0], [1], [16], [123]] +1.16.124=[[0], [1], [16], [124]] +1.16.125=[[0], [1], [16], [125]] +1.16.126=[[0], [1], [16], [126]] +1.16.127=[[0], [1], [16], [127]] +1.16.128=[[0], [1], [16], [128]] +1.16.129=[[0], [1], [16], [129]] +1.16.13=[[0], [1], [16], [13]] +1.16.13.0=[[0], [1], [16], [13], [0]] +1.16.130=[[0], [1], [16], [130]] +1.16.131=[[0], [1], [16], [131]] +1.16.132=[[0], [1], [16], [132]] +1.16.133=[[0], [1], [16], [133]] +1.16.134=[[0], [1], [16], [134]] +1.16.135=[[0], [1], [16], [135]] +1.16.136=[[0], [1], [16], [136]] +1.16.137=[[0], [1], [16], [137]] +1.16.138=[[0], [1], [16], [138]] +1.16.139=[[0], [1], [16], [139]] +1.16.14=[[0], [1], [16], [14]] +1.16.140=[[0], [1], [16], [140]] +1.16.141=[[0], [1], [16], [141]] +1.16.142=[[0], [1], [16], [142]] +1.16.143=[[0], [1], [16], [143]] +1.16.144=[[0], [1], [16], [144]] +1.16.145=[[0], [1], [16], [145]] +1.16.146=[[0], [1], [16], [146]] +1.16.147=[[0], [1], [16], [147]] +1.16.148=[[0], [1], [16], [148]] +1.16.149=[[0], [1], [16], [149]] +1.16.15=[[0], [1], [16], [15]] +1.16.15.0=[[0], [1], [16], [15], [0]] +1.16.150=[[0], [1], [16], [150]] +1.16.151=[[0], [1], [16], [151]] +1.16.152=[[0], [1], [16], [152]] +1.16.153=[[0], [1], [16], [153]] +1.16.154=[[0], [1], [16], [154]] +1.16.155=[[0], [1], [16], [155]] +1.16.156=[[0], [1], [16], [156]] +1.16.157=[[0], [1], [16], [157]] +1.16.158=[[0], [1], [16], [158]] +1.16.159=[[0], [1], [16], [159]] +1.16.16=[[0], [1], [16], [16]] +1.16.16.0=[[0], [1], [16], [16], [0]] +1.16.160=[[0], [1], [16], [160]] +1.16.161=[[0], [1], [16], [161]] +1.16.162=[[0], [1], [16], [162]] +1.16.163=[[0], [1], [16], [163]] +1.16.164=[[0], [1], [16], [164]] +1.16.165=[[0], [1], [16], [165]] +1.16.166=[[0], [1], [16], [166]] +1.16.167=[[0], [1], [16], [167]] +1.16.168=[[0], [1], [16], [168]] +1.16.169=[[0], [1], [16], [169]] +1.16.17=[[0], [1], [16], [17]] +1.16.17.0=[[0], [1], [16], [17], [0]] +1.16.170=[[0], [1], [16], [170]] +1.16.171=[[0], [1], [16], [171]] +1.16.172=[[0], [1], [16], [172]] +1.16.173=[[0], [1], [16], [173]] +1.16.174=[[0], [1], [16], [174]] +1.16.175=[[0], [1], [16], [175]] +1.16.176=[[0], [1], [16], [176]] +1.16.177=[[0], [1], [16], [177]] +1.16.178=[[0], [1], [16], [178]] +1.16.179=[[0], [1], [16], [179]] +1.16.18=[[0], [1], [16], [18]] +1.16.18.0=[[0], [1], [16], [18], [0]] +1.16.180=[[0], [1], [16], [180]] +1.16.181=[[0], [1], [16], [181]] +1.16.182=[[0], [1], [16], [182]] +1.16.183=[[0], [1], [16], [183]] +1.16.184=[[0], [1], [16], [184]] +1.16.185=[[0], [1], [16], [185]] +1.16.186=[[0], [1], [16], [186]] +1.16.187=[[0], [1], [16], [187]] +1.16.188=[[0], [1], [16], [188]] +1.16.189=[[0], [1], [16], [189]] +1.16.19=[[0], [1], [16], [19]] +1.16.19.0=[[0], [1], [16], [19], [0]] +1.16.190=[[0], [1], [16], [190]] +1.16.191=[[0], [1], [16], [191]] +1.16.192=[[0], [1], [16], [192]] +1.16.193=[[0], [1], [16], [193]] +1.16.194=[[0], [1], [16], [194]] +1.16.195=[[0], [1], [16], [195]] +1.16.196=[[0], [1], [16], [196]] +1.16.197=[[0], [1], [16], [197]] +1.16.198=[[0], [1], [16], [198]] +1.16.199=[[0], [1], [16], [199]] +1.16.1_1=[[0], [1], [16], [1], [1]] +1.16.2=[[0], [1], [16], [2]] +1.16.2.0=[[0], [1], [16], [2], [0]] +1.16.20=[[0], [1], [16], [20]] +1.16.20.0=[[0], [1], [16], [20], [0]] +1.16.200=[[0], [1], [16], [200]] +1.16.201=[[0], [1], [16], [201]] +1.16.202=[[0], [1], [16], [202]] +1.16.203=[[0], [1], [16], [203]] +1.16.204=[[0], [1], [16], [204]] +1.16.205=[[0], [1], [16], [205]] +1.16.206=[[0], [1], [16], [206]] +1.16.207=[[0], [1], [16], [207]] +1.16.208=[[0], [1], [16], [208]] +1.16.209=[[0], [1], [16], [209]] +1.16.21=[[0], [1], [16], [21]] +1.16.21.0=[[0], [1], [16], [21], [0]] +1.16.21.1=[[0], [1], [16], [21], [1]] +1.16.21.2=[[0], [1], [16], [21], [2]] +1.16.21.3=[[0], [1], [16], [21], [3]] +1.16.21.4=[[0], [1], [16], [21], [4]] +1.16.21.5=[[0], [1], [16], [21], [5]] +1.16.21.6=[[0], [1], [16], [21], [6]] +1.16.210=[[0], [1], [16], [210]] +1.16.211=[[0], [1], [16], [211]] +1.16.212=[[0], [1], [16], [212]] +1.16.213=[[0], [1], [16], [213]] +1.16.214=[[0], [1], [16], [214]] +1.16.215=[[0], [1], [16], [215]] +1.16.216=[[0], [1], [16], [216]] +1.16.217=[[0], [1], [16], [217]] +1.16.218=[[0], [1], [16], [218]] +1.16.219=[[0], [1], [16], [219]] +1.16.22=[[0], [1], [16], [22]] +1.16.22.0=[[0], [1], [16], [22], [0]] +1.16.220=[[0], [1], [16], [220]] +1.16.221=[[0], [1], [16], [221]] +1.16.222=[[0], [1], [16], [222]] +1.16.223=[[0], [1], [16], [223]] +1.16.224=[[0], [1], [16], [224]] +1.16.225=[[0], [1], [16], [225]] +1.16.226=[[0], [1], [16], [226]] +1.16.227=[[0], [1], [16], [227]] +1.16.228=[[0], [1], [16], [228]] +1.16.229=[[0], [1], [16], [229]] +1.16.23=[[0], [1], [16], [23]] +1.16.23.0=[[0], [1], [16], [23], [0]] +1.16.23.1=[[0], [1], [16], [23], [1]] +1.16.230=[[0], [1], [16], [230]] +1.16.231=[[0], [1], [16], [231]] +1.16.232=[[0], [1], [16], [232]] +1.16.233=[[0], [1], [16], [233]] +1.16.234=[[0], [1], [16], [234]] +1.16.235=[[0], [1], [16], [235]] +1.16.236=[[0], [1], [16], [236]] +1.16.237=[[0], [1], [16], [237]] +1.16.238=[[0], [1], [16], [238]] +1.16.239=[[0], [1], [16], [239]] +1.16.24=[[0], [1], [16], [24]] +1.16.24.0=[[0], [1], [16], [24], [0]] +1.16.240=[[0], [1], [16], [240]] +1.16.241=[[0], [1], [16], [241]] +1.16.242=[[0], [1], [16], [242]] +1.16.243=[[0], [1], [16], [243]] +1.16.244=[[0], [1], [16], [244]] +1.16.245=[[0], [1], [16], [245]] +1.16.246=[[0], [1], [16], [246]] +1.16.247=[[0], [1], [16], [247]] +1.16.248=[[0], [1], [16], [248]] +1.16.249=[[0], [1], [16], [249]] +1.16.25=[[0], [1], [16], [25]] +1.16.25.0=[[0], [1], [16], [25], [0]] +1.16.250=[[0], [1], [16], [250]] +1.16.251=[[0], [1], [16], [251]] +1.16.252=[[0], [1], [16], [252]] +1.16.253=[[0], [1], [16], [253]] +1.16.254=[[0], [1], [16], [254]] +1.16.255=[[0], [1], [16], [255]] +1.16.256=[[0], [1], [16], [256]] +1.16.257=[[0], [1], [16], [257]] +1.16.258=[[0], [1], [16], [258]] +1.16.259=[[0], [1], [16], [259]] +1.16.26=[[0], [1], [16], [26]] +1.16.26.0=[[0], [1], [16], [26], [0]] +1.16.26.1=[[0], [1], [16], [26], [1]] +1.16.260=[[0], [1], [16], [260]] +1.16.261=[[0], [1], [16], [261]] +1.16.262=[[0], [1], [16], [262]] +1.16.263=[[0], [1], [16], [263]] +1.16.264=[[0], [1], [16], [264]] +1.16.265=[[0], [1], [16], [265]] +1.16.266=[[0], [1], [16], [266]] +1.16.267=[[0], [1], [16], [267]] +1.16.268=[[0], [1], [16], [268]] +1.16.269=[[0], [1], [16], [269]] +1.16.27=[[0], [1], [16], [27]] +1.16.27.0=[[0], [1], [16], [27], [0]] +1.16.270=[[0], [1], [16], [270]] +1.16.271=[[0], [1], [16], [271]] +1.16.272=[[0], [1], [16], [272]] +1.16.273=[[0], [1], [16], [273]] +1.16.274=[[0], [1], [16], [274]] +1.16.275=[[0], [1], [16], [275]] +1.16.276=[[0], [1], [16], [276]] +1.16.277=[[0], [1], [16], [277]] +1.16.278=[[0], [1], [16], [278]] +1.16.279=[[0], [1], [16], [279]] +1.16.28=[[0], [1], [16], [28]] +1.16.28.0=[[0], [1], [16], [28], [0]] +1.16.28.1=[[0], [1], [16], [28], [1]] +1.16.280=[[0], [1], [16], [280]] +1.16.281=[[0], [1], [16], [281]] +1.16.282=[[0], [1], [16], [282]] +1.16.283=[[0], [1], [16], [283]] +1.16.284=[[0], [1], [16], [284]] +1.16.285=[[0], [1], [16], [285]] +1.16.286=[[0], [1], [16], [286]] +1.16.287=[[0], [1], [16], [287]] +1.16.288=[[0], [1], [16], [288]] +1.16.289=[[0], [1], [16], [289]] +1.16.29=[[0], [1], [16], [29]] +1.16.29.0=[[0], [1], [16], [29], [0]] +1.16.290=[[0], [1], [16], [290]] +1.16.291=[[0], [1], [16], [291]] +1.16.292=[[0], [1], [16], [292]] +1.16.293=[[0], [1], [16], [293]] +1.16.294=[[0], [1], [16], [294]] +1.16.295=[[0], [1], [16], [295]] +1.16.296=[[0], [1], [16], [296]] +1.16.297=[[0], [1], [16], [297]] +1.16.298=[[0], [1], [16], [298]] +1.16.299=[[0], [1], [16], [299]] +1.16.3=[[0], [1], [16], [3]] +1.16.3.0=[[0], [1], [16], [3], [0]] +1.16.30=[[0], [1], [16], [30]] +1.16.30.0=[[0], [1], [16], [30], [0]] +1.16.300=[[0], [1], [16], [300]] +1.16.301=[[0], [1], [16], [301]] +1.16.302=[[0], [1], [16], [302]] +1.16.303=[[0], [1], [16], [303]] +1.16.304=[[0], [1], [16], [304]] +1.16.305=[[0], [1], [16], [305]] +1.16.306=[[0], [1], [16], [306]] +1.16.307=[[0], [1], [16], [307]] +1.16.308=[[0], [1], [16], [308]] +1.16.309=[[0], [1], [16], [309]] +1.16.31=[[0], [1], [16], [31]] +1.16.31.0=[[0], [1], [16], [31], [0]] +1.16.31.1=[[0], [1], [16], [31], [1]] +1.16.310=[[0], [1], [16], [310]] +1.16.311=[[0], [1], [16], [311]] +1.16.312=[[0], [1], [16], [312]] +1.16.313=[[0], [1], [16], [313]] +1.16.314=[[0], [1], [16], [314]] +1.16.32=[[0], [1], [16], [32]] +1.16.32.0=[[0], [1], [16], [32], [0]] +1.16.33=[[0], [1], [16], [33]] +1.16.33.0=[[0], [1], [16], [33], [0]] +1.16.34=[[0], [1], [16], [34]] +1.16.34.0=[[0], [1], [16], [34], [0]] +1.16.35=[[0], [1], [16], [35]] +1.16.35.0=[[0], [1], [16], [35], [0]] +1.16.36=[[0], [1], [16], [36]] +1.16.36.0=[[0], [1], [16], [36], [0]] +1.16.37=[[0], [1], [16], [37]] +1.16.38=[[0], [1], [16], [38]] +1.16.38.0=[[0], [1], [16], [38], [0]] +1.16.39=[[0], [1], [16], [39]] +1.16.39.0=[[0], [1], [16], [39], [0]] +1.16.4=[[0], [1], [16], [4]] +1.16.4.0=[[0], [1], [16], [4], [0]] +1.16.40=[[0], [1], [16], [40]] +1.16.40.0=[[0], [1], [16], [40], [0]] +1.16.41=[[0], [1], [16], [41]] +1.16.41.0=[[0], [1], [16], [41], [0]] +1.16.42=[[0], [1], [16], [42]] +1.16.42.0=[[0], [1], [16], [42], [0]] +1.16.43=[[0], [1], [16], [43]] +1.16.43.0=[[0], [1], [16], [43], [0]] +1.16.44=[[0], [1], [16], [44]] +1.16.44.0=[[0], [1], [16], [44], [0]] +1.16.45=[[0], [1], [16], [45]] +1.16.45.0=[[0], [1], [16], [45], [0]] +1.16.46=[[0], [1], [16], [46]] +1.16.46.0=[[0], [1], [16], [46], [0]] +1.16.47=[[0], [1], [16], [47]] +1.16.47.0=[[0], [1], [16], [47], [0]] +1.16.48=[[0], [1], [16], [48]] +1.16.48.0=[[0], [1], [16], [48], [0]] +1.16.49=[[0], [1], [16], [49]] +1.16.49.0=[[0], [1], [16], [49], [0]] +1.16.5=[[0], [1], [16], [5]] +1.16.5.0=[[0], [1], [16], [5], [0]] +1.16.5.1=[[0], [1], [16], [5], [1]] +1.16.50=[[0], [1], [16], [50]] +1.16.50.0=[[0], [1], [16], [50], [0]] +1.16.51=[[0], [1], [16], [51]] +1.16.51.0=[[0], [1], [16], [51], [0]] +1.16.52=[[0], [1], [16], [52]] +1.16.52.0=[[0], [1], [16], [52], [0]] +1.16.53=[[0], [1], [16], [53]] +1.16.53.0=[[0], [1], [16], [53], [0]] +1.16.54=[[0], [1], [16], [54]] +1.16.54.0=[[0], [1], [16], [54], [0]] +1.16.55=[[0], [1], [16], [55]] +1.16.55.0=[[0], [1], [16], [55], [0]] +1.16.56=[[0], [1], [16], [56]] +1.16.56.0=[[0], [1], [16], [56], [0]] +1.16.57=[[0], [1], [16], [57]] +1.16.57.0=[[0], [1], [16], [57], [0]] +1.16.58=[[0], [1], [16], [58]] +1.16.58.0=[[0], [1], [16], [58], [0]] +1.16.59=[[0], [1], [16], [59]] +1.16.59.0=[[0], [1], [16], [59], [0]] +1.16.6=[[0], [1], [16], [6]] +1.16.6.0=[[0], [1], [16], [6], [0]] +1.16.60=[[0], [1], [16], [60]] +1.16.60.0=[[0], [1], [16], [60], [0]] +1.16.61=[[0], [1], [16], [61]] +1.16.61.0=[[0], [1], [16], [61], [0]] +1.16.62=[[0], [1], [16], [62]] +1.16.62.0=[[0], [1], [16], [62], [0]] +1.16.63=[[0], [1], [16], [63]] +1.16.63.0=[[0], [1], [16], [63], [0]] +1.16.64=[[0], [1], [16], [64]] +1.16.65=[[0], [1], [16], [65]] +1.16.66=[[0], [1], [16], [66]] +1.16.67=[[0], [1], [16], [67]] +1.16.68=[[0], [1], [16], [68]] +1.16.69=[[0], [1], [16], [69]] +1.16.7=[[0], [1], [16], [7]] +1.16.70=[[0], [1], [16], [70]] +1.16.71=[[0], [1], [16], [71]] +1.16.72=[[0], [1], [16], [72]] +1.16.73=[[0], [1], [16], [73]] +1.16.74=[[0], [1], [16], [74]] +1.16.75=[[0], [1], [16], [75]] +1.16.76=[[0], [1], [16], [76]] +1.16.77=[[0], [1], [16], [77]] +1.16.78=[[0], [1], [16], [78]] +1.16.79=[[0], [1], [16], [79]] +1.16.8=[[0], [1], [16], [8]] +1.16.80=[[0], [1], [16], [80]] +1.16.81=[[0], [1], [16], [81]] +1.16.82=[[0], [1], [16], [82]] +1.16.83=[[0], [1], [16], [83]] +1.16.84=[[0], [1], [16], [84]] +1.16.85=[[0], [1], [16], [85]] +1.16.86=[[0], [1], [16], [86]] +1.16.87=[[0], [1], [16], [87]] +1.16.88=[[0], [1], [16], [88]] +1.16.89=[[0], [1], [16], [89]] +1.16.9=[[0], [1], [16], [9]] +1.16.90=[[0], [1], [16], [90]] +1.16.91=[[0], [1], [16], [91]] +1.16.92=[[0], [1], [16], [92]] +1.16.93=[[0], [1], [16], [93]] +1.16.94=[[0], [1], [16], [94]] +1.16.95=[[0], [1], [16], [95]] +1.16.96=[[0], [1], [16], [96]] +1.16.97=[[0], [1], [16], [97]] +1.16.98=[[0], [1], [16], [98]] +1.16.99=[[0], [1], [16], [99]] +1.160.0=[[0], [1], [160], [0]] +1.16_3=[[0], [1], [16], [3]] +1.16rc1=[[0], [1], [16, 'rc', 1]] +1.17=[[0], [1], [17]] +1.17.0=[[0], [1], [17], [0]] +1.17.0.0=[[0], [1], [17], [0], [0]] +1.17.0.1=[[0], [1], [17], [0], [1]] +1.17.0.2=[[0], [1], [17], [0], [2]] +1.17.08.31=[[0], [1], [17], [8], [31]] +1.17.1=[[0], [1], [17], [1]] +1.17.1.0=[[0], [1], [17], [1], [0]] +1.17.1.1=[[0], [1], [17], [1], [1]] +1.17.1.2=[[0], [1], [17], [1], [2]] +1.17.1.3=[[0], [1], [17], [1], [3]] +1.17.1.4=[[0], [1], [17], [1], [4]] +1.17.10=[[0], [1], [17], [10]] +1.17.10.0=[[0], [1], [17], [10], [0]] +1.17.100=[[0], [1], [17], [100]] +1.17.101=[[0], [1], [17], [101]] +1.17.101.post1=[[0], [1], [17], [101], [0, inf, 1]] +1.17.102=[[0], [1], [17], [102]] +1.17.102.post1=[[0], [1], [17], [102], [0, inf, 1]] +1.17.103=[[0], [1], [17], [103]] +1.17.103.post1=[[0], [1], [17], [103], [0, inf, 1]] +1.17.104=[[0], [1], [17], [104]] +1.17.105=[[0], [1], [17], [105]] +1.17.106=[[0], [1], [17], [106]] +1.17.107=[[0], [1], [17], [107]] +1.17.108=[[0], [1], [17], [108]] +1.17.109=[[0], [1], [17], [109]] +1.17.11=[[0], [1], [17], [11]] +1.17.11.0=[[0], [1], [17], [11], [0]] +1.17.110=[[0], [1], [17], [110]] +1.17.111=[[0], [1], [17], [111]] +1.17.112=[[0], [1], [17], [112]] +1.17.12=[[0], [1], [17], [12]] +1.17.12.0=[[0], [1], [17], [12], [0]] +1.17.13=[[0], [1], [17], [13]] +1.17.13.0=[[0], [1], [17], [13], [0]] +1.17.14=[[0], [1], [17], [14]] +1.17.14.0=[[0], [1], [17], [14], [0]] +1.17.15=[[0], [1], [17], [15]] +1.17.15.0=[[0], [1], [17], [15], [0]] +1.17.16=[[0], [1], [17], [16]] +1.17.16.0=[[0], [1], [17], [16], [0]] +1.17.17=[[0], [1], [17], [17]] +1.17.17.0=[[0], [1], [17], [17], [0]] +1.17.18=[[0], [1], [17], [18]] +1.17.18.0=[[0], [1], [17], [18], [0]] +1.17.19=[[0], [1], [17], [19]] +1.17.19.0=[[0], [1], [17], [19], [0]] +1.17.2=[[0], [1], [17], [2]] +1.17.2.0=[[0], [1], [17], [2], [0]] +1.17.2.1=[[0], [1], [17], [2], [1]] +1.17.20=[[0], [1], [17], [20]] +1.17.20.0=[[0], [1], [17], [20], [0]] +1.17.21=[[0], [1], [17], [21]] +1.17.21.0=[[0], [1], [17], [21], [0]] +1.17.22=[[0], [1], [17], [22]] +1.17.22.0=[[0], [1], [17], [22], [0]] +1.17.23=[[0], [1], [17], [23]] +1.17.23.0=[[0], [1], [17], [23], [0]] +1.17.24=[[0], [1], [17], [24]] +1.17.24.0=[[0], [1], [17], [24], [0]] +1.17.25=[[0], [1], [17], [25]] +1.17.25.0=[[0], [1], [17], [25], [0]] +1.17.26=[[0], [1], [17], [26]] +1.17.26.0=[[0], [1], [17], [26], [0]] +1.17.27=[[0], [1], [17], [27]] +1.17.27.0=[[0], [1], [17], [27], [0]] +1.17.28=[[0], [1], [17], [28]] +1.17.28.0=[[0], [1], [17], [28], [0]] +1.17.29=[[0], [1], [17], [29]] +1.17.29.0=[[0], [1], [17], [29], [0]] +1.17.3=[[0], [1], [17], [3]] +1.17.3.0=[[0], [1], [17], [3], [0]] +1.17.30=[[0], [1], [17], [30]] +1.17.30.0=[[0], [1], [17], [30], [0]] +1.17.31=[[0], [1], [17], [31]] +1.17.31.0=[[0], [1], [17], [31], [0]] +1.17.32=[[0], [1], [17], [32]] +1.17.32.0=[[0], [1], [17], [32], [0]] +1.17.33=[[0], [1], [17], [33]] +1.17.33.0=[[0], [1], [17], [33], [0]] +1.17.34=[[0], [1], [17], [34]] +1.17.35=[[0], [1], [17], [35]] +1.17.35.0=[[0], [1], [17], [35], [0]] +1.17.36=[[0], [1], [17], [36]] +1.17.36.0=[[0], [1], [17], [36], [0]] +1.17.37=[[0], [1], [17], [37]] +1.17.37.0=[[0], [1], [17], [37], [0]] +1.17.38=[[0], [1], [17], [38]] +1.17.38.0=[[0], [1], [17], [38], [0]] +1.17.39=[[0], [1], [17], [39]] +1.17.39.0=[[0], [1], [17], [39], [0]] +1.17.4=[[0], [1], [17], [4]] +1.17.4.0=[[0], [1], [17], [4], [0]] +1.17.40=[[0], [1], [17], [40]] +1.17.40.0=[[0], [1], [17], [40], [0]] +1.17.41=[[0], [1], [17], [41]] +1.17.41.0=[[0], [1], [17], [41], [0]] +1.17.42=[[0], [1], [17], [42]] +1.17.42.0=[[0], [1], [17], [42], [0]] +1.17.43=[[0], [1], [17], [43]] +1.17.43.0=[[0], [1], [17], [43], [0]] +1.17.44=[[0], [1], [17], [44]] +1.17.44.0=[[0], [1], [17], [44], [0]] +1.17.45=[[0], [1], [17], [45]] +1.17.45.0=[[0], [1], [17], [45], [0]] +1.17.46=[[0], [1], [17], [46]] +1.17.46.0=[[0], [1], [17], [46], [0]] +1.17.47=[[0], [1], [17], [47]] +1.17.47.0=[[0], [1], [17], [47], [0]] +1.17.48=[[0], [1], [17], [48]] +1.17.48.0=[[0], [1], [17], [48], [0]] +1.17.49=[[0], [1], [17], [49]] +1.17.49.0=[[0], [1], [17], [49], [0]] +1.17.5=[[0], [1], [17], [5]] +1.17.5.0=[[0], [1], [17], [5], [0]] +1.17.50=[[0], [1], [17], [50]] +1.17.50.0=[[0], [1], [17], [50], [0]] +1.17.50.1=[[0], [1], [17], [50], [1]] +1.17.51=[[0], [1], [17], [51]] +1.17.51.0=[[0], [1], [17], [51], [0]] +1.17.52=[[0], [1], [17], [52]] +1.17.52.0=[[0], [1], [17], [52], [0]] +1.17.53=[[0], [1], [17], [53]] +1.17.53.0=[[0], [1], [17], [53], [0]] +1.17.53.1=[[0], [1], [17], [53], [1]] +1.17.54=[[0], [1], [17], [54]] +1.17.54.0=[[0], [1], [17], [54], [0]] +1.17.55=[[0], [1], [17], [55]] +1.17.55.0=[[0], [1], [17], [55], [0]] +1.17.56=[[0], [1], [17], [56]] +1.17.56.0=[[0], [1], [17], [56], [0]] +1.17.57=[[0], [1], [17], [57]] +1.17.57.0=[[0], [1], [17], [57], [0]] +1.17.58=[[0], [1], [17], [58]] +1.17.58.0=[[0], [1], [17], [58], [0]] +1.17.59=[[0], [1], [17], [59]] +1.17.59.0=[[0], [1], [17], [59], [0]] +1.17.6=[[0], [1], [17], [6]] +1.17.6.0=[[0], [1], [17], [6], [0]] +1.17.60=[[0], [1], [17], [60]] +1.17.60.0=[[0], [1], [17], [60], [0]] +1.17.60.1=[[0], [1], [17], [60], [1]] +1.17.61=[[0], [1], [17], [61]] +1.17.61.0=[[0], [1], [17], [61], [0]] +1.17.62=[[0], [1], [17], [62]] +1.17.62.0=[[0], [1], [17], [62], [0]] +1.17.63=[[0], [1], [17], [63]] +1.17.64=[[0], [1], [17], [64]] +1.17.64.1=[[0], [1], [17], [64], [1]] +1.17.64.2=[[0], [1], [17], [64], [2]] +1.17.65=[[0], [1], [17], [65]] +1.17.65.0=[[0], [1], [17], [65], [0]] +1.17.66=[[0], [1], [17], [66]] +1.17.66.0=[[0], [1], [17], [66], [0]] +1.17.67=[[0], [1], [17], [67]] +1.17.67.0=[[0], [1], [17], [67], [0]] +1.17.68=[[0], [1], [17], [68]] +1.17.68.0=[[0], [1], [17], [68], [0]] +1.17.69=[[0], [1], [17], [69]] +1.17.69.0=[[0], [1], [17], [69], [0]] +1.17.7=[[0], [1], [17], [7]] +1.17.7.0=[[0], [1], [17], [7], [0]] +1.17.70=[[0], [1], [17], [70]] +1.17.70.post2=[[0], [1], [17], [70], [0, inf, 2]] +1.17.71=[[0], [1], [17], [71]] +1.17.71.post1=[[0], [1], [17], [71], [0, inf, 1]] +1.17.72=[[0], [1], [17], [72]] +1.17.72.post1=[[0], [1], [17], [72], [0, inf, 1]] +1.17.73=[[0], [1], [17], [73]] +1.17.74=[[0], [1], [17], [74]] +1.17.75=[[0], [1], [17], [75]] +1.17.76=[[0], [1], [17], [76]] +1.17.77=[[0], [1], [17], [77]] +1.17.78=[[0], [1], [17], [78]] +1.17.79=[[0], [1], [17], [79]] +1.17.8=[[0], [1], [17], [8]] +1.17.8.0=[[0], [1], [17], [8], [0]] +1.17.8.1=[[0], [1], [17], [8], [1]] +1.17.8.2=[[0], [1], [17], [8], [2]] +1.17.80=[[0], [1], [17], [80]] +1.17.81=[[0], [1], [17], [81]] +1.17.82=[[0], [1], [17], [82]] +1.17.83=[[0], [1], [17], [83]] +1.17.84=[[0], [1], [17], [84]] +1.17.85=[[0], [1], [17], [85]] +1.17.86=[[0], [1], [17], [86]] +1.17.87=[[0], [1], [17], [87]] +1.17.88=[[0], [1], [17], [88]] +1.17.88.post1=[[0], [1], [17], [88], [0, inf, 1]] +1.17.89=[[0], [1], [17], [89]] +1.17.9=[[0], [1], [17], [9]] +1.17.9.0=[[0], [1], [17], [9], [0]] +1.17.90=[[0], [1], [17], [90]] +1.17.90.post1=[[0], [1], [17], [90], [0, inf, 1]] +1.17.91=[[0], [1], [17], [91]] +1.17.92=[[0], [1], [17], [92]] +1.17.92.post1=[[0], [1], [17], [92], [0, inf, 1]] +1.17.93=[[0], [1], [17], [93]] +1.17.94=[[0], [1], [17], [94]] +1.17.95=[[0], [1], [17], [95]] +1.17.96=[[0], [1], [17], [96]] +1.17.97=[[0], [1], [17], [97]] +1.17.98=[[0], [1], [17], [98]] +1.17.99=[[0], [1], [17], [99]] +1.17_0=[[0], [1], [17], [0]] +1.17rc1=[[0], [1], [17, 'rc', 1]] +1.18=[[0], [1], [18]] +1.18.0=[[0], [1], [18], [0]] +1.18.0.post0=[[0], [1], [18], [0], [0, inf, 0]] +1.18.06.29=[[0], [1], [18], [6], [29]] +1.18.1=[[0], [1], [18], [1]] +1.18.10=[[0], [1], [18], [10]] +1.18.100=[[0], [1], [18], [100]] +1.18.101=[[0], [1], [18], [101]] +1.18.102=[[0], [1], [18], [102]] +1.18.103=[[0], [1], [18], [103]] +1.18.104=[[0], [1], [18], [104]] +1.18.105=[[0], [1], [18], [105]] +1.18.106=[[0], [1], [18], [106]] +1.18.107=[[0], [1], [18], [107]] +1.18.108=[[0], [1], [18], [108]] +1.18.109=[[0], [1], [18], [109]] +1.18.11=[[0], [1], [18], [11]] +1.18.110=[[0], [1], [18], [110]] +1.18.111=[[0], [1], [18], [111]] +1.18.112=[[0], [1], [18], [112]] +1.18.113=[[0], [1], [18], [113]] +1.18.114=[[0], [1], [18], [114]] +1.18.115=[[0], [1], [18], [115]] +1.18.116=[[0], [1], [18], [116]] +1.18.117=[[0], [1], [18], [117]] +1.18.118=[[0], [1], [18], [118]] +1.18.119=[[0], [1], [18], [119]] +1.18.12=[[0], [1], [18], [12]] +1.18.120=[[0], [1], [18], [120]] +1.18.121=[[0], [1], [18], [121]] +1.18.122=[[0], [1], [18], [122]] +1.18.123=[[0], [1], [18], [123]] +1.18.124=[[0], [1], [18], [124]] +1.18.125=[[0], [1], [18], [125]] +1.18.126=[[0], [1], [18], [126]] +1.18.127=[[0], [1], [18], [127]] +1.18.128=[[0], [1], [18], [128]] +1.18.129=[[0], [1], [18], [129]] +1.18.13=[[0], [1], [18], [13]] +1.18.130=[[0], [1], [18], [130]] +1.18.131=[[0], [1], [18], [131]] +1.18.132=[[0], [1], [18], [132]] +1.18.133=[[0], [1], [18], [133]] +1.18.134=[[0], [1], [18], [134]] +1.18.135=[[0], [1], [18], [135]] +1.18.136=[[0], [1], [18], [136]] +1.18.137=[[0], [1], [18], [137]] +1.18.138=[[0], [1], [18], [138]] +1.18.139=[[0], [1], [18], [139]] +1.18.14=[[0], [1], [18], [14]] +1.18.140=[[0], [1], [18], [140]] +1.18.141=[[0], [1], [18], [141]] +1.18.142=[[0], [1], [18], [142]] +1.18.143=[[0], [1], [18], [143]] +1.18.144=[[0], [1], [18], [144]] +1.18.145=[[0], [1], [18], [145]] +1.18.146=[[0], [1], [18], [146]] +1.18.147=[[0], [1], [18], [147]] +1.18.148=[[0], [1], [18], [148]] +1.18.149=[[0], [1], [18], [149]] +1.18.15=[[0], [1], [18], [15]] +1.18.150=[[0], [1], [18], [150]] +1.18.151=[[0], [1], [18], [151]] +1.18.152=[[0], [1], [18], [152]] +1.18.153=[[0], [1], [18], [153]] +1.18.154=[[0], [1], [18], [154]] +1.18.155=[[0], [1], [18], [155]] +1.18.156=[[0], [1], [18], [156]] +1.18.157=[[0], [1], [18], [157]] +1.18.158=[[0], [1], [18], [158]] +1.18.159=[[0], [1], [18], [159]] +1.18.16=[[0], [1], [18], [16]] +1.18.160=[[0], [1], [18], [160]] +1.18.161=[[0], [1], [18], [161]] +1.18.162=[[0], [1], [18], [162]] +1.18.163=[[0], [1], [18], [163]] +1.18.164=[[0], [1], [18], [164]] +1.18.165=[[0], [1], [18], [165]] +1.18.166=[[0], [1], [18], [166]] +1.18.167=[[0], [1], [18], [167]] +1.18.168=[[0], [1], [18], [168]] +1.18.169=[[0], [1], [18], [169]] +1.18.17=[[0], [1], [18], [17]] +1.18.170=[[0], [1], [18], [170]] +1.18.171=[[0], [1], [18], [171]] +1.18.172=[[0], [1], [18], [172]] +1.18.173=[[0], [1], [18], [173]] +1.18.174=[[0], [1], [18], [174]] +1.18.175=[[0], [1], [18], [175]] +1.18.176=[[0], [1], [18], [176]] +1.18.177=[[0], [1], [18], [177]] +1.18.178=[[0], [1], [18], [178]] +1.18.179=[[0], [1], [18], [179]] +1.18.18=[[0], [1], [18], [18]] +1.18.180=[[0], [1], [18], [180]] +1.18.181=[[0], [1], [18], [181]] +1.18.182=[[0], [1], [18], [182]] +1.18.183=[[0], [1], [18], [183]] +1.18.184=[[0], [1], [18], [184]] +1.18.185=[[0], [1], [18], [185]] +1.18.186=[[0], [1], [18], [186]] +1.18.187=[[0], [1], [18], [187]] +1.18.188=[[0], [1], [18], [188]] +1.18.189=[[0], [1], [18], [189]] +1.18.19=[[0], [1], [18], [19]] +1.18.190=[[0], [1], [18], [190]] +1.18.191=[[0], [1], [18], [191]] +1.18.192=[[0], [1], [18], [192]] +1.18.193=[[0], [1], [18], [193]] +1.18.194=[[0], [1], [18], [194]] +1.18.196=[[0], [1], [18], [196]] +1.18.197=[[0], [1], [18], [197]] +1.18.198=[[0], [1], [18], [198]] +1.18.199=[[0], [1], [18], [199]] +1.18.2=[[0], [1], [18], [2]] +1.18.2.post1=[[0], [1], [18], [2], [0, inf, 1]] +1.18.20=[[0], [1], [18], [20]] +1.18.200=[[0], [1], [18], [200]] +1.18.201=[[0], [1], [18], [201]] +1.18.202=[[0], [1], [18], [202]] +1.18.203=[[0], [1], [18], [203]] +1.18.204=[[0], [1], [18], [204]] +1.18.205=[[0], [1], [18], [205]] +1.18.206=[[0], [1], [18], [206]] +1.18.207=[[0], [1], [18], [207]] +1.18.208=[[0], [1], [18], [208]] +1.18.209=[[0], [1], [18], [209]] +1.18.21=[[0], [1], [18], [21]] +1.18.210=[[0], [1], [18], [210]] +1.18.211=[[0], [1], [18], [211]] +1.18.212=[[0], [1], [18], [212]] +1.18.213=[[0], [1], [18], [213]] +1.18.214=[[0], [1], [18], [214]] +1.18.215=[[0], [1], [18], [215]] +1.18.216=[[0], [1], [18], [216]] +1.18.217=[[0], [1], [18], [217]] +1.18.218=[[0], [1], [18], [218]] +1.18.219=[[0], [1], [18], [219]] +1.18.22=[[0], [1], [18], [22]] +1.18.220=[[0], [1], [18], [220]] +1.18.221=[[0], [1], [18], [221]] +1.18.222=[[0], [1], [18], [222]] +1.18.223=[[0], [1], [18], [223]] +1.18.23=[[0], [1], [18], [23]] +1.18.24=[[0], [1], [18], [24]] +1.18.25=[[0], [1], [18], [25]] +1.18.26=[[0], [1], [18], [26]] +1.18.27=[[0], [1], [18], [27]] +1.18.28=[[0], [1], [18], [28]] +1.18.29=[[0], [1], [18], [29]] +1.18.3=[[0], [1], [18], [3]] +1.18.30=[[0], [1], [18], [30]] +1.18.31=[[0], [1], [18], [31]] +1.18.32=[[0], [1], [18], [32]] +1.18.33=[[0], [1], [18], [33]] +1.18.34=[[0], [1], [18], [34]] +1.18.35=[[0], [1], [18], [35]] +1.18.36=[[0], [1], [18], [36]] +1.18.37=[[0], [1], [18], [37]] +1.18.38=[[0], [1], [18], [38]] +1.18.39=[[0], [1], [18], [39]] +1.18.4=[[0], [1], [18], [4]] +1.18.40=[[0], [1], [18], [40]] +1.18.41=[[0], [1], [18], [41]] +1.18.42=[[0], [1], [18], [42]] +1.18.43=[[0], [1], [18], [43]] +1.18.44=[[0], [1], [18], [44]] +1.18.45=[[0], [1], [18], [45]] +1.18.46=[[0], [1], [18], [46]] +1.18.47=[[0], [1], [18], [47]] +1.18.48=[[0], [1], [18], [48]] +1.18.49=[[0], [1], [18], [49]] +1.18.5=[[0], [1], [18], [5]] +1.18.50=[[0], [1], [18], [50]] +1.18.51=[[0], [1], [18], [51]] +1.18.52=[[0], [1], [18], [52]] +1.18.53=[[0], [1], [18], [53]] +1.18.54=[[0], [1], [18], [54]] +1.18.55=[[0], [1], [18], [55]] +1.18.56=[[0], [1], [18], [56]] +1.18.57=[[0], [1], [18], [57]] +1.18.58=[[0], [1], [18], [58]] +1.18.59=[[0], [1], [18], [59]] +1.18.6=[[0], [1], [18], [6]] +1.18.60=[[0], [1], [18], [60]] +1.18.61=[[0], [1], [18], [61]] +1.18.62=[[0], [1], [18], [62]] +1.18.63=[[0], [1], [18], [63]] +1.18.64=[[0], [1], [18], [64]] +1.18.65=[[0], [1], [18], [65]] +1.18.66=[[0], [1], [18], [66]] +1.18.67=[[0], [1], [18], [67]] +1.18.68=[[0], [1], [18], [68]] +1.18.69=[[0], [1], [18], [69]] +1.18.7=[[0], [1], [18], [7]] +1.18.70=[[0], [1], [18], [70]] +1.18.71=[[0], [1], [18], [71]] +1.18.72=[[0], [1], [18], [72]] +1.18.73=[[0], [1], [18], [73]] +1.18.74=[[0], [1], [18], [74]] +1.18.75=[[0], [1], [18], [75]] +1.18.76=[[0], [1], [18], [76]] +1.18.77=[[0], [1], [18], [77]] +1.18.78=[[0], [1], [18], [78]] +1.18.79=[[0], [1], [18], [79]] +1.18.8=[[0], [1], [18], [8]] +1.18.80=[[0], [1], [18], [80]] +1.18.81=[[0], [1], [18], [81]] +1.18.82=[[0], [1], [18], [82]] +1.18.83=[[0], [1], [18], [83]] +1.18.84=[[0], [1], [18], [84]] +1.18.85=[[0], [1], [18], [85]] +1.18.86=[[0], [1], [18], [86]] +1.18.87=[[0], [1], [18], [87]] +1.18.88=[[0], [1], [18], [88]] +1.18.89=[[0], [1], [18], [89]] +1.18.9=[[0], [1], [18], [9]] +1.18.90=[[0], [1], [18], [90]] +1.18.91=[[0], [1], [18], [91]] +1.18.92=[[0], [1], [18], [92]] +1.18.93=[[0], [1], [18], [93]] +1.18.94=[[0], [1], [18], [94]] +1.18.95=[[0], [1], [18], [95]] +1.18.96=[[0], [1], [18], [96]] +1.18.97=[[0], [1], [18], [97]] +1.18.98=[[0], [1], [18], [98]] +1.18.99=[[0], [1], [18], [99]] +1.182770=[[0], [1], [182770]] +1.186.0=[[0], [1], [186], [0]] +1.18_1=[[0], [1], [18], [1]] +1.18rc1=[[0], [1], [18, 'rc', 1]] +1.19=[[0], [1], [19]] +1.19.0=[[0], [1], [19], [0]] +1.19.1=[[0], [1], [19], [1]] +1.19.1.post1=[[0], [1], [19], [1], [0, inf, 1]] +1.19.10=[[0], [1], [19], [10]] +1.19.100=[[0], [1], [19], [100]] +1.19.101=[[0], [1], [19], [101]] +1.19.102=[[0], [1], [19], [102]] +1.19.103=[[0], [1], [19], [103]] +1.19.104=[[0], [1], [19], [104]] +1.19.105=[[0], [1], [19], [105]] +1.19.106=[[0], [1], [19], [106]] +1.19.107=[[0], [1], [19], [107]] +1.19.108=[[0], [1], [19], [108]] +1.19.109=[[0], [1], [19], [109]] +1.19.11=[[0], [1], [19], [11]] +1.19.110=[[0], [1], [19], [110]] +1.19.111=[[0], [1], [19], [111]] +1.19.112=[[0], [1], [19], [112]] +1.19.12=[[0], [1], [19], [12]] +1.19.13=[[0], [1], [19], [13]] +1.19.14=[[0], [1], [19], [14]] +1.19.15=[[0], [1], [19], [15]] +1.19.16=[[0], [1], [19], [16]] +1.19.17=[[0], [1], [19], [17]] +1.19.18=[[0], [1], [19], [18]] +1.19.19=[[0], [1], [19], [19]] +1.19.2=[[0], [1], [19], [2]] +1.19.20=[[0], [1], [19], [20]] +1.19.21=[[0], [1], [19], [21]] +1.19.22=[[0], [1], [19], [22]] +1.19.23=[[0], [1], [19], [23]] +1.19.24=[[0], [1], [19], [24]] +1.19.25=[[0], [1], [19], [25]] +1.19.26=[[0], [1], [19], [26]] +1.19.27=[[0], [1], [19], [27]] +1.19.28=[[0], [1], [19], [28]] +1.19.29=[[0], [1], [19], [29]] +1.19.3=[[0], [1], [19], [3]] +1.19.30=[[0], [1], [19], [30]] +1.19.31=[[0], [1], [19], [31]] +1.19.32=[[0], [1], [19], [32]] +1.19.33=[[0], [1], [19], [33]] +1.19.34=[[0], [1], [19], [34]] +1.19.35=[[0], [1], [19], [35]] +1.19.36=[[0], [1], [19], [36]] +1.19.37=[[0], [1], [19], [37]] +1.19.38=[[0], [1], [19], [38]] +1.19.39=[[0], [1], [19], [39]] +1.19.4=[[0], [1], [19], [4]] +1.19.40=[[0], [1], [19], [40]] +1.19.41=[[0], [1], [19], [41]] +1.19.42=[[0], [1], [19], [42]] +1.19.43=[[0], [1], [19], [43]] +1.19.44=[[0], [1], [19], [44]] +1.19.45=[[0], [1], [19], [45]] +1.19.46=[[0], [1], [19], [46]] +1.19.47=[[0], [1], [19], [47]] +1.19.48=[[0], [1], [19], [48]] +1.19.49=[[0], [1], [19], [49]] +1.19.5=[[0], [1], [19], [5]] +1.19.50=[[0], [1], [19], [50]] +1.19.51=[[0], [1], [19], [51]] +1.19.52=[[0], [1], [19], [52]] +1.19.53=[[0], [1], [19], [53]] +1.19.54=[[0], [1], [19], [54]] +1.19.55=[[0], [1], [19], [55]] +1.19.56=[[0], [1], [19], [56]] +1.19.57=[[0], [1], [19], [57]] +1.19.58=[[0], [1], [19], [58]] +1.19.59=[[0], [1], [19], [59]] +1.19.6=[[0], [1], [19], [6]] +1.19.60=[[0], [1], [19], [60]] +1.19.61=[[0], [1], [19], [61]] +1.19.62=[[0], [1], [19], [62]] +1.19.63=[[0], [1], [19], [63]] +1.19.64=[[0], [1], [19], [64]] +1.19.65=[[0], [1], [19], [65]] +1.19.66=[[0], [1], [19], [66]] +1.19.67=[[0], [1], [19], [67]] +1.19.68=[[0], [1], [19], [68]] +1.19.69=[[0], [1], [19], [69]] +1.19.7=[[0], [1], [19], [7]] +1.19.70=[[0], [1], [19], [70]] +1.19.71=[[0], [1], [19], [71]] +1.19.72=[[0], [1], [19], [72]] +1.19.73=[[0], [1], [19], [73]] +1.19.74=[[0], [1], [19], [74]] +1.19.75=[[0], [1], [19], [75]] +1.19.76=[[0], [1], [19], [76]] +1.19.77=[[0], [1], [19], [77]] +1.19.78=[[0], [1], [19], [78]] +1.19.79=[[0], [1], [19], [79]] +1.19.8=[[0], [1], [19], [8]] +1.19.80=[[0], [1], [19], [80]] +1.19.81=[[0], [1], [19], [81]] +1.19.82=[[0], [1], [19], [82]] +1.19.83=[[0], [1], [19], [83]] +1.19.84=[[0], [1], [19], [84]] +1.19.85=[[0], [1], [19], [85]] +1.19.86=[[0], [1], [19], [86]] +1.19.87=[[0], [1], [19], [87]] +1.19.88=[[0], [1], [19], [88]] +1.19.89=[[0], [1], [19], [89]] +1.19.9=[[0], [1], [19], [9]] +1.19.90=[[0], [1], [19], [90]] +1.19.91=[[0], [1], [19], [91]] +1.19.92=[[0], [1], [19], [92]] +1.19.93=[[0], [1], [19], [93]] +1.19.94=[[0], [1], [19], [94]] +1.19.95=[[0], [1], [19], [95]] +1.19.96=[[0], [1], [19], [96]] +1.19.97=[[0], [1], [19], [97]] +1.19.98=[[0], [1], [19], [98]] +1.19.99=[[0], [1], [19], [99]] +1.1903=[[0], [1], [1903]] +1.196.0=[[0], [1], [196], [0]] +1.19rc1=[[0], [1], [19, 'rc', 1]] +1.1_0=[[0], [1], [1], [0]] +1.1_0.1=[[0], [1], [1], [0], [1]] +1.1_1=[[0], [1], [1], [1]] +1.1_1.1=[[0], [1], [1], [1], [1]] +1.1_10=[[0], [1], [1], [10]] +1.1_11=[[0], [1], [1], [11]] +1.1_12=[[0], [1], [1], [12]] +1.1_13=[[0], [1], [1], [13]] +1.1_14=[[0], [1], [1], [14]] +1.1_15=[[0], [1], [1], [15]] +1.1_15.1=[[0], [1], [1], [15], [1]] +1.1_15.2=[[0], [1], [1], [15], [2]] +1.1_18_1=[[0], [1], [1], [18], [1]] +1.1_19=[[0], [1], [1], [19]] +1.1_2=[[0], [1], [1], [2]] +1.1_21=[[0], [1], [1], [21]] +1.1_221=[[0], [1], [1], [221]] +1.1_221.1=[[0], [1], [1], [221], [1]] +1.1_221.2=[[0], [1], [1], [221], [2]] +1.1_23=[[0], [1], [1], [23]] +1.1_24=[[0], [1], [1], [24]] +1.1_25=[[0], [1], [1], [25]] +1.1_26=[[0], [1], [1], [26]] +1.1_27=[[0], [1], [1], [27]] +1.1_27.1=[[0], [1], [1], [27], [1]] +1.1_28=[[0], [1], [1], [28]] +1.1_29=[[0], [1], [1], [29]] +1.1_3=[[0], [1], [1], [3]] +1.1_30=[[0], [1], [1], [30]] +1.1_31=[[0], [1], [1], [31]] +1.1_32=[[0], [1], [1], [32]] +1.1_33=[[0], [1], [1], [33]] +1.1_4=[[0], [1], [1], [4]] +1.1_4.1=[[0], [1], [1], [4], [1]] +1.1_4.2=[[0], [1], [1], [4], [2]] +1.1_4.3=[[0], [1], [1], [4], [3]] +1.1_5=[[0], [1], [1], [5]] +1.1_6=[[0], [1], [1], [6]] +1.1_7=[[0], [1], [1], [7]] +1.1_7.3=[[0], [1], [1], [7], [3]] +1.1_7.4=[[0], [1], [1], [7], [4]] +1.1_8=[[0], [1], [1], [8]] +1.1_8.1=[[0], [1], [1], [8], [1]] +1.1_9=[[0], [1], [1], [9]] +1.1_9.4=[[0], [1], [1], [9], [4]] +1.1_9.5=[[0], [1], [1], [9], [5]] +1.1_9.7=[[0], [1], [1], [9], [7]] +1.1b=[[0], [1], [1, 'b']] +1.1rc0=[[0], [1], [1, 'rc', 0]] +1.1rc3=[[0], [1], [1, 'rc', 3]] +1.2=[[0], [1], [2]] +1.2.0=[[0], [1], [2], [0]] +1.2.0.0=[[0], [1], [2], [0], [0]] +1.2.0.1=[[0], [1], [2], [0], [1]] +1.2.0.10=[[0], [1], [2], [0], [10]] +1.2.0.11=[[0], [1], [2], [0], [11]] +1.2.0.12=[[0], [1], [2], [0], [12]] +1.2.0.13=[[0], [1], [2], [0], [13]] +1.2.0.16=[[0], [1], [2], [0], [16]] +1.2.0.19=[[0], [1], [2], [0], [19]] +1.2.0.2=[[0], [1], [2], [0], [2]] +1.2.0.23=[[0], [1], [2], [0], [23]] +1.2.0.24=[[0], [1], [2], [0], [24]] +1.2.0.26=[[0], [1], [2], [0], [26]] +1.2.0.27=[[0], [1], [2], [0], [27]] +1.2.0.29=[[0], [1], [2], [0], [29]] +1.2.0.3=[[0], [1], [2], [0], [3]] +1.2.0.30=[[0], [1], [2], [0], [30]] +1.2.0.31=[[0], [1], [2], [0], [31]] +1.2.0.33=[[0], [1], [2], [0], [33]] +1.2.0.35=[[0], [1], [2], [0], [35]] +1.2.0.36=[[0], [1], [2], [0], [36]] +1.2.0.37=[[0], [1], [2], [0], [37]] +1.2.0.38=[[0], [1], [2], [0], [38]] +1.2.0.39=[[0], [1], [2], [0], [39]] +1.2.0.4=[[0], [1], [2], [0], [4]] +1.2.0.40=[[0], [1], [2], [0], [40]] +1.2.0.43=[[0], [1], [2], [0], [43]] +1.2.0.44=[[0], [1], [2], [0], [44]] +1.2.0.45=[[0], [1], [2], [0], [45]] +1.2.0.46=[[0], [1], [2], [0], [46]] +1.2.0.47=[[0], [1], [2], [0], [47]] +1.2.0.48=[[0], [1], [2], [0], [48]] +1.2.0.49=[[0], [1], [2], [0], [49]] +1.2.0.5=[[0], [1], [2], [0], [5]] +1.2.0.50=[[0], [1], [2], [0], [50]] +1.2.0.51=[[0], [1], [2], [0], [51]] +1.2.0.53=[[0], [1], [2], [0], [53]] +1.2.0.54=[[0], [1], [2], [0], [54]] +1.2.0.56=[[0], [1], [2], [0], [56]] +1.2.0.57=[[0], [1], [2], [0], [57]] +1.2.0.58=[[0], [1], [2], [0], [58]] +1.2.0.60=[[0], [1], [2], [0], [60]] +1.2.0.61=[[0], [1], [2], [0], [61]] +1.2.0.62=[[0], [1], [2], [0], [62]] +1.2.0.7=[[0], [1], [2], [0], [7]] +1.2.0.beta1=[[0], [1], [2], [0], [0, 'beta', 1]] +1.2.0.post0=[[0], [1], [2], [0], [0, inf, 0]] +1.2.0.pre=[[0], [1], [2], [0], [0, 'pre']] +1.2.5=[[0], [1], [2], [5]] +1.2.0a1=[[0], [1], [2], [0, 'a', 1]] +1.2.0b0=[[0], [1], [2], [0, 'b', 0]] +1.2.0c=[[0], [1], [2], [0, 'c']] +1.2.1=[[0], [1], [2], [1]] +1.2.1.1=[[0], [1], [2], [1], [1]] +1.2.1.2=[[0], [1], [2], [1], [2]] +1.2.1.beta1=[[0], [1], [2], [1], [0, 'beta', 1]] +1.2.1.post1=[[0], [1], [2], [1], [0, inf, 1]] +1.2.1.post2=[[0], [1], [2], [1], [0, inf, 2]] +1.2.1.post2205=[[0], [1], [2], [1], [0, inf, 2205]] +1.2.1.post2206=[[0], [1], [2], [1], [0, inf, 2206]] +1.2.1.post2207=[[0], [1], [2], [1], [0, inf, 2207]] +1.2.1.post2208=[[0], [1], [2], [1], [0, inf, 2208]] +1.2.10=[[0], [1], [2], [10]] +1.2.100=[[0], [1], [2], [100]] +1.2.101=[[0], [1], [2], [101]] +1.2.102=[[0], [1], [2], [102]] +1.2.103=[[0], [1], [2], [103]] +1.2.105=[[0], [1], [2], [105]] +1.2.106=[[0], [1], [2], [106]] +1.2.107=[[0], [1], [2], [107]] +1.2.108=[[0], [1], [2], [108]] +1.2.109=[[0], [1], [2], [109]] +1.2.11=[[0], [1], [2], [11]] +1.2.110=[[0], [1], [2], [110]] +1.2.111=[[0], [1], [2], [111]] +1.2.112=[[0], [1], [2], [112]] +1.2.113=[[0], [1], [2], [113]] +1.2.114=[[0], [1], [2], [114]] +1.2.116=[[0], [1], [2], [116]] +1.2.118=[[0], [1], [2], [118]] +1.2.119=[[0], [1], [2], [119]] +1.2.12=[[0], [1], [2], [12]] +1.2.120=[[0], [1], [2], [120]] +1.2.121=[[0], [1], [2], [121]] +1.2.122=[[0], [1], [2], [122]] +1.2.123=[[0], [1], [2], [123]] +1.2.124=[[0], [1], [2], [124]] +1.2.125=[[0], [1], [2], [125]] +1.2.126=[[0], [1], [2], [126]] +1.2.127=[[0], [1], [2], [127]] +1.2.128=[[0], [1], [2], [128]] +1.2.129=[[0], [1], [2], [129]] +1.2.13=[[0], [1], [2], [13]] +1.2.130=[[0], [1], [2], [130]] +1.2.131=[[0], [1], [2], [131]] +1.2.132=[[0], [1], [2], [132]] +1.2.133=[[0], [1], [2], [133]] +1.2.133.2=[[0], [1], [2], [133], [2]] +1.2.134=[[0], [1], [2], [134]] +1.2.135=[[0], [1], [2], [135]] +1.2.136=[[0], [1], [2], [136]] +1.2.137=[[0], [1], [2], [137]] +1.2.138=[[0], [1], [2], [138]] +1.2.139=[[0], [1], [2], [139]] +1.2.14=[[0], [1], [2], [14]] +1.2.140=[[0], [1], [2], [140]] +1.2.141=[[0], [1], [2], [141]] +1.2.15=[[0], [1], [2], [15]] +1.2.16=[[0], [1], [2], [16]] +1.2.17=[[0], [1], [2], [17]] +1.2.17.1=[[0], [1], [2], [17], [1]] +1.2.18=[[0], [1], [2], [18]] +1.2.19=[[0], [1], [2], [19]] +1.2.1a6=[[0], [1], [2], [1, 'a', 6]] +1.2.1b0=[[0], [1], [2], [1, 'b', 0]] +1.2.1post1=[[0], [1], [2], [1, inf, 1]] +1.2.2=[[0], [1], [2], [2]] +1.2.2.1=[[0], [1], [2], [2], [1]] +1.2.2.2=[[0], [1], [2], [2], [2]] +1.2.2.3=[[0], [1], [2], [2], [3]] +1.2.2.5=[[0], [1], [2], [2], [5]] +1.2.2.beta1=[[0], [1], [2], [2], [0, 'beta', 1]] +1.2.20=[[0], [1], [2], [20]] +1.2.21=[[0], [1], [2], [21]] +1.2.22=[[0], [1], [2], [22]] +1.2.23=[[0], [1], [2], [23]] +1.2.24=[[0], [1], [2], [24]] +1.2.25=[[0], [1], [2], [25]] +1.2.26=[[0], [1], [2], [26]] +1.2.27=[[0], [1], [2], [27]] +1.2.28=[[0], [1], [2], [28]] +1.2.29=[[0], [1], [2], [29]] +1.2.295.0=[[0], [1], [2], [295], [0]] +1.2.3=[[0], [1], [2], [3]] +1.2.3.2=[[0], [1], [2], [3], [2]] +1.2.3.25=[[0], [1], [2], [3], [25]] +1.2.3.beta1=[[0], [1], [2], [3], [0, 'beta', 1]] +1.2.30=[[0], [1], [2], [30]] +1.2.31=[[0], [1], [2], [31]] +1.2.312.0=[[0], [1], [2], [312], [0]] +1.2.32=[[0], [1], [2], [32]] +1.2.323.0=[[0], [1], [2], [323], [0]] +1.2.33=[[0], [1], [2], [33]] +1.2.331.0=[[0], [1], [2], [331], [0]] +1.2.335=[[0], [1], [2], [335]] +1.2.339.0=[[0], [1], [2], [339], [0]] +1.2.34=[[0], [1], [2], [34]] +1.2.35=[[0], [1], [2], [35]] +1.2.36=[[0], [1], [2], [36]] +1.2.37=[[0], [1], [2], [37]] +1.2.38=[[0], [1], [2], [38]] +1.2.39=[[0], [1], [2], [39]] +1.2.398.0=[[0], [1], [2], [398], [0]] +1.2.3_1=[[0], [1], [2], [3], [1]] +1.2.3_6=[[0], [1], [2], [3], [6]] +1.2.3a=[[0], [1], [2], [3, 'a']] +1.2.4=[[0], [1], [2], [4]] +1.2.4.1=[[0], [1], [2], [4], [1]] +1.2.4.2=[[0], [1], [2], [4], [2]] +1.2.4.beta1=[[0], [1], [2], [4], [0, 'beta', 1]] +1.2.41=[[0], [1], [2], [41]] +1.2.42=[[0], [1], [2], [42]] +1.2.43=[[0], [1], [2], [43]] +1.2.44=[[0], [1], [2], [44]] +1.2.45=[[0], [1], [2], [45]] +1.2.46=[[0], [1], [2], [46]] +1.2.463.0=[[0], [1], [2], [463], [0]] +1.2.47=[[0], [1], [2], [47]] +1.2.475=[[0], [1], [2], [475]] +1.2.48=[[0], [1], [2], [48]] +1.2.49=[[0], [1], [2], [49]] +1.2.5=[[0], [1], [2], [5]] +1.2.5.2=[[0], [1], [2], [5], [2]] +1.2.5.beta1=[[0], [1], [2], [5], [0, 'beta', 1]] +1.2.50=[[0], [1], [2], [50]] +1.2.51=[[0], [1], [2], [51]] +1.2.52=[[0], [1], [2], [52]] +1.2.53=[[0], [1], [2], [53]] +1.2.54=[[0], [1], [2], [54]] +1.2.55=[[0], [1], [2], [55]] +1.2.56=[[0], [1], [2], [56]] +1.2.58=[[0], [1], [2], [58]] +1.2.59=[[0], [1], [2], [59]] +1.2.6=[[0], [1], [2], [6]] +1.2.6.1=[[0], [1], [2], [6], [1]] +1.2.6.2=[[0], [1], [2], [6], [2]] +1.2.6.3=[[0], [1], [2], [6], [3]] +1.2.6.4=[[0], [1], [2], [6], [4]] +1.2.6.beta1=[[0], [1], [2], [6], [0, 'beta', 1]] +1.2.60=[[0], [1], [2], [60]] +1.2.61=[[0], [1], [2], [61]] +1.2.62=[[0], [1], [2], [62]] +1.2.63=[[0], [1], [2], [63]] +1.2.64=[[0], [1], [2], [64]] +1.2.65=[[0], [1], [2], [65]] +1.2.66=[[0], [1], [2], [66]] +1.2.67=[[0], [1], [2], [67]] +1.2.68=[[0], [1], [2], [68]] +1.2.69=[[0], [1], [2], [69]] +1.2.6rc49=[[0], [1], [2], [6, 'rc', 49]] +1.2.7=[[0], [1], [2], [7]] +1.2.7.1=[[0], [1], [2], [7], [1]] +1.2.7.2=[[0], [1], [2], [7], [2]] +1.2.7.3=[[0], [1], [2], [7], [3]] +1.2.7.4=[[0], [1], [2], [7], [4]] +1.2.7.5=[[0], [1], [2], [7], [5]] +1.2.7.beta1=[[0], [1], [2], [7], [0, 'beta', 1]] +1.2.7.post13=[[0], [1], [2], [7], [0, inf, 13]] +1.2.7.post20=[[0], [1], [2], [7], [0, inf, 20]] +1.2.7.post8=[[0], [1], [2], [7], [0, inf, 8]] +1.2.70=[[0], [1], [2], [70]] +1.2.71=[[0], [1], [2], [71]] +1.2.73=[[0], [1], [2], [73]] +1.2.75=[[0], [1], [2], [75]] +1.2.76=[[0], [1], [2], [76]] +1.2.77=[[0], [1], [2], [77]] +1.2.78=[[0], [1], [2], [78]] +1.2.7a1=[[0], [1], [2], [7, 'a', 1]] +1.2.7a13=[[0], [1], [2], [7, 'a', 13]] +1.2.7a20=[[0], [1], [2], [7, 'a', 20]] +1.2.7a31=[[0], [1], [2], [7, 'a', 31]] +1.2.7a37=[[0], [1], [2], [7, 'a', 37]] +1.2.7a38=[[0], [1], [2], [7, 'a', 38]] +1.2.7a43=[[0], [1], [2], [7, 'a', 43]] +1.2.7a45=[[0], [1], [2], [7, 'a', 45]] +1.2.7a5=[[0], [1], [2], [7, 'a', 5]] +1.2.8=[[0], [1], [2], [8]] +1.2.8.1=[[0], [1], [2], [8], [1]] +1.2.8.post0=[[0], [1], [2], [8], [0, inf, 0]] +1.2.8.post1=[[0], [1], [2], [8], [0, inf, 1]] +1.2.8.post6=[[0], [1], [2], [8], [0, inf, 6]] +1.2.81=[[0], [1], [2], [81]] +1.2.82=[[0], [1], [2], [82]] +1.2.83=[[0], [1], [2], [83]] +1.2.84=[[0], [1], [2], [84]] +1.2.86=[[0], [1], [2], [86]] +1.2.87=[[0], [1], [2], [87]] +1.2.88=[[0], [1], [2], [88]] +1.2.89=[[0], [1], [2], [89]] +1.2.9=[[0], [1], [2], [9]] +1.2.9.1=[[0], [1], [2], [9], [1]] +1.2.9.post1=[[0], [1], [2], [9], [0, inf, 1]] +1.2.9.post2=[[0], [1], [2], [9], [0, inf, 2]] +1.2.9.post3=[[0], [1], [2], [9], [0, inf, 3]] +1.2.90=[[0], [1], [2], [90]] +1.2.91=[[0], [1], [2], [91]] +1.2.92=[[0], [1], [2], [92]] +1.2.93=[[0], [1], [2], [93]] +1.2.94=[[0], [1], [2], [94]] +1.2.95=[[0], [1], [2], [95]] +1.2.96=[[0], [1], [2], [96]] +1.2.97=[[0], [1], [2], [97]] +1.2.98=[[0], [1], [2], [98]] +1.20=[[0], [1], [20]] +1.20.0=[[0], [1], [20], [0]] +1.20.1=[[0], [1], [20], [1]] +1.20.10=[[0], [1], [20], [10]] +1.20.10.07=[[0], [1], [20], [10], [7]] +1.20.100=[[0], [1], [20], [100]] +1.20.101=[[0], [1], [20], [101]] +1.20.102=[[0], [1], [20], [102]] +1.20.103=[[0], [1], [20], [103]] +1.20.104=[[0], [1], [20], [104]] +1.20.105=[[0], [1], [20], [105]] +1.20.106=[[0], [1], [20], [106]] +1.20.107=[[0], [1], [20], [107]] +1.20.108=[[0], [1], [20], [108]] +1.20.109=[[0], [1], [20], [109]] +1.20.11=[[0], [1], [20], [11]] +1.20.110=[[0], [1], [20], [110]] +1.20.111=[[0], [1], [20], [111]] +1.20.112=[[0], [1], [20], [112]] +1.20.12=[[0], [1], [20], [12]] +1.20.13=[[0], [1], [20], [13]] +1.20.14=[[0], [1], [20], [14]] +1.20.15=[[0], [1], [20], [15]] +1.20.16=[[0], [1], [20], [16]] +1.20.17=[[0], [1], [20], [17]] +1.20.18=[[0], [1], [20], [18]] +1.20.19=[[0], [1], [20], [19]] +1.20.2=[[0], [1], [20], [2]] +1.20.20=[[0], [1], [20], [20]] +1.20.21=[[0], [1], [20], [21]] +1.20.22=[[0], [1], [20], [22]] +1.20.23=[[0], [1], [20], [23]] +1.20.24=[[0], [1], [20], [24]] +1.20.25=[[0], [1], [20], [25]] +1.20.26=[[0], [1], [20], [26]] +1.20.27=[[0], [1], [20], [27]] +1.20.28=[[0], [1], [20], [28]] +1.20.29=[[0], [1], [20], [29]] +1.20.3=[[0], [1], [20], [3]] +1.20.30=[[0], [1], [20], [30]] +1.20.31=[[0], [1], [20], [31]] +1.20.32=[[0], [1], [20], [32]] +1.20.33=[[0], [1], [20], [33]] +1.20.34=[[0], [1], [20], [34]] +1.20.35=[[0], [1], [20], [35]] +1.20.35.post1=[[0], [1], [20], [35], [0, inf, 1]] +1.20.36=[[0], [1], [20], [36]] +1.20.37=[[0], [1], [20], [37]] +1.20.38=[[0], [1], [20], [38]] +1.20.39=[[0], [1], [20], [39]] +1.20.4=[[0], [1], [20], [4]] +1.20.40=[[0], [1], [20], [40]] +1.20.41=[[0], [1], [20], [41]] +1.20.42=[[0], [1], [20], [42]] +1.20.43=[[0], [1], [20], [43]] +1.20.44=[[0], [1], [20], [44]] +1.20.45=[[0], [1], [20], [45]] +1.20.46=[[0], [1], [20], [46]] +1.20.46.post1=[[0], [1], [20], [46], [0, inf, 1]] +1.20.47=[[0], [1], [20], [47]] +1.20.48=[[0], [1], [20], [48]] +1.20.49=[[0], [1], [20], [49]] +1.20.49.post1=[[0], [1], [20], [49], [0, inf, 1]] +1.20.5=[[0], [1], [20], [5]] +1.20.50=[[0], [1], [20], [50]] +1.20.50.post1=[[0], [1], [20], [50], [0, inf, 1]] +1.20.51=[[0], [1], [20], [51]] +1.20.52=[[0], [1], [20], [52]] +1.20.53=[[0], [1], [20], [53]] +1.20.54=[[0], [1], [20], [54]] +1.20.55=[[0], [1], [20], [55]] +1.20.56=[[0], [1], [20], [56]] +1.20.57=[[0], [1], [20], [57]] +1.20.58=[[0], [1], [20], [58]] +1.20.59=[[0], [1], [20], [59]] +1.20.6=[[0], [1], [20], [6]] +1.20.60=[[0], [1], [20], [60]] +1.20.61=[[0], [1], [20], [61]] +1.20.62=[[0], [1], [20], [62]] +1.20.63=[[0], [1], [20], [63]] +1.20.64=[[0], [1], [20], [64]] +1.20.65=[[0], [1], [20], [65]] +1.20.66=[[0], [1], [20], [66]] +1.20.67=[[0], [1], [20], [67]] +1.20.68=[[0], [1], [20], [68]] +1.20.69=[[0], [1], [20], [69]] +1.20.7=[[0], [1], [20], [7]] +1.20.70=[[0], [1], [20], [70]] +1.20.71=[[0], [1], [20], [71]] +1.20.72=[[0], [1], [20], [72]] +1.20.73=[[0], [1], [20], [73]] +1.20.74=[[0], [1], [20], [74]] +1.20.75=[[0], [1], [20], [75]] +1.20.76=[[0], [1], [20], [76]] +1.20.77=[[0], [1], [20], [77]] +1.20.78=[[0], [1], [20], [78]] +1.20.79=[[0], [1], [20], [79]] +1.20.8=[[0], [1], [20], [8]] +1.20.80=[[0], [1], [20], [80]] +1.20.81=[[0], [1], [20], [81]] +1.20.82=[[0], [1], [20], [82]] +1.20.83=[[0], [1], [20], [83]] +1.20.84=[[0], [1], [20], [84]] +1.20.85=[[0], [1], [20], [85]] +1.20.86=[[0], [1], [20], [86]] +1.20.87=[[0], [1], [20], [87]] +1.20.88=[[0], [1], [20], [88]] +1.20.89=[[0], [1], [20], [89]] +1.20.9=[[0], [1], [20], [9]] +1.20.90=[[0], [1], [20], [90]] +1.20.91=[[0], [1], [20], [91]] +1.20.92=[[0], [1], [20], [92]] +1.20.93=[[0], [1], [20], [93]] +1.20.94=[[0], [1], [20], [94]] +1.20.95=[[0], [1], [20], [95]] +1.20.96=[[0], [1], [20], [96]] +1.20.97=[[0], [1], [20], [97]] +1.20.98=[[0], [1], [20], [98]] +1.20.99=[[0], [1], [20], [99]] +1.200=[[0], [1], [200]] +1.201=[[0], [1], [201]] +1.20151229=[[0], [1], [20151229]] +1.2019.2=[[0], [1], [2019], [2]] +1.2019.3=[[0], [1], [2019], [3]] +1.20190531=[[0], [1], [20190531]] +1.20190621=[[0], [1], [20190621]] +1.2021.7=[[0], [1], [2021], [7]] +1.2022.12=[[0], [1], [2022], [12]] +1.2022.13=[[0], [1], [2022], [13]] +1.2022.14=[[0], [1], [2022], [14]] +1.2022.2=[[0], [1], [2022], [2]] +1.2022.3=[[0], [1], [2022], [3]] +1.2022.4=[[0], [1], [2022], [4]] +1.2022.5=[[0], [1], [2022], [5]] +1.2022.6=[[0], [1], [2022], [6]] +1.2022.7=[[0], [1], [2022], [7]] +1.2022.8=[[0], [1], [2022], [8]] +1.2022.9=[[0], [1], [2022], [9]] +1.20221004=[[0], [1], [20221004]] +1.20221012=[[0], [1], [20221012]] +1.20221116=[[0], [1], [20221116]] +1.2023.0=[[0], [1], [2023], [0]] +1.2023.1=[[0], [1], [2023], [1]] +1.2023.2=[[0], [1], [2023], [2]] +1.2023.5=[[0], [1], [2023], [5]] +1.2023.6=[[0], [1], [2023], [6]] +1.2023.7=[[0], [1], [2023], [7]] +1.2023.8=[[0], [1], [2023], [8]] +1.2023.9=[[0], [1], [2023], [9]] +1.20230424=[[0], [1], [20230424]] +1.20230427=[[0], [1], [20230427]] +1.204.0=[[0], [1], [204], [0]] +1.207.0=[[0], [1], [207], [0]] +1.20_1=[[0], [1], [20], [1]] +1.20_2=[[0], [1], [20], [2]] +1.20rc1=[[0], [1], [20, 'rc', 1]] +1.21=[[0], [1], [21]] +1.21.0=[[0], [1], [21], [0]] +1.21.1=[[0], [1], [21], [1]] +1.21.10=[[0], [1], [21], [10]] +1.21.11=[[0], [1], [21], [11]] +1.21.12=[[0], [1], [21], [12]] +1.21.13=[[0], [1], [21], [13]] +1.21.14=[[0], [1], [21], [14]] +1.21.15=[[0], [1], [21], [15]] +1.21.16=[[0], [1], [21], [16]] +1.21.17=[[0], [1], [21], [17]] +1.21.18=[[0], [1], [21], [18]] +1.21.19=[[0], [1], [21], [19]] +1.21.2=[[0], [1], [21], [2]] +1.21.20=[[0], [1], [21], [20]] +1.21.21=[[0], [1], [21], [21]] +1.21.22=[[0], [1], [21], [22]] +1.21.23=[[0], [1], [21], [23]] +1.21.23.post1=[[0], [1], [21], [23], [0, inf, 1]] +1.21.23.post2=[[0], [1], [21], [23], [0, inf, 2]] +1.21.24=[[0], [1], [21], [24]] +1.21.25=[[0], [1], [21], [25]] +1.21.26=[[0], [1], [21], [26]] +1.21.27=[[0], [1], [21], [27]] +1.21.27.post1=[[0], [1], [21], [27], [0, inf, 1]] +1.21.28=[[0], [1], [21], [28]] +1.21.29=[[0], [1], [21], [29]] +1.21.3=[[0], [1], [21], [3]] +1.21.30=[[0], [1], [21], [30]] +1.21.30.post1=[[0], [1], [21], [30], [0, inf, 1]] +1.21.31=[[0], [1], [21], [31]] +1.21.32=[[0], [1], [21], [32]] +1.21.33=[[0], [1], [21], [33]] +1.21.34=[[0], [1], [21], [34]] +1.21.34.post1=[[0], [1], [21], [34], [0, inf, 1]] +1.21.35=[[0], [1], [21], [35]] +1.21.36=[[0], [1], [21], [36]] +1.21.37=[[0], [1], [21], [37]] +1.21.38=[[0], [1], [21], [38]] +1.21.39=[[0], [1], [21], [39]] +1.21.4=[[0], [1], [21], [4]] +1.21.40=[[0], [1], [21], [40]] +1.21.41=[[0], [1], [21], [41]] +1.21.42=[[0], [1], [21], [42]] +1.21.43=[[0], [1], [21], [43]] +1.21.44=[[0], [1], [21], [44]] +1.21.45=[[0], [1], [21], [45]] +1.21.46=[[0], [1], [21], [46]] +1.21.47=[[0], [1], [21], [47]] +1.21.48=[[0], [1], [21], [48]] +1.21.49=[[0], [1], [21], [49]] +1.21.5=[[0], [1], [21], [5]] +1.21.50=[[0], [1], [21], [50]] +1.21.51=[[0], [1], [21], [51]] +1.21.52=[[0], [1], [21], [52]] +1.21.53=[[0], [1], [21], [53]] +1.21.54=[[0], [1], [21], [54]] +1.21.55=[[0], [1], [21], [55]] +1.21.56=[[0], [1], [21], [56]] +1.21.57=[[0], [1], [21], [57]] +1.21.58=[[0], [1], [21], [58]] +1.21.59=[[0], [1], [21], [59]] +1.21.6=[[0], [1], [21], [6]] +1.21.60=[[0], [1], [21], [60]] +1.21.61=[[0], [1], [21], [61]] +1.21.62=[[0], [1], [21], [62]] +1.21.63=[[0], [1], [21], [63]] +1.21.64=[[0], [1], [21], [64]] +1.21.65=[[0], [1], [21], [65]] +1.21.7=[[0], [1], [21], [7]] +1.21.8=[[0], [1], [21], [8]] +1.21.9=[[0], [1], [21], [9]] +1.210.1=[[0], [1], [210], [1]] +1.21_3=[[0], [1], [21], [3]] +1.21_45=[[0], [1], [21], [45]] +1.21rc1=[[0], [1], [21, 'rc', 1]] +1.22=[[0], [1], [22]] +1.22.0=[[0], [1], [22], [0]] +1.22.0.post1=[[0], [1], [22], [0], [0, inf, 1]] +1.22.1=[[0], [1], [22], [1]] +1.22.1.post1=[[0], [1], [22], [1], [0, inf, 1]] +1.22.10=[[0], [1], [22], [10]] +1.22.100=[[0], [1], [22], [100]] +1.22.101=[[0], [1], [22], [101]] +1.22.11=[[0], [1], [22], [11]] +1.22.12=[[0], [1], [22], [12]] +1.22.13=[[0], [1], [22], [13]] +1.22.14=[[0], [1], [22], [14]] +1.22.15=[[0], [1], [22], [15]] +1.22.16=[[0], [1], [22], [16]] +1.22.17=[[0], [1], [22], [17]] +1.22.18=[[0], [1], [22], [18]] +1.22.19=[[0], [1], [22], [19]] +1.22.1_1=[[0], [1], [22], [1], [1]] +1.22.1_2=[[0], [1], [22], [1], [2]] +1.22.2=[[0], [1], [22], [2]] +1.22.20=[[0], [1], [22], [20]] +1.22.21=[[0], [1], [22], [21]] +1.22.22=[[0], [1], [22], [22]] +1.22.23=[[0], [1], [22], [23]] +1.22.24=[[0], [1], [22], [24]] +1.22.25=[[0], [1], [22], [25]] +1.22.26=[[0], [1], [22], [26]] +1.22.27=[[0], [1], [22], [27]] +1.22.28=[[0], [1], [22], [28]] +1.22.29=[[0], [1], [22], [29]] +1.22.3=[[0], [1], [22], [3]] +1.22.30=[[0], [1], [22], [30]] +1.22.31=[[0], [1], [22], [31]] +1.22.32=[[0], [1], [22], [32]] +1.22.33=[[0], [1], [22], [33]] +1.22.34=[[0], [1], [22], [34]] +1.22.35=[[0], [1], [22], [35]] +1.22.36=[[0], [1], [22], [36]] +1.22.37=[[0], [1], [22], [37]] +1.22.38=[[0], [1], [22], [38]] +1.22.39=[[0], [1], [22], [39]] +1.22.4=[[0], [1], [22], [4]] +1.22.40=[[0], [1], [22], [40]] +1.22.41=[[0], [1], [22], [41]] +1.22.42=[[0], [1], [22], [42]] +1.22.43=[[0], [1], [22], [43]] +1.22.44=[[0], [1], [22], [44]] +1.22.45=[[0], [1], [22], [45]] +1.22.46=[[0], [1], [22], [46]] +1.22.47=[[0], [1], [22], [47]] +1.22.48=[[0], [1], [22], [48]] +1.22.49=[[0], [1], [22], [49]] +1.22.5=[[0], [1], [22], [5]] +1.22.50=[[0], [1], [22], [50]] +1.22.51=[[0], [1], [22], [51]] +1.22.52=[[0], [1], [22], [52]] +1.22.53=[[0], [1], [22], [53]] +1.22.54=[[0], [1], [22], [54]] +1.22.55=[[0], [1], [22], [55]] +1.22.56=[[0], [1], [22], [56]] +1.22.57=[[0], [1], [22], [57]] +1.22.58=[[0], [1], [22], [58]] +1.22.59=[[0], [1], [22], [59]] +1.22.6=[[0], [1], [22], [6]] +1.22.60=[[0], [1], [22], [60]] +1.22.61=[[0], [1], [22], [61]] +1.22.62=[[0], [1], [22], [62]] +1.22.63=[[0], [1], [22], [63]] +1.22.64=[[0], [1], [22], [64]] +1.22.65=[[0], [1], [22], [65]] +1.22.66=[[0], [1], [22], [66]] +1.22.67=[[0], [1], [22], [67]] +1.22.68=[[0], [1], [22], [68]] +1.22.69=[[0], [1], [22], [69]] +1.22.7=[[0], [1], [22], [7]] +1.22.70=[[0], [1], [22], [70]] +1.22.71=[[0], [1], [22], [71]] +1.22.72=[[0], [1], [22], [72]] +1.22.73=[[0], [1], [22], [73]] +1.22.74=[[0], [1], [22], [74]] +1.22.75=[[0], [1], [22], [75]] +1.22.76=[[0], [1], [22], [76]] +1.22.77=[[0], [1], [22], [77]] +1.22.78=[[0], [1], [22], [78]] +1.22.79=[[0], [1], [22], [79]] +1.22.8=[[0], [1], [22], [8]] +1.22.8.post1=[[0], [1], [22], [8], [0, inf, 1]] +1.22.80=[[0], [1], [22], [80]] +1.22.81=[[0], [1], [22], [81]] +1.22.82=[[0], [1], [22], [82]] +1.22.83=[[0], [1], [22], [83]] +1.22.84=[[0], [1], [22], [84]] +1.22.85=[[0], [1], [22], [85]] +1.22.86=[[0], [1], [22], [86]] +1.22.87=[[0], [1], [22], [87]] +1.22.88=[[0], [1], [22], [88]] +1.22.89=[[0], [1], [22], [89]] +1.22.9=[[0], [1], [22], [9]] +1.22.90=[[0], [1], [22], [90]] +1.22.91=[[0], [1], [22], [91]] +1.22.92=[[0], [1], [22], [92]] +1.22.93=[[0], [1], [22], [93]] +1.22.94=[[0], [1], [22], [94]] +1.22.95=[[0], [1], [22], [95]] +1.22.96=[[0], [1], [22], [96]] +1.22.97=[[0], [1], [22], [97]] +1.22.98=[[0], [1], [22], [98]] +1.22.99=[[0], [1], [22], [99]] +1.22_1=[[0], [1], [22], [1]] +1.22_2=[[0], [1], [22], [2]] +1.22_3=[[0], [1], [22], [3]] +1.23=[[0], [1], [23]] +1.23.0=[[0], [1], [23], [0]] +1.23.0.449_ga04d081=[[0], [1], [23], [0], [449], [0, 'ga', 4, 'd', 81]] +1.23.0.post1=[[0], [1], [23], [0], [0, inf, 1]] +1.23.1=[[0], [1], [23], [1]] +1.23.10=[[0], [1], [23], [10]] +1.23.11=[[0], [1], [23], [11]] +1.23.12=[[0], [1], [23], [12]] +1.23.120.1=[[0], [1], [23], [120], [1]] +1.23.13=[[0], [1], [23], [13]] +1.23.14=[[0], [1], [23], [14]] +1.23.15=[[0], [1], [23], [15]] +1.23.16=[[0], [1], [23], [16]] +1.23.17=[[0], [1], [23], [17]] +1.23.18=[[0], [1], [23], [18]] +1.23.19=[[0], [1], [23], [19]] +1.23.2=[[0], [1], [23], [2]] +1.23.20=[[0], [1], [23], [20]] +1.23.21=[[0], [1], [23], [21]] +1.23.22=[[0], [1], [23], [22]] +1.23.23=[[0], [1], [23], [23]] +1.23.24=[[0], [1], [23], [24]] +1.23.25=[[0], [1], [23], [25]] +1.23.26=[[0], [1], [23], [26]] +1.23.27=[[0], [1], [23], [27]] +1.23.28=[[0], [1], [23], [28]] +1.23.29=[[0], [1], [23], [29]] +1.23.3=[[0], [1], [23], [3]] +1.23.30=[[0], [1], [23], [30]] +1.23.31=[[0], [1], [23], [31]] +1.23.32=[[0], [1], [23], [32]] +1.23.33=[[0], [1], [23], [33]] +1.23.34=[[0], [1], [23], [34]] +1.23.35=[[0], [1], [23], [35]] +1.23.35.post1=[[0], [1], [23], [35], [0, inf, 1]] +1.23.36=[[0], [1], [23], [36]] +1.23.37=[[0], [1], [23], [37]] +1.23.38=[[0], [1], [23], [38]] +1.23.39=[[0], [1], [23], [39]] +1.23.4=[[0], [1], [23], [4]] +1.23.40=[[0], [1], [23], [40]] +1.23.41=[[0], [1], [23], [41]] +1.23.42=[[0], [1], [23], [42]] +1.23.43=[[0], [1], [23], [43]] +1.23.44=[[0], [1], [23], [44]] +1.23.45=[[0], [1], [23], [45]] +1.23.46=[[0], [1], [23], [46]] +1.23.46.post1=[[0], [1], [23], [46], [0, inf, 1]] +1.23.47=[[0], [1], [23], [47]] +1.23.48=[[0], [1], [23], [48]] +1.23.49=[[0], [1], [23], [49]] +1.23.49.post1=[[0], [1], [23], [49], [0, inf, 1]] +1.23.5=[[0], [1], [23], [5]] +1.23.50=[[0], [1], [23], [50]] +1.23.50.post1=[[0], [1], [23], [50], [0, inf, 1]] +1.23.51=[[0], [1], [23], [51]] +1.23.52=[[0], [1], [23], [52]] +1.23.53=[[0], [1], [23], [53]] +1.23.54=[[0], [1], [23], [54]] +1.23.6=[[0], [1], [23], [6]] +1.23.7=[[0], [1], [23], [7]] +1.23.8=[[0], [1], [23], [8]] +1.23.9=[[0], [1], [23], [9]] +1.231=[[0], [1], [231]] +1.234.0=[[0], [1], [234], [0]] +1.236=[[0], [1], [236]] +1.236.0=[[0], [1], [236], [0]] +1.237.0=[[0], [1], [237], [0]] +1.23_002=[[0], [1], [23], [2]] +1.23_1=[[0], [1], [23], [1]] +1.24=[[0], [1], [24]] +1.24.0=[[0], [1], [24], [0]] +1.24.0.121_g864ba1fb=[[0], [1], [24], [0], [121], [0, 'g', 864, 'ba', 1, 'fb']] +1.24.0.122_gbc6a7b9e=[[0], [1], [24], [0], [122], [0, 'gbc', 6, 'a', 7, 'b', 9, 'e']] +1.24.0.126_gccbb0fb2=[[0], [1], [24], [0], [126], [0, 'gccbb', 0, 'fb', 2]] +1.24.0.130_g21895fa6=[[0], [1], [24], [0], [130], [0, 'g', 21895, 'fa', 6]] +1.24.0.132_gc74611b1=[[0], [1], [24], [0], [132], [0, 'gc', 74611, 'b', 1]] +1.24.0.37_g3f461da1=[[0], [1], [24], [0], [37], [0, 'g', 3, 'f', 461, 'da', 1]] +1.24.0.39_gde1ec7f7=[[0], [1], [24], [0], [39], [0, 'gde', 1, 'ec', 7, 'f', 7]] +1.24.1=[[0], [1], [24], [1]] +1.24.10=[[0], [1], [24], [10]] +1.24.11=[[0], [1], [24], [11]] +1.24.11.post3=[[0], [1], [24], [11], [0, inf, 3]] +1.24.12=[[0], [1], [24], [12]] +1.24.13=[[0], [1], [24], [13]] +1.24.14=[[0], [1], [24], [14]] +1.24.15=[[0], [1], [24], [15]] +1.24.16=[[0], [1], [24], [16]] +1.24.17=[[0], [1], [24], [17]] +1.24.18=[[0], [1], [24], [18]] +1.24.19=[[0], [1], [24], [19]] +1.24.2=[[0], [1], [24], [2]] +1.24.20=[[0], [1], [24], [20]] +1.24.21=[[0], [1], [24], [21]] +1.24.22=[[0], [1], [24], [22]] +1.24.23=[[0], [1], [24], [23]] +1.24.23.post2=[[0], [1], [24], [23], [0, inf, 2]] +1.24.24=[[0], [1], [24], [24]] +1.24.24.post1=[[0], [1], [24], [24], [0, inf, 1]] +1.24.25=[[0], [1], [24], [25]] +1.24.26=[[0], [1], [24], [26]] +1.24.27=[[0], [1], [24], [27]] +1.24.28=[[0], [1], [24], [28]] +1.24.29=[[0], [1], [24], [29]] +1.24.3=[[0], [1], [24], [3]] +1.24.30=[[0], [1], [24], [30]] +1.24.31=[[0], [1], [24], [31]] +1.24.32=[[0], [1], [24], [32]] +1.24.33=[[0], [1], [24], [33]] +1.24.34=[[0], [1], [24], [34]] +1.24.35=[[0], [1], [24], [35]] +1.24.36=[[0], [1], [24], [36]] +1.24.36.post1=[[0], [1], [24], [36], [0, inf, 1]] +1.24.37=[[0], [1], [24], [37]] +1.24.38=[[0], [1], [24], [38]] +1.24.39=[[0], [1], [24], [39]] +1.24.4=[[0], [1], [24], [4]] +1.24.40=[[0], [1], [24], [40]] +1.24.41=[[0], [1], [24], [41]] +1.24.42=[[0], [1], [24], [42]] +1.24.43=[[0], [1], [24], [43]] +1.24.43.post1=[[0], [1], [24], [43], [0, inf, 1]] +1.24.44=[[0], [1], [24], [44]] +1.24.45=[[0], [1], [24], [45]] +1.24.46=[[0], [1], [24], [46]] +1.24.47=[[0], [1], [24], [47]] +1.24.48=[[0], [1], [24], [48]] +1.24.49=[[0], [1], [24], [49]] +1.24.5=[[0], [1], [24], [5]] +1.24.50=[[0], [1], [24], [50]] +1.24.51=[[0], [1], [24], [51]] +1.24.52=[[0], [1], [24], [52]] +1.24.53=[[0], [1], [24], [53]] +1.24.54=[[0], [1], [24], [54]] +1.24.55=[[0], [1], [24], [55]] +1.24.55.post1=[[0], [1], [24], [55], [0, inf, 1]] +1.24.56=[[0], [1], [24], [56]] +1.24.57=[[0], [1], [24], [57]] +1.24.58=[[0], [1], [24], [58]] +1.24.59=[[0], [1], [24], [59]] +1.24.6=[[0], [1], [24], [6]] +1.24.60=[[0], [1], [24], [60]] +1.24.60.post1=[[0], [1], [24], [60], [0, inf, 1]] +1.24.61=[[0], [1], [24], [61]] +1.24.62=[[0], [1], [24], [62]] +1.24.63=[[0], [1], [24], [63]] +1.24.64=[[0], [1], [24], [64]] +1.24.65=[[0], [1], [24], [65]] +1.24.66=[[0], [1], [24], [66]] +1.24.67=[[0], [1], [24], [67]] +1.24.68=[[0], [1], [24], [68]] +1.24.69=[[0], [1], [24], [69]] +1.24.7=[[0], [1], [24], [7]] +1.24.70=[[0], [1], [24], [70]] +1.24.71=[[0], [1], [24], [71]] +1.24.72=[[0], [1], [24], [72]] +1.24.73=[[0], [1], [24], [73]] +1.24.74=[[0], [1], [24], [74]] +1.24.75=[[0], [1], [24], [75]] +1.24.76=[[0], [1], [24], [76]] +1.24.77=[[0], [1], [24], [77]] +1.24.78=[[0], [1], [24], [78]] +1.24.79=[[0], [1], [24], [79]] +1.24.8=[[0], [1], [24], [8]] +1.24.80=[[0], [1], [24], [80]] +1.24.81=[[0], [1], [24], [81]] +1.24.82=[[0], [1], [24], [82]] +1.24.83=[[0], [1], [24], [83]] +1.24.84=[[0], [1], [24], [84]] +1.24.85=[[0], [1], [24], [85]] +1.24.86=[[0], [1], [24], [86]] +1.24.87=[[0], [1], [24], [87]] +1.24.88=[[0], [1], [24], [88]] +1.24.89=[[0], [1], [24], [89]] +1.24.9=[[0], [1], [24], [9]] +1.24.90=[[0], [1], [24], [90]] +1.24.91=[[0], [1], [24], [91]] +1.24.92=[[0], [1], [24], [92]] +1.24.93=[[0], [1], [24], [93]] +1.24.94=[[0], [1], [24], [94]] +1.24.95=[[0], [1], [24], [95]] +1.24.96=[[0], [1], [24], [96]] +1.25=[[0], [1], [25]] +1.25.0=[[0], [1], [25], [0]] +1.25.1=[[0], [1], [25], [1]] +1.25.1.post0=[[0], [1], [25], [1], [0, inf, 0]] +1.25.10=[[0], [1], [25], [10]] +1.25.11=[[0], [1], [25], [11]] +1.25.12=[[0], [1], [25], [12]] +1.25.13=[[0], [1], [25], [13]] +1.25.14=[[0], [1], [25], [14]] +1.25.15=[[0], [1], [25], [15]] +1.25.16=[[0], [1], [25], [16]] +1.25.17=[[0], [1], [25], [17]] +1.25.18=[[0], [1], [25], [18]] +1.25.19=[[0], [1], [25], [19]] +1.25.2=[[0], [1], [25], [2]] +1.25.20=[[0], [1], [25], [20]] +1.25.21=[[0], [1], [25], [21]] +1.25.22=[[0], [1], [25], [22]] +1.25.23=[[0], [1], [25], [23]] +1.25.24=[[0], [1], [25], [24]] +1.25.25=[[0], [1], [25], [25]] +1.25.26=[[0], [1], [25], [26]] +1.25.27=[[0], [1], [25], [27]] +1.25.28=[[0], [1], [25], [28]] +1.25.29=[[0], [1], [25], [29]] +1.25.3=[[0], [1], [25], [3]] +1.25.30=[[0], [1], [25], [30]] +1.25.31=[[0], [1], [25], [31]] +1.25.32=[[0], [1], [25], [32]] +1.25.33=[[0], [1], [25], [33]] +1.25.34=[[0], [1], [25], [34]] +1.25.35=[[0], [1], [25], [35]] +1.25.36=[[0], [1], [25], [36]] +1.25.37=[[0], [1], [25], [37]] +1.25.38=[[0], [1], [25], [38]] +1.25.39=[[0], [1], [25], [39]] +1.25.4=[[0], [1], [25], [4]] +1.25.40=[[0], [1], [25], [40]] +1.25.41=[[0], [1], [25], [41]] +1.25.42=[[0], [1], [25], [42]] +1.25.43=[[0], [1], [25], [43]] +1.25.44=[[0], [1], [25], [44]] +1.25.45=[[0], [1], [25], [45]] +1.25.46=[[0], [1], [25], [46]] +1.25.47=[[0], [1], [25], [47]] +1.25.48=[[0], [1], [25], [48]] +1.25.49=[[0], [1], [25], [49]] +1.25.5=[[0], [1], [25], [5]] +1.25.50=[[0], [1], [25], [50]] +1.25.51=[[0], [1], [25], [51]] +1.25.52=[[0], [1], [25], [52]] +1.25.53=[[0], [1], [25], [53]] +1.25.54=[[0], [1], [25], [54]] +1.25.55=[[0], [1], [25], [55]] +1.25.56=[[0], [1], [25], [56]] +1.25.57=[[0], [1], [25], [57]] +1.25.58=[[0], [1], [25], [58]] +1.25.59=[[0], [1], [25], [59]] +1.25.6=[[0], [1], [25], [6]] +1.25.60=[[0], [1], [25], [60]] +1.25.61=[[0], [1], [25], [61]] +1.25.62=[[0], [1], [25], [62]] +1.25.63=[[0], [1], [25], [63]] +1.25.64=[[0], [1], [25], [64]] +1.25.65=[[0], [1], [25], [65]] +1.25.66=[[0], [1], [25], [66]] +1.25.67=[[0], [1], [25], [67]] +1.25.68=[[0], [1], [25], [68]] +1.25.69=[[0], [1], [25], [69]] +1.25.7=[[0], [1], [25], [7]] +1.25.70=[[0], [1], [25], [70]] +1.25.71=[[0], [1], [25], [71]] +1.25.72=[[0], [1], [25], [72]] +1.25.73=[[0], [1], [25], [73]] +1.25.74=[[0], [1], [25], [74]] +1.25.75=[[0], [1], [25], [75]] +1.25.76=[[0], [1], [25], [76]] +1.25.77=[[0], [1], [25], [77]] +1.25.78=[[0], [1], [25], [78]] +1.25.79=[[0], [1], [25], [79]] +1.25.8=[[0], [1], [25], [8]] +1.25.8.post1=[[0], [1], [25], [8], [0, inf, 1]] +1.25.80=[[0], [1], [25], [80]] +1.25.81=[[0], [1], [25], [81]] +1.25.82=[[0], [1], [25], [82]] +1.25.83=[[0], [1], [25], [83]] +1.25.84=[[0], [1], [25], [84]] +1.25.85=[[0], [1], [25], [85]] +1.25.86=[[0], [1], [25], [86]] +1.25.87=[[0], [1], [25], [87]] +1.25.88=[[0], [1], [25], [88]] +1.25.89=[[0], [1], [25], [89]] +1.25.9=[[0], [1], [25], [9]] +1.25.90=[[0], [1], [25], [90]] +1.25.91=[[0], [1], [25], [91]] +1.25.92=[[0], [1], [25], [92]] +1.25.93=[[0], [1], [25], [93]] +1.25.94=[[0], [1], [25], [94]] +1.25.95=[[0], [1], [25], [95]] +1.25.96=[[0], [1], [25], [96]] +1.25.97=[[0], [1], [25], [97]] +1.251=[[0], [1], [251]] +1.252=[[0], [1], [252]] +1.26=[[0], [1], [26]] +1.26.0=[[0], [1], [26], [0]] +1.26.0.post0=[[0], [1], [26], [0], [0, inf, 0]] +1.26.0.post1=[[0], [1], [26], [0], [0, inf, 1]] +1.26.1=[[0], [1], [26], [1]] +1.26.10=[[0], [1], [26], [10]] +1.26.11=[[0], [1], [26], [11]] +1.26.11.post1=[[0], [1], [26], [11], [0, inf, 1]] +1.26.12=[[0], [1], [26], [12]] +1.26.13=[[0], [1], [26], [13]] +1.26.13.post11=[[0], [1], [26], [13], [0, inf, 11]] +1.26.13.post12=[[0], [1], [26], [13], [0, inf, 12]] +1.26.13.post16=[[0], [1], [26], [13], [0, inf, 16]] +1.26.14=[[0], [1], [26], [14]] +1.26.15=[[0], [1], [26], [15]] +1.26.16=[[0], [1], [26], [16]] +1.26.17=[[0], [1], [26], [17]] +1.26.18=[[0], [1], [26], [18]] +1.26.19=[[0], [1], [26], [19]] +1.26.2=[[0], [1], [26], [2]] +1.26.20=[[0], [1], [26], [20]] +1.26.21=[[0], [1], [26], [21]] +1.26.22=[[0], [1], [26], [22]] +1.26.23=[[0], [1], [26], [23]] +1.26.24=[[0], [1], [26], [24]] +1.26.25=[[0], [1], [26], [25]] +1.26.25.1=[[0], [1], [26], [25], [1]] +1.26.25.3=[[0], [1], [26], [25], [3]] +1.26.25.4=[[0], [1], [26], [25], [4]] +1.26.25.5=[[0], [1], [26], [25], [5]] +1.26.25.7=[[0], [1], [26], [25], [7]] +1.26.25.8=[[0], [1], [26], [25], [8]] +1.26.26=[[0], [1], [26], [26]] +1.26.27=[[0], [1], [26], [27]] +1.26.28=[[0], [1], [26], [28]] +1.26.29=[[0], [1], [26], [29]] +1.26.3=[[0], [1], [26], [3]] +1.26.30=[[0], [1], [26], [30]] +1.26.31=[[0], [1], [26], [31]] +1.26.32=[[0], [1], [26], [32]] +1.26.33=[[0], [1], [26], [33]] +1.26.34=[[0], [1], [26], [34]] +1.26.35=[[0], [1], [26], [35]] +1.26.35.post1=[[0], [1], [26], [35], [0, inf, 1]] +1.26.36=[[0], [1], [26], [36]] +1.26.37=[[0], [1], [26], [37]] +1.26.38=[[0], [1], [26], [38]] +1.26.39=[[0], [1], [26], [39]] +1.26.4=[[0], [1], [26], [4]] +1.26.40=[[0], [1], [26], [40]] +1.26.41=[[0], [1], [26], [41]] +1.26.42=[[0], [1], [26], [42]] +1.26.43=[[0], [1], [26], [43]] +1.26.44=[[0], [1], [26], [44]] +1.26.45=[[0], [1], [26], [45]] +1.26.46=[[0], [1], [26], [46]] +1.26.47=[[0], [1], [26], [47]] +1.26.47.post1=[[0], [1], [26], [47], [0, inf, 1]] +1.26.48=[[0], [1], [26], [48]] +1.26.49=[[0], [1], [26], [49]] +1.26.5=[[0], [1], [26], [5]] +1.26.50=[[0], [1], [26], [50]] +1.26.51=[[0], [1], [26], [51]] +1.26.52=[[0], [1], [26], [52]] +1.26.53=[[0], [1], [26], [53]] +1.26.54=[[0], [1], [26], [54]] +1.26.55=[[0], [1], [26], [55]] +1.26.56=[[0], [1], [26], [56]] +1.26.57=[[0], [1], [26], [57]] +1.26.58=[[0], [1], [26], [58]] +1.26.59=[[0], [1], [26], [59]] +1.26.6=[[0], [1], [26], [6]] +1.26.60=[[0], [1], [26], [60]] +1.26.61=[[0], [1], [26], [61]] +1.26.62=[[0], [1], [26], [62]] +1.26.63=[[0], [1], [26], [63]] +1.26.64=[[0], [1], [26], [64]] +1.26.65=[[0], [1], [26], [65]] +1.26.66=[[0], [1], [26], [66]] +1.26.67=[[0], [1], [26], [67]] +1.26.68=[[0], [1], [26], [68]] +1.26.69=[[0], [1], [26], [69]] +1.26.7=[[0], [1], [26], [7]] +1.26.70=[[0], [1], [26], [70]] +1.26.71=[[0], [1], [26], [71]] +1.26.72=[[0], [1], [26], [72]] +1.26.73=[[0], [1], [26], [73]] +1.26.74=[[0], [1], [26], [74]] +1.26.75=[[0], [1], [26], [75]] +1.26.76=[[0], [1], [26], [76]] +1.26.77=[[0], [1], [26], [77]] +1.26.78=[[0], [1], [26], [78]] +1.26.79=[[0], [1], [26], [79]] +1.26.8=[[0], [1], [26], [8]] +1.26.8.post1=[[0], [1], [26], [8], [0, inf, 1]] +1.26.80=[[0], [1], [26], [80]] +1.26.81=[[0], [1], [26], [81]] +1.26.82=[[0], [1], [26], [82]] +1.26.83=[[0], [1], [26], [83]] +1.26.84=[[0], [1], [26], [84]] +1.26.9=[[0], [1], [26], [9]] +1.27=[[0], [1], [27]] +1.27.0=[[0], [1], [27], [0]] +1.27.0.post1=[[0], [1], [27], [0], [0, inf, 1]] +1.27.1=[[0], [1], [27], [1]] +1.27.10=[[0], [1], [27], [10]] +1.27.100=[[0], [1], [27], [100]] +1.27.101=[[0], [1], [27], [101]] +1.27.102=[[0], [1], [27], [102]] +1.27.103=[[0], [1], [27], [103]] +1.27.104=[[0], [1], [27], [104]] +1.27.105=[[0], [1], [27], [105]] +1.27.106=[[0], [1], [27], [106]] +1.27.107=[[0], [1], [27], [107]] +1.27.108=[[0], [1], [27], [108]] +1.27.109=[[0], [1], [27], [109]] +1.27.11=[[0], [1], [27], [11]] +1.27.110=[[0], [1], [27], [110]] +1.27.111=[[0], [1], [27], [111]] +1.27.112=[[0], [1], [27], [112]] +1.27.113=[[0], [1], [27], [113]] +1.27.114=[[0], [1], [27], [114]] +1.27.115=[[0], [1], [27], [115]] +1.27.116=[[0], [1], [27], [116]] +1.27.117=[[0], [1], [27], [117]] +1.27.118=[[0], [1], [27], [118]] +1.27.119=[[0], [1], [27], [119]] +1.27.12=[[0], [1], [27], [12]] +1.27.120=[[0], [1], [27], [120]] +1.27.121=[[0], [1], [27], [121]] +1.27.122=[[0], [1], [27], [122]] +1.27.123=[[0], [1], [27], [123]] +1.27.124=[[0], [1], [27], [124]] +1.27.125=[[0], [1], [27], [125]] +1.27.126=[[0], [1], [27], [126]] +1.27.127=[[0], [1], [27], [127]] +1.27.128=[[0], [1], [27], [128]] +1.27.129=[[0], [1], [27], [129]] +1.27.13=[[0], [1], [27], [13]] +1.27.130=[[0], [1], [27], [130]] +1.27.131=[[0], [1], [27], [131]] +1.27.132=[[0], [1], [27], [132]] +1.27.133=[[0], [1], [27], [133]] +1.27.134=[[0], [1], [27], [134]] +1.27.135=[[0], [1], [27], [135]] +1.27.136=[[0], [1], [27], [136]] +1.27.137=[[0], [1], [27], [137]] +1.27.138=[[0], [1], [27], [138]] +1.27.139=[[0], [1], [27], [139]] +1.27.14=[[0], [1], [27], [14]] +1.27.140=[[0], [1], [27], [140]] +1.27.141=[[0], [1], [27], [141]] +1.27.142=[[0], [1], [27], [142]] +1.27.143=[[0], [1], [27], [143]] +1.27.144=[[0], [1], [27], [144]] +1.27.145=[[0], [1], [27], [145]] +1.27.146=[[0], [1], [27], [146]] +1.27.147=[[0], [1], [27], [147]] +1.27.148=[[0], [1], [27], [148]] +1.27.149=[[0], [1], [27], [149]] +1.27.15=[[0], [1], [27], [15]] +1.27.150=[[0], [1], [27], [150]] +1.27.151=[[0], [1], [27], [151]] +1.27.152=[[0], [1], [27], [152]] +1.27.153=[[0], [1], [27], [153]] +1.27.154=[[0], [1], [27], [154]] +1.27.155=[[0], [1], [27], [155]] +1.27.16=[[0], [1], [27], [16]] +1.27.17=[[0], [1], [27], [17]] +1.27.18=[[0], [1], [27], [18]] +1.27.19=[[0], [1], [27], [19]] +1.27.2=[[0], [1], [27], [2]] +1.27.20=[[0], [1], [27], [20]] +1.27.21=[[0], [1], [27], [21]] +1.27.22=[[0], [1], [27], [22]] +1.27.23=[[0], [1], [27], [23]] +1.27.24=[[0], [1], [27], [24]] +1.27.24.post1=[[0], [1], [27], [24], [0, inf, 1]] +1.27.25=[[0], [1], [27], [25]] +1.27.26=[[0], [1], [27], [26]] +1.27.27=[[0], [1], [27], [27]] +1.27.28=[[0], [1], [27], [28]] +1.27.29=[[0], [1], [27], [29]] +1.27.3=[[0], [1], [27], [3]] +1.27.30=[[0], [1], [27], [30]] +1.27.31=[[0], [1], [27], [31]] +1.27.32=[[0], [1], [27], [32]] +1.27.33=[[0], [1], [27], [33]] +1.27.34=[[0], [1], [27], [34]] +1.27.35=[[0], [1], [27], [35]] +1.27.36=[[0], [1], [27], [36]] +1.27.37=[[0], [1], [27], [37]] +1.27.38=[[0], [1], [27], [38]] +1.27.39=[[0], [1], [27], [39]] +1.27.4=[[0], [1], [27], [4]] +1.27.40=[[0], [1], [27], [40]] +1.27.41=[[0], [1], [27], [41]] +1.27.42=[[0], [1], [27], [42]] +1.27.42.post3=[[0], [1], [27], [42], [0, inf, 3]] +1.27.43=[[0], [1], [27], [43]] +1.27.44=[[0], [1], [27], [44]] +1.27.45=[[0], [1], [27], [45]] +1.27.46=[[0], [1], [27], [46]] +1.27.47=[[0], [1], [27], [47]] +1.27.48=[[0], [1], [27], [48]] +1.27.49=[[0], [1], [27], [49]] +1.27.5=[[0], [1], [27], [5]] +1.27.50=[[0], [1], [27], [50]] +1.27.51=[[0], [1], [27], [51]] +1.27.52=[[0], [1], [27], [52]] +1.27.53=[[0], [1], [27], [53]] +1.27.54=[[0], [1], [27], [54]] +1.27.55=[[0], [1], [27], [55]] +1.27.56=[[0], [1], [27], [56]] +1.27.57=[[0], [1], [27], [57]] +1.27.58=[[0], [1], [27], [58]] +1.27.59=[[0], [1], [27], [59]] +1.27.6=[[0], [1], [27], [6]] +1.27.60=[[0], [1], [27], [60]] +1.27.61=[[0], [1], [27], [61]] +1.27.62=[[0], [1], [27], [62]] +1.27.63=[[0], [1], [27], [63]] +1.27.64=[[0], [1], [27], [64]] +1.27.65=[[0], [1], [27], [65]] +1.27.66=[[0], [1], [27], [66]] +1.27.67=[[0], [1], [27], [67]] +1.27.68=[[0], [1], [27], [68]] +1.27.69=[[0], [1], [27], [69]] +1.27.7=[[0], [1], [27], [7]] +1.27.70=[[0], [1], [27], [70]] +1.27.71=[[0], [1], [27], [71]] +1.27.72=[[0], [1], [27], [72]] +1.27.73=[[0], [1], [27], [73]] +1.27.74=[[0], [1], [27], [74]] +1.27.75=[[0], [1], [27], [75]] +1.27.76=[[0], [1], [27], [76]] +1.27.77=[[0], [1], [27], [77]] +1.27.78=[[0], [1], [27], [78]] +1.27.79=[[0], [1], [27], [79]] +1.27.8=[[0], [1], [27], [8]] +1.27.80=[[0], [1], [27], [80]] +1.27.81=[[0], [1], [27], [81]] +1.27.82=[[0], [1], [27], [82]] +1.27.83=[[0], [1], [27], [83]] +1.27.84=[[0], [1], [27], [84]] +1.27.85=[[0], [1], [27], [85]] +1.27.86=[[0], [1], [27], [86]] +1.27.87=[[0], [1], [27], [87]] +1.27.88=[[0], [1], [27], [88]] +1.27.89=[[0], [1], [27], [89]] +1.27.9=[[0], [1], [27], [9]] +1.27.90=[[0], [1], [27], [90]] +1.27.91=[[0], [1], [27], [91]] +1.27.92=[[0], [1], [27], [92]] +1.27.93=[[0], [1], [27], [93]] +1.27.94=[[0], [1], [27], [94]] +1.27.95=[[0], [1], [27], [95]] +1.27.96=[[0], [1], [27], [96]] +1.27.97=[[0], [1], [27], [97]] +1.27.98=[[0], [1], [27], [98]] +1.27.99=[[0], [1], [27], [99]] +1.271=[[0], [1], [271]] +1.272=[[0], [1], [272]] +1.28=[[0], [1], [28]] +1.28.0=[[0], [1], [28], [0]] +1.28.1=[[0], [1], [28], [1]] +1.28.2=[[0], [1], [28], [2]] +1.28.3=[[0], [1], [28], [3]] +1.28.4=[[0], [1], [28], [4]] +1.28.5=[[0], [1], [28], [5]] +1.28.6=[[0], [1], [28], [6]] +1.28.7=[[0], [1], [28], [7]] +1.29=[[0], [1], [29]] +1.29.0=[[0], [1], [29], [0]] +1.29.0.post0=[[0], [1], [29], [0], [0, inf, 0]] +1.29.1=[[0], [1], [29], [1]] +1.29.10=[[0], [1], [29], [10]] +1.29.11=[[0], [1], [29], [11]] +1.29.12=[[0], [1], [29], [12]] +1.29.13=[[0], [1], [29], [13]] +1.29.14=[[0], [1], [29], [14]] +1.29.15=[[0], [1], [29], [15]] +1.29.16=[[0], [1], [29], [16]] +1.29.17=[[0], [1], [29], [17]] +1.29.18=[[0], [1], [29], [18]] +1.29.19=[[0], [1], [29], [19]] +1.29.2=[[0], [1], [29], [2]] +1.29.2.post1=[[0], [1], [29], [2], [0, inf, 1]] +1.29.2.post2=[[0], [1], [29], [2], [0, inf, 2]] +1.29.20=[[0], [1], [29], [20]] +1.29.21=[[0], [1], [29], [21]] +1.29.22=[[0], [1], [29], [22]] +1.29.23=[[0], [1], [29], [23]] +1.29.24=[[0], [1], [29], [24]] +1.29.25=[[0], [1], [29], [25]] +1.29.26=[[0], [1], [29], [26]] +1.29.27=[[0], [1], [29], [27]] +1.29.28=[[0], [1], [29], [28]] +1.29.29=[[0], [1], [29], [29]] +1.29.3=[[0], [1], [29], [3]] +1.29.3.post1=[[0], [1], [29], [3], [0, inf, 1]] +1.29.30=[[0], [1], [29], [30]] +1.29.31=[[0], [1], [29], [31]] +1.29.32=[[0], [1], [29], [32]] +1.29.33=[[0], [1], [29], [33]] +1.29.34=[[0], [1], [29], [34]] +1.29.35=[[0], [1], [29], [35]] +1.29.36=[[0], [1], [29], [36]] +1.29.37=[[0], [1], [29], [37]] +1.29.38=[[0], [1], [29], [38]] +1.29.39=[[0], [1], [29], [39]] +1.29.4=[[0], [1], [29], [4]] +1.29.40=[[0], [1], [29], [40]] +1.29.41=[[0], [1], [29], [41]] +1.29.42=[[0], [1], [29], [42]] +1.29.43=[[0], [1], [29], [43]] +1.29.44=[[0], [1], [29], [44]] +1.29.45=[[0], [1], [29], [45]] +1.29.46=[[0], [1], [29], [46]] +1.29.47=[[0], [1], [29], [47]] +1.29.48=[[0], [1], [29], [48]] +1.29.49=[[0], [1], [29], [49]] +1.29.5=[[0], [1], [29], [5]] +1.29.50=[[0], [1], [29], [50]] +1.29.51=[[0], [1], [29], [51]] +1.29.52=[[0], [1], [29], [52]] +1.29.53=[[0], [1], [29], [53]] +1.29.54=[[0], [1], [29], [54]] +1.29.55=[[0], [1], [29], [55]] +1.29.56=[[0], [1], [29], [56]] +1.29.57=[[0], [1], [29], [57]] +1.29.58=[[0], [1], [29], [58]] +1.29.59=[[0], [1], [29], [59]] +1.29.6=[[0], [1], [29], [6]] +1.29.60=[[0], [1], [29], [60]] +1.29.61=[[0], [1], [29], [61]] +1.29.62=[[0], [1], [29], [62]] +1.29.63=[[0], [1], [29], [63]] +1.29.64=[[0], [1], [29], [64]] +1.29.65=[[0], [1], [29], [65]] +1.29.66=[[0], [1], [29], [66]] +1.29.67=[[0], [1], [29], [67]] +1.29.68=[[0], [1], [29], [68]] +1.29.69=[[0], [1], [29], [69]] +1.29.7=[[0], [1], [29], [7]] +1.29.7.post1=[[0], [1], [29], [7], [0, inf, 1]] +1.29.70=[[0], [1], [29], [70]] +1.29.71=[[0], [1], [29], [71]] +1.29.72=[[0], [1], [29], [72]] +1.29.73=[[0], [1], [29], [73]] +1.29.74=[[0], [1], [29], [74]] +1.29.75=[[0], [1], [29], [75]] +1.29.76=[[0], [1], [29], [76]] +1.29.77=[[0], [1], [29], [77]] +1.29.78=[[0], [1], [29], [78]] +1.29.79=[[0], [1], [29], [79]] +1.29.8=[[0], [1], [29], [8]] +1.29.80=[[0], [1], [29], [80]] +1.29.81=[[0], [1], [29], [81]] +1.29.82=[[0], [1], [29], [82]] +1.29.83=[[0], [1], [29], [83]] +1.29.84=[[0], [1], [29], [84]] +1.29.9=[[0], [1], [29], [9]] +1.2_0=[[0], [1], [2], [0]] +1.2_0.1=[[0], [1], [2], [0], [1]] +1.2_1=[[0], [1], [2], [1]] +1.2_1.1=[[0], [1], [2], [1], [1]] +1.2_10=[[0], [1], [2], [10]] +1.2_11=[[0], [1], [2], [11]] +1.2_12=[[0], [1], [2], [12]] +1.2_13=[[0], [1], [2], [13]] +1.2_14=[[0], [1], [2], [14]] +1.2_15=[[0], [1], [2], [15]] +1.2_16=[[0], [1], [2], [16]] +1.2_17=[[0], [1], [2], [17]] +1.2_18=[[0], [1], [2], [18]] +1.2_19=[[0], [1], [2], [19]] +1.2_2=[[0], [1], [2], [2]] +1.2_20=[[0], [1], [2], [20]] +1.2_21=[[0], [1], [2], [21]] +1.2_21.1=[[0], [1], [2], [21], [1]] +1.2_22=[[0], [1], [2], [22]] +1.2_3=[[0], [1], [2], [3]] +1.2_4=[[0], [1], [2], [4]] +1.2_5=[[0], [1], [2], [5]] +1.2_6=[[0], [1], [2], [6]] +1.2_60=[[0], [1], [2], [60]] +1.2_7=[[0], [1], [2], [7]] +1.2_7.1=[[0], [1], [2], [7], [1]] +1.2_8=[[0], [1], [2], [8]] +1.2_9=[[0], [1], [2], [9]] +1.2b0_20160930b0=[[0], [1], [2, 'b', 0], [20160930, 'b', 0]] +1.2b0_20160930b1=[[0], [1], [2, 'b', 0], [20160930, 'b', 1]] +1.2rc2=[[0], [1], [2, 'rc', 2]] +1.2rc3=[[0], [1], [2, 'rc', 3]] +1.3=[[0], [1], [3]] +1.3.0=[[0], [1], [3], [0]] +1.3.0.0=[[0], [1], [3], [0], [0]] +1.3.0.1=[[0], [1], [3], [0], [1]] +1.3.0.2=[[0], [1], [3], [0], [2]] +1.3.0.20190205182514=[[0], [1], [3], [0], [20190205182514]] +1.3.0.20190206223817=[[0], [1], [3], [0], [20190206223817]] +1.3.0.20190221150417=[[0], [1], [3], [0], [20190221150417]] +1.3.0.3=[[0], [1], [3], [0], [3]] +1.3.0.post=[[0], [1], [3], [0], [0, inf]] +1.3.0.post1=[[0], [1], [3], [0], [0, inf, 1]] +1.3.0.post2=[[0], [1], [3], [0], [0, inf, 2]] +1.3.0.post2209=[[0], [1], [3], [0], [0, inf, 2209]] +1.3.0.post2210=[[0], [1], [3], [0], [0, inf, 2210]] +1.3.0.post2211=[[0], [1], [3], [0], [0, inf, 2211]] +1.3.0.post2212=[[0], [1], [3], [0], [0, inf, 2212]] +1.3.0.post2301=[[0], [1], [3], [0], [0, inf, 2301]] +1.3.0.post2302=[[0], [1], [3], [0], [0, inf, 2302]] +1.3.0.post2303=[[0], [1], [3], [0], [0, inf, 2303]] +1.3.0.post3=[[0], [1], [3], [0], [0, inf, 3]] +1.3.0.post4=[[0], [1], [3], [0], [0, inf, 4]] +1.3.0.pre=[[0], [1], [3], [0], [0, 'pre']] +1.3.0_1=[[0], [1], [3], [0], [1]] +1.3.0_2=[[0], [1], [3], [0], [2]] +1.3.0rc1=[[0], [1], [3], [0, 'rc', 1]] +1.3.1=[[0], [1], [3], [1]] +1.3.1.1=[[0], [1], [3], [1], [1]] +1.3.1.3=[[0], [1], [3], [1], [3]] +1.3.1.post0=[[0], [1], [3], [1], [0, inf, 0]] +1.3.1.post1=[[0], [1], [3], [1], [0, inf, 1]] +1.3.10=[[0], [1], [3], [10]] +1.3.1000=[[0], [1], [3], [1000]] +1.3.11=[[0], [1], [3], [11]] +1.3.11.post3=[[0], [1], [3], [11], [0, inf, 3]] +1.3.11.post4=[[0], [1], [3], [11], [0, inf, 4]] +1.3.12=[[0], [1], [3], [12]] +1.3.13=[[0], [1], [3], [13]] +1.3.13.post0=[[0], [1], [3], [13], [0, inf, 0]] +1.3.13.post1=[[0], [1], [3], [13], [0, inf, 1]] +1.3.14=[[0], [1], [3], [14]] +1.3.14.post0=[[0], [1], [3], [14], [0, inf, 0]] +1.3.14.post1=[[0], [1], [3], [14], [0, inf, 1]] +1.3.14.post2=[[0], [1], [3], [14], [0, inf, 2]] +1.3.14.post3=[[0], [1], [3], [14], [0, inf, 3]] +1.3.14.post4=[[0], [1], [3], [14], [0, inf, 4]] +1.3.15=[[0], [1], [3], [15]] +1.3.15.1=[[0], [1], [3], [15], [1]] +1.3.16=[[0], [1], [3], [16]] +1.3.17=[[0], [1], [3], [17]] +1.3.18=[[0], [1], [3], [18]] +1.3.19=[[0], [1], [3], [19]] +1.3.190304ac=[[0], [1], [3], [190304, 'ac']] +1.3.1_10=[[0], [1], [3], [1], [10]] +1.3.1_2=[[0], [1], [3], [1], [2]] +1.3.1_3=[[0], [1], [3], [1], [3]] +1.3.1_4=[[0], [1], [3], [1], [4]] +1.3.1_5=[[0], [1], [3], [1], [5]] +1.3.1_6=[[0], [1], [3], [1], [6]] +1.3.1_7=[[0], [1], [3], [1], [7]] +1.3.1_8=[[0], [1], [3], [1], [8]] +1.3.1_9=[[0], [1], [3], [1], [9]] +1.3.1a1=[[0], [1], [3], [1, 'a', 1]] +1.3.2=[[0], [1], [3], [2]] +1.3.2.1=[[0], [1], [3], [2], [1]] +1.3.2.2=[[0], [1], [3], [2], [2]] +1.3.2.3=[[0], [1], [3], [2], [3]] +1.3.2.4=[[0], [1], [3], [2], [4]] +1.3.2.5=[[0], [1], [3], [2], [5]] +1.3.2.6=[[0], [1], [3], [2], [6]] +1.3.2.post0=[[0], [1], [3], [2], [0, inf, 0]] +1.3.2.post1=[[0], [1], [3], [2], [0, inf, 1]] +1.3.2.post2=[[0], [1], [3], [2], [0, inf, 2]] +1.3.20=[[0], [1], [3], [20]] +1.3.21=[[0], [1], [3], [21]] +1.3.216.0=[[0], [1], [3], [216], [0]] +1.3.22=[[0], [1], [3], [22]] +1.3.23=[[0], [1], [3], [23]] +1.3.231.1=[[0], [1], [3], [231], [1]] +1.3.239.0=[[0], [1], [3], [239], [0]] +1.3.24=[[0], [1], [3], [24]] +1.3.243.0=[[0], [1], [3], [243], [0]] +1.3.25=[[0], [1], [3], [25]] +1.3.250.0=[[0], [1], [3], [250], [0]] +1.3.26=[[0], [1], [3], [26]] +1.3.27=[[0], [1], [3], [27]] +1.3.28=[[0], [1], [3], [28]] +1.3.29=[[0], [1], [3], [29]] +1.3.2_1=[[0], [1], [3], [2], [1]] +1.3.2b1.post4=[[0], [1], [3], [2, 'b', 1], [0, inf, 4]] +1.3.2b3=[[0], [1], [3], [2, 'b', 3]] +1.3.3=[[0], [1], [3], [3]] +1.3.3.0=[[0], [1], [3], [3], [0]] +1.3.3.1=[[0], [1], [3], [3], [1]] +1.3.3.2=[[0], [1], [3], [3], [2]] +1.3.3.dev0=[[0], [1], [3], [3], [0, 'DEV', 0]] +1.3.3.post0=[[0], [1], [3], [3], [0, inf, 0]] +1.3.30=[[0], [1], [3], [30]] +1.3.31=[[0], [1], [3], [31]] +1.3.32=[[0], [1], [3], [32]] +1.3.33=[[0], [1], [3], [33]] +1.3.34=[[0], [1], [3], [34]] +1.3.340=[[0], [1], [3], [340]] +1.3.35=[[0], [1], [3], [35]] +1.3.353=[[0], [1], [3], [353]] +1.3.36=[[0], [1], [3], [36]] +1.3.361=[[0], [1], [3], [361]] +1.3.37=[[0], [1], [3], [37]] +1.3.38=[[0], [1], [3], [38]] +1.3.39=[[0], [1], [3], [39]] +1.3.3_1=[[0], [1], [3], [3], [1]] +1.3.3e=[[0], [1], [3], [3, 'e']] +1.3.4=[[0], [1], [3], [4]] +1.3.4.0=[[0], [1], [3], [4], [0]] +1.3.4.1=[[0], [1], [3], [4], [1]] +1.3.40=[[0], [1], [3], [40]] +1.3.41=[[0], [1], [3], [41]] +1.3.42=[[0], [1], [3], [42]] +1.3.43=[[0], [1], [3], [43]] +1.3.44=[[0], [1], [3], [44]] +1.3.49.5=[[0], [1], [3], [49], [5]] +1.3.5=[[0], [1], [3], [5]] +1.3.5.1=[[0], [1], [3], [5], [1]] +1.3.6=[[0], [1], [3], [6]] +1.3.6.1=[[0], [1], [3], [6], [1]] +1.3.6.2=[[0], [1], [3], [6], [2]] +1.3.7=[[0], [1], [3], [7]] +1.3.7.1=[[0], [1], [3], [7], [1]] +1.3.7.post0=[[0], [1], [3], [7], [0, inf, 0]] +1.3.8=[[0], [1], [3], [8]] +1.3.8.1=[[0], [1], [3], [8], [1]] +1.3.8.1.1=[[0], [1], [3], [8], [1], [1]] +1.3.8.1.2=[[0], [1], [3], [8], [1], [2]] +1.3.8.1.3=[[0], [1], [3], [8], [1], [3]] +1.3.8.2=[[0], [1], [3], [8], [2]] +1.3.9=[[0], [1], [3], [9]] +1.3.93=[[0], [1], [3], [93]] +1.3.99=[[0], [1], [3], [99]] +1.3.993=[[0], [1], [3], [993]] +1.3.dev=[[0], [1], [3], [0, 'DEV']] +1.3.post1=[[0], [1], [3], [0, inf, 1]] +1.30=[[0], [1], [30]] +1.30.0=[[0], [1], [30], [0]] +1.30.1=[[0], [1], [30], [1]] +1.30.10=[[0], [1], [30], [10]] +1.30.12=[[0], [1], [30], [12]] +1.30.13=[[0], [1], [30], [13]] +1.30.14=[[0], [1], [30], [14]] +1.30.15=[[0], [1], [30], [15]] +1.30.16=[[0], [1], [30], [16]] +1.30.17=[[0], [1], [30], [17]] +1.30.18=[[0], [1], [30], [18]] +1.30.19=[[0], [1], [30], [19]] +1.30.2=[[0], [1], [30], [2]] +1.30.20=[[0], [1], [30], [20]] +1.30.3=[[0], [1], [30], [3]] +1.30.4=[[0], [1], [30], [4]] +1.30.5=[[0], [1], [30], [5]] +1.30.6=[[0], [1], [30], [6]] +1.30.7=[[0], [1], [30], [7]] +1.30.8=[[0], [1], [30], [8]] +1.30.9=[[0], [1], [30], [9]] +1.300=[[0], [1], [300]] +1.302075=[[0], [1], [302075]] +1.302164=[[0], [1], [302164]] +1.302188=[[0], [1], [302188]] +1.302189=[[0], [1], [302189]] +1.302190=[[0], [1], [302190]] +1.302191=[[0], [1], [302191]] +1.31=[[0], [1], [31]] +1.31.0=[[0], [1], [31], [0]] +1.31.1=[[0], [1], [31], [1]] +1.31.2=[[0], [1], [31], [2]] +1.31.3=[[0], [1], [31], [3]] +1.31.4=[[0], [1], [31], [4]] +1.31.5=[[0], [1], [31], [5]] +1.31.6=[[0], [1], [31], [6]] +1.310=[[0], [1], [310]] +1.32=[[0], [1], [32]] +1.32.0=[[0], [1], [32], [0]] +1.32.1=[[0], [1], [32], [1]] +1.32.3=[[0], [1], [32], [3]] +1.32.8=[[0], [1], [32], [8]] +1.33=[[0], [1], [33]] +1.33.0=[[0], [1], [33], [0]] +1.33.1=[[0], [1], [33], [1]] +1.33.2=[[0], [1], [33], [2]] +1.33.3=[[0], [1], [33], [3]] +1.33.4=[[0], [1], [33], [4]] +1.34=[[0], [1], [34]] +1.34.0=[[0], [1], [34], [0]] +1.34.1=[[0], [1], [34], [1]] +1.34.2=[[0], [1], [34], [2]] +1.34.3=[[0], [1], [34], [3]] +1.34.5=[[0], [1], [34], [5]] +1.34.6=[[0], [1], [34], [6]] +1.34.8=[[0], [1], [34], [8]] +1.35=[[0], [1], [35]] +1.35.0=[[0], [1], [35], [0]] +1.35.1=[[0], [1], [35], [1]] +1.35.2=[[0], [1], [35], [2]] +1.35.3=[[0], [1], [35], [3]] +1.35.4=[[0], [1], [35], [4]] +1.35.4.post0=[[0], [1], [35], [4], [0, inf, 0]] +1.35.5=[[0], [1], [35], [5]] +1.35.6=[[0], [1], [35], [6]] +1.36=[[0], [1], [36]] +1.36.0=[[0], [1], [36], [0]] +1.36.1=[[0], [1], [36], [1]] +1.36.2=[[0], [1], [36], [2]] +1.36.3=[[0], [1], [36], [3]] +1.36.4=[[0], [1], [36], [4]] +1.37=[[0], [1], [37]] +1.37.0=[[0], [1], [37], [0]] +1.37.1=[[0], [1], [37], [1]] +1.37.2=[[0], [1], [37], [2]] +1.37.5=[[0], [1], [37], [5]] +1.373=[[0], [1], [373]] +1.38=[[0], [1], [38]] +1.38.0=[[0], [1], [38], [0]] +1.38.1=[[0], [1], [38], [1]] +1.38.11=[[0], [1], [38], [11]] +1.38.12=[[0], [1], [38], [12]] +1.38.13=[[0], [1], [38], [13]] +1.38.14=[[0], [1], [38], [14]] +1.38.15=[[0], [1], [38], [15]] +1.38.16=[[0], [1], [38], [16]] +1.38.18=[[0], [1], [38], [18]] +1.38.19=[[0], [1], [38], [19]] +1.38.2=[[0], [1], [38], [2]] +1.38.20=[[0], [1], [38], [20]] +1.38.21=[[0], [1], [38], [21]] +1.38.22=[[0], [1], [38], [22]] +1.38.24=[[0], [1], [38], [24]] +1.38.25=[[0], [1], [38], [25]] +1.38.27=[[0], [1], [38], [27]] +1.38.28=[[0], [1], [38], [28]] +1.38.29=[[0], [1], [38], [29]] +1.38.3=[[0], [1], [38], [3]] +1.38.30=[[0], [1], [38], [30]] +1.38.31=[[0], [1], [38], [31]] +1.38.32=[[0], [1], [38], [32]] +1.38.48=[[0], [1], [38], [48]] +1.38.5=[[0], [1], [38], [5]] +1.38.6=[[0], [1], [38], [6]] +1.38.9=[[0], [1], [38], [9]] +1.38_03=[[0], [1], [38], [3]] +1.39=[[0], [1], [39]] +1.39.0=[[0], [1], [39], [0]] +1.39.1=[[0], [1], [39], [1]] +1.3_0=[[0], [1], [3], [0]] +1.3_1=[[0], [1], [3], [1]] +1.3_1.1=[[0], [1], [3], [1], [1]] +1.3_1.2=[[0], [1], [3], [1], [2]] +1.3_1.3=[[0], [1], [3], [1], [3]] +1.3_1.4=[[0], [1], [3], [1], [4]] +1.3_1.5=[[0], [1], [3], [1], [5]] +1.3_1.6=[[0], [1], [3], [1], [6]] +1.3_1.7=[[0], [1], [3], [1], [7]] +1.3_1.8=[[0], [1], [3], [1], [8]] +1.3_10=[[0], [1], [3], [10]] +1.3_11=[[0], [1], [3], [11]] +1.3_12=[[0], [1], [3], [12]] +1.3_13=[[0], [1], [3], [13]] +1.3_14=[[0], [1], [3], [14]] +1.3_15=[[0], [1], [3], [15]] +1.3_16=[[0], [1], [3], [16]] +1.3_17=[[0], [1], [3], [17]] +1.3_18=[[0], [1], [3], [18]] +1.3_19=[[0], [1], [3], [19]] +1.3_2=[[0], [1], [3], [2]] +1.3_20=[[0], [1], [3], [20]] +1.3_21=[[0], [1], [3], [21]] +1.3_22=[[0], [1], [3], [22]] +1.3_23=[[0], [1], [3], [23]] +1.3_24=[[0], [1], [3], [24]] +1.3_25=[[0], [1], [3], [25]] +1.3_26=[[0], [1], [3], [26]] +1.3_27=[[0], [1], [3], [27]] +1.3_28=[[0], [1], [3], [28]] +1.3_28.1=[[0], [1], [3], [28], [1]] +1.3_3=[[0], [1], [3], [3]] +1.3_4=[[0], [1], [3], [4]] +1.3_5=[[0], [1], [3], [5]] +1.3_6=[[0], [1], [3], [6]] +1.3_7=[[0], [1], [3], [7]] +1.3_8=[[0], [1], [3], [8]] +1.3_9=[[0], [1], [3], [9]] +1.3_9.1=[[0], [1], [3], [9], [1]] +1.3a1=[[0], [1], [3, 'a', 1]] +1.3rc2=[[0], [1], [3, 'rc', 2]] +1.4=[[0], [1], [4]] +1.4.0=[[0], [1], [4], [0]] +1.4.0.0=[[0], [1], [4], [0], [0]] +1.4.0.1=[[0], [1], [4], [0], [1]] +1.4.0.2=[[0], [1], [4], [0], [2]] +1.4.0.20210127.165413=[[0], [1], [4], [0], [20210127], [165413]] +1.4.0.6=[[0], [1], [4], [0], [6]] +1.4.0.post0=[[0], [1], [4], [0], [0, inf, 0]] +1.4.0.post1=[[0], [1], [4], [0], [0, inf, 1]] +1.4.0.pre=[[0], [1], [4], [0], [0, 'pre']] +1.4.07=[[0], [1], [4], [7]] +1.4.0_1=[[0], [1], [4], [0], [1]] +1.4.0a1=[[0], [1], [4], [0, 'a', 1]] +1.4.0rc1=[[0], [1], [4], [0, 'rc', 1]] +1.4.1=[[0], [1], [4], [1]] +1.4.1.0=[[0], [1], [4], [1], [0]] +1.4.1.1=[[0], [1], [4], [1], [1]] +1.4.1.dev=[[0], [1], [4], [1], [0, 'DEV']] +1.4.1.post1=[[0], [1], [4], [1], [0, inf, 1]] +1.4.1.post3=[[0], [1], [4], [1], [0, inf, 3]] +1.4.10=[[0], [1], [4], [10]] +1.4.102=[[0], [1], [4], [102]] +1.4.105=[[0], [1], [4], [105]] +1.4.107=[[0], [1], [4], [107]] +1.4.108=[[0], [1], [4], [108]] +1.4.109=[[0], [1], [4], [109]] +1.4.11=[[0], [1], [4], [11]] +1.4.111=[[0], [1], [4], [111]] +1.4.112=[[0], [1], [4], [112]] +1.4.114=[[0], [1], [4], [114]] +1.4.116=[[0], [1], [4], [116]] +1.4.119=[[0], [1], [4], [119]] +1.4.12=[[0], [1], [4], [12]] +1.4.12.post1=[[0], [1], [4], [12], [0, inf, 1]] +1.4.120=[[0], [1], [4], [120]] +1.4.122=[[0], [1], [4], [122]] +1.4.126=[[0], [1], [4], [126]] +1.4.13=[[0], [1], [4], [13]] +1.4.13.post1=[[0], [1], [4], [13], [0, inf, 1]] +1.4.131=[[0], [1], [4], [131]] +1.4.132=[[0], [1], [4], [132]] +1.4.133=[[0], [1], [4], [133]] +1.4.134=[[0], [1], [4], [134]] +1.4.138=[[0], [1], [4], [138]] +1.4.14=[[0], [1], [4], [14]] +1.4.142=[[0], [1], [4], [142]] +1.4.145=[[0], [1], [4], [145]] +1.4.15=[[0], [1], [4], [15]] +1.4.150=[[0], [1], [4], [150]] +1.4.154=[[0], [1], [4], [154]] +1.4.16=[[0], [1], [4], [16]] +1.4.160=[[0], [1], [4], [160]] +1.4.162=[[0], [1], [4], [162]] +1.4.165=[[0], [1], [4], [165]] +1.4.166=[[0], [1], [4], [166]] +1.4.17=[[0], [1], [4], [17]] +1.4.17.post1=[[0], [1], [4], [17], [0, inf, 1]] +1.4.18=[[0], [1], [4], [18]] +1.4.19=[[0], [1], [4], [19]] +1.4.2=[[0], [1], [4], [2]] +1.4.2.0=[[0], [1], [4], [2], [0]] +1.4.2.220626=[[0], [1], [4], [2], [220626]] +1.4.2.post1=[[0], [1], [4], [2], [0, inf, 1]] +1.4.2.post2=[[0], [1], [4], [2], [0, inf, 2]] +1.4.20=[[0], [1], [4], [20]] +1.4.21=[[0], [1], [4], [21]] +1.4.22=[[0], [1], [4], [22]] +1.4.23=[[0], [1], [4], [23]] +1.4.24=[[0], [1], [4], [24]] +1.4.25=[[0], [1], [4], [25]] +1.4.26=[[0], [1], [4], [26]] +1.4.27=[[0], [1], [4], [27]] +1.4.28=[[0], [1], [4], [28]] +1.4.28.3=[[0], [1], [4], [28], [3]] +1.4.29=[[0], [1], [4], [29]] +1.4.3=[[0], [1], [4], [3]] +1.4.3.0=[[0], [1], [4], [3], [0]] +1.4.3.01=[[0], [1], [4], [3], [1]] +1.4.3.1=[[0], [1], [4], [3], [1]] +1.4.3.2=[[0], [1], [4], [3], [2]] +1.4.3.220702=[[0], [1], [4], [3], [220702]] +1.4.3.220703=[[0], [1], [4], [3], [220703]] +1.4.3.220704=[[0], [1], [4], [3], [220704]] +1.4.3.220710=[[0], [1], [4], [3], [220710]] +1.4.3.220718=[[0], [1], [4], [3], [220718]] +1.4.3.220724=[[0], [1], [4], [3], [220724]] +1.4.3.220801=[[0], [1], [4], [3], [220801]] +1.4.3.220807=[[0], [1], [4], [3], [220807]] +1.4.3.220815=[[0], [1], [4], [3], [220815]] +1.4.3.220822=[[0], [1], [4], [3], [220822]] +1.4.3.220829=[[0], [1], [4], [3], [220829]] +1.4.3.post0=[[0], [1], [4], [3], [0, inf, 0]] +1.4.30=[[0], [1], [4], [30]] +1.4.31=[[0], [1], [4], [31]] +1.4.32=[[0], [1], [4], [32]] +1.4.33=[[0], [1], [4], [33]] +1.4.34=[[0], [1], [4], [34]] +1.4.35=[[0], [1], [4], [35]] +1.4.36=[[0], [1], [4], [36]] +1.4.37=[[0], [1], [4], [37]] +1.4.38=[[0], [1], [4], [38]] +1.4.39=[[0], [1], [4], [39]] +1.4.3_1=[[0], [1], [4], [3], [1]] +1.4.4=[[0], [1], [4], [4]] +1.4.4.1=[[0], [1], [4], [4], [1]] +1.4.4.220906=[[0], [1], [4], [4], [220906]] +1.4.4.220912=[[0], [1], [4], [4], [220912]] +1.4.4.220919=[[0], [1], [4], [4], [220919]] +1.4.4.post0=[[0], [1], [4], [4], [0, inf, 0]] +1.4.4.post1=[[0], [1], [4], [4], [0, inf, 1]] +1.4.40=[[0], [1], [4], [40]] +1.4.41=[[0], [1], [4], [41]] +1.4.42=[[0], [1], [4], [42]] +1.4.43=[[0], [1], [4], [43]] +1.4.44=[[0], [1], [4], [44]] +1.4.45=[[0], [1], [4], [45]] +1.4.46=[[0], [1], [4], [46]] +1.4.48=[[0], [1], [4], [48]] +1.4.49=[[0], [1], [4], [49]] +1.4.5=[[0], [1], [4], [5]] +1.4.5.0=[[0], [1], [4], [5], [0]] +1.4.5.1=[[0], [1], [4], [5], [1]] +1.4.5.2=[[0], [1], [4], [5], [2]] +1.4.5.3=[[0], [1], [4], [5], [3]] +1.4.50=[[0], [1], [4], [50]] +1.4.51=[[0], [1], [4], [51]] +1.4.52=[[0], [1], [4], [52]] +1.4.53=[[0], [1], [4], [53]] +1.4.54=[[0], [1], [4], [54]] +1.4.56=[[0], [1], [4], [56]] +1.4.58=[[0], [1], [4], [58]] +1.4.59=[[0], [1], [4], [59]] +1.4.6=[[0], [1], [4], [6]] +1.4.6.0=[[0], [1], [4], [6], [0]] +1.4.6.1=[[0], [1], [4], [6], [1]] +1.4.62=[[0], [1], [4], [62]] +1.4.64=[[0], [1], [4], [64]] +1.4.68.19.3.27=[[0], [1], [4], [68], [19], [3], [27]] +1.4.7=[[0], [1], [4], [7]] +1.4.70=[[0], [1], [4], [70]] +1.4.71=[[0], [1], [4], [71]] +1.4.72=[[0], [1], [4], [72]] +1.4.73=[[0], [1], [4], [73]] +1.4.75=[[0], [1], [4], [75]] +1.4.76=[[0], [1], [4], [76]] +1.4.77=[[0], [1], [4], [77]] +1.4.78=[[0], [1], [4], [78]] +1.4.8=[[0], [1], [4], [8]] +1.4.8.1=[[0], [1], [4], [8], [1]] +1.4.8.7=[[0], [1], [4], [8], [7]] +1.4.81=[[0], [1], [4], [81]] +1.4.84=[[0], [1], [4], [84]] +1.4.85=[[0], [1], [4], [85]] +1.4.87=[[0], [1], [4], [87]] +1.4.88=[[0], [1], [4], [88]] +1.4.9=[[0], [1], [4], [9]] +1.4.9.0=[[0], [1], [4], [9], [0]] +1.4.9.1=[[0], [1], [4], [9], [1]] +1.4.9.57=[[0], [1], [4], [9], [57]] +1.4.9.post1=[[0], [1], [4], [9], [0, inf, 1]] +1.4.90=[[0], [1], [4], [90]] +1.4.91=[[0], [1], [4], [91]] +1.4.92=[[0], [1], [4], [92]] +1.4.93=[[0], [1], [4], [93]] +1.4.97=[[0], [1], [4], [97]] +1.4.98=[[0], [1], [4], [98]] +1.4.99=[[0], [1], [4], [99]] +1.40=[[0], [1], [40]] +1.40.0=[[0], [1], [40], [0]] +1.40.1=[[0], [1], [40], [1]] +1.40.14=[[0], [1], [40], [14]] +1.40.2=[[0], [1], [40], [2]] +1.40.3=[[0], [1], [40], [3]] +1.40.4=[[0], [1], [40], [4]] +1.40.6=[[0], [1], [40], [6]] +1.40.7=[[0], [1], [40], [7]] +1.40_2=[[0], [1], [40], [2]] +1.40_3=[[0], [1], [40], [3]] +1.40_5=[[0], [1], [40], [5]] +1.41=[[0], [1], [41]] +1.41.0=[[0], [1], [41], [0]] +1.41.1=[[0], [1], [41], [1]] +1.412=[[0], [1], [412]] +1.413=[[0], [1], [413]] +1.414=[[0], [1], [414]] +1.41_6=[[0], [1], [41], [6]] +1.42=[[0], [1], [42]] +1.42.0=[[0], [1], [42], [0]] +1.42.1=[[0], [1], [42], [1]] +1.42.2=[[0], [1], [42], [2]] +1.42.3=[[0], [1], [42], [3]] +1.42.4=[[0], [1], [42], [4]] +1.43=[[0], [1], [43]] +1.43.0=[[0], [1], [43], [0]] +1.43.1=[[0], [1], [43], [1]] +1.43.10=[[0], [1], [43], [10]] +1.43.14=[[0], [1], [43], [14]] +1.43.15=[[0], [1], [43], [15]] +1.43.17=[[0], [1], [43], [17]] +1.43.2=[[0], [1], [43], [2]] +1.43.4=[[0], [1], [43], [4]] +1.43.4.post1=[[0], [1], [43], [4], [0, inf, 1]] +1.43.5=[[0], [1], [43], [5]] +1.43.6=[[0], [1], [43], [6]] +1.43.7=[[0], [1], [43], [7]] +1.43.8=[[0], [1], [43], [8]] +1.44=[[0], [1], [44]] +1.44.0=[[0], [1], [44], [0]] +1.44.1=[[0], [1], [44], [1]] +1.44.2=[[0], [1], [44], [2]] +1.44.3=[[0], [1], [44], [3]] +1.44.4=[[0], [1], [44], [4]] +1.44.5=[[0], [1], [44], [5]] +1.44.6=[[0], [1], [44], [6]] +1.44.7=[[0], [1], [44], [7]] +1.443=[[0], [1], [443]] +1.44_9=[[0], [1], [44], [9]] +1.45=[[0], [1], [45]] +1.45.0=[[0], [1], [45], [0]] +1.45.1=[[0], [1], [45], [1]] +1.45.2=[[0], [1], [45], [2]] +1.45.6=[[0], [1], [45], [6]] +1.45.7=[[0], [1], [45], [7]] +1.45_11=[[0], [1], [45], [11]] +1.46=[[0], [1], [46]] +1.46.0=[[0], [1], [46], [0]] +1.46.1=[[0], [1], [46], [1]] +1.46.2=[[0], [1], [46], [2]] +1.46.3=[[0], [1], [46], [3]] +1.46.4=[[0], [1], [46], [4]] +1.46_2=[[0], [1], [46], [2]] +1.47=[[0], [1], [47]] +1.47.0=[[0], [1], [47], [0]] +1.47.1=[[0], [1], [47], [1]] +1.47.10=[[0], [1], [47], [10]] +1.47.11=[[0], [1], [47], [11]] +1.47.12=[[0], [1], [47], [12]] +1.47.13=[[0], [1], [47], [13]] +1.47.14=[[0], [1], [47], [14]] +1.47.15=[[0], [1], [47], [15]] +1.47.16=[[0], [1], [47], [16]] +1.47.17=[[0], [1], [47], [17]] +1.47.3=[[0], [1], [47], [3]] +1.47.4=[[0], [1], [47], [4]] +1.47.6=[[0], [1], [47], [6]] +1.47.8=[[0], [1], [47], [8]] +1.47.9=[[0], [1], [47], [9]] +1.47_9=[[0], [1], [47], [9]] +1.48=[[0], [1], [48]] +1.48.0=[[0], [1], [48], [0]] +1.48.1=[[0], [1], [48], [1]] +1.48.10=[[0], [1], [48], [10]] +1.48.3=[[0], [1], [48], [3]] +1.48.4=[[0], [1], [48], [4]] +1.48.5=[[0], [1], [48], [5]] +1.48.6=[[0], [1], [48], [6]] +1.48.7=[[0], [1], [48], [7]] +1.48.8=[[0], [1], [48], [8]] +1.48.9=[[0], [1], [48], [9]] +1.48_1=[[0], [1], [48], [1]] +1.49=[[0], [1], [49]] +1.49.0=[[0], [1], [49], [0]] +1.49.1=[[0], [1], [49], [1]] +1.49.2=[[0], [1], [49], [2]] +1.49.3=[[0], [1], [49], [3]] +1.49.4=[[0], [1], [49], [4]] +1.4_0=[[0], [1], [4], [0]] +1.4_1=[[0], [1], [4], [1]] +1.4_10=[[0], [1], [4], [10]] +1.4_11=[[0], [1], [4], [11]] +1.4_12=[[0], [1], [4], [12]] +1.4_13=[[0], [1], [4], [13]] +1.4_14=[[0], [1], [4], [14]] +1.4_15=[[0], [1], [4], [15]] +1.4_16=[[0], [1], [4], [16]] +1.4_17=[[0], [1], [4], [17]] +1.4_18=[[0], [1], [4], [18]] +1.4_19=[[0], [1], [4], [19]] +1.4_2=[[0], [1], [4], [2]] +1.4_2.1=[[0], [1], [4], [2], [1]] +1.4_20=[[0], [1], [4], [20]] +1.4_22=[[0], [1], [4], [22]] +1.4_3=[[0], [1], [4], [3]] +1.4_4=[[0], [1], [4], [4]] +1.4_5=[[0], [1], [4], [5]] +1.4_6=[[0], [1], [4], [6]] +1.4_7=[[0], [1], [4], [7]] +1.4_8=[[0], [1], [4], [8]] +1.4_9=[[0], [1], [4], [9]] +1.4dev2=[[0], [1], [4, 'DEV', 2]] +1.4rc1=[[0], [1], [4, 'rc', 1]] +1.5=[[0], [1], [5]] +1.5.0=[[0], [1], [5], [0]] +1.5.0.0=[[0], [1], [5], [0], [0]] +1.5.0.1=[[0], [1], [5], [0], [1]] +1.5.0.2=[[0], [1], [5], [0], [2]] +1.5.0.20221221.150433=[[0], [1], [5], [0], [20221221], [150433]] +1.5.0.220926=[[0], [1], [5], [0], [220926]] +1.5.0.221003=[[0], [1], [5], [0], [221003]] +1.5.0.221010=[[0], [1], [5], [0], [221010]] +1.5.0.221012=[[0], [1], [5], [0], [221012]] +1.5.0.3=[[0], [1], [5], [0], [3]] +1.5.0.37=[[0], [1], [5], [0], [37]] +1.5.0.4=[[0], [1], [5], [0], [4]] +1.5.0.59=[[0], [1], [5], [0], [59]] +1.5.0.6=[[0], [1], [5], [0], [6]] +1.5.0.63=[[0], [1], [5], [0], [63]] +1.5.0.87=[[0], [1], [5], [0], [87]] +1.5.0.post1=[[0], [1], [5], [0], [0, inf, 1]] +1.5.0.pre=[[0], [1], [5], [0], [0, 'pre']] +1.5.00=[[0], [1], [5], [0]] +1.5.0_1=[[0], [1], [5], [0], [1]] +1.5.0_beta20160623=[[0], [1], [5], [0], [0, 'beta', 20160623]] +1.5.0_beta20161122=[[0], [1], [5], [0], [0, 'beta', 20161122]] +1.5.0beta=[[0], [1], [5], [0, 'beta']] +1.5.0rc0=[[0], [1], [5], [0, 'rc', 0]] +1.5.0rc1=[[0], [1], [5], [0, 'rc', 1]] +1.5.1=[[0], [1], [5], [1]] +1.5.1.1=[[0], [1], [5], [1], [1]] +1.5.1.2=[[0], [1], [5], [1], [2]] +1.5.1.221024=[[0], [1], [5], [1], [221024]] +1.5.1.post0=[[0], [1], [5], [1], [0, inf, 0]] +1.5.1.post1=[[0], [1], [5], [1], [0, inf, 1]] +1.5.1.post2=[[0], [1], [5], [1], [0, inf, 2]] +1.5.10=[[0], [1], [5], [10]] +1.5.11=[[0], [1], [5], [11]] +1.5.12=[[0], [1], [5], [12]] +1.5.13=[[0], [1], [5], [13]] +1.5.14=[[0], [1], [5], [14]] +1.5.15=[[0], [1], [5], [15]] +1.5.16=[[0], [1], [5], [16]] +1.5.17=[[0], [1], [5], [17]] +1.5.18=[[0], [1], [5], [18]] +1.5.19=[[0], [1], [5], [19]] +1.5.1b=[[0], [1], [5], [1, 'b']] +1.5.2=[[0], [1], [5], [2]] +1.5.2.221124=[[0], [1], [5], [2], [221124]] +1.5.2.230105=[[0], [1], [5], [2], [230105]] +1.5.20=[[0], [1], [5], [20]] +1.5.21=[[0], [1], [5], [21]] +1.5.21.1=[[0], [1], [5], [21], [1]] +1.5.21.2=[[0], [1], [5], [21], [2]] +1.5.21.3=[[0], [1], [5], [21], [3]] +1.5.22=[[0], [1], [5], [22]] +1.5.23=[[0], [1], [5], [23]] +1.5.24=[[0], [1], [5], [24]] +1.5.25=[[0], [1], [5], [25]] +1.5.26=[[0], [1], [5], [26]] +1.5.27=[[0], [1], [5], [27]] +1.5.28=[[0], [1], [5], [28]] +1.5.29=[[0], [1], [5], [29]] +1.5.2_1=[[0], [1], [5], [2], [1]] +1.5.3=[[0], [1], [5], [3]] +1.5.3.1=[[0], [1], [5], [3], [1]] +1.5.3.230203=[[0], [1], [5], [3], [230203]] +1.5.3.230214=[[0], [1], [5], [3], [230214]] +1.5.30=[[0], [1], [5], [30]] +1.5.31=[[0], [1], [5], [31]] +1.5.32=[[0], [1], [5], [32]] +1.5.33=[[0], [1], [5], [33]] +1.5.34=[[0], [1], [5], [34]] +1.5.35=[[0], [1], [5], [35]] +1.5.36=[[0], [1], [5], [36]] +1.5.37=[[0], [1], [5], [37]] +1.5.38=[[0], [1], [5], [38]] +1.5.39=[[0], [1], [5], [39]] +1.5.3_4=[[0], [1], [5], [3], [4]] +1.5.4=[[0], [1], [5], [4]] +1.5.5=[[0], [1], [5], [5]] +1.5.5.1=[[0], [1], [5], [5], [1]] +1.5.5.3=[[0], [1], [5], [5], [3]] +1.5.55=[[0], [1], [5], [55]] +1.5.5_1=[[0], [1], [5], [5], [1]] +1.5.6=[[0], [1], [5], [6]] +1.5.69.6=[[0], [1], [5], [69], [6]] +1.5.7=[[0], [1], [5], [7]] +1.5.8=[[0], [1], [5], [8]] +1.5.8.1=[[0], [1], [5], [8], [1]] +1.5.8.2=[[0], [1], [5], [8], [2]] +1.5.8.3=[[0], [1], [5], [8], [3]] +1.5.8.4=[[0], [1], [5], [8], [4]] +1.5.82=[[0], [1], [5], [82]] +1.5.83=[[0], [1], [5], [83]] +1.5.84=[[0], [1], [5], [84]] +1.5.86=[[0], [1], [5], [86]] +1.5.87=[[0], [1], [5], [87]] +1.5.88=[[0], [1], [5], [88]] +1.5.9=[[0], [1], [5], [9]] +1.5.90=[[0], [1], [5], [90]] +1.5.91=[[0], [1], [5], [91]] +1.5.92=[[0], [1], [5], [92]] +1.50=[[0], [1], [50]] +1.50.0=[[0], [1], [50], [0]] +1.50.1=[[0], [1], [50], [1]] +1.50.10=[[0], [1], [50], [10]] +1.50.11=[[0], [1], [50], [11]] +1.50.12=[[0], [1], [50], [12]] +1.50.13=[[0], [1], [50], [13]] +1.50.14=[[0], [1], [50], [14]] +1.50.2=[[0], [1], [50], [2]] +1.50.3=[[0], [1], [50], [3]] +1.50.4=[[0], [1], [50], [4]] +1.50.5=[[0], [1], [50], [5]] +1.50.6=[[0], [1], [50], [6]] +1.50.7=[[0], [1], [50], [7]] +1.50.8=[[0], [1], [50], [8]] +1.50.9=[[0], [1], [50], [9]] +1.502=[[0], [1], [502]] +1.503=[[0], [1], [503]] +1.504=[[0], [1], [504]] +1.51=[[0], [1], [51]] +1.51.0=[[0], [1], [51], [0]] +1.51.07=[[0], [1], [51], [7]] +1.51.1=[[0], [1], [51], [1]] +1.51.2=[[0], [1], [51], [2]] +1.51.3=[[0], [1], [51], [3]] +1.51.5=[[0], [1], [51], [5]] +1.52=[[0], [1], [52]] +1.52.0=[[0], [1], [52], [0]] +1.52.1=[[0], [1], [52], [1]] +1.52.2=[[0], [1], [52], [2]] +1.52.3=[[0], [1], [52], [3]] +1.52.4=[[0], [1], [52], [4]] +1.52.5=[[0], [1], [52], [5]] +1.53=[[0], [1], [53]] +1.53.0=[[0], [1], [53], [0]] +1.53.0.dev20210324=[[0], [1], [53], [0], [0, 'DEV', 20210324]] +1.53.1=[[0], [1], [53], [1]] +1.53.2=[[0], [1], [53], [2]] +1.53.3=[[0], [1], [53], [3]] +1.53.4=[[0], [1], [53], [4]] +1.53.5=[[0], [1], [53], [5]] +1.54=[[0], [1], [54]] +1.54.0=[[0], [1], [54], [0]] +1.54.1=[[0], [1], [54], [1]] +1.54.2=[[0], [1], [54], [2]] +1.54.3=[[0], [1], [54], [3]] +1.54.4=[[0], [1], [54], [4]] +1.54_0=[[0], [1], [54], [0]] +1.55=[[0], [1], [55]] +1.55.0=[[0], [1], [55], [0]] +1.55.1=[[0], [1], [55], [1]] +1.55.2=[[0], [1], [55], [2]] +1.55.3=[[0], [1], [55], [3]] +1.55.4=[[0], [1], [55], [4]] +1.56=[[0], [1], [56]] +1.56.0=[[0], [1], [56], [0]] +1.56.1=[[0], [1], [56], [1]] +1.56.2=[[0], [1], [56], [2]] +1.56.3=[[0], [1], [56], [3]] +1.56.4=[[0], [1], [56], [4]] +1.56_0=[[0], [1], [56], [0]] +1.57=[[0], [1], [57]] +1.57.0=[[0], [1], [57], [0]] +1.57.1=[[0], [1], [57], [1]] +1.57_1=[[0], [1], [57], [1]] +1.58=[[0], [1], [58]] +1.58.0=[[0], [1], [58], [0]] +1.58.1=[[0], [1], [58], [1]] +1.58.2=[[0], [1], [58], [2]] +1.58.3=[[0], [1], [58], [3]] +1.59=[[0], [1], [59]] +1.59.0=[[0], [1], [59], [0]] +1.59.1=[[0], [1], [59], [1]] +1.59.2=[[0], [1], [59], [2]] +1.59.3=[[0], [1], [59], [3]] +1.5_0=[[0], [1], [5], [0]] +1.5_0.1=[[0], [1], [5], [0], [1]] +1.5_1=[[0], [1], [5], [1]] +1.5_10=[[0], [1], [5], [10]] +1.5_11=[[0], [1], [5], [11]] +1.5_12=[[0], [1], [5], [12]] +1.5_12.2=[[0], [1], [5], [12], [2]] +1.5_14=[[0], [1], [5], [14]] +1.5_15=[[0], [1], [5], [15]] +1.5_16=[[0], [1], [5], [16]] +1.5_17=[[0], [1], [5], [17]] +1.5_18=[[0], [1], [5], [18]] +1.5_2=[[0], [1], [5], [2]] +1.5_21=[[0], [1], [5], [21]] +1.5_23=[[0], [1], [5], [23]] +1.5_28=[[0], [1], [5], [28]] +1.5_29=[[0], [1], [5], [29]] +1.5_3=[[0], [1], [5], [3]] +1.5_32=[[0], [1], [5], [32]] +1.5_4=[[0], [1], [5], [4]] +1.5_4.1=[[0], [1], [5], [4], [1]] +1.5_5=[[0], [1], [5], [5]] +1.5_6=[[0], [1], [5], [6]] +1.5_7=[[0], [1], [5], [7]] +1.5_8=[[0], [1], [5], [8]] +1.5_9=[[0], [1], [5], [9]] +1.5_9.1=[[0], [1], [5], [9], [1]] +1.5_9.2=[[0], [1], [5], [9], [2]] +1.5_9.4=[[0], [1], [5], [9], [4]] +1.5_9.5=[[0], [1], [5], [9], [5]] +1.5_9.6=[[0], [1], [5], [9], [6]] +1.5_9.7=[[0], [1], [5], [9], [7]] +1.5_9.8=[[0], [1], [5], [9], [8]] +1.6=[[0], [1], [6]] +1.6.0=[[0], [1], [6], [0]] +1.6.0.1=[[0], [1], [6], [0], [1]] +1.6.0.2=[[0], [1], [6], [0], [2]] +1.6.0.3=[[0], [1], [6], [0], [3]] +1.6.0.47=[[0], [1], [6], [0], [47]] +1.6.0.post0=[[0], [1], [6], [0], [0, inf, 0]] +1.6.0.post1=[[0], [1], [6], [0], [0, inf, 1]] +1.6.0.post2=[[0], [1], [6], [0], [0, inf, 2]] +1.6.0a=[[0], [1], [6], [0, 'a']] +1.6.0rc0=[[0], [1], [6], [0, 'rc', 0]] +1.6.1=[[0], [1], [6], [1]] +1.6.1.0=[[0], [1], [6], [1], [0]] +1.6.1.5=[[0], [1], [6], [1], [5]] +1.6.10=[[0], [1], [6], [10]] +1.6.10.43=[[0], [1], [6], [10], [43]] +1.6.11=[[0], [1], [6], [11]] +1.6.12=[[0], [1], [6], [12]] +1.6.12.post0=[[0], [1], [6], [12], [0, inf, 0]] +1.6.13=[[0], [1], [6], [13]] +1.6.14=[[0], [1], [6], [14]] +1.6.14.post0=[[0], [1], [6], [14], [0, inf, 0]] +1.6.15=[[0], [1], [6], [15]] +1.6.16=[[0], [1], [6], [16]] +1.6.17=[[0], [1], [6], [17]] +1.6.17.0=[[0], [1], [6], [17], [0]] +1.6.18=[[0], [1], [6], [18]] +1.6.19=[[0], [1], [6], [19]] +1.6.2=[[0], [1], [6], [2]] +1.6.2.0=[[0], [1], [6], [2], [0]] +1.6.2.3=[[0], [1], [6], [2], [3]] +1.6.20=[[0], [1], [6], [20]] +1.6.20180829=[[0], [1], [6], [20180829]] +1.6.21=[[0], [1], [6], [21]] +1.6.22=[[0], [1], [6], [22]] +1.6.22.post0=[[0], [1], [6], [22], [0, inf, 0]] +1.6.23=[[0], [1], [6], [23]] +1.6.23.post0=[[0], [1], [6], [23], [0, inf, 0]] +1.6.24=[[0], [1], [6], [24]] +1.6.25=[[0], [1], [6], [25]] +1.6.26=[[0], [1], [6], [26]] +1.6.28=[[0], [1], [6], [28]] +1.6.2_1=[[0], [1], [6], [2], [1]] +1.6.3=[[0], [1], [6], [3]] +1.6.3.0=[[0], [1], [6], [3], [0]] +1.6.3.1=[[0], [1], [6], [3], [1]] +1.6.3.4=[[0], [1], [6], [3], [4]] +1.6.34=[[0], [1], [6], [34]] +1.6.35=[[0], [1], [6], [35]] +1.6.36=[[0], [1], [6], [36]] +1.6.37=[[0], [1], [6], [37]] +1.6.38=[[0], [1], [6], [38]] +1.6.39=[[0], [1], [6], [39]] +1.6.3rc4=[[0], [1], [6], [3, 'rc', 4]] +1.6.4=[[0], [1], [6], [4]] +1.6.4.0=[[0], [1], [6], [4], [0]] +1.6.4.1=[[0], [1], [6], [4], [1]] +1.6.4.2=[[0], [1], [6], [4], [2]] +1.6.4.4=[[0], [1], [6], [4], [4]] +1.6.4.6=[[0], [1], [6], [4], [6]] +1.6.4.7.1=[[0], [1], [6], [4], [7], [1]] +1.6.4.9=[[0], [1], [6], [4], [9]] +1.6.5=[[0], [1], [6], [5]] +1.6.5.0=[[0], [1], [6], [5], [0]] +1.6.5rc5=[[0], [1], [6], [5, 'rc', 5]] +1.6.6=[[0], [1], [6], [6]] +1.6.6.0=[[0], [1], [6], [6], [0]] +1.6.6.1=[[0], [1], [6], [6], [1]] +1.6.6.2=[[0], [1], [6], [6], [2]] +1.6.6.3=[[0], [1], [6], [6], [3]] +1.6.6.4=[[0], [1], [6], [6], [4]] +1.6.6_1=[[0], [1], [6], [6], [1]] +1.6.6rc1=[[0], [1], [6], [6, 'rc', 1]] +1.6.7=[[0], [1], [6], [7]] +1.6.7.post1=[[0], [1], [6], [7], [0, inf, 1]] +1.6.7.post2=[[0], [1], [6], [7], [0, inf, 2]] +1.6.7rc1=[[0], [1], [6], [7, 'rc', 1]] +1.6.7rc2=[[0], [1], [6], [7, 'rc', 2]] +1.6.7rc3=[[0], [1], [6], [7, 'rc', 3]] +1.6.7rc4=[[0], [1], [6], [7, 'rc', 4]] +1.6.8=[[0], [1], [6], [8]] +1.6.8.0=[[0], [1], [6], [8], [0]] +1.6.8.1=[[0], [1], [6], [8], [1]] +1.6.8.2=[[0], [1], [6], [8], [2]] +1.6.9=[[0], [1], [6], [9]] +1.6.9.0=[[0], [1], [6], [9], [0]] +1.6.9.2=[[0], [1], [6], [9], [2]] +1.6.9.5=[[0], [1], [6], [9], [5]] +1.6.9.7=[[0], [1], [6], [9], [7]] +1.6.9.9=[[0], [1], [6], [9], [9]] +1.6.905=[[0], [1], [6], [905]] +1.60=[[0], [1], [60]] +1.60.0=[[0], [1], [60], [0]] +1.60.1=[[0], [1], [60], [1]] +1.60.2=[[0], [1], [60], [2]] +1.601=[[0], [1], [601]] +1.60_1=[[0], [1], [60], [1]] +1.61=[[0], [1], [61]] +1.61.0=[[0], [1], [61], [0]] +1.61.1=[[0], [1], [61], [1]] +1.61.3=[[0], [1], [61], [3]] +1.61_0=[[0], [1], [61], [0]] +1.62=[[0], [1], [62]] +1.62.0=[[0], [1], [62], [0]] +1.62.0_1=[[0], [1], [62], [0], [1]] +1.62.1=[[0], [1], [62], [1]] +1.62.2=[[0], [1], [62], [2]] +1.62_2=[[0], [1], [62], [2]] +1.63=[[0], [1], [63]] +1.63.0=[[0], [1], [63], [0]] +1.63.1=[[0], [1], [63], [1]] +1.63.2=[[0], [1], [63], [2]] +1.63_0=[[0], [1], [63], [0]] +1.63_1=[[0], [1], [63], [1]] +1.63_2=[[0], [1], [63], [2]] +1.63_3=[[0], [1], [63], [3]] +1.64=[[0], [1], [64]] +1.64.0=[[0], [1], [64], [0]] +1.64.1=[[0], [1], [64], [1]] +1.643=[[0], [1], [643]] +1.64_1=[[0], [1], [64], [1]] +1.65.0=[[0], [1], [65], [0]] +1.65.0_1=[[0], [1], [65], [0], [1]] +1.65.1=[[0], [1], [65], [1]] +1.65_3=[[0], [1], [65], [3]] +1.65_5=[[0], [1], [65], [5]] +1.66.0=[[0], [1], [66], [0]] +1.66.0_1=[[0], [1], [66], [0], [1]] +1.66.1=[[0], [1], [66], [1]] +1.6611=[[0], [1], [6611]] +1.67=[[0], [1], [67]] +1.67.0=[[0], [1], [67], [0]] +1.67.1=[[0], [1], [67], [1]] +1.68=[[0], [1], [68]] +1.68.0=[[0], [1], [68], [0]] +1.68.2=[[0], [1], [68], [2]] +1.69=[[0], [1], [69]] +1.69.0=[[0], [1], [69], [0]] +1.69.0_1=[[0], [1], [69], [0], [1]] +1.6_0=[[0], [1], [6], [0]] +1.6_0.10=[[0], [1], [6], [0], [10]] +1.6_0.11=[[0], [1], [6], [0], [11]] +1.6_0.12=[[0], [1], [6], [0], [12]] +1.6_1=[[0], [1], [6], [1]] +1.6_1.1=[[0], [1], [6], [1], [1]] +1.6_2=[[0], [1], [6], [2]] +1.6_3=[[0], [1], [6], [3]] +1.6_4=[[0], [1], [6], [4]] +1.6_5=[[0], [1], [6], [5]] +1.6_6=[[0], [1], [6], [6]] +1.6_7=[[0], [1], [6], [7]] +1.6_8=[[0], [1], [6], [8]] +1.7=[[0], [1], [7]] +1.7.0=[[0], [1], [7], [0]] +1.7.0.0=[[0], [1], [7], [0], [0]] +1.7.0.1=[[0], [1], [7], [0], [1]] +1.7.0.181=[[0], [1], [7], [0], [181]] +1.7.0.221=[[0], [1], [7], [0], [221]] +1.7.0.251=[[0], [1], [7], [0], [251]] +1.7.0.261=[[0], [1], [7], [0], [261]] +1.7.0.4=[[0], [1], [7], [0], [4]] +1.7.0.6=[[0], [1], [7], [0], [6]] +1.7.1=[[0], [1], [7], [1]] +1.7.1.0=[[0], [1], [7], [1], [0]] +1.7.1.1=[[0], [1], [7], [1], [1]] +1.7.1.2=[[0], [1], [7], [1], [2]] +1.7.1.4=[[0], [1], [7], [1], [4]] +1.7.1.8=[[0], [1], [7], [1], [8]] +1.7.10=[[0], [1], [7], [10]] +1.7.100=[[0], [1], [7], [100]] +1.7.11=[[0], [1], [7], [11]] +1.7.12=[[0], [1], [7], [12]] +1.7.13=[[0], [1], [7], [13]] +1.7.14=[[0], [1], [7], [14]] +1.7.143=[[0], [1], [7], [143]] +1.7.145=[[0], [1], [7], [145]] +1.7.149=[[0], [1], [7], [149]] +1.7.15=[[0], [1], [7], [15]] +1.7.154=[[0], [1], [7], [154]] +1.7.159=[[0], [1], [7], [159]] +1.7.16=[[0], [1], [7], [16]] +1.7.160=[[0], [1], [7], [160]] +1.7.164=[[0], [1], [7], [164]] +1.7.17=[[0], [1], [7], [17]] +1.7.18=[[0], [1], [7], [18]] +1.7.19=[[0], [1], [7], [19]] +1.7.1_1=[[0], [1], [7], [1], [1]] +1.7.2=[[0], [1], [7], [2]] +1.7.2.0=[[0], [1], [7], [2], [0]] +1.7.2.1=[[0], [1], [7], [2], [1]] +1.7.2.2=[[0], [1], [7], [2], [2]] +1.7.2.post0=[[0], [1], [7], [2], [0, inf, 0]] +1.7.20=[[0], [1], [7], [20]] +1.7.21=[[0], [1], [7], [21]] +1.7.22=[[0], [1], [7], [22]] +1.7.23=[[0], [1], [7], [23]] +1.7.24=[[0], [1], [7], [24]] +1.7.25=[[0], [1], [7], [25]] +1.7.26=[[0], [1], [7], [26]] +1.7.266=[[0], [1], [7], [266]] +1.7.27=[[0], [1], [7], [27]] +1.7.28=[[0], [1], [7], [28]] +1.7.29=[[0], [1], [7], [29]] +1.7.299=[[0], [1], [7], [299]] +1.7.2_1=[[0], [1], [7], [2], [1]] +1.7.3=[[0], [1], [7], [3]] +1.7.3.0=[[0], [1], [7], [3], [0]] +1.7.3.1=[[0], [1], [7], [3], [1]] +1.7.3.2=[[0], [1], [7], [3], [2]] +1.7.3.21=[[0], [1], [7], [3], [21]] +1.7.3.3=[[0], [1], [7], [3], [3]] +1.7.3.4=[[0], [1], [7], [3], [4]] +1.7.3.5=[[0], [1], [7], [3], [5]] +1.7.30=[[0], [1], [7], [30]] +1.7.309=[[0], [1], [7], [309]] +1.7.31=[[0], [1], [7], [31]] +1.7.310=[[0], [1], [7], [310]] +1.7.32=[[0], [1], [7], [32]] +1.7.33=[[0], [1], [7], [33]] +1.7.34=[[0], [1], [7], [34]] +1.7.35=[[0], [1], [7], [35]] +1.7.36=[[0], [1], [7], [36]] +1.7.37=[[0], [1], [7], [37]] +1.7.38=[[0], [1], [7], [38]] +1.7.39=[[0], [1], [7], [39]] +1.7.3_1=[[0], [1], [7], [3], [1]] +1.7.4=[[0], [1], [7], [4]] +1.7.4.0=[[0], [1], [7], [4], [0]] +1.7.4.1=[[0], [1], [7], [4], [1]] +1.7.4.3=[[0], [1], [7], [4], [3]] +1.7.40=[[0], [1], [7], [40]] +1.7.41=[[0], [1], [7], [41]] +1.7.42=[[0], [1], [7], [42]] +1.7.43=[[0], [1], [7], [43]] +1.7.44=[[0], [1], [7], [44]] +1.7.45=[[0], [1], [7], [45]] +1.7.46=[[0], [1], [7], [46]] +1.7.47=[[0], [1], [7], [47]] +1.7.48=[[0], [1], [7], [48]] +1.7.49=[[0], [1], [7], [49]] +1.7.4_0=[[0], [1], [7], [4], [0]] +1.7.4_1=[[0], [1], [7], [4], [1]] +1.7.5=[[0], [1], [7], [5]] +1.7.5.0=[[0], [1], [7], [5], [0]] +1.7.5.1=[[0], [1], [7], [5], [1]] +1.7.5.2=[[0], [1], [7], [5], [2]] +1.7.5.3=[[0], [1], [7], [5], [3]] +1.7.5.4=[[0], [1], [7], [5], [4]] +1.7.50=[[0], [1], [7], [50]] +1.7.51=[[0], [1], [7], [51]] +1.7.52=[[0], [1], [7], [52]] +1.7.53=[[0], [1], [7], [53]] +1.7.54=[[0], [1], [7], [54]] +1.7.55=[[0], [1], [7], [55]] +1.7.56=[[0], [1], [7], [56]] +1.7.57=[[0], [1], [7], [57]] +1.7.58=[[0], [1], [7], [58]] +1.7.59=[[0], [1], [7], [59]] +1.7.5b=[[0], [1], [7], [5, 'b']] +1.7.6=[[0], [1], [7], [6]] +1.7.6.0=[[0], [1], [7], [6], [0]] +1.7.6.1=[[0], [1], [7], [6], [1]] +1.7.6.5=[[0], [1], [7], [6], [5]] +1.7.6.6=[[0], [1], [7], [6], [6]] +1.7.60=[[0], [1], [7], [60]] +1.7.61=[[0], [1], [7], [61]] +1.7.62=[[0], [1], [7], [62]] +1.7.63=[[0], [1], [7], [63]] +1.7.64=[[0], [1], [7], [64]] +1.7.65=[[0], [1], [7], [65]] +1.7.66=[[0], [1], [7], [66]] +1.7.67=[[0], [1], [7], [67]] +1.7.68=[[0], [1], [7], [68]] +1.7.69=[[0], [1], [7], [69]] +1.7.7=[[0], [1], [7], [7]] +1.7.7.0=[[0], [1], [7], [7], [0]] +1.7.70=[[0], [1], [7], [70]] +1.7.71=[[0], [1], [7], [71]] +1.7.72=[[0], [1], [7], [72]] +1.7.73=[[0], [1], [7], [73]] +1.7.74=[[0], [1], [7], [74]] +1.7.75=[[0], [1], [7], [75]] +1.7.76=[[0], [1], [7], [76]] +1.7.77=[[0], [1], [7], [77]] +1.7.78=[[0], [1], [7], [78]] +1.7.79=[[0], [1], [7], [79]] +1.7.8=[[0], [1], [7], [8]] +1.7.80=[[0], [1], [7], [80]] +1.7.81=[[0], [1], [7], [81]] +1.7.82=[[0], [1], [7], [82]] +1.7.83=[[0], [1], [7], [83]] +1.7.84=[[0], [1], [7], [84]] +1.7.9=[[0], [1], [7], [9]] +1.7.9.2=[[0], [1], [7], [9], [2]] +1.70=[[0], [1], [70]] +1.70.0=[[0], [1], [70], [0]] +1.7043=[[0], [1], [7043]] +1.7045=[[0], [1], [7045]] +1.7046=[[0], [1], [7046]] +1.71=[[0], [1], [71]] +1.71.0=[[0], [1], [71], [0]] +1.710=[[0], [1], [710]] +1.72=[[0], [1], [72]] +1.72.0=[[0], [1], [72], [0]] +1.72.0_2=[[0], [1], [72], [0], [2]] +1.72.0_3=[[0], [1], [72], [0], [3]] +1.72.2=[[0], [1], [72], [2]] +1.73=[[0], [1], [73]] +1.73.0=[[0], [1], [73], [0]] +1.73.1=[[0], [1], [73], [1]] +1.74=[[0], [1], [74]] +1.74.0=[[0], [1], [74], [0]] +1.75=[[0], [1], [75]] +1.75.0=[[0], [1], [75], [0]] +1.75.0_0=[[0], [1], [75], [0], [0]] +1.75.1=[[0], [1], [75], [1]] +1.76=[[0], [1], [76]] +1.76.0=[[0], [1], [76], [0]] +1.76.1=[[0], [1], [76], [1]] +1.76.2=[[0], [1], [76], [2]] +1.77=[[0], [1], [77]] +1.77.0=[[0], [1], [77], [0]] +1.77.1=[[0], [1], [77], [1]] +1.77.2=[[0], [1], [77], [2]] +1.77.3=[[0], [1], [77], [3]] +1.78=[[0], [1], [78]] +1.78.0=[[0], [1], [78], [0]] +1.78.0_0=[[0], [1], [78], [0], [0]] +1.78.1=[[0], [1], [78], [1]] +1.79=[[0], [1], [79]] +1.79.0=[[0], [1], [79], [0]] +1.79.2=[[0], [1], [79], [2]] +1.79.3=[[0], [1], [79], [3]] +1.7_0=[[0], [1], [7], [0]] +1.7_1=[[0], [1], [7], [1]] +1.7_10=[[0], [1], [7], [10]] +1.7_11=[[0], [1], [7], [11]] +1.7_12=[[0], [1], [7], [12]] +1.7_13=[[0], [1], [7], [13]] +1.7_14=[[0], [1], [7], [14]] +1.7_15=[[0], [1], [7], [15]] +1.7_16=[[0], [1], [7], [16]] +1.7_17=[[0], [1], [7], [17]] +1.7_18=[[0], [1], [7], [18]] +1.7_19=[[0], [1], [7], [19]] +1.7_2=[[0], [1], [7], [2]] +1.7_20=[[0], [1], [7], [20]] +1.7_22=[[0], [1], [7], [22]] +1.7_23=[[0], [1], [7], [23]] +1.7_28=[[0], [1], [7], [28]] +1.7_29=[[0], [1], [7], [29]] +1.7_3=[[0], [1], [7], [3]] +1.7_3.1=[[0], [1], [7], [3], [1]] +1.7_4=[[0], [1], [7], [4]] +1.7_5=[[0], [1], [7], [5]] +1.7_5.2=[[0], [1], [7], [5], [2]] +1.7_5.2.1=[[0], [1], [7], [5], [2], [1]] +1.7_5.2.2=[[0], [1], [7], [5], [2], [2]] +1.7_6=[[0], [1], [7], [6]] +1.7_7=[[0], [1], [7], [7]] +1.7_8=[[0], [1], [7], [8]] +1.7_9=[[0], [1], [7], [9]] +1.8=[[0], [1], [8]] +1.8.0=[[0], [1], [8], [0]] +1.8.0.1=[[0], [1], [8], [0], [1]] +1.8.1=[[0], [1], [8], [1]] +1.8.1.2=[[0], [1], [8], [1], [2]] +1.8.1.2c=[[0], [1], [8], [1], [2, 'c']] +1.8.10=[[0], [1], [8], [10]] +1.8.11=[[0], [1], [8], [11]] +1.8.12=[[0], [1], [8], [12]] +1.8.122=[[0], [1], [8], [122]] +1.8.124=[[0], [1], [8], [124]] +1.8.126=[[0], [1], [8], [126]] +1.8.127=[[0], [1], [8], [127]] +1.8.13=[[0], [1], [8], [13]] +1.8.130=[[0], [1], [8], [130]] +1.8.134=[[0], [1], [8], [134]] +1.8.138=[[0], [1], [8], [138]] +1.8.14=[[0], [1], [8], [14]] +1.8.144=[[0], [1], [8], [144]] +1.8.15=[[0], [1], [8], [15]] +1.8.151=[[0], [1], [8], [151]] +1.8.152=[[0], [1], [8], [152]] +1.8.157=[[0], [1], [8], [157]] +1.8.16=[[0], [1], [8], [16]] +1.8.17=[[0], [1], [8], [17]] +1.8.18=[[0], [1], [8], [18]] +1.8.186=[[0], [1], [8], [186]] +1.8.19=[[0], [1], [8], [19]] +1.8.1_1=[[0], [1], [8], [1], [1]] +1.8.1rc1=[[0], [1], [8], [1, 'rc', 1]] +1.8.2=[[0], [1], [8], [2]] +1.8.2.1=[[0], [1], [8], [2], [1]] +1.8.2.2=[[0], [1], [8], [2], [2]] +1.8.2.3=[[0], [1], [8], [2], [3]] +1.8.2.post2=[[0], [1], [8], [2], [0, inf, 2]] +1.8.20=[[0], [1], [8], [20]] +1.8.21=[[0], [1], [8], [21]] +1.8.22=[[0], [1], [8], [22]] +1.8.23=[[0], [1], [8], [23]] +1.8.28=[[0], [1], [8], [28]] +1.8.3=[[0], [1], [8], [3]] +1.8.32=[[0], [1], [8], [32]] +1.8.36=[[0], [1], [8], [36]] +1.8.37=[[0], [1], [8], [37]] +1.8.38=[[0], [1], [8], [38]] +1.8.39=[[0], [1], [8], [39]] +1.8.4=[[0], [1], [8], [4]] +1.8.4.2=[[0], [1], [8], [4], [2]] +1.8.40=[[0], [1], [8], [40]] +1.8.41=[[0], [1], [8], [41]] +1.8.42=[[0], [1], [8], [42]] +1.8.43=[[0], [1], [8], [43]] +1.8.44=[[0], [1], [8], [44]] +1.8.45=[[0], [1], [8], [45]] +1.8.46=[[0], [1], [8], [46]] +1.8.47=[[0], [1], [8], [47]] +1.8.48=[[0], [1], [8], [48]] +1.8.49=[[0], [1], [8], [49]] +1.8.4_1=[[0], [1], [8], [4], [1]] +1.8.5=[[0], [1], [8], [5]] +1.8.50=[[0], [1], [8], [50]] +1.8.52=[[0], [1], [8], [52]] +1.8.54=[[0], [1], [8], [54]] +1.8.56=[[0], [1], [8], [56]] +1.8.59=[[0], [1], [8], [59]] +1.8.6=[[0], [1], [8], [6]] +1.8.6.0=[[0], [1], [8], [6], [0]] +1.8.6.5=[[0], [1], [8], [6], [5]] +1.8.63=[[0], [1], [8], [63]] +1.8.7=[[0], [1], [8], [7]] +1.8.7.0=[[0], [1], [8], [7], [0]] +1.8.70=[[0], [1], [8], [70]] +1.8.74=[[0], [1], [8], [74]] +1.8.8=[[0], [1], [8], [8]] +1.8.8.0=[[0], [1], [8], [8], [0]] +1.8.9=[[0], [1], [8], [9]] +1.8.9.0=[[0], [1], [8], [9], [0]] +1.8.9.post2=[[0], [1], [8], [9], [0, inf, 2]] +1.80=[[0], [1], [80]] +1.80.0=[[0], [1], [80], [0]] +1.80.1=[[0], [1], [80], [1]] +1.80.4=[[0], [1], [80], [4]] +1.80.5=[[0], [1], [80], [5]] +1.81=[[0], [1], [81]] +1.81.0=[[0], [1], [81], [0]] +1.81.0_1=[[0], [1], [81], [0], [1]] +1.81.1=[[0], [1], [81], [1]] +1.82.0=[[0], [1], [82], [0]] +1.83.0=[[0], [1], [83], [0]] +1.83.0.dev13=[[0], [1], [83], [0], [0, 'DEV', 13]] +1.837=[[0], [1], [837]] +1.84=[[0], [1], [84]] +1.84.0=[[0], [1], [84], [0]] +1.840=[[0], [1], [840]] +1.84_6.1=[[0], [1], [84], [6], [1]] +1.84_6.2=[[0], [1], [84], [6], [2]] +1.85=[[0], [1], [85]] +1.85.0=[[0], [1], [85], [0]] +1.85.1=[[0], [1], [85], [1]] +1.855=[[0], [1], [855]] +1.856=[[0], [1], [856]] +1.857=[[0], [1], [857]] +1.858=[[0], [1], [858]] +1.86=[[0], [1], [86]] +1.86.0=[[0], [1], [86], [0]] +1.87=[[0], [1], [87]] +1.87.0=[[0], [1], [87], [0]] +1.87.1=[[0], [1], [87], [1]] +1.876=[[0], [1], [876]] +1.878=[[0], [1], [878]] +1.879=[[0], [1], [879]] +1.88=[[0], [1], [88]] +1.88.0=[[0], [1], [88], [0]] +1.881=[[0], [1], [881]] +1.89=[[0], [1], [89]] +1.89.0=[[0], [1], [89], [0]] +1.8_0=[[0], [1], [8], [0]] +1.8_1=[[0], [1], [8], [1]] +1.8_10=[[0], [1], [8], [10]] +1.8_11=[[0], [1], [8], [11]] +1.8_12=[[0], [1], [8], [12]] +1.8_13=[[0], [1], [8], [13]] +1.8_17=[[0], [1], [8], [17]] +1.8_2=[[0], [1], [8], [2]] +1.8_24=[[0], [1], [8], [24]] +1.8_26=[[0], [1], [8], [26]] +1.8_27=[[0], [1], [8], [27]] +1.8_28=[[0], [1], [8], [28]] +1.8_29=[[0], [1], [8], [29]] +1.8_3=[[0], [1], [8], [3]] +1.8_31=[[0], [1], [8], [31]] +1.8_32=[[0], [1], [8], [32]] +1.8_33=[[0], [1], [8], [33]] +1.8_34=[[0], [1], [8], [34]] +1.8_35=[[0], [1], [8], [35]] +1.8_36=[[0], [1], [8], [36]] +1.8_37=[[0], [1], [8], [37]] +1.8_38=[[0], [1], [8], [38]] +1.8_39=[[0], [1], [8], [39]] +1.8_4=[[0], [1], [8], [4]] +1.8_40=[[0], [1], [8], [40]] +1.8_41=[[0], [1], [8], [41]] +1.8_42=[[0], [1], [8], [42]] +1.8_5=[[0], [1], [8], [5]] +1.8_6=[[0], [1], [8], [6]] +1.8_7=[[0], [1], [8], [7]] +1.8_8=[[0], [1], [8], [8]] +1.8_9=[[0], [1], [8], [9]] +1.8rc1=[[0], [1], [8, 'rc', 1]] +1.8rc2=[[0], [1], [8, 'rc', 2]] +1.9=[[0], [1], [9]] +1.9.0=[[0], [1], [9], [0]] +1.9.0.0=[[0], [1], [9], [0], [0]] +1.9.0.1=[[0], [1], [9], [0], [1]] +1.9.0.2=[[0], [1], [9], [0], [2]] +1.9.0.21=[[0], [1], [9], [0], [21]] +1.9.0.3=[[0], [1], [9], [0], [3]] +1.9.0.4=[[0], [1], [9], [0], [4]] +1.9.0.post1=[[0], [1], [9], [0], [0, inf, 1]] +1.9.0.post145=[[0], [1], [9], [0], [0, inf, 145]] +1.9.0.post25=[[0], [1], [9], [0], [0, inf, 25]] +1.9.0.post84=[[0], [1], [9], [0], [0, inf, 84]] +1.9.0a3=[[0], [1], [9], [0, 'a', 3]] +1.9.1=[[0], [1], [9], [1]] +1.9.1.0=[[0], [1], [9], [1], [0]] +1.9.1.1=[[0], [1], [9], [1], [1]] +1.9.10=[[0], [1], [9], [10]] +1.9.10.1=[[0], [1], [9], [10], [1]] +1.9.100=[[0], [1], [9], [100]] +1.9.101=[[0], [1], [9], [101]] +1.9.102=[[0], [1], [9], [102]] +1.9.103=[[0], [1], [9], [103]] +1.9.104=[[0], [1], [9], [104]] +1.9.105=[[0], [1], [9], [105]] +1.9.106=[[0], [1], [9], [106]] +1.9.107=[[0], [1], [9], [107]] +1.9.108=[[0], [1], [9], [108]] +1.9.109=[[0], [1], [9], [109]] +1.9.11=[[0], [1], [9], [11]] +1.9.110=[[0], [1], [9], [110]] +1.9.111=[[0], [1], [9], [111]] +1.9.112=[[0], [1], [9], [112]] +1.9.113=[[0], [1], [9], [113]] +1.9.114=[[0], [1], [9], [114]] +1.9.115=[[0], [1], [9], [115]] +1.9.116=[[0], [1], [9], [116]] +1.9.117=[[0], [1], [9], [117]] +1.9.118=[[0], [1], [9], [118]] +1.9.119=[[0], [1], [9], [119]] +1.9.12=[[0], [1], [9], [12]] +1.9.12.31=[[0], [1], [9], [12], [31]] +1.9.120=[[0], [1], [9], [120]] +1.9.121=[[0], [1], [9], [121]] +1.9.122=[[0], [1], [9], [122]] +1.9.123=[[0], [1], [9], [123]] +1.9.124=[[0], [1], [9], [124]] +1.9.125=[[0], [1], [9], [125]] +1.9.126=[[0], [1], [9], [126]] +1.9.127=[[0], [1], [9], [127]] +1.9.128=[[0], [1], [9], [128]] +1.9.129=[[0], [1], [9], [129]] +1.9.13=[[0], [1], [9], [13]] +1.9.130=[[0], [1], [9], [130]] +1.9.131=[[0], [1], [9], [131]] +1.9.132=[[0], [1], [9], [132]] +1.9.133=[[0], [1], [9], [133]] +1.9.134=[[0], [1], [9], [134]] +1.9.135=[[0], [1], [9], [135]] +1.9.136=[[0], [1], [9], [136]] +1.9.137=[[0], [1], [9], [137]] +1.9.138=[[0], [1], [9], [138]] +1.9.139=[[0], [1], [9], [139]] +1.9.14=[[0], [1], [9], [14]] +1.9.140=[[0], [1], [9], [140]] +1.9.141=[[0], [1], [9], [141]] +1.9.142=[[0], [1], [9], [142]] +1.9.143=[[0], [1], [9], [143]] +1.9.144=[[0], [1], [9], [144]] +1.9.145=[[0], [1], [9], [145]] +1.9.146=[[0], [1], [9], [146]] +1.9.147=[[0], [1], [9], [147]] +1.9.148=[[0], [1], [9], [148]] +1.9.149=[[0], [1], [9], [149]] +1.9.15=[[0], [1], [9], [15]] +1.9.150=[[0], [1], [9], [150]] +1.9.151=[[0], [1], [9], [151]] +1.9.152=[[0], [1], [9], [152]] +1.9.153=[[0], [1], [9], [153]] +1.9.154=[[0], [1], [9], [154]] +1.9.155=[[0], [1], [9], [155]] +1.9.156=[[0], [1], [9], [156]] +1.9.157=[[0], [1], [9], [157]] +1.9.158=[[0], [1], [9], [158]] +1.9.159=[[0], [1], [9], [159]] +1.9.16=[[0], [1], [9], [16]] +1.9.160=[[0], [1], [9], [160]] +1.9.161=[[0], [1], [9], [161]] +1.9.162=[[0], [1], [9], [162]] +1.9.163=[[0], [1], [9], [163]] +1.9.164=[[0], [1], [9], [164]] +1.9.165=[[0], [1], [9], [165]] +1.9.166=[[0], [1], [9], [166]] +1.9.167=[[0], [1], [9], [167]] +1.9.168=[[0], [1], [9], [168]] +1.9.169=[[0], [1], [9], [169]] +1.9.17=[[0], [1], [9], [17]] +1.9.170=[[0], [1], [9], [170]] +1.9.171=[[0], [1], [9], [171]] +1.9.172=[[0], [1], [9], [172]] +1.9.173=[[0], [1], [9], [173]] +1.9.174=[[0], [1], [9], [174]] +1.9.175=[[0], [1], [9], [175]] +1.9.176=[[0], [1], [9], [176]] +1.9.177=[[0], [1], [9], [177]] +1.9.178=[[0], [1], [9], [178]] +1.9.179=[[0], [1], [9], [179]] +1.9.18=[[0], [1], [9], [18]] +1.9.180=[[0], [1], [9], [180]] +1.9.181=[[0], [1], [9], [181]] +1.9.182=[[0], [1], [9], [182]] +1.9.183=[[0], [1], [9], [183]] +1.9.184=[[0], [1], [9], [184]] +1.9.185=[[0], [1], [9], [185]] +1.9.186=[[0], [1], [9], [186]] +1.9.187=[[0], [1], [9], [187]] +1.9.188=[[0], [1], [9], [188]] +1.9.189=[[0], [1], [9], [189]] +1.9.19=[[0], [1], [9], [19]] +1.9.190=[[0], [1], [9], [190]] +1.9.191=[[0], [1], [9], [191]] +1.9.192=[[0], [1], [9], [192]] +1.9.193=[[0], [1], [9], [193]] +1.9.194=[[0], [1], [9], [194]] +1.9.195=[[0], [1], [9], [195]] +1.9.196=[[0], [1], [9], [196]] +1.9.197=[[0], [1], [9], [197]] +1.9.198=[[0], [1], [9], [198]] +1.9.199=[[0], [1], [9], [199]] +1.9.2=[[0], [1], [9], [2]] +1.9.2.1=[[0], [1], [9], [2], [1]] +1.9.2.4=[[0], [1], [9], [2], [4]] +1.9.2.6=[[0], [1], [9], [2], [6]] +1.9.2.8=[[0], [1], [9], [2], [8]] +1.9.20=[[0], [1], [9], [20]] +1.9.200=[[0], [1], [9], [200]] +1.9.201=[[0], [1], [9], [201]] +1.9.202=[[0], [1], [9], [202]] +1.9.20220401=[[0], [1], [9], [20220401]] +1.9.203=[[0], [1], [9], [203]] +1.9.204=[[0], [1], [9], [204]] +1.9.205=[[0], [1], [9], [205]] +1.9.206=[[0], [1], [9], [206]] +1.9.207=[[0], [1], [9], [207]] +1.9.208=[[0], [1], [9], [208]] +1.9.209=[[0], [1], [9], [209]] +1.9.21=[[0], [1], [9], [21]] +1.9.210=[[0], [1], [9], [210]] +1.9.211=[[0], [1], [9], [211]] +1.9.212=[[0], [1], [9], [212]] +1.9.213=[[0], [1], [9], [213]] +1.9.214=[[0], [1], [9], [214]] +1.9.215=[[0], [1], [9], [215]] +1.9.216=[[0], [1], [9], [216]] +1.9.217=[[0], [1], [9], [217]] +1.9.218=[[0], [1], [9], [218]] +1.9.219=[[0], [1], [9], [219]] +1.9.22=[[0], [1], [9], [22]] +1.9.220=[[0], [1], [9], [220]] +1.9.221=[[0], [1], [9], [221]] +1.9.222=[[0], [1], [9], [222]] +1.9.223=[[0], [1], [9], [223]] +1.9.224=[[0], [1], [9], [224]] +1.9.225=[[0], [1], [9], [225]] +1.9.226=[[0], [1], [9], [226]] +1.9.227=[[0], [1], [9], [227]] +1.9.228=[[0], [1], [9], [228]] +1.9.229=[[0], [1], [9], [229]] +1.9.23=[[0], [1], [9], [23]] +1.9.230=[[0], [1], [9], [230]] +1.9.231=[[0], [1], [9], [231]] +1.9.232=[[0], [1], [9], [232]] +1.9.233=[[0], [1], [9], [233]] +1.9.234=[[0], [1], [9], [234]] +1.9.235=[[0], [1], [9], [235]] +1.9.236=[[0], [1], [9], [236]] +1.9.237=[[0], [1], [9], [237]] +1.9.238=[[0], [1], [9], [238]] +1.9.239=[[0], [1], [9], [239]] +1.9.24=[[0], [1], [9], [24]] +1.9.240=[[0], [1], [9], [240]] +1.9.241=[[0], [1], [9], [241]] +1.9.242=[[0], [1], [9], [242]] +1.9.243=[[0], [1], [9], [243]] +1.9.244=[[0], [1], [9], [244]] +1.9.245=[[0], [1], [9], [245]] +1.9.246=[[0], [1], [9], [246]] +1.9.247=[[0], [1], [9], [247]] +1.9.248=[[0], [1], [9], [248]] +1.9.249=[[0], [1], [9], [249]] +1.9.25=[[0], [1], [9], [25]] +1.9.250=[[0], [1], [9], [250]] +1.9.251=[[0], [1], [9], [251]] +1.9.252=[[0], [1], [9], [252]] +1.9.253=[[0], [1], [9], [253]] +1.9.254=[[0], [1], [9], [254]] +1.9.255=[[0], [1], [9], [255]] +1.9.256=[[0], [1], [9], [256]] +1.9.257=[[0], [1], [9], [257]] +1.9.258=[[0], [1], [9], [258]] +1.9.259=[[0], [1], [9], [259]] +1.9.26=[[0], [1], [9], [26]] +1.9.261=[[0], [1], [9], [261]] +1.9.262=[[0], [1], [9], [262]] +1.9.263=[[0], [1], [9], [263]] +1.9.264=[[0], [1], [9], [264]] +1.9.265=[[0], [1], [9], [265]] +1.9.268=[[0], [1], [9], [268]] +1.9.269=[[0], [1], [9], [269]] +1.9.27=[[0], [1], [9], [27]] +1.9.270=[[0], [1], [9], [270]] +1.9.271=[[0], [1], [9], [271]] +1.9.272=[[0], [1], [9], [272]] +1.9.273=[[0], [1], [9], [273]] +1.9.274=[[0], [1], [9], [274]] +1.9.275=[[0], [1], [9], [275]] +1.9.276=[[0], [1], [9], [276]] +1.9.277=[[0], [1], [9], [277]] +1.9.278=[[0], [1], [9], [278]] +1.9.279=[[0], [1], [9], [279]] +1.9.28=[[0], [1], [9], [28]] +1.9.280=[[0], [1], [9], [280]] +1.9.281=[[0], [1], [9], [281]] +1.9.282=[[0], [1], [9], [282]] +1.9.283=[[0], [1], [9], [283]] +1.9.284=[[0], [1], [9], [284]] +1.9.285=[[0], [1], [9], [285]] +1.9.286=[[0], [1], [9], [286]] +1.9.287=[[0], [1], [9], [287]] +1.9.288=[[0], [1], [9], [288]] +1.9.289=[[0], [1], [9], [289]] +1.9.29=[[0], [1], [9], [29]] +1.9.290=[[0], [1], [9], [290]] +1.9.291=[[0], [1], [9], [291]] +1.9.292=[[0], [1], [9], [292]] +1.9.293=[[0], [1], [9], [293]] +1.9.294=[[0], [1], [9], [294]] +1.9.296=[[0], [1], [9], [296]] +1.9.297=[[0], [1], [9], [297]] +1.9.298=[[0], [1], [9], [298]] +1.9.299=[[0], [1], [9], [299]] +1.9.3=[[0], [1], [9], [3]] +1.9.3.0=[[0], [1], [9], [3], [0]] +1.9.3.2=[[0], [1], [9], [3], [2]] +1.9.3.4=[[0], [1], [9], [3], [4]] +1.9.3.6=[[0], [1], [9], [3], [6]] +1.9.3.8=[[0], [1], [9], [3], [8]] +1.9.30=[[0], [1], [9], [30]] +1.9.300=[[0], [1], [9], [300]] +1.9.301=[[0], [1], [9], [301]] +1.9.302=[[0], [1], [9], [302]] +1.9.303=[[0], [1], [9], [303]] +1.9.304=[[0], [1], [9], [304]] +1.9.305=[[0], [1], [9], [305]] +1.9.306=[[0], [1], [9], [306]] +1.9.307=[[0], [1], [9], [307]] +1.9.308=[[0], [1], [9], [308]] +1.9.309=[[0], [1], [9], [309]] +1.9.31=[[0], [1], [9], [31]] +1.9.310=[[0], [1], [9], [310]] +1.9.311=[[0], [1], [9], [311]] +1.9.312=[[0], [1], [9], [312]] +1.9.313=[[0], [1], [9], [313]] +1.9.314=[[0], [1], [9], [314]] +1.9.315=[[0], [1], [9], [315]] +1.9.316=[[0], [1], [9], [316]] +1.9.317=[[0], [1], [9], [317]] +1.9.318=[[0], [1], [9], [318]] +1.9.319=[[0], [1], [9], [319]] +1.9.32=[[0], [1], [9], [32]] +1.9.320=[[0], [1], [9], [320]] +1.9.321=[[0], [1], [9], [321]] +1.9.326=[[0], [1], [9], [326]] +1.9.327=[[0], [1], [9], [327]] +1.9.328=[[0], [1], [9], [328]] +1.9.33=[[0], [1], [9], [33]] +1.9.330=[[0], [1], [9], [330]] +1.9.331=[[0], [1], [9], [331]] +1.9.332=[[0], [1], [9], [332]] +1.9.333=[[0], [1], [9], [333]] +1.9.334=[[0], [1], [9], [334]] +1.9.335=[[0], [1], [9], [335]] +1.9.336=[[0], [1], [9], [336]] +1.9.337=[[0], [1], [9], [337]] +1.9.338=[[0], [1], [9], [338]] +1.9.339=[[0], [1], [9], [339]] +1.9.34=[[0], [1], [9], [34]] +1.9.340=[[0], [1], [9], [340]] +1.9.341=[[0], [1], [9], [341]] +1.9.342=[[0], [1], [9], [342]] +1.9.343=[[0], [1], [9], [343]] +1.9.344=[[0], [1], [9], [344]] +1.9.345=[[0], [1], [9], [345]] +1.9.346=[[0], [1], [9], [346]] +1.9.347=[[0], [1], [9], [347]] +1.9.348=[[0], [1], [9], [348]] +1.9.349=[[0], [1], [9], [349]] +1.9.35=[[0], [1], [9], [35]] +1.9.350=[[0], [1], [9], [350]] +1.9.351=[[0], [1], [9], [351]] +1.9.352=[[0], [1], [9], [352]] +1.9.353=[[0], [1], [9], [353]] +1.9.354=[[0], [1], [9], [354]] +1.9.356=[[0], [1], [9], [356]] +1.9.357=[[0], [1], [9], [357]] +1.9.358=[[0], [1], [9], [358]] +1.9.359=[[0], [1], [9], [359]] +1.9.36=[[0], [1], [9], [36]] +1.9.361=[[0], [1], [9], [361]] +1.9.362=[[0], [1], [9], [362]] +1.9.363=[[0], [1], [9], [363]] +1.9.364=[[0], [1], [9], [364]] +1.9.365=[[0], [1], [9], [365]] +1.9.366=[[0], [1], [9], [366]] +1.9.367=[[0], [1], [9], [367]] +1.9.368=[[0], [1], [9], [368]] +1.9.369=[[0], [1], [9], [369]] +1.9.37=[[0], [1], [9], [37]] +1.9.370=[[0], [1], [9], [370]] +1.9.371=[[0], [1], [9], [371]] +1.9.372=[[0], [1], [9], [372]] +1.9.373=[[0], [1], [9], [373]] +1.9.374=[[0], [1], [9], [374]] +1.9.375=[[0], [1], [9], [375]] +1.9.376=[[0], [1], [9], [376]] +1.9.377=[[0], [1], [9], [377]] +1.9.378=[[0], [1], [9], [378]] +1.9.379=[[0], [1], [9], [379]] +1.9.38=[[0], [1], [9], [38]] +1.9.39=[[0], [1], [9], [39]] +1.9.4=[[0], [1], [9], [4]] +1.9.4.0=[[0], [1], [9], [4], [0]] +1.9.4.4=[[0], [1], [9], [4], [4]] +1.9.40=[[0], [1], [9], [40]] +1.9.41=[[0], [1], [9], [41]] +1.9.42=[[0], [1], [9], [42]] +1.9.43=[[0], [1], [9], [43]] +1.9.44=[[0], [1], [9], [44]] +1.9.45=[[0], [1], [9], [45]] +1.9.46=[[0], [1], [9], [46]] +1.9.47=[[0], [1], [9], [47]] +1.9.48=[[0], [1], [9], [48]] +1.9.49=[[0], [1], [9], [49]] +1.9.5=[[0], [1], [9], [5]] +1.9.5.0=[[0], [1], [9], [5], [0]] +1.9.5.1=[[0], [1], [9], [5], [1]] +1.9.5.6=[[0], [1], [9], [5], [6]] +1.9.5.8=[[0], [1], [9], [5], [8]] +1.9.5.post0=[[0], [1], [9], [5], [0, inf, 0]] +1.9.50=[[0], [1], [9], [50]] +1.9.51=[[0], [1], [9], [51]] +1.9.52=[[0], [1], [9], [52]] +1.9.53=[[0], [1], [9], [53]] +1.9.54=[[0], [1], [9], [54]] +1.9.55=[[0], [1], [9], [55]] +1.9.56=[[0], [1], [9], [56]] +1.9.57=[[0], [1], [9], [57]] +1.9.58=[[0], [1], [9], [58]] +1.9.59=[[0], [1], [9], [59]] +1.9.6=[[0], [1], [9], [6]] +1.9.6.0=[[0], [1], [9], [6], [0]] +1.9.6.2=[[0], [1], [9], [6], [2]] +1.9.6.4=[[0], [1], [9], [6], [4]] +1.9.6.8=[[0], [1], [9], [6], [8]] +1.9.60=[[0], [1], [9], [60]] +1.9.61=[[0], [1], [9], [61]] +1.9.62=[[0], [1], [9], [62]] +1.9.63=[[0], [1], [9], [63]] +1.9.64=[[0], [1], [9], [64]] +1.9.65=[[0], [1], [9], [65]] +1.9.66=[[0], [1], [9], [66]] +1.9.67=[[0], [1], [9], [67]] +1.9.68=[[0], [1], [9], [68]] +1.9.69=[[0], [1], [9], [69]] +1.9.7=[[0], [1], [9], [7]] +1.9.7.0=[[0], [1], [9], [7], [0]] +1.9.7.1=[[0], [1], [9], [7], [1]] +1.9.7.2=[[0], [1], [9], [7], [2]] +1.9.7.4=[[0], [1], [9], [7], [4]] +1.9.7.6=[[0], [1], [9], [7], [6]] +1.9.70=[[0], [1], [9], [70]] +1.9.71=[[0], [1], [9], [71]] +1.9.72=[[0], [1], [9], [72]] +1.9.73=[[0], [1], [9], [73]] +1.9.74=[[0], [1], [9], [74]] +1.9.75=[[0], [1], [9], [75]] +1.9.76=[[0], [1], [9], [76]] +1.9.77=[[0], [1], [9], [77]] +1.9.78=[[0], [1], [9], [78]] +1.9.79=[[0], [1], [9], [79]] +1.9.8=[[0], [1], [9], [8]] +1.9.8.11=[[0], [1], [9], [8], [11]] +1.9.8.15=[[0], [1], [9], [8], [15]] +1.9.8.20=[[0], [1], [9], [8], [20]] +1.9.8.8=[[0], [1], [9], [8], [8]] +1.9.80=[[0], [1], [9], [80]] +1.9.81=[[0], [1], [9], [81]] +1.9.82=[[0], [1], [9], [82]] +1.9.83=[[0], [1], [9], [83]] +1.9.84=[[0], [1], [9], [84]] +1.9.85=[[0], [1], [9], [85]] +1.9.86=[[0], [1], [9], [86]] +1.9.87=[[0], [1], [9], [87]] +1.9.88=[[0], [1], [9], [88]] +1.9.89=[[0], [1], [9], [89]] +1.9.9=[[0], [1], [9], [9]] +1.9.9.0=[[0], [1], [9], [9], [0]] +1.9.9.1=[[0], [1], [9], [9], [1]] +1.9.9.11=[[0], [1], [9], [9], [11]] +1.9.9.18=[[0], [1], [9], [9], [18]] +1.9.9.38=[[0], [1], [9], [9], [38]] +1.9.9.44=[[0], [1], [9], [9], [44]] +1.9.90=[[0], [1], [9], [90]] +1.9.91=[[0], [1], [9], [91]] +1.9.92=[[0], [1], [9], [92]] +1.9.93=[[0], [1], [9], [93]] +1.9.94=[[0], [1], [9], [94]] +1.9.95=[[0], [1], [9], [95]] +1.9.96=[[0], [1], [9], [96]] +1.9.97=[[0], [1], [9], [97]] +1.9.98=[[0], [1], [9], [98]] +1.9.99=[[0], [1], [9], [99]] +1.90=[[0], [1], [90]] +1.90.0=[[0], [1], [90], [0]] +1.900.1=[[0], [1], [900], [1]] +1.91=[[0], [1], [91]] +1.91.0=[[0], [1], [91], [0]] +1.92=[[0], [1], [92]] +1.92.0=[[0], [1], [92], [0]] +1.93=[[0], [1], [93]] +1.93.0=[[0], [1], [93], [0]] +1.93.4=[[0], [1], [93], [4]] +1.93.5=[[0], [1], [93], [5]] +1.94.0=[[0], [1], [94], [0]] +1.95.1=[[0], [1], [95], [1]] +1.95_4.11=[[0], [1], [95], [4], [11]] +1.95_4.12=[[0], [1], [95], [4], [12]] +1.95_4.13=[[0], [1], [95], [4], [13]] +1.95_4.8=[[0], [1], [95], [4], [8]] +1.96.0=[[0], [1], [96], [0]] +1.96.1=[[0], [1], [96], [1]] +1.96.2=[[0], [1], [96], [2]] +1.96.3=[[0], [1], [96], [3]] +1.967015=[[0], [1], [967015]] +1.97.0=[[0], [1], [97], [0]] +1.98=[[0], [1], [98]] +1.98.0=[[0], [1], [98], [0]] +1.98_1.1=[[0], [1], [98], [1], [1]] +1.98_1.10=[[0], [1], [98], [1], [10]] +1.98_1.12=[[0], [1], [98], [1], [12]] +1.98_1.2=[[0], [1], [98], [1], [2]] +1.98_1.3=[[0], [1], [98], [1], [3]] +1.98_1.4=[[0], [1], [98], [1], [4]] +1.98_1.5=[[0], [1], [98], [1], [5]] +1.98_1.6=[[0], [1], [98], [1], [6]] +1.98_1.7=[[0], [1], [98], [1], [7]] +1.98_1.8=[[0], [1], [98], [1], [8]] +1.98_1.9=[[0], [1], [98], [1], [9]] +1.99.0=[[0], [1], [99], [0]] +1.99.8=[[0], [1], [99], [8]] +1.991=[[0], [1], [991]] +1.992=[[0], [1], [992]] +1.993=[[0], [1], [993]] +1.999816=[[0], [1], [999816]] +1.999829=[[0], [1], [999829]] +1.999830=[[0], [1], [999830]] +1.999831=[[0], [1], [999831]] +1.999832=[[0], [1], [999832]] +1.999833=[[0], [1], [999833]] +1.999835=[[0], [1], [999835]] +1.999836=[[0], [1], [999836]] +1.999837=[[0], [1], [999837]] +1.9_0=[[0], [1], [9], [0]] +1.9_1=[[0], [1], [9], [1]] +1.9_10.3=[[0], [1], [9], [10], [3]] +1.9_12=[[0], [1], [9], [12]] +1.9_13=[[0], [1], [9], [13]] +1.9_15=[[0], [1], [9], [15]] +1.9_16=[[0], [1], [9], [16]] +1.9_19=[[0], [1], [9], [19]] +1.9_2=[[0], [1], [9], [2]] +1.9_2.1=[[0], [1], [9], [2], [1]] +1.9_3=[[0], [1], [9], [3]] +1.9_61=[[0], [1], [9], [61]] +1.9_7=[[0], [1], [9], [7]] +1.9_73=[[0], [1], [9], [73]] +1.9_74=[[0], [1], [9], [74]] +1.9rc1=[[0], [1], [9, 'rc', 1]] +10=[[0], [10]] +10.0=[[0], [10], [0]] +10.0.0=[[0], [10], [0], [0]] +10.0.0.2020.03.26=[[0], [10], [0], [0], [2020], [3], [26]] +10.0.0.post2=[[0], [10], [0], [0], [0, inf, 2]] +10.0.1=[[0], [10], [0], [1]] +10.0.10=[[0], [10], [0], [10]] +10.0.11=[[0], [10], [0], [11]] +10.0.130=[[0], [10], [0], [130]] +10.0.15=[[0], [10], [0], [15]] +10.0.17134.0=[[0], [10], [0], [17134], [0]] +10.0.17763.0=[[0], [10], [0], [17763], [0]] +10.0.2=[[0], [10], [0], [2]] +10.0.20348.0=[[0], [10], [0], [20348], [0]] +10.0.22621.0=[[0], [10], [0], [22621], [0]] +10.0.26.0=[[0], [10], [0], [26], [0]] +10.0.26.1=[[0], [10], [0], [26], [1]] +10.0.3=[[0], [10], [0], [3]] +10.0.4=[[0], [10], [0], [4]] +10.0.5=[[0], [10], [0], [5]] +10.0.6=[[0], [10], [0], [6]] +10.0.7=[[0], [10], [0], [7]] +10.0.8=[[0], [10], [0], [8]] +10.0.9=[[0], [10], [0], [9]] +10.0_1=[[0], [10], [0], [1]] +10.1=[[0], [10], [1]] +10.1.0=[[0], [10], [1], [0]] +10.1.1=[[0], [10], [1], [1]] +10.1.1.70.5=[[0], [10], [1], [1], [70], [5]] +10.1.1.70.6=[[0], [10], [1], [1], [70], [6]] +10.1.2=[[0], [10], [1], [2]] +10.1.243=[[0], [10], [1], [243]] +10.1.3=[[0], [10], [1], [3]] +10.1.4=[[0], [10], [1], [4]] +10.1.5=[[0], [10], [1], [5]] +10.10.0=[[0], [10], [10], [0]] +10.11.0=[[0], [10], [11], [0]] +10.12.0=[[0], [10], [12], [0]] +10.13.0=[[0], [10], [13], [0]] +10.14.0=[[0], [10], [14], [0]] +10.14.1=[[0], [10], [14], [1]] +10.15.0=[[0], [10], [15], [0]] +10.15.1=[[0], [10], [15], [1]] +10.15.2=[[0], [10], [15], [2]] +10.15.3=[[0], [10], [15], [3]] +10.16.0=[[0], [10], [16], [0]] +10.16.1=[[0], [10], [16], [1]] +10.16.2=[[0], [10], [16], [2]] +10.16.3=[[0], [10], [16], [3]] +10.2=[[0], [10], [2]] +10.2.0=[[0], [10], [2], [0]] +10.2.0.post1=[[0], [10], [2], [0], [0, inf, 1]] +10.2.1=[[0], [10], [2], [1]] +10.2.10=[[0], [10], [2], [10]] +10.2.11=[[0], [10], [2], [11]] +10.2.13=[[0], [10], [2], [13]] +10.2.15=[[0], [10], [2], [15]] +10.2.16=[[0], [10], [2], [16]] +10.2.2=[[0], [10], [2], [2]] +10.2.3=[[0], [10], [2], [3]] +10.2.4=[[0], [10], [2], [4]] +10.2.5=[[0], [10], [2], [5]] +10.2.6=[[0], [10], [2], [6]] +10.2.7=[[0], [10], [2], [7]] +10.2.89=[[0], [10], [2], [89]] +10.2.9=[[0], [10], [2], [9]] +10.20220121=[[0], [10], [20220121]] +10.20220127=[[0], [10], [20220127]] +10.20220128=[[0], [10], [20220128]] +10.20220222=[[0], [10], [20220222]] +10.20220223=[[0], [10], [20220223]] +10.20220322=[[0], [10], [20220322]] +10.20220504=[[0], [10], [20220504]] +10.20220505=[[0], [10], [20220505]] +10.20220525=[[0], [10], [20220525]] +10.20220526=[[0], [10], [20220526]] +10.20220624=[[0], [10], [20220624]] +10.20220724=[[0], [10], [20220724]] +10.20220725=[[0], [10], [20220725]] +10.20220822=[[0], [10], [20220822]] +10.20220927=[[0], [10], [20220927]] +10.20230126=[[0], [10], [20230126]] +10.20230227=[[0], [10], [20230227]] +10.20230407=[[0], [10], [20230407]] +10.21=[[0], [10], [21]] +10.22.0=[[0], [10], [22], [0]] +10.23=[[0], [10], [23]] +10.3=[[0], [10], [3]] +10.3.0=[[0], [10], [3], [0]] +10.3.0.71.0=[[0], [10], [3], [0], [71], [0]] +10.3.1=[[0], [10], [3], [1]] +10.3.1.50=[[0], [10], [3], [1], [50]] +10.3.2=[[0], [10], [3], [2]] +10.3.3=[[0], [10], [3], [3]] +10.3.4=[[0], [10], [3], [4]] +10.30=[[0], [10], [30]] +10.31=[[0], [10], [31]] +10.34=[[0], [10], [34]] +10.35=[[0], [10], [35]] +10.36=[[0], [10], [36]] +10.37=[[0], [10], [37]] +10.4=[[0], [10], [4]] +10.4.0=[[0], [10], [4], [0]] +10.4.1=[[0], [10], [4], [1]] +10.4.11=[[0], [10], [4], [11]] +10.4.12=[[0], [10], [4], [12]] +10.4.13=[[0], [10], [4], [13]] +10.4.14=[[0], [10], [4], [14]] +10.4.15=[[0], [10], [4], [15]] +10.4.16=[[0], [10], [4], [16]] +10.4.17=[[0], [10], [4], [17]] +10.4.18=[[0], [10], [4], [18]] +10.4.19=[[0], [10], [4], [19]] +10.4.2=[[0], [10], [4], [2]] +10.4.20=[[0], [10], [4], [20]] +10.4.21=[[0], [10], [4], [21]] +10.4.22=[[0], [10], [4], [22]] +10.4.23=[[0], [10], [4], [23]] +10.4.3=[[0], [10], [4], [3]] +10.4.4=[[0], [10], [4], [4]] +10.4.5=[[0], [10], [4], [5]] +10.4.6=[[0], [10], [4], [6]] +10.4.7=[[0], [10], [4], [7]] +10.4.8=[[0], [10], [4], [8]] +10.4.9=[[0], [10], [4], [9]] +10.40=[[0], [10], [40]] +10.5=[[0], [10], [5]] +10.5.0=[[0], [10], [5], [0]] +10.5.1=[[0], [10], [5], [1]] +10.5.10=[[0], [10], [5], [10]] +10.5.2=[[0], [10], [5], [2]] +10.5.3=[[0], [10], [5], [3]] +10.5.4=[[0], [10], [5], [4]] +10.5.5=[[0], [10], [5], [5]] +10.5.6=[[0], [10], [5], [6]] +10.5.7=[[0], [10], [5], [7]] +10.5.9=[[0], [10], [5], [9]] +10.6=[[0], [10], [6]] +10.6.0=[[0], [10], [6], [0]] +10.6.0.patch2=[[0], [10], [6], [0], [0, 'patch', 2]] +10.6.0.pre4=[[0], [10], [6], [0], [0, 'pre', 4]] +10.6.1=[[0], [10], [6], [1]] +10.6.2=[[0], [10], [6], [2]] +10.6.3=[[0], [10], [6], [3]] +10.7.0=[[0], [10], [7], [0]] +10.7.1=[[0], [10], [7], [1]] +10.7.2=[[0], [10], [7], [2]] +10.7.3=[[0], [10], [7], [3]] +10.7.4=[[0], [10], [7], [4]] +10.7.5=[[0], [10], [7], [5]] +10.7.6=[[0], [10], [7], [6]] +10.73.28=[[0], [10], [73], [28]] +10.73.29=[[0], [10], [73], [29]] +10.73.30=[[0], [10], [73], [30]] +10.73.31=[[0], [10], [73], [31]] +10.73.32=[[0], [10], [73], [32]] +10.73.33=[[0], [10], [73], [33]] +10.73.34=[[0], [10], [73], [34]] +10.73.35=[[0], [10], [73], [35]] +10.73.36=[[0], [10], [73], [36]] +10.73.37=[[0], [10], [73], [37]] +10.73.38=[[0], [10], [73], [38]] +10.73.39=[[0], [10], [73], [39]] +10.73.40=[[0], [10], [73], [40]] +10.73.41=[[0], [10], [73], [41]] +10.73.42=[[0], [10], [73], [42]] +10.73.43=[[0], [10], [73], [43]] +10.8.0=[[0], [10], [8], [0]] +10.8.1=[[0], [10], [8], [1]] +10.8.2=[[0], [10], [8], [2]] +10.8.3=[[0], [10], [8], [3]] +10.8.4=[[0], [10], [8], [4]] +10.9.0=[[0], [10], [9], [0]] +100=[[0], [100]] +100.0=[[0], [100], [0]] +100.0.2=[[0], [100], [0], [2]] +100.0.4896.20.0=[[0], [100], [0], [4896], [20], [0]] +100.0.4896.60.0=[[0], [100], [0], [4896], [60], [0]] +100.1=[[0], [100], [1]] +100.1.1=[[0], [100], [1], [1]] +100.2=[[0], [100], [2]] +100.2.0=[[0], [100], [2], [0]] +100.2.1=[[0], [100], [2], [1]] +100.3=[[0], [100], [3]] +100.3.0=[[0], [100], [3], [0]] +100.3.1=[[0], [100], [3], [1]] +100.4=[[0], [100], [4]] +100.4.0=[[0], [100], [4], [0]] +100.4.1=[[0], [100], [4], [1]] +100.5.0=[[0], [100], [5], [0]] +100.5.1=[[0], [100], [5], [1]] +100.5.2=[[0], [100], [5], [2]] +100.5.3=[[0], [100], [5], [3]] +100.5.4=[[0], [100], [5], [4]] +100.6.0=[[0], [100], [6], [0]] +100.6.1=[[0], [100], [6], [1]] +100.7.0=[[0], [100], [7], [0]] +100.7.2=[[0], [100], [7], [2]] +1000.10.8=[[0], [1000], [10], [8]] +101=[[0], [101]] +101.0=[[0], [101], [0]] +101.0.4951.15.0=[[0], [101], [0], [4951], [15], [0]] +101.0.4951.41.0=[[0], [101], [0], [4951], [41], [0]] +102=[[0], [102]] +102.0=[[0], [102], [0]] +102.0.1esr=[[0], [102], [0], [1, 'esr']] +102.0.5005.27.0=[[0], [102], [0], [5005], [27], [0]] +102.0.5005.61.0=[[0], [102], [0], [5005], [61], [0]] +102.10.0esr=[[0], [102], [10], [0, 'esr']] +102.11.0esr=[[0], [102], [11], [0, 'esr']] +102.2.0esr=[[0], [102], [2], [0, 'esr']] +102.3.0esr=[[0], [102], [3], [0, 'esr']] +102.4.0esr=[[0], [102], [4], [0, 'esr']] +102.5.0esr=[[0], [102], [5], [0, 'esr']] +102.6.0esr=[[0], [102], [6], [0, 'esr']] +102.7.0esr=[[0], [102], [7], [0, 'esr']] +102.8.0esr=[[0], [102], [8], [0, 'esr']] +102.9.0esr=[[0], [102], [9], [0, 'esr']] +103=[[0], [103]] +103.0=[[0], [103], [0]] +103.0.0=[[0], [103], [0], [0]] +103.0.5060.24.0=[[0], [103], [0], [5060], [24], [0]] +103.0.5060.53.0=[[0], [103], [0], [5060], [53], [0]] +103.1=[[0], [103], [1]] +104=[[0], [104]] +104.0=[[0], [104], [0]] +104.0.0=[[0], [104], [0], [0]] +104.0.1=[[0], [104], [0], [1]] +104.0.2=[[0], [104], [0], [2]] +104.0.5112.20.0=[[0], [104], [0], [5112], [20], [0]] +104.0.5112.29.0=[[0], [104], [0], [5112], [29], [0]] +104.1=[[0], [104], [1]] +104.1.1=[[0], [104], [1], [1]] +104.2=[[0], [104], [2]] +104.2019.3.20.13.47.8=[[0], [104], [2019], [3], [20], [13], [47], [8]] +104.2020.8.19.11.8.18=[[0], [104], [2020], [8], [19], [11], [8], [18]] +104.2020.8.20.0.32.20=[[0], [104], [2020], [8], [20], [0], [32], [20]] +104.2021.3.22.15.7.51=[[0], [104], [2021], [3], [22], [15], [7], [51]] +104.2022.2.8.21.41.41=[[0], [104], [2022], [2], [8], [21], [41], [41]] +104.2022.3.2.14.39.8=[[0], [104], [2022], [3], [2], [14], [39], [8]] +104.2022.7=[[0], [104], [2022], [7]] +104.3=[[0], [104], [3]] +105=[[0], [105]] +105.0=[[0], [105], [0]] +105.0.0=[[0], [105], [0], [0]] +105.0.5195.19.0=[[0], [105], [0], [5195], [19], [0]] +105.0.5195.52.0=[[0], [105], [0], [5195], [52], [0]] +106=[[0], [106]] +106.0=[[0], [106], [0]] +106.0.5249.21.0=[[0], [106], [0], [5249], [21], [0]] +106.0.5249.61.0=[[0], [106], [0], [5249], [61], [0]] +106.1=[[0], [106], [1]] +107=[[0], [107]] +107.0=[[0], [107], [0]] +107.0.0=[[0], [107], [0], [0]] +107.0.5304.18.0=[[0], [107], [0], [5304], [18], [0]] +107.0.5304.18.1=[[0], [107], [0], [5304], [18], [1]] +107.0.5304.62.0=[[0], [107], [0], [5304], [62], [0]] +108=[[0], [108]] +108.0=[[0], [108], [0]] +108.0.0=[[0], [108], [0], [0]] +108.0.1=[[0], [108], [0], [1]] +108.0.2=[[0], [108], [0], [2]] +108.0.5359.22.0=[[0], [108], [0], [5359], [22], [0]] +108.0.5359.71.0=[[0], [108], [0], [5359], [71], [0]] +108.1=[[0], [108], [1]] +108.2=[[0], [108], [2]] +109.0=[[0], [109], [0]] +109.0.0=[[0], [109], [0], [0]] +109.0.5414.25.0=[[0], [109], [0], [5414], [25], [0]] +109.0.5414.74.0=[[0], [109], [0], [5414], [74], [0]] +10r0p1=[[0], [10, 'r', 0, 'p', 1]] +11=[[0], [11]] +11.0=[[0], [11], [0]] +11.0.0=[[0], [11], [0], [0]] +11.0.0.21=[[0], [11], [0], [0], [21]] +11.0.0.dev0=[[0], [11], [0], [0], [0, 'DEV', 0]] +11.0.0.rc1=[[0], [11], [0], [0], [0, 'rc', 1]] +11.0.1=[[0], [11], [0], [1]] +11.0.1.dev0=[[0], [11], [0], [1], [0, 'DEV', 0]] +11.0.10=[[0], [11], [0], [10]] +11.0.10.0=[[0], [11], [0], [10], [0]] +11.0.10.1=[[0], [11], [0], [10], [1]] +11.0.11=[[0], [11], [0], [11]] +11.0.15=[[0], [11], [0], [15]] +11.0.2=[[0], [11], [0], [2]] +11.0.3=[[0], [11], [0], [3]] +11.0.4=[[0], [11], [0], [4]] +11.0.5=[[0], [11], [0], [5]] +11.0.6=[[0], [11], [0], [6]] +11.0.7=[[0], [11], [0], [7]] +11.0.8=[[0], [11], [0], [8]] +11.0.9=[[0], [11], [0], [9]] +11.0.9.1=[[0], [11], [0], [9], [1]] +11.01=[[0], [11], [1]] +11.1=[[0], [11], [1]] +11.1.0=[[0], [11], [1], [0]] +11.1.1=[[0], [11], [1], [1]] +11.1.2=[[0], [11], [1], [2]] +11.1.3=[[0], [11], [1], [3]] +11.1.5=[[0], [11], [1], [5]] +11.1.5.0=[[0], [11], [1], [5], [0]] +11.1.5.1=[[0], [11], [1], [5], [1]] +11.1.5.2=[[0], [11], [1], [5], [2]] +11.10.0=[[0], [11], [10], [0]] +11.10.1=[[0], [11], [10], [1]] +11.10.2=[[0], [11], [10], [2]] +11.11.0=[[0], [11], [11], [0]] +11.12.0=[[0], [11], [12], [0]] +11.13.0=[[0], [11], [13], [0]] +11.13.1=[[0], [11], [13], [1]] +11.13.2=[[0], [11], [13], [2]] +11.13.3=[[0], [11], [13], [3]] +11.14.0=[[0], [11], [14], [0]] +11.15.0=[[0], [11], [15], [0]] +11.16.0=[[0], [11], [16], [0]] +11.17.0=[[0], [11], [17], [0]] +11.18.0=[[0], [11], [18], [0]] +11.19.0=[[0], [11], [19], [0]] +11.2=[[0], [11], [2]] +11.2.0=[[0], [11], [2], [0]] +11.2.1=[[0], [11], [2], [1]] +11.2.2=[[0], [11], [2], [2]] +11.2.3=[[0], [11], [2], [3]] +11.2.4=[[0], [11], [2], [4]] +11.2.6=[[0], [11], [2], [6]] +11.20.0=[[0], [11], [20], [0]] +11.22.0=[[0], [11], [22], [0]] +11.23.0=[[0], [11], [23], [0]] +11.24.0=[[0], [11], [24], [0]] +11.25.0=[[0], [11], [25], [0]] +11.25.1=[[0], [11], [25], [1]] +11.26.0=[[0], [11], [26], [0]] +11.27.0=[[0], [11], [27], [0]] +11.28.0=[[0], [11], [28], [0]] +11.29.0=[[0], [11], [29], [0]] +11.3=[[0], [11], [3]] +11.3.0=[[0], [11], [3], [0]] +11.3.1=[[0], [11], [3], [1]] +11.3.1.1=[[0], [11], [3], [1], [1]] +11.3.1.2=[[0], [11], [3], [1], [2]] +11.3.2=[[0], [11], [3], [2]] +11.30.0=[[0], [11], [30], [0]] +11.31.0=[[0], [11], [31], [0]] +11.32.0=[[0], [11], [32], [0]] +11.33.0=[[0], [11], [33], [0]] +11.34.0=[[0], [11], [34], [0]] +11.35.0=[[0], [11], [35], [0]] +11.36.0=[[0], [11], [36], [0]] +11.4=[[0], [11], [4]] +11.4.0=[[0], [11], [4], [0]] +11.4.1=[[0], [11], [4], [1]] +11.4.2=[[0], [11], [4], [2]] +11.4.2.57=[[0], [11], [4], [2], [57]] +11.4.3=[[0], [11], [4], [3]] +11.4.4=[[0], [11], [4], [4]] +11.450.129=[[0], [11], [450], [129]] +11.450.51=[[0], [11], [450], [51]] +11.460.79=[[0], [11], [460], [79]] +11.470.66=[[0], [11], [470], [66]] +11.495.46=[[0], [11], [495], [46]] +11.5=[[0], [11], [5]] +11.5.0=[[0], [11], [5], [0]] +11.5.1=[[0], [11], [5], [1]] +11.5.2=[[0], [11], [5], [2]] +11.50=[[0], [11], [50]] +11.510.69=[[0], [11], [510], [69]] +11.515.48=[[0], [11], [515], [48]] +11.515.75=[[0], [11], [515], [75]] +11.525.84=[[0], [11], [525], [84]] +11.6=[[0], [11], [6]] +11.6.0=[[0], [11], [6], [0]] +11.6.1=[[0], [11], [6], [1]] +11.6.2=[[0], [11], [6], [2]] +11.7=[[0], [11], [7]] +11.7.0=[[0], [11], [7], [0]] +11.7.1=[[0], [11], [7], [1]] +11.7.2=[[0], [11], [7], [2]] +11.7.3=[[0], [11], [7], [3]] +11.8=[[0], [11], [8]] +11.8.0=[[0], [11], [8], [0]] +11.8.1=[[0], [11], [8], [1]] +11.8.2=[[0], [11], [8], [2]] +11.9.0=[[0], [11], [9], [0]] +11.9.1=[[0], [11], [9], [1]] +11.96=[[0], [11], [96]] +11.99=[[0], [11], [99]] +110=[[0], [110]] +110.0=[[0], [110], [0]] +110.0.0=[[0], [110], [0], [0]] +110.0.1=[[0], [110], [0], [1]] +110.0.5481.30.0=[[0], [110], [0], [5481], [30], [0]] +110.0.5481.77.0=[[0], [110], [0], [5481], [77], [0]] +1100.0.11=[[0], [1100], [0], [11]] +111=[[0], [111]] +111.0=[[0], [111], [0]] +111.0.5563.19.0=[[0], [111], [0], [5563], [19], [0]] +111.0.5563.41.0=[[0], [111], [0], [5563], [41], [0]] +111.0.5563.64.0=[[0], [111], [0], [5563], [64], [0]] +111.1.0=[[0], [111], [1], [0]] +111.2.0=[[0], [111], [2], [0]] +112=[[0], [112]] +112.0=[[0], [112], [0]] +112.0.5615.28.0=[[0], [112], [0], [5615], [28], [0]] +112.0.5615.49.0=[[0], [112], [0], [5615], [49], [0]] +113=[[0], [113]] +113.0=[[0], [113], [0]] +113.0.2=[[0], [113], [0], [2]] +113.0.3=[[0], [113], [0], [3]] +113.0.4=[[0], [113], [0], [4]] +113.0.5672.24.0=[[0], [113], [0], [5672], [24], [0]] +113.0.5672.63.0=[[0], [113], [0], [5672], [63], [0]] +114=[[0], [114]] +114.0=[[0], [114], [0]] +114.0.5735.16.0=[[0], [114], [0], [5735], [16], [0]] +114.0.5735.90.0=[[0], [114], [0], [5735], [90], [0]] +115=[[0], [115]] +116=[[0], [116]] +116.1.0=[[0], [116], [1], [0]] +116.1.1=[[0], [116], [1], [1]] +116.1.2=[[0], [116], [1], [2]] +116.2.1=[[0], [116], [2], [1]] +116.6.1=[[0], [116], [6], [1]] +117=[[0], [117]] +118=[[0], [118]] +119=[[0], [119]] +12=[[0], [12]] +12.0=[[0], [12], [0]] +12.0.0=[[0], [12], [0], [0]] +12.0.0.28=[[0], [12], [0], [0], [28]] +12.0.0.30=[[0], [12], [0], [0], [30]] +12.0.0.76=[[0], [12], [0], [0], [76]] +12.0.1=[[0], [12], [0], [1]] +12.0.1.189=[[0], [12], [0], [1], [189]] +12.0.10=[[0], [12], [0], [10]] +12.0.107=[[0], [12], [0], [107]] +12.0.11=[[0], [12], [0], [11]] +12.0.12=[[0], [12], [0], [12]] +12.0.13=[[0], [12], [0], [13]] +12.0.14=[[0], [12], [0], [14]] +12.0.16.0=[[0], [12], [0], [16], [0]] +12.0.2=[[0], [12], [0], [2]] +12.0.25=[[0], [12], [0], [25]] +12.0.26=[[0], [12], [0], [26]] +12.0.3=[[0], [12], [0], [3]] +12.0.30=[[0], [12], [0], [30]] +12.0.31=[[0], [12], [0], [31]] +12.0.32=[[0], [12], [0], [32]] +12.0.33=[[0], [12], [0], [33]] +12.0.34=[[0], [12], [0], [34]] +12.0.36=[[0], [12], [0], [36]] +12.0.37=[[0], [12], [0], [37]] +12.0.4=[[0], [12], [0], [4]] +12.0.41=[[0], [12], [0], [41]] +12.0.42=[[0], [12], [0], [42]] +12.0.5=[[0], [12], [0], [5]] +12.0.6=[[0], [12], [0], [6]] +12.0.7=[[0], [12], [0], [7]] +12.0.76=[[0], [12], [0], [76]] +12.0.8=[[0], [12], [0], [8]] +12.0.90=[[0], [12], [0], [90]] +12.1=[[0], [12], [1]] +12.1.0=[[0], [12], [1], [0]] +12.1.1=[[0], [12], [1], [1]] +12.1.2=[[0], [12], [1], [2]] +12.1.4=[[0], [12], [1], [4]] +12.10.0=[[0], [12], [10], [0]] +12.10.1=[[0], [12], [10], [1]] +12.10.2=[[0], [12], [10], [2]] +12.11.0=[[0], [12], [11], [0]] +12.11.1=[[0], [12], [11], [1]] +12.12.0=[[0], [12], [12], [0]] +12.12.1=[[0], [12], [12], [1]] +12.13.0=[[0], [12], [13], [0]] +12.13.1=[[0], [12], [13], [1]] +12.13.2=[[0], [12], [13], [2]] +12.14.0=[[0], [12], [14], [0]] +12.14.1=[[0], [12], [14], [1]] +12.14.2=[[0], [12], [14], [2]] +12.15.0=[[0], [12], [15], [0]] +12.16.0=[[0], [12], [16], [0]] +12.16.1=[[0], [12], [16], [1]] +12.16.2=[[0], [12], [16], [2]] +12.17.2=[[0], [12], [17], [2]] +12.18.0=[[0], [12], [18], [0]] +12.18.1=[[0], [12], [18], [1]] +12.18.3=[[0], [12], [18], [3]] +12.19.0=[[0], [12], [19], [0]] +12.2=[[0], [12], [2]] +12.2.0=[[0], [12], [2], [0]] +12.2.1=[[0], [12], [2], [1]] +12.2.2=[[0], [12], [2], [2]] +12.2.3=[[0], [12], [2], [3]] +12.20.0=[[0], [12], [20], [0]] +12.20.1=[[0], [12], [20], [1]] +12.21.0=[[0], [12], [21], [0]] +12.22.0=[[0], [12], [22], [0]] +12.22.1=[[0], [12], [22], [1]] +12.22.2=[[0], [12], [22], [2]] +12.22.6=[[0], [12], [22], [6]] +12.23.0=[[0], [12], [23], [0]] +12.24.0=[[0], [12], [24], [0]] +12.25.0=[[0], [12], [25], [0]] +12.26.0=[[0], [12], [26], [0]] +12.26.1=[[0], [12], [26], [1]] +12.27.1=[[0], [12], [27], [1]] +12.3=[[0], [12], [3]] +12.3.0=[[0], [12], [3], [0]] +12.3.1=[[0], [12], [3], [1]] +12.3.2=[[0], [12], [3], [2]] +12.3.3=[[0], [12], [3], [3]] +12.30=[[0], [12], [30]] +12.30.0=[[0], [12], [30], [0]] +12.32.0=[[0], [12], [32], [0]] +12.4.0=[[0], [12], [4], [0]] +12.4.1=[[0], [12], [4], [1]] +12.4.2=[[0], [12], [4], [2]] +12.4.3=[[0], [12], [4], [3]] +12.4.4=[[0], [12], [4], [4]] +12.42=[[0], [12], [42]] +12.5=[[0], [12], [5]] +12.5.0=[[0], [12], [5], [0]] +12.5.1=[[0], [12], [5], [1]] +12.5.3=[[0], [12], [5], [3]] +12.5.4=[[0], [12], [5], [4]] +12.5.5=[[0], [12], [5], [5]] +12.5.6=[[0], [12], [5], [6]] +12.50=[[0], [12], [50]] +12.6.0=[[0], [12], [6], [0]] +12.6.3=[[0], [12], [6], [3]] +12.7=[[0], [12], [7]] +12.7.0=[[0], [12], [7], [0]] +12.7.1=[[0], [12], [7], [1]] +12.7.2=[[0], [12], [7], [2]] +12.8=[[0], [12], [8]] +12.8.0=[[0], [12], [8], [0]] +12.8.1=[[0], [12], [8], [1]] +12.9.0=[[0], [12], [9], [0]] +12.9.1=[[0], [12], [9], [1]] +120=[[0], [120]] +121=[[0], [121]] +122=[[0], [122]] +122.c2f5d13=[[0], [122], [0, 'c', 2, 'f', 5, 'd', 13]] +123=[[0], [123]] +124=[[0], [124]] +125=[[0], [125]] +126=[[0], [126]] +128=[[0], [128]] +129=[[0], [129]] +13=[[0], [13]] +13.0=[[0], [13], [0]] +13.0.0=[[0], [13], [0], [0]] +13.0.0.post2=[[0], [13], [0], [0], [0, inf, 2]] +13.0.1=[[0], [13], [0], [1]] +13.0.10=[[0], [13], [0], [10]] +13.0.11=[[0], [13], [0], [11]] +13.0.12=[[0], [13], [0], [12]] +13.0.13=[[0], [13], [0], [13]] +13.0.14=[[0], [13], [0], [14]] +13.0.15=[[0], [13], [0], [15]] +13.0.16=[[0], [13], [0], [16]] +13.0.17=[[0], [13], [0], [17]] +13.0.18=[[0], [13], [0], [18]] +13.0.19=[[0], [13], [0], [19]] +13.0.2=[[0], [13], [0], [2]] +13.0.20=[[0], [13], [0], [20]] +13.0.21=[[0], [13], [0], [21]] +13.0.3=[[0], [13], [0], [3]] +13.0.4=[[0], [13], [0], [4]] +13.0.5=[[0], [13], [0], [5]] +13.0.6=[[0], [13], [0], [6]] +13.0.7=[[0], [13], [0], [7]] +13.0.8=[[0], [13], [0], [8]] +13.0.9=[[0], [13], [0], [9]] +13.02=[[0], [13], [2]] +13.09.2016=[[0], [13], [9], [2016]] +13.1=[[0], [13], [1]] +13.1.0=[[0], [13], [1], [0]] +13.1.1=[[0], [13], [1], [1]] +13.1.2=[[0], [13], [1], [2]] +13.10=[[0], [13], [10]] +13.10.0=[[0], [13], [10], [0]] +13.10.1=[[0], [13], [10], [1]] +13.11=[[0], [13], [11]] +13.11.0=[[0], [13], [11], [0]] +13.11.1=[[0], [13], [11], [1]] +13.12.0=[[0], [13], [12], [0]] +13.13=[[0], [13], [13]] +13.13.0=[[0], [13], [13], [0]] +13.14.0=[[0], [13], [14], [0]] +13.15=[[0], [13], [15]] +13.15.0=[[0], [13], [15], [0]] +13.15.1=[[0], [13], [15], [1]] +13.16.0=[[0], [13], [16], [0]] +13.17.0=[[0], [13], [17], [0]] +13.18.0=[[0], [13], [18], [0]] +13.18.2=[[0], [13], [18], [2]] +13.19.0=[[0], [13], [19], [0]] +13.2=[[0], [13], [2]] +13.2.0=[[0], [13], [2], [0]] +13.2.1=[[0], [13], [2], [1]] +13.2.2=[[0], [13], [2], [2]] +13.2.3=[[0], [13], [2], [3]] +13.2.4=[[0], [13], [2], [4]] +13.20.0=[[0], [13], [20], [0]] +13.20.1=[[0], [13], [20], [1]] +13.21.0=[[0], [13], [21], [0]] +13.23.0=[[0], [13], [23], [0]] +13.24.0=[[0], [13], [24], [0]] +13.24.1=[[0], [13], [24], [1]] +13.24.3=[[0], [13], [24], [3]] +13.24.4=[[0], [13], [24], [4]] +13.25.0=[[0], [13], [25], [0]] +13.25.1=[[0], [13], [25], [1]] +13.26.0=[[0], [13], [26], [0]] +13.27.0=[[0], [13], [27], [0]] +13.28.0=[[0], [13], [28], [0]] +13.28.1=[[0], [13], [28], [1]] +13.28.2=[[0], [13], [28], [2]] +13.29.1=[[0], [13], [29], [1]] +13.3=[[0], [13], [3]] +13.3.0=[[0], [13], [3], [0]] +13.3.1=[[0], [13], [3], [1]] +13.3.2=[[0], [13], [3], [2]] +13.3.3=[[0], [13], [3], [3]] +13.3.4=[[0], [13], [3], [4]] +13.3.5=[[0], [13], [3], [5]] +13.30.0=[[0], [13], [30], [0]] +13.30.1=[[0], [13], [30], [1]] +13.30.2=[[0], [13], [30], [2]] +13.31.0=[[0], [13], [31], [0]] +13.32.0=[[0], [13], [32], [0]] +13.33.0=[[0], [13], [33], [0]] +13.34.0=[[0], [13], [34], [0]] +13.35.0=[[0], [13], [35], [0]] +13.36.0=[[0], [13], [36], [0]] +13.37.1=[[0], [13], [37], [1]] +13.37.2=[[0], [13], [37], [2]] +13.38.0=[[0], [13], [38], [0]] +13.39.0=[[0], [13], [39], [0]] +13.39.1=[[0], [13], [39], [1]] +13.4=[[0], [13], [4]] +13.4.0=[[0], [13], [4], [0]] +13.4.1=[[0], [13], [4], [1]] +13.4.2=[[0], [13], [4], [2]] +13.4.3=[[0], [13], [4], [3]] +13.4.4=[[0], [13], [4], [4]] +13.4.5=[[0], [13], [4], [5]] +13.4.6=[[0], [13], [4], [6]] +13.4.7=[[0], [13], [4], [7]] +13.41.0=[[0], [13], [41], [0]] +13.42.0=[[0], [13], [42], [0]] +13.42.1=[[0], [13], [42], [1]] +13.42.2=[[0], [13], [42], [2]] +13.43.0=[[0], [13], [43], [0]] +13.43.1=[[0], [13], [43], [1]] +13.43.2=[[0], [13], [43], [2]] +13.5=[[0], [13], [5]] +13.5.0=[[0], [13], [5], [0]] +13.5.1=[[0], [13], [5], [1]] +13.5.2=[[0], [13], [5], [2]] +13.5.3=[[0], [13], [5], [3]] +13.6=[[0], [13], [6]] +13.6.0=[[0], [13], [6], [0]] +13.6.1=[[0], [13], [6], [1]] +13.6.2=[[0], [13], [6], [2]] +13.6.3=[[0], [13], [6], [3]] +13.6.4=[[0], [13], [6], [4]] +13.7=[[0], [13], [7]] +13.7.0=[[0], [13], [7], [0]] +13.8=[[0], [13], [8]] +13.8.0=[[0], [13], [8], [0]] +13.9=[[0], [13], [9]] +13.9.0=[[0], [13], [9], [0]] +130=[[0], [130]] +131=[[0], [131]] +132=[[0], [132]] +133=[[0], [133]] +134=[[0], [134]] +135=[[0], [135]] +136=[[0], [136]] +137=[[0], [137]] +138=[[0], [138]] +139=[[0], [139]] +14=[[0], [14]] +14.0=[[0], [14], [0]] +14.0.0=[[0], [14], [0], [0]] +14.0.1=[[0], [14], [0], [1]] +14.0.11=[[0], [14], [0], [11]] +14.0.12=[[0], [14], [0], [12]] +14.0.13=[[0], [14], [0], [13]] +14.0.14=[[0], [14], [0], [14]] +14.0.16=[[0], [14], [0], [16]] +14.0.17=[[0], [14], [0], [17]] +14.0.18=[[0], [14], [0], [18]] +14.0.19=[[0], [14], [0], [19]] +14.0.2=[[0], [14], [0], [2]] +14.0.21=[[0], [14], [0], [21]] +14.0.22=[[0], [14], [0], [22]] +14.0.24=[[0], [14], [0], [24]] +14.0.25=[[0], [14], [0], [25]] +14.0.26=[[0], [14], [0], [26]] +14.0.27=[[0], [14], [0], [27]] +14.0.29=[[0], [14], [0], [29]] +14.0.3=[[0], [14], [0], [3]] +14.0.30=[[0], [14], [0], [30]] +14.0.31=[[0], [14], [0], [31]] +14.0.32=[[0], [14], [0], [32]] +14.0.33=[[0], [14], [0], [33]] +14.0.34=[[0], [14], [0], [34]] +14.0.4=[[0], [14], [0], [4]] +14.0.5=[[0], [14], [0], [5]] +14.0.6=[[0], [14], [0], [6]] +14.0.7=[[0], [14], [0], [7]] +14.0.8=[[0], [14], [0], [8]] +14.0.9=[[0], [14], [0], [9]] +14.1=[[0], [14], [1]] +14.1.0=[[0], [14], [1], [0]] +14.1.1=[[0], [14], [1], [1]] +14.1.2=[[0], [14], [1], [2]] +14.10.0=[[0], [14], [10], [0]] +14.10.1=[[0], [14], [10], [1]] +14.11.0=[[0], [14], [11], [0]] +14.11.1=[[0], [14], [11], [1]] +14.11.2=[[0], [14], [11], [2]] +14.11.25547=[[0], [14], [11], [25547]] +14.12.0=[[0], [14], [12], [0]] +14.13.0=[[0], [14], [13], [0]] +14.13.1=[[0], [14], [13], [1]] +14.13.2=[[0], [14], [13], [2]] +14.13.3=[[0], [14], [13], [3]] +14.14.0=[[0], [14], [14], [0]] +14.14.26423=[[0], [14], [14], [26423]] +14.15.0=[[0], [14], [15], [0]] +14.15.1=[[0], [14], [15], [1]] +14.15.4=[[0], [14], [15], [4]] +14.16.0=[[0], [14], [16], [0]] +14.16.27012=[[0], [14], [16], [27012]] +14.16.27023=[[0], [14], [16], [27023]] +14.16.27033=[[0], [14], [16], [27033]] +14.17.0=[[0], [14], [17], [0]] +14.17.1=[[0], [14], [17], [1]] +14.17.4=[[0], [14], [17], [4]] +14.18.0=[[0], [14], [18], [0]] +14.18.3=[[0], [14], [18], [3]] +14.19.0=[[0], [14], [19], [0]] +14.19.1=[[0], [14], [19], [1]] +14.19.2=[[0], [14], [19], [2]] +14.19.3=[[0], [14], [19], [3]] +14.2=[[0], [14], [2]] +14.2.0=[[0], [14], [2], [0]] +14.2.1=[[0], [14], [2], [1]] +14.2.2=[[0], [14], [2], [2]] +14.2.3=[[0], [14], [2], [3]] +14.2.4=[[0], [14], [2], [4]] +14.20.0=[[0], [14], [20], [0]] +14.20.1=[[0], [14], [20], [1]] +14.21.0=[[0], [14], [21], [0]] +14.22.0=[[0], [14], [22], [0]] +14.22.1=[[0], [14], [22], [1]] +14.23.0=[[0], [14], [23], [0]] +14.24.0=[[0], [14], [24], [0]] +14.25.1=[[0], [14], [25], [1]] +14.25.2=[[0], [14], [25], [2]] +14.26.0=[[0], [14], [26], [0]] +14.27.0=[[0], [14], [27], [0]] +14.28.0=[[0], [14], [28], [0]] +14.28.29325=[[0], [14], [28], [29325]] +14.29.0=[[0], [14], [29], [0]] +14.29.1=[[0], [14], [29], [1]] +14.29.15=[[0], [14], [29], [15]] +14.29.30037=[[0], [14], [29], [30037]] +14.29.30133=[[0], [14], [29], [30133]] +14.29.30139=[[0], [14], [29], [30139]] +14.3=[[0], [14], [3]] +14.3.0=[[0], [14], [3], [0]] +14.3.1=[[0], [14], [3], [1]] +14.3.2=[[0], [14], [3], [2]] +14.3.3=[[0], [14], [3], [3]] +14.3.4=[[0], [14], [3], [4]] +14.3.5=[[0], [14], [3], [5]] +14.3.6=[[0], [14], [3], [6]] +14.3.7=[[0], [14], [3], [7]] +14.31.14=[[0], [14], [31], [14]] +14.31.3=[[0], [14], [31], [3]] +14.32.10=[[0], [14], [32], [10]] +14.32.31332=[[0], [14], [32], [31332]] +14.32.6=[[0], [14], [32], [6]] +14.32.8=[[0], [14], [32], [8]] +14.32.9=[[0], [14], [32], [9]] +14.34.31931=[[0], [14], [34], [31931]] +14.34.31933=[[0], [14], [34], [31933]] +14.4=[[0], [14], [4]] +14.4.0=[[0], [14], [4], [0]] +14.4.2=[[0], [14], [4], [2]] +14.5=[[0], [14], [5]] +14.5.0=[[0], [14], [5], [0]] +14.5.1=[[0], [14], [5], [1]] +14.6.0=[[0], [14], [6], [0]] +14.6.1=[[0], [14], [6], [1]] +14.6.11=[[0], [14], [6], [11]] +14.6.3=[[0], [14], [6], [3]] +14.6.4=[[0], [14], [6], [4]] +14.6.5=[[0], [14], [6], [5]] +14.7.0=[[0], [14], [7], [0]] +14.7.9=[[0], [14], [7], [9]] +14.8.0=[[0], [14], [8], [0]] +14.8.1=[[0], [14], [8], [1]] +14.9.0=[[0], [14], [9], [0]] +140=[[0], [140]] +141=[[0], [141]] +142=[[0], [142]] +143=[[0], [143]] +144=[[0], [144]] +145=[[0], [145]] +146=[[0], [146]] +147=[[0], [147]] +148=[[0], [148]] +149=[[0], [149]] +15=[[0], [15]] +15.0=[[0], [15], [0]] +15.0.0=[[0], [15], [0], [0]] +15.0.1=[[0], [15], [0], [1]] +15.0.2=[[0], [15], [0], [2]] +15.0.3=[[0], [15], [0], [3]] +15.0.4=[[0], [15], [0], [4]] +15.0.5=[[0], [15], [0], [5]] +15.0.6=[[0], [15], [0], [6]] +15.0.7=[[0], [15], [0], [7]] +15.1=[[0], [15], [1]] +15.1.0=[[0], [15], [1], [0]] +15.1.1=[[0], [15], [1], [1]] +15.1.2=[[0], [15], [1], [2]] +15.1.3=[[0], [15], [1], [3]] +15.1.4=[[0], [15], [1], [4]] +15.10.0=[[0], [15], [10], [0]] +15.11.0=[[0], [15], [11], [0]] +15.12.0=[[0], [15], [12], [0]] +15.13.0=[[0], [15], [13], [0]] +15.14.0=[[0], [15], [14], [0]] +15.2=[[0], [15], [2]] +15.2.0=[[0], [15], [2], [0]] +15.2.1=[[0], [15], [2], [1]] +15.3=[[0], [15], [3]] +15.3.0=[[0], [15], [3], [0]] +15.3.1=[[0], [15], [3], [1]] +15.3.2=[[0], [15], [3], [2]] +15.3.3=[[0], [15], [3], [3]] +15.3.4=[[0], [15], [3], [4]] +15.4.0=[[0], [15], [4], [0]] +15.5.0=[[0], [15], [5], [0]] +15.6.0=[[0], [15], [6], [0]] +15.8.0=[[0], [15], [8], [0]] +15.8.2=[[0], [15], [8], [2]] +15.e7622f6=[[0], [15], [0, 'e', 7622, 'f', 6]] +150=[[0], [150]] +151=[[0], [151]] +152=[[0], [152]] +153=[[0], [153]] +154=[[0], [154]] +16=[[0], [16]] +16.0=[[0], [16], [0]] +16.0.0=[[0], [16], [0], [0]] +16.0.1=[[0], [16], [0], [1]] +16.0.2=[[0], [16], [0], [2]] +16.0.3=[[0], [16], [0], [3]] +16.0.4=[[0], [16], [0], [4]] +16.0.5=[[0], [16], [0], [5]] +16.0.6=[[0], [16], [0], [6]] +16.02=[[0], [16], [2]] +16.07.26=[[0], [16], [7], [26]] +16.1=[[0], [16], [1]] +16.1.0=[[0], [16], [1], [0]] +16.1.1=[[0], [16], [1], [1]] +16.1.2=[[0], [16], [1], [2]] +16.1.3=[[0], [16], [1], [3]] +16.1.4=[[0], [16], [1], [4]] +16.1.6=[[0], [16], [1], [6]] +16.10.0=[[0], [16], [10], [0]] +16.11.1=[[0], [16], [11], [1]] +16.12.0=[[0], [16], [12], [0]] +16.12.2=[[0], [16], [12], [2]] +16.13.0=[[0], [16], [13], [0]] +16.13.2=[[0], [16], [13], [2]] +16.14.2=[[0], [16], [14], [2]] +16.15.0=[[0], [16], [15], [0]] +16.15.1=[[0], [16], [15], [1]] +16.16.0=[[0], [16], [16], [0]] +16.17.0=[[0], [16], [17], [0]] +16.17.1=[[0], [16], [17], [1]] +16.18.0=[[0], [16], [18], [0]] +16.18.1=[[0], [16], [18], [1]] +16.19.0=[[0], [16], [19], [0]] +16.2.0=[[0], [16], [2], [0]] +16.3.0=[[0], [16], [3], [0]] +16.3.1=[[0], [16], [3], [1]] +16.4.0=[[0], [16], [4], [0]] +16.4.1=[[0], [16], [4], [1]] +16.5.0=[[0], [16], [5], [0]] +16.5.1=[[0], [16], [5], [1]] +16.6.0=[[0], [16], [6], [0]] +16.6.1=[[0], [16], [6], [1]] +16.6.2=[[0], [16], [6], [2]] +16.7=[[0], [16], [7]] +16.7.0=[[0], [16], [7], [0]] +16.7.1=[[0], [16], [7], [1]] +16.7.2=[[0], [16], [7], [2]] +16.7.3=[[0], [16], [7], [3]] +16.7.5=[[0], [16], [7], [5]] +16.8=[[0], [16], [8]] +16.8.1=[[0], [16], [8], [1]] +16.9.0=[[0], [16], [9], [0]] +166=[[0], [166]] +17=[[0], [17]] +17.0=[[0], [17], [0]] +17.0.0=[[0], [17], [0], [0]] +17.0.3=[[0], [17], [0], [3]] +17.0.5.8=[[0], [17], [0], [5], [8]] +17.0.7=[[0], [17], [0], [7]] +17.02=[[0], [17], [2]] +17.1=[[0], [17], [1]] +17.1.0=[[0], [17], [1], [0]] +17.1.1=[[0], [17], [1], [1]] +17.1.2=[[0], [17], [1], [2]] +17.1.4=[[0], [17], [1], [4]] +17.10.0=[[0], [17], [10], [0]] +17.10.1=[[0], [17], [10], [1]] +17.12.0=[[0], [17], [12], [0]] +17.12.1=[[0], [17], [12], [1]] +17.17.0=[[0], [17], [17], [0]] +17.2=[[0], [17], [2]] +17.2.0=[[0], [17], [2], [0]] +17.2.1=[[0], [17], [2], [1]] +17.3=[[0], [17], [3]] +17.3.0=[[0], [17], [3], [0]] +17.3.1=[[0], [17], [3], [1]] +17.3.9=[[0], [17], [3], [9]] +17.4=[[0], [17], [4]] +17.4.0=[[0], [17], [4], [0]] +17.5=[[0], [17], [5]] +17.5.0=[[0], [17], [5], [0]] +17.5.1=[[0], [17], [5], [1]] +17.6.0=[[0], [17], [6], [0]] +17.6.2=[[0], [17], [6], [2]] +17.7.0=[[0], [17], [7], [0]] +17.7.1=[[0], [17], [7], [1]] +17.7.2=[[0], [17], [7], [2]] +17.8.0=[[0], [17], [8], [0]] +17.9.0=[[0], [17], [9], [0]] +17.9.3=[[0], [17], [9], [3]] +170=[[0], [170]] +177=[[0], [177]] +178=[[0], [178]] +179=[[0], [179]] +18.0=[[0], [18], [0]] +18.0.0=[[0], [18], [0], [0]] +18.0.1=[[0], [18], [0], [1]] +18.0.2=[[0], [18], [0], [2]] +18.0.3=[[0], [18], [0], [3]] +18.0.5=[[0], [18], [0], [5]] +18.08=[[0], [18], [8]] +18.1=[[0], [18], [1]] +18.1.0=[[0], [18], [1], [0]] +18.1.1=[[0], [18], [1], [1]] +18.1.10=[[0], [18], [1], [10]] +18.1.11=[[0], [18], [1], [11]] +18.1.13=[[0], [18], [1], [13]] +18.1.2=[[0], [18], [1], [2]] +18.1.7=[[0], [18], [1], [7]] +18.1.8=[[0], [18], [1], [8]] +18.10.0=[[0], [18], [10], [0]] +18.10.1=[[0], [18], [10], [1]] +18.11.0=[[0], [18], [11], [0]] +18.11.12=[[0], [18], [11], [12]] +18.11.2=[[0], [18], [11], [2]] +18.12.0=[[0], [18], [12], [0]] +18.12.1=[[0], [18], [12], [1]] +18.12.8=[[0], [18], [12], [8]] +18.13.0=[[0], [18], [13], [0]] +18.14.0=[[0], [18], [14], [0]] +18.14.1=[[0], [18], [14], [1]] +18.14.2=[[0], [18], [14], [2]] +18.15.0=[[0], [18], [15], [0]] +18.169=[[0], [18], [169]] +18.2.0=[[0], [18], [2], [0]] +18.20.0=[[0], [18], [20], [0]] +18.20.1=[[0], [18], [20], [1]] +18.3=[[0], [18], [3]] +18.3.0=[[0], [18], [3], [0]] +18.3.1=[[0], [18], [3], [1]] +18.3.4=[[0], [18], [3], [4]] +18.4.0=[[0], [18], [4], [0]] +18.4.1=[[0], [18], [4], [1]] +18.4a4=[[0], [18], [4, 'a', 4]] +18.5.0=[[0], [18], [5], [0]] +18.5.1=[[0], [18], [5], [1]] +18.5.13=[[0], [18], [5], [13]] +18.5.2=[[0], [18], [5], [2]] +18.5.26=[[0], [18], [5], [26]] +18.5.30=[[0], [18], [5], [30]] +18.5b0=[[0], [18], [5, 'b', 0]] +18.5b1=[[0], [18], [5, 'b', 1]] +18.6.0=[[0], [18], [6], [0]] +18.6.1=[[0], [18], [6], [1]] +18.6a6=[[0], [18], [6, 'a', 6]] +18.6b2=[[0], [18], [6, 'b', 2]] +18.6b4=[[0], [18], [6, 'b', 4]] +18.7.0=[[0], [18], [7], [0]] +18.7.1=[[0], [18], [7], [1]] +18.8.0=[[0], [18], [8], [0]] +18.8.1=[[0], [18], [8], [1]] +18.8.2=[[0], [18], [8], [2]] +18.9.0=[[0], [18], [9], [0]] +18.9.1=[[0], [18], [9], [1]] +18.9.2=[[0], [18], [9], [2]] +18.9b0=[[0], [18], [9, 'b', 0]] +180=[[0], [180]] +181=[[0], [181]] +182=[[0], [182]] +183=[[0], [183]] +184=[[0], [184]] +185=[[0], [185]] +186=[[0], [186]] +187=[[0], [187]] +188=[[0], [188]] +189=[[0], [189]] +19=[[0], [19]] +19.0=[[0], [19], [0]] +19.0.0=[[0], [19], [0], [0]] +19.0.1=[[0], [19], [0], [1]] +19.0.2=[[0], [19], [0], [2]] +19.0.3=[[0], [19], [0], [3]] +19.00=[[0], [19], [0]] +19.01.0=[[0], [19], [1], [0]] +19.03.11=[[0], [19], [3], [11]] +19.03.12=[[0], [19], [3], [12]] +19.03.13=[[0], [19], [3], [13]] +19.03.14=[[0], [19], [3], [14]] +19.03.5=[[0], [19], [3], [5]] +19.04.0=[[0], [19], [4], [0]] +19.04.1=[[0], [19], [4], [1]] +19.07.0=[[0], [19], [7], [0]] +19.07.1=[[0], [19], [7], [1]] +19.08.3=[[0], [19], [8], [3]] +19.1=[[0], [19], [1]] +19.1.0=[[0], [19], [1], [0]] +19.1.1=[[0], [19], [1], [1]] +19.1.2=[[0], [19], [1], [2]] +19.10=[[0], [19], [10]] +19.10.0=[[0], [19], [10], [0]] +19.10.1=[[0], [19], [10], [1]] +19.10b0=[[0], [19], [10, 'b', 0]] +19.11=[[0], [19], [11]] +19.11.0=[[0], [19], [11], [0]] +19.11.1=[[0], [19], [11], [1]] +19.11.2=[[0], [19], [11], [2]] +19.12.0=[[0], [19], [12], [0]] +19.12.2=[[0], [19], [12], [2]] +19.15.0=[[0], [19], [15], [0]] +19.15.1=[[0], [19], [15], [1]] +19.15.26726=[[0], [19], [15], [26726]] +19.16.27032.1=[[0], [19], [16], [27032], [1]] +19.16.27033=[[0], [19], [16], [27033]] +19.17=[[0], [19], [17]] +19.18=[[0], [19], [18]] +19.19=[[0], [19], [19]] +19.2=[[0], [19], [2]] +19.2.0=[[0], [19], [2], [0]] +19.2.1=[[0], [19], [2], [1]] +19.2.2=[[0], [19], [2], [2]] +19.2.3=[[0], [19], [2], [3]] +19.2.5=[[0], [19], [2], [5]] +19.2.6=[[0], [19], [2], [6]] +19.2.7=[[0], [19], [2], [7]] +19.20=[[0], [19], [20]] +19.20.0=[[0], [19], [20], [0]] +19.21=[[0], [19], [21]] +19.21.0=[[0], [19], [21], [0]] +19.21.1=[[0], [19], [21], [1]] +19.22=[[0], [19], [22]] +19.22.0=[[0], [19], [22], [0]] +19.23=[[0], [19], [23]] +19.23.0=[[0], [19], [23], [0]] +19.23.1=[[0], [19], [23], [1]] +19.24=[[0], [19], [24]] +19.24.0=[[0], [19], [24], [0]] +19.24.1=[[0], [19], [24], [1]] +19.24.2=[[0], [19], [24], [2]] +19.28.29325=[[0], [19], [28], [29325]] +19.29.30037=[[0], [19], [29], [30037]] +19.29.30139=[[0], [19], [29], [30139]] +19.3=[[0], [19], [3]] +19.3.0=[[0], [19], [3], [0]] +19.3.1=[[0], [19], [3], [1]] +19.3.2=[[0], [19], [3], [2]] +19.3.3=[[0], [19], [3], [3]] +19.3.4=[[0], [19], [3], [4]] +19.3.6.5=[[0], [19], [3], [6], [5]] +19.33.31629=[[0], [19], [33], [31629]] +19.34.31933=[[0], [19], [34], [31933]] +19.35.32217=[[0], [19], [35], [32217]] +19.38.14237=[[0], [19], [38], [14237]] +19.39.14278=[[0], [19], [39], [14278]] +19.3b0=[[0], [19], [3, 'b', 0]] +19.4=[[0], [19], [4]] +19.4.0=[[0], [19], [4], [0]] +19.4.1=[[0], [19], [4], [1]] +19.43.14583=[[0], [19], [43], [14583]] +19.49.15055=[[0], [19], [49], [15055]] +19.5.0=[[0], [19], [5], [0]] +19.5.1=[[0], [19], [5], [1]] +19.5.2=[[0], [19], [5], [2]] +19.50.15079=[[0], [19], [50], [15079]] +19.51.15145=[[0], [19], [51], [15145]] +19.52.15209=[[0], [19], [52], [15209]] +19.6.0=[[0], [19], [6], [0]] +19.6.1=[[0], [19], [6], [1]] +19.6.2=[[0], [19], [6], [2]] +19.6.3=[[0], [19], [6], [3]] +19.7=[[0], [19], [7]] +19.7.0=[[0], [19], [7], [0]] +19.7.1=[[0], [19], [7], [1]] +19.7.15=[[0], [19], [7], [15]] +19.7.2=[[0], [19], [7], [2]] +19.8.0=[[0], [19], [8], [0]] +19.8.0.0.0=[[0], [19], [8], [0], [0], [0]] +19.8.1=[[0], [19], [8], [1]] +19.8.18=[[0], [19], [8], [18]] +19.9=[[0], [19], [9]] +19.9.0=[[0], [19], [9], [0]] +19.9.1=[[0], [19], [9], [1]] +19.9.2=[[0], [19], [9], [2]] +19.9.3=[[0], [19], [9], [3]] +190=[[0], [190]] +1903=[[0], [1903]] +192=[[0], [192]] +193=[[0], [193]] +194=[[0], [194]] +195=[[0], [195]] +196=[[0], [196]] +197=[[0], [197]] +198=[[0], [198]] +199=[[0], [199]] +1_0=[[0], [1], [0]] +2=[[0], [2]] +2.0=[[0], [2], [0]] +2.0.0=[[0], [2], [0], [0]] +2.0.0.0=[[0], [2], [0], [0], [0]] +2.0.0.1=[[0], [2], [0], [0], [1]] +2.0.0.2=[[0], [2], [0], [0], [2]] +2.0.0.3=[[0], [2], [0], [0], [3]] +2.0.0.beta.5=[[0], [2], [0], [0], [0, 'beta'], [5]] +2.0.0.dev0=[[0], [2], [0], [0], [0, 'DEV', 0]] +2.0.0.dev5=[[0], [2], [0], [0], [0, 'DEV', 5]] +2.0.0.post0=[[0], [2], [0], [0], [0, inf, 0]] +2.0.0.post1=[[0], [2], [0], [0], [0, inf, 1]] +2.0.0.post2=[[0], [2], [0], [0], [0, inf, 2]] +2.0.0.post6=[[0], [2], [0], [0], [0, inf, 6]] +2.0.0_dev.1=[[0], [2], [0], [0], [0, 'DEV'], [1]] +2.0.0_dev.2=[[0], [2], [0], [0], [0, 'DEV'], [2]] +2.0.0a0=[[0], [2], [0], [0, 'a', 0]] +2.0.0a1=[[0], [2], [0], [0, 'a', 1]] +2.0.0a3=[[0], [2], [0], [0, 'a', 3]] +2.0.0a4=[[0], [2], [0], [0, 'a', 4]] +2.0.0a5=[[0], [2], [0], [0, 'a', 5]] +2.0.0b0=[[0], [2], [0], [0, 'b', 0]] +2.0.0b1=[[0], [2], [0], [0, 'b', 1]] +2.0.0b10=[[0], [2], [0], [0, 'b', 10]] +2.0.0b11=[[0], [2], [0], [0, 'b', 11]] +2.0.0b12=[[0], [2], [0], [0, 'b', 12]] +2.0.0b13=[[0], [2], [0], [0, 'b', 13]] +2.0.0b14=[[0], [2], [0], [0, 'b', 14]] +2.0.0b15=[[0], [2], [0], [0, 'b', 15]] +2.0.0b17=[[0], [2], [0], [0, 'b', 17]] +2.0.0b2=[[0], [2], [0], [0, 'b', 2]] +2.0.0b3=[[0], [2], [0], [0, 'b', 3]] +2.0.0b4=[[0], [2], [0], [0, 'b', 4]] +2.0.0b5=[[0], [2], [0], [0, 'b', 5]] +2.0.0b6=[[0], [2], [0], [0, 'b', 6]] +2.0.0b7=[[0], [2], [0], [0, 'b', 7]] +2.0.0b8=[[0], [2], [0], [0, 'b', 8]] +2.0.0b9=[[0], [2], [0], [0, 'b', 9]] +2.0.0beta=[[0], [2], [0], [0, 'beta']] +2.0.0beta2=[[0], [2], [0], [0, 'beta', 2]] +2.0.0edge=[[0], [2], [0], [0, 'edge']] +2.0.0rc.1=[[0], [2], [0], [0, 'rc'], [1]] +2.0.0rc0=[[0], [2], [0], [0, 'rc', 0]] +2.0.0rc1=[[0], [2], [0], [0, 'rc', 1]] +2.0.0rc1.post9=[[0], [2], [0], [0, 'rc', 1], [0, inf, 9]] +2.0.0rc10=[[0], [2], [0], [0, 'rc', 10]] +2.0.0rc11=[[0], [2], [0], [0, 'rc', 11]] +2.0.0rc12=[[0], [2], [0], [0, 'rc', 12]] +2.0.0rc13=[[0], [2], [0], [0, 'rc', 13]] +2.0.0rc14=[[0], [2], [0], [0, 'rc', 14]] +2.0.0rc15=[[0], [2], [0], [0, 'rc', 15]] +2.0.0rc16=[[0], [2], [0], [0, 'rc', 16]] +2.0.0rc17=[[0], [2], [0], [0, 'rc', 17]] +2.0.0rc18=[[0], [2], [0], [0, 'rc', 18]] +2.0.0rc19=[[0], [2], [0], [0, 'rc', 19]] +2.0.0rc2=[[0], [2], [0], [0, 'rc', 2]] +2.0.0rc20=[[0], [2], [0], [0, 'rc', 20]] +2.0.0rc21=[[0], [2], [0], [0, 'rc', 21]] +2.0.0rc22=[[0], [2], [0], [0, 'rc', 22]] +2.0.0rc23=[[0], [2], [0], [0, 'rc', 23]] +2.0.0rc24=[[0], [2], [0], [0, 'rc', 24]] +2.0.0rc25=[[0], [2], [0], [0, 'rc', 25]] +2.0.0rc26=[[0], [2], [0], [0, 'rc', 26]] +2.0.0rc3=[[0], [2], [0], [0, 'rc', 3]] +2.0.0rc4=[[0], [2], [0], [0, 'rc', 4]] +2.0.0rc5=[[0], [2], [0], [0, 'rc', 5]] +2.0.0rc6=[[0], [2], [0], [0, 'rc', 6]] +2.0.0rc7=[[0], [2], [0], [0, 'rc', 7]] +2.0.0rc8=[[0], [2], [0], [0, 'rc', 8]] +2.0.0rc9=[[0], [2], [0], [0, 'rc', 9]] +2.0.1=[[0], [2], [0], [1]] +2.0.1.0=[[0], [2], [0], [1], [0]] +2.0.1.14=[[0], [2], [0], [1], [14]] +2.0.1.2=[[0], [2], [0], [1], [2]] +2.0.1.3=[[0], [2], [0], [1], [3]] +2.0.1.7=[[0], [2], [0], [1], [7]] +2.0.1.post1=[[0], [2], [0], [1], [0, inf, 1]] +2.0.10=[[0], [2], [0], [10]] +2.0.10.2=[[0], [2], [0], [10], [2]] +2.0.100=[[0], [2], [0], [100]] +2.0.101=[[0], [2], [0], [101]] +2.0.102=[[0], [2], [0], [102]] +2.0.103=[[0], [2], [0], [103]] +2.0.104=[[0], [2], [0], [104]] +2.0.105=[[0], [2], [0], [105]] +2.0.106=[[0], [2], [0], [106]] +2.0.107=[[0], [2], [0], [107]] +2.0.108=[[0], [2], [0], [108]] +2.0.109=[[0], [2], [0], [109]] +2.0.11=[[0], [2], [0], [11]] +2.0.110=[[0], [2], [0], [110]] +2.0.111=[[0], [2], [0], [111]] +2.0.113=[[0], [2], [0], [113]] +2.0.12=[[0], [2], [0], [12]] +2.0.13=[[0], [2], [0], [13]] +2.0.14=[[0], [2], [0], [14]] +2.0.15=[[0], [2], [0], [15]] +2.0.16=[[0], [2], [0], [16]] +2.0.17=[[0], [2], [0], [17]] +2.0.17.1=[[0], [2], [0], [17], [1]] +2.0.17.2=[[0], [2], [0], [17], [2]] +2.0.18=[[0], [2], [0], [18]] +2.0.19=[[0], [2], [0], [19]] +2.0.19.1=[[0], [2], [0], [19], [1]] +2.0.1a1=[[0], [2], [0], [1, 'a', 1]] +2.0.2=[[0], [2], [0], [2]] +2.0.20=[[0], [2], [0], [20]] +2.0.20191003=[[0], [2], [0], [20191003]] +2.0.20191007=[[0], [2], [0], [20191007]] +2.0.20191013=[[0], [2], [0], [20191013]] +2.0.20200107113851=[[0], [2], [0], [20200107113851]] +2.0.20200122124526=[[0], [2], [0], [20200122124526]] +2.0.20200126090152=[[0], [2], [0], [20200126090152]] +2.0.20200219182542=[[0], [2], [0], [20200219182542]] +2.0.20200220223835=[[0], [2], [0], [20200220223835]] +2.0.20200224214940=[[0], [2], [0], [20200224214940]] +2.0.20200312183052=[[0], [2], [0], [20200312183052]] +2.0.21=[[0], [2], [0], [21]] +2.0.22=[[0], [2], [0], [22]] +2.0.22.2=[[0], [2], [0], [22], [2]] +2.0.23=[[0], [2], [0], [23]] +2.0.24=[[0], [2], [0], [24]] +2.0.25=[[0], [2], [0], [25]] +2.0.26=[[0], [2], [0], [26]] +2.0.27=[[0], [2], [0], [27]] +2.0.28=[[0], [2], [0], [28]] +2.0.29=[[0], [2], [0], [29]] +2.0.2a4=[[0], [2], [0], [2, 'a', 4]] +2.0.3=[[0], [2], [0], [3]] +2.0.3.0=[[0], [2], [0], [3], [0]] +2.0.3.1=[[0], [2], [0], [3], [1]] +2.0.3.2=[[0], [2], [0], [3], [2]] +2.0.30=[[0], [2], [0], [30]] +2.0.31=[[0], [2], [0], [31]] +2.0.32=[[0], [2], [0], [32]] +2.0.33=[[0], [2], [0], [33]] +2.0.34=[[0], [2], [0], [34]] +2.0.35=[[0], [2], [0], [35]] +2.0.36=[[0], [2], [0], [36]] +2.0.37=[[0], [2], [0], [37]] +2.0.38=[[0], [2], [0], [38]] +2.0.39=[[0], [2], [0], [39]] +2.0.3_b=[[0], [2], [0], [3], [0, 'b']] +2.0.4=[[0], [2], [0], [4]] +2.0.4.1=[[0], [2], [0], [4], [1]] +2.0.4.2=[[0], [2], [0], [4], [2]] +2.0.4.4=[[0], [2], [0], [4], [4]] +2.0.4.5=[[0], [2], [0], [4], [5]] +2.0.4.6=[[0], [2], [0], [4], [6]] +2.0.40=[[0], [2], [0], [40]] +2.0.41=[[0], [2], [0], [41]] +2.0.42=[[0], [2], [0], [42]] +2.0.43=[[0], [2], [0], [43]] +2.0.44=[[0], [2], [0], [44]] +2.0.45=[[0], [2], [0], [45]] +2.0.46=[[0], [2], [0], [46]] +2.0.47=[[0], [2], [0], [47]] +2.0.48=[[0], [2], [0], [48]] +2.0.5=[[0], [2], [0], [5]] +2.0.5.1=[[0], [2], [0], [5], [1]] +2.0.5.post1=[[0], [2], [0], [5], [0, inf, 1]] +2.0.5.post2=[[0], [2], [0], [5], [0, inf, 2]] +2.0.50=[[0], [2], [0], [50]] +2.0.52=[[0], [2], [0], [52]] +2.0.53=[[0], [2], [0], [53]] +2.0.54=[[0], [2], [0], [54]] +2.0.56=[[0], [2], [0], [56]] +2.0.57=[[0], [2], [0], [57]] +2.0.58=[[0], [2], [0], [58]] +2.0.59=[[0], [2], [0], [59]] +2.0.6=[[0], [2], [0], [6]] +2.0.6.1=[[0], [2], [0], [6], [1]] +2.0.6.2=[[0], [2], [0], [6], [2]] +2.0.6.3=[[0], [2], [0], [6], [3]] +2.0.6.4=[[0], [2], [0], [6], [4]] +2.0.60=[[0], [2], [0], [60]] +2.0.61=[[0], [2], [0], [61]] +2.0.62=[[0], [2], [0], [62]] +2.0.63=[[0], [2], [0], [63]] +2.0.67=[[0], [2], [0], [67]] +2.0.69=[[0], [2], [0], [69]] +2.0.7=[[0], [2], [0], [7]] +2.0.7.1=[[0], [2], [0], [7], [1]] +2.0.7.post1=[[0], [2], [0], [7], [0, inf, 1]] +2.0.70=[[0], [2], [0], [70]] +2.0.71=[[0], [2], [0], [71]] +2.0.72=[[0], [2], [0], [72]] +2.0.73=[[0], [2], [0], [73]] +2.0.74=[[0], [2], [0], [74]] +2.0.75=[[0], [2], [0], [75]] +2.0.76=[[0], [2], [0], [76]] +2.0.77=[[0], [2], [0], [77]] +2.0.78=[[0], [2], [0], [78]] +2.0.785=[[0], [2], [0], [785]] +2.0.79=[[0], [2], [0], [79]] +2.0.7_1=[[0], [2], [0], [7], [1]] +2.0.8=[[0], [2], [0], [8]] +2.0.8.1=[[0], [2], [0], [8], [1]] +2.0.80=[[0], [2], [0], [80]] +2.0.81=[[0], [2], [0], [81]] +2.0.83=[[0], [2], [0], [83]] +2.0.84=[[0], [2], [0], [84]] +2.0.85=[[0], [2], [0], [85]] +2.0.866=[[0], [2], [0], [866]] +2.0.87=[[0], [2], [0], [87]] +2.0.872=[[0], [2], [0], [872]] +2.0.873=[[0], [2], [0], [873]] +2.0.874=[[0], [2], [0], [874]] +2.0.875=[[0], [2], [0], [875]] +2.0.876=[[0], [2], [0], [876]] +2.0.877=[[0], [2], [0], [877]] +2.0.878=[[0], [2], [0], [878]] +2.0.879=[[0], [2], [0], [879]] +2.0.88=[[0], [2], [0], [88]] +2.0.880=[[0], [2], [0], [880]] +2.0.881=[[0], [2], [0], [881]] +2.0.882=[[0], [2], [0], [882]] +2.0.883=[[0], [2], [0], [883]] +2.0.884=[[0], [2], [0], [884]] +2.0.885=[[0], [2], [0], [885]] +2.0.886=[[0], [2], [0], [886]] +2.0.887=[[0], [2], [0], [887]] +2.0.889=[[0], [2], [0], [889]] +2.0.89=[[0], [2], [0], [89]] +2.0.9=[[0], [2], [0], [9]] +2.0.9.1=[[0], [2], [0], [9], [1]] +2.0.9.post2=[[0], [2], [0], [9], [0, inf, 2]] +2.0.90=[[0], [2], [0], [90]] +2.0.900=[[0], [2], [0], [900]] +2.0.901=[[0], [2], [0], [901]] +2.0.902=[[0], [2], [0], [902]] +2.0.903=[[0], [2], [0], [903]] +2.0.904=[[0], [2], [0], [904]] +2.0.905=[[0], [2], [0], [905]] +2.0.906=[[0], [2], [0], [906]] +2.0.907=[[0], [2], [0], [907]] +2.0.908=[[0], [2], [0], [908]] +2.0.909=[[0], [2], [0], [909]] +2.0.910=[[0], [2], [0], [910]] +2.0.92=[[0], [2], [0], [92]] +2.0.931=[[0], [2], [0], [931]] +2.0.935=[[0], [2], [0], [935]] +2.0.94=[[0], [2], [0], [94]] +2.0.95=[[0], [2], [0], [95]] +2.0.96=[[0], [2], [0], [96]] +2.0.97=[[0], [2], [0], [97]] +2.0.98=[[0], [2], [0], [98]] +2.0.99=[[0], [2], [0], [99]] +2.0.alpha=[[0], [2], [0], [0, 'alpha']] +2.0.beta=[[0], [2], [0], [0, 'beta']] +2.00=[[0], [2], [0]] +2.00.1833=[[0], [2], [0], [1833]] +2.000005=[[0], [2], [5]] +2.000008=[[0], [2], [8]] +2.000024=[[0], [2], [24]] +2.000028=[[0], [2], [28]] +2.000029=[[0], [2], [29]] +2.001=[[0], [2], [1]] +2.0016=[[0], [2], [16]] +2.002=[[0], [2], [2]] +2.002004=[[0], [2], [2004]] +2.003004=[[0], [2], [3004]] +2.004=[[0], [2], [4]] +2.005004=[[0], [2], [5004]] +2.006003=[[0], [2], [6003]] +2.006006=[[0], [2], [6006]] +2.01=[[0], [2], [1]] +2.013=[[0], [2], [13]] +2.016=[[0], [2], [16]] +2.017008=[[0], [2], [17008]] +2.01_40=[[0], [2], [1], [40]] +2.01_42=[[0], [2], [1], [42]] +2.01_43=[[0], [2], [1], [43]] +2.02=[[0], [2], [2]] +2.02.187=[[0], [2], [2], [187]] +2.023.3=[[0], [2], [23], [3]] +2.023.4=[[0], [2], [23], [4]] +2.023.6=[[0], [2], [23], [6]] +2.03=[[0], [2], [3]] +2.030=[[0], [2], [30]] +2.034=[[0], [2], [34]] +2.035=[[0], [2], [35]] +2.038=[[0], [2], [38]] +2.04=[[0], [2], [4]] +2.043=[[0], [2], [43]] +2.046=[[0], [2], [46]] +2.5=[[0], [2], [5]] +2.5.1=[[0], [2], [5], [1]] +2.06=[[0], [2], [6]] +2.06.07=[[0], [2], [6], [7]] +2.06.11=[[0], [2], [6], [11]] +2.064=[[0], [2], [64]] +2.065.0=[[0], [2], [65], [0]] +2.066=[[0], [2], [66]] +2.07=[[0], [2], [7]] +2.074=[[0], [2], [74]] +2.075=[[0], [2], [75]] +2.08=[[0], [2], [8]] +2.09=[[0], [2], [9]] +2.09.1=[[0], [2], [9], [1]] +2.09.2=[[0], [2], [9], [2]] +2.098.1=[[0], [2], [98], [1]] +2.099.0=[[0], [2], [99], [0]] +2.099.1=[[0], [2], [99], [1]] +2.0_0=[[0], [2], [0], [0]] +2.0_0.1=[[0], [2], [0], [0], [1]] +2.0_1=[[0], [2], [0], [1]] +2.0_1.1=[[0], [2], [0], [1], [1]] +2.0_10=[[0], [2], [0], [10]] +2.0_11=[[0], [2], [0], [11]] +2.0_12=[[0], [2], [0], [12]] +2.0_16=[[0], [2], [0], [16]] +2.0_18=[[0], [2], [0], [18]] +2.0_19=[[0], [2], [0], [19]] +2.0_2=[[0], [2], [0], [2]] +2.0_22=[[0], [2], [0], [22]] +2.0_23=[[0], [2], [0], [23]] +2.0_24=[[0], [2], [0], [24]] +2.0_25=[[0], [2], [0], [25]] +2.0_26=[[0], [2], [0], [26]] +2.0_28=[[0], [2], [0], [28]] +2.0_3=[[0], [2], [0], [3]] +2.0_33=[[0], [2], [0], [33]] +2.0_4=[[0], [2], [0], [4]] +2.0_5=[[0], [2], [0], [5]] +2.0_5.1=[[0], [2], [0], [5], [1]] +2.0_6=[[0], [2], [0], [6]] +2.0_7=[[0], [2], [0], [7]] +2.0_7.2=[[0], [2], [0], [7], [2]] +2.0_7.3=[[0], [2], [0], [7], [3]] +2.0_8=[[0], [2], [0], [8]] +2.0_9=[[0], [2], [0], [9]] +2.0a0_20170929a0=[[0], [2], [0, 'a', 0], [20170929, 'a', 0]] +2.0a1=[[0], [2], [0, 'a', 1]] +2.0a2=[[0], [2], [0, 'a', 2]] +2.0a3=[[0], [2], [0, 'a', 3]] +2.0a4=[[0], [2], [0, 'a', 4]] +2.0a5=[[0], [2], [0, 'a', 5]] +2.0a6=[[0], [2], [0, 'a', 6]] +2.0b0=[[0], [2], [0, 'b', 0]] +2.0b1=[[0], [2], [0, 'b', 1]] +2.0b2=[[0], [2], [0, 'b', 2]] +2.0b3=[[0], [2], [0, 'b', 3]] +2.0rc1=[[0], [2], [0, 'rc', 1]] +2.0rc2=[[0], [2], [0, 'rc', 2]] +2.0rc3=[[0], [2], [0, 'rc', 3]] +2.0rc6=[[0], [2], [0, 'rc', 6]] +2.1=[[0], [2], [1]] +2.1.0=[[0], [2], [1], [0]] +2.1.0.0=[[0], [2], [1], [0], [0]] +2.1.0.1=[[0], [2], [1], [0], [1]] +2.1.0.2=[[0], [2], [1], [0], [2]] +2.1.0.post1=[[0], [2], [1], [0], [0, inf, 1]] +2.1.0_b=[[0], [2], [1], [0], [0, 'b']] +2.1.0b0=[[0], [2], [1], [0, 'b', 0]] +2.1.0b1=[[0], [2], [1], [0, 'b', 1]] +2.1.0b5=[[0], [2], [1], [0, 'b', 5]] +2.1.0rc0=[[0], [2], [1], [0, 'rc', 0]] +2.1.0rc1=[[0], [2], [1], [0, 'rc', 1]] +2.1.0rc2=[[0], [2], [1], [0, 'rc', 2]] +2.1.0rc3=[[0], [2], [1], [0, 'rc', 3]] +2.1.1=[[0], [2], [1], [1]] +2.1.1.1=[[0], [2], [1], [1], [1]] +2.1.1.2=[[0], [2], [1], [1], [2]] +2.1.1.5=[[0], [2], [1], [1], [5]] +2.1.10=[[0], [2], [1], [10]] +2.1.11=[[0], [2], [1], [11]] +2.1.12=[[0], [2], [1], [12]] +2.1.13=[[0], [2], [1], [13]] +2.1.14=[[0], [2], [1], [14]] +2.1.15=[[0], [2], [1], [15]] +2.1.16=[[0], [2], [1], [16]] +2.1.17=[[0], [2], [1], [17]] +2.1.1706216=[[0], [2], [1], [1706216]] +2.1.18=[[0], [2], [1], [18]] +2.1.19=[[0], [2], [1], [19]] +2.1.1_b=[[0], [2], [1], [1], [0, 'b']] +2.1.2=[[0], [2], [1], [2]] +2.1.2.1=[[0], [2], [1], [2], [1]] +2.1.2.2=[[0], [2], [1], [2], [2]] +2.1.20=[[0], [2], [1], [20]] +2.1.21=[[0], [2], [1], [21]] +2.1.22=[[0], [2], [1], [22]] +2.1.26=[[0], [2], [1], [26]] +2.1.27=[[0], [2], [1], [27]] +2.1.29=[[0], [2], [1], [29]] +2.1.2_b=[[0], [2], [1], [2], [0, 'b']] +2.1.3=[[0], [2], [1], [3]] +2.1.3.1=[[0], [2], [1], [3], [1]] +2.1.3.dev8=[[0], [2], [1], [3], [0, 'DEV', 8]] +2.1.3.post1=[[0], [2], [1], [3], [0, inf, 1]] +2.1.3.post16=[[0], [2], [1], [3], [0, inf, 16]] +2.1.30=[[0], [2], [1], [30]] +2.1.32=[[0], [2], [1], [32]] +2.1.33=[[0], [2], [1], [33]] +2.1.34=[[0], [2], [1], [34]] +2.1.35=[[0], [2], [1], [35]] +2.1.36=[[0], [2], [1], [36]] +2.1.39=[[0], [2], [1], [39]] +2.1.3_b=[[0], [2], [1], [3], [0, 'b']] +2.1.4=[[0], [2], [1], [4]] +2.1.4.1=[[0], [2], [1], [4], [1]] +2.1.4.2=[[0], [2], [1], [4], [2]] +2.1.4.3=[[0], [2], [1], [4], [3]] +2.1.4.4=[[0], [2], [1], [4], [4]] +2.1.4.5=[[0], [2], [1], [4], [5]] +2.1.41=[[0], [2], [1], [41]] +2.1.44=[[0], [2], [1], [44]] +2.1.45=[[0], [2], [1], [45]] +2.1.46=[[0], [2], [1], [46]] +2.1.48=[[0], [2], [1], [48]] +2.1.49=[[0], [2], [1], [49]] +2.1.4_b=[[0], [2], [1], [4], [0, 'b']] +2.1.5=[[0], [2], [1], [5]] +2.1.5.1=[[0], [2], [1], [5], [1]] +2.1.5.2=[[0], [2], [1], [5], [2]] +2.1.5.3=[[0], [2], [1], [5], [3]] +2.1.5.4=[[0], [2], [1], [5], [4]] +2.1.5.post1=[[0], [2], [1], [5], [0, inf, 1]] +2.1.51=[[0], [2], [1], [51]] +2.1.52=[[0], [2], [1], [52]] +2.1.54=[[0], [2], [1], [54]] +2.1.57=[[0], [2], [1], [57]] +2.1.58=[[0], [2], [1], [58]] +2.1.6=[[0], [2], [1], [6]] +2.1.7=[[0], [2], [1], [7]] +2.1.8=[[0], [2], [1], [8]] +2.1.8.1=[[0], [2], [1], [8], [1]] +2.1.81=[[0], [2], [1], [81]] +2.1.815=[[0], [2], [1], [815]] +2.1.817=[[0], [2], [1], [817]] +2.1.818=[[0], [2], [1], [818]] +2.1.9=[[0], [2], [1], [9]] +2.1.post0=[[0], [2], [1], [0, inf, 0]] +2.10=[[0], [2], [10]] +2.10.0=[[0], [2], [10], [0]] +2.10.1=[[0], [2], [10], [1]] +2.10.10=[[0], [2], [10], [10]] +2.10.11=[[0], [2], [10], [11]] +2.10.12=[[0], [2], [10], [12]] +2.10.13=[[0], [2], [10], [13]] +2.10.14=[[0], [2], [10], [14]] +2.10.15=[[0], [2], [10], [15]] +2.10.16=[[0], [2], [10], [16]] +2.10.17=[[0], [2], [10], [17]] +2.10.18=[[0], [2], [10], [18]] +2.10.2=[[0], [2], [10], [2]] +2.10.3=[[0], [2], [10], [3]] +2.10.3.1=[[0], [2], [10], [3], [1]] +2.10.4=[[0], [2], [10], [4]] +2.10.5=[[0], [2], [10], [5]] +2.10.6=[[0], [2], [10], [6]] +2.10.67=[[0], [2], [10], [67]] +2.10.68=[[0], [2], [10], [68]] +2.10.7=[[0], [2], [10], [7]] +2.10.8=[[0], [2], [10], [8]] +2.10.9=[[0], [2], [10], [9]] +2.100.0=[[0], [2], [100], [0]] +2.100.0.84=[[0], [2], [100], [0], [84]] +2.100.2=[[0], [2], [100], [2]] +2.101=[[0], [2], [101]] +2.101.0=[[0], [2], [101], [0]] +2.101.1=[[0], [2], [101], [1]] +2.101.2=[[0], [2], [101], [2]] +2.102.0=[[0], [2], [102], [0]] +2.102.1=[[0], [2], [102], [1]] +2.102.2=[[0], [2], [102], [2]] +2.103=[[0], [2], [103]] +2.103.0=[[0], [2], [103], [0]] +2.103.1=[[0], [2], [103], [1]] +2.104=[[0], [2], [104]] +2.104.0=[[0], [2], [104], [0]] +2.105=[[0], [2], [105]] +2.105.0=[[0], [2], [105], [0]] +2.106=[[0], [2], [106]] +2.106.0=[[0], [2], [106], [0]] +2.106.1.88=[[0], [2], [106], [1], [88]] +2.107=[[0], [2], [107]] +2.107.0=[[0], [2], [107], [0]] +2.108=[[0], [2], [108]] +2.108.0=[[0], [2], [108], [0]] +2.109=[[0], [2], [109]] +2.109.0=[[0], [2], [109], [0]] +2.10_0=[[0], [2], [10], [0]] +2.10_12=[[0], [2], [10], [12]] +2.10_22=[[0], [2], [10], [22]] +2.10_8=[[0], [2], [10], [8]] +2.11=[[0], [2], [11]] +2.11.0=[[0], [2], [11], [0]] +2.11.0.1=[[0], [2], [11], [0], [1]] +2.11.0.2=[[0], [2], [11], [0], [2]] +2.11.0.4=[[0], [2], [11], [0], [4]] +2.11.06=[[0], [2], [11], [6]] +2.11.08=[[0], [2], [11], [8]] +2.11.1=[[0], [2], [11], [1]] +2.11.1.0=[[0], [2], [11], [1], [0]] +2.11.1.1=[[0], [2], [11], [1], [1]] +2.11.1.2=[[0], [2], [11], [1], [2]] +2.11.1.3=[[0], [2], [11], [1], [3]] +2.11.1.4=[[0], [2], [11], [1], [4]] +2.11.1.5=[[0], [2], [11], [1], [5]] +2.11.2=[[0], [2], [11], [2]] +2.11.2.1=[[0], [2], [11], [2], [1]] +2.11.2.3=[[0], [2], [11], [2], [3]] +2.11.2.4=[[0], [2], [11], [2], [4]] +2.11.2.6=[[0], [2], [11], [2], [6]] +2.11.3=[[0], [2], [11], [3]] +2.11.3.1=[[0], [2], [11], [3], [1]] +2.11.3.2=[[0], [2], [11], [3], [2]] +2.11.348=[[0], [2], [11], [348]] +2.11.4=[[0], [2], [11], [4]] +2.11.4.1=[[0], [2], [11], [4], [1]] +2.11.5=[[0], [2], [11], [5]] +2.11.6=[[0], [2], [11], [6]] +2.11.7=[[0], [2], [11], [7]] +2.11.8=[[0], [2], [11], [8]] +2.11.9=[[0], [2], [11], [9]] +2.110=[[0], [2], [110]] +2.111=[[0], [2], [111]] +2.112=[[0], [2], [112]] +2.113=[[0], [2], [113]] +2.114=[[0], [2], [114]] +2.115=[[0], [2], [115]] +2.116=[[0], [2], [116]] +2.117=[[0], [2], [117]] +2.12=[[0], [2], [12]] +2.12.0=[[0], [2], [12], [0]] +2.12.0.0=[[0], [2], [12], [0], [0]] +2.12.0.1=[[0], [2], [12], [0], [1]] +2.12.0.2=[[0], [2], [12], [0], [2]] +2.12.0.3=[[0], [2], [12], [0], [3]] +2.12.02=[[0], [2], [12], [2]] +2.12.1=[[0], [2], [12], [1]] +2.12.10=[[0], [2], [12], [10]] +2.12.10.1=[[0], [2], [12], [10], [1]] +2.12.11=[[0], [2], [12], [11]] +2.12.12=[[0], [2], [12], [12]] +2.12.12.1=[[0], [2], [12], [12], [1]] +2.12.13=[[0], [2], [12], [13]] +2.12.14=[[0], [2], [12], [14]] +2.12.16=[[0], [2], [12], [16]] +2.12.2=[[0], [2], [12], [2]] +2.12.3=[[0], [2], [12], [3]] +2.12.30=[[0], [2], [12], [30]] +2.12.4=[[0], [2], [12], [4]] +2.12.5=[[0], [2], [12], [5]] +2.12.6=[[0], [2], [12], [6]] +2.12.7=[[0], [2], [12], [7]] +2.12.7.1=[[0], [2], [12], [7], [1]] +2.12.8=[[0], [2], [12], [8]] +2.12.9=[[0], [2], [12], [9]] +2.13=[[0], [2], [13]] +2.13.0=[[0], [2], [13], [0]] +2.13.02=[[0], [2], [13], [2]] +2.13.1=[[0], [2], [13], [1]] +2.13.10=[[0], [2], [13], [10]] +2.13.11=[[0], [2], [13], [11]] +2.13.12=[[0], [2], [13], [12]] +2.13.13=[[0], [2], [13], [13]] +2.13.14=[[0], [2], [13], [14]] +2.13.15=[[0], [2], [13], [15]] +2.13.16=[[0], [2], [13], [16]] +2.13.17=[[0], [2], [13], [17]] +2.13.18=[[0], [2], [13], [18]] +2.13.19=[[0], [2], [13], [19]] +2.13.2=[[0], [2], [13], [2]] +2.13.20=[[0], [2], [13], [20]] +2.13.21=[[0], [2], [13], [21]] +2.13.22=[[0], [2], [13], [22]] +2.13.23=[[0], [2], [13], [23]] +2.13.24=[[0], [2], [13], [24]] +2.13.25=[[0], [2], [13], [25]] +2.13.26=[[0], [2], [13], [26]] +2.13.27=[[0], [2], [13], [27]] +2.13.28=[[0], [2], [13], [28]] +2.13.29=[[0], [2], [13], [29]] +2.13.3=[[0], [2], [13], [3]] +2.13.30=[[0], [2], [13], [30]] +2.13.31=[[0], [2], [13], [31]] +2.13.32=[[0], [2], [13], [32]] +2.13.33=[[0], [2], [13], [33]] +2.13.34=[[0], [2], [13], [34]] +2.13.35=[[0], [2], [13], [35]] +2.13.36=[[0], [2], [13], [36]] +2.13.4=[[0], [2], [13], [4]] +2.13.4.1=[[0], [2], [13], [4], [1]] +2.13.466=[[0], [2], [13], [466]] +2.13.5=[[0], [2], [13], [5]] +2.13.6=[[0], [2], [13], [6]] +2.13.7=[[0], [2], [13], [7]] +2.13.8=[[0], [2], [13], [8]] +2.13.9=[[0], [2], [13], [9]] +2.13.94=[[0], [2], [13], [94]] +2.13.96=[[0], [2], [13], [96]] +2.14=[[0], [2], [14]] +2.14.0=[[0], [2], [14], [0]] +2.14.0.0=[[0], [2], [14], [0], [0]] +2.14.0.1=[[0], [2], [14], [0], [1]] +2.14.0.2=[[0], [2], [14], [0], [2]] +2.14.0.3=[[0], [2], [14], [0], [3]] +2.14.02=[[0], [2], [14], [2]] +2.14.0_1=[[0], [2], [14], [0], [1]] +2.14.0b0=[[0], [2], [14], [0, 'b', 0]] +2.14.1=[[0], [2], [14], [1]] +2.14.10=[[0], [2], [14], [10]] +2.14.11=[[0], [2], [14], [11]] +2.14.12=[[0], [2], [14], [12]] +2.14.13=[[0], [2], [14], [13]] +2.14.14=[[0], [2], [14], [14]] +2.14.17=[[0], [2], [14], [17]] +2.14.19=[[0], [2], [14], [19]] +2.14.2=[[0], [2], [14], [2]] +2.14.3=[[0], [2], [14], [3]] +2.14.3.1=[[0], [2], [14], [3], [1]] +2.14.4=[[0], [2], [14], [4]] +2.14.5=[[0], [2], [14], [5]] +2.14.6=[[0], [2], [14], [6]] +2.14.7=[[0], [2], [14], [7]] +2.14.8=[[0], [2], [14], [8]] +2.14.9=[[0], [2], [14], [9]] +2.140=[[0], [2], [140]] +2.140640=[[0], [2], [140640]] +2.15=[[0], [2], [15]] +2.15.0=[[0], [2], [15], [0]] +2.15.0.0=[[0], [2], [15], [0], [0]] +2.15.0.1=[[0], [2], [15], [0], [1]] +2.15.5=[[0], [2], [15], [5]] +2.15.0_1=[[0], [2], [15], [0], [1]] +2.15.1=[[0], [2], [15], [1]] +2.15.1.1=[[0], [2], [15], [1], [1]] +2.15.10=[[0], [2], [15], [10]] +2.15.2=[[0], [2], [15], [2]] +2.15.2.post1=[[0], [2], [15], [2], [0, inf, 1]] +2.15.3=[[0], [2], [15], [3]] +2.15.4=[[0], [2], [15], [4]] +2.15.5=[[0], [2], [15], [5]] +2.15.5.1=[[0], [2], [15], [5], [1]] +2.15.6=[[0], [2], [15], [6]] +2.15.7=[[0], [2], [15], [7]] +2.15.8=[[0], [2], [15], [8]] +2.15.9=[[0], [2], [15], [9]] +2.150010=[[0], [2], [150010]] +2.16=[[0], [2], [16]] +2.16.0=[[0], [2], [16], [0]] +2.16.0.0=[[0], [2], [16], [0], [0]] +2.16.0_1=[[0], [2], [16], [0], [1]] +2.16.1=[[0], [2], [16], [1]] +2.16.11=[[0], [2], [16], [11]] +2.16.11.2=[[0], [2], [16], [11], [2]] +2.16.17=[[0], [2], [16], [17]] +2.16.2=[[0], [2], [16], [2]] +2.16.2.post1=[[0], [2], [16], [2], [0, inf, 1]] +2.16.3=[[0], [2], [16], [3]] +2.16.4=[[0], [2], [16], [4]] +2.16.5=[[0], [2], [16], [5]] +2.16.6=[[0], [2], [16], [6]] +2.16.7=[[0], [2], [16], [7]] +2.1692_vsc1.39.2=[[0], [2], [1692], [0, 'vsc', 1], [39], [2]] +2.1698_vsc1.41.1=[[0], [2], [1698], [0, 'vsc', 1], [41], [1]] +2.16_0=[[0], [2], [16], [0]] +2.17=[[0], [2], [17]] +2.17.0=[[0], [2], [17], [0]] +2.17.0.0=[[0], [2], [17], [0], [0]] +2.17.0.1=[[0], [2], [17], [0], [1]] +2.17.1=[[0], [2], [17], [1]] +2.17.1.0=[[0], [2], [17], [1], [0]] +2.17.1.1=[[0], [2], [17], [1], [1]] +2.17.10=[[0], [2], [17], [10]] +2.17.11=[[0], [2], [17], [11]] +2.17.2=[[0], [2], [17], [2]] +2.17.3=[[0], [2], [17], [3]] +2.17.4=[[0], [2], [17], [4]] +2.17.5=[[0], [2], [17], [5]] +2.17.6=[[0], [2], [17], [6]] +2.17.7=[[0], [2], [17], [7]] +2.17_0=[[0], [2], [17], [0]] +2.18=[[0], [2], [18]] +2.18.0=[[0], [2], [18], [0]] +2.18.0.1=[[0], [2], [18], [0], [1]] +2.18.0_1=[[0], [2], [18], [0], [1]] +2.18.1=[[0], [2], [18], [1]] +2.18.1.1=[[0], [2], [18], [1], [1]] +2.18.10=[[0], [2], [18], [10]] +2.18.11=[[0], [2], [18], [11]] +2.18.12=[[0], [2], [18], [12]] +2.18.13=[[0], [2], [18], [13]] +2.18.14=[[0], [2], [18], [14]] +2.18.15=[[0], [2], [18], [15]] +2.18.16=[[0], [2], [18], [16]] +2.18.17=[[0], [2], [18], [17]] +2.18.18=[[0], [2], [18], [18]] +2.18.19=[[0], [2], [18], [19]] +2.18.1_10=[[0], [2], [18], [1], [10]] +2.18.2=[[0], [2], [18], [2]] +2.18.20=[[0], [2], [18], [20]] +2.18.21=[[0], [2], [18], [21]] +2.18.22=[[0], [2], [18], [22]] +2.18.23=[[0], [2], [18], [23]] +2.18.25=[[0], [2], [18], [25]] +2.18.26=[[0], [2], [18], [26]] +2.18.27=[[0], [2], [18], [27]] +2.18.29=[[0], [2], [18], [29]] +2.18.3=[[0], [2], [18], [3]] +2.18.4=[[0], [2], [18], [4]] +2.18.5=[[0], [2], [18], [5]] +2.18.7=[[0], [2], [18], [7]] +2.18.8=[[0], [2], [18], [8]] +2.18.9=[[0], [2], [18], [9]] +2.183=[[0], [2], [183]] +2.19=[[0], [2], [19]] +2.19.0=[[0], [2], [19], [0]] +2.19.0.0=[[0], [2], [19], [0], [0]] +2.19.1=[[0], [2], [19], [1]] +2.19.1.1=[[0], [2], [19], [1], [1]] +2.19.10=[[0], [2], [19], [10]] +2.19.11=[[0], [2], [19], [11]] +2.19.2=[[0], [2], [19], [2]] +2.19.3=[[0], [2], [19], [3]] +2.19.4=[[0], [2], [19], [4]] +2.19.5=[[0], [2], [19], [5]] +2.19.6=[[0], [2], [19], [6]] +2.19.7=[[0], [2], [19], [7]] +2.19.8=[[0], [2], [19], [8]] +2.19.9=[[0], [2], [19], [9]] +2.1905=[[0], [2], [1905]] +2.1_0=[[0], [2], [1], [0]] +2.1_1=[[0], [2], [1], [1]] +2.1_10=[[0], [2], [1], [10]] +2.1_11=[[0], [2], [1], [11]] +2.1_11.1=[[0], [2], [1], [11], [1]] +2.1_12=[[0], [2], [1], [12]] +2.1_2=[[0], [2], [1], [2]] +2.1_20230119=[[0], [2], [1], [20230119]] +2.1_21=[[0], [2], [1], [21]] +2.1_3=[[0], [2], [1], [3]] +2.1_3.1=[[0], [2], [1], [3], [1]] +2.1_4=[[0], [2], [1], [4]] +2.1_5=[[0], [2], [1], [5]] +2.1_6=[[0], [2], [1], [6]] +2.1_7=[[0], [2], [1], [7]] +2.1_7.1=[[0], [2], [1], [7], [1]] +2.1_8=[[0], [2], [1], [8]] +2.2=[[0], [2], [2]] +2.2.0=[[0], [2], [2], [0]] +2.2.0.2=[[0], [2], [2], [0], [2]] +2.2.0.3=[[0], [2], [2], [0], [3]] +2.2.0.4=[[0], [2], [2], [0], [4]] +2.2.0.5=[[0], [2], [2], [0], [5]] +2.2.0.6=[[0], [2], [2], [0], [6]] +2.2.0.post3=[[0], [2], [2], [0], [0, inf, 3]] +2.2.0_2=[[0], [2], [2], [0], [2]] +2.2.0_3=[[0], [2], [2], [0], [3]] +2.2.0_b=[[0], [2], [2], [0], [0, 'b']] +2.2.1=[[0], [2], [2], [1]] +2.2.1+boost170=[[0], [2], [2], [1]] +2.2.1.1=[[0], [2], [2], [1], [1]] +2.2.1.post0=[[0], [2], [2], [1], [0, inf, 0]] +2.2.1.post1=[[0], [2], [2], [1], [0, inf, 1]] +2.2.1.post2=[[0], [2], [2], [1], [0, inf, 2]] +2.2.10=[[0], [2], [2], [10]] +2.2.11=[[0], [2], [2], [11]] +2.2.12=[[0], [2], [2], [12]] +2.2.13=[[0], [2], [2], [13]] +2.2.14=[[0], [2], [2], [14]] +2.2.15=[[0], [2], [2], [15]] +2.2.16=[[0], [2], [2], [16]] +2.2.17=[[0], [2], [2], [17]] +2.2.18=[[0], [2], [2], [18]] +2.2.18.04.06=[[0], [2], [2], [18], [4], [6]] +2.2.19=[[0], [2], [2], [19]] +2.2.1_5=[[0], [2], [2], [1], [5]] +2.2.1_7=[[0], [2], [2], [1], [7]] +2.2.2=[[0], [2], [2], [2]] +2.2.2.1=[[0], [2], [2], [2], [1]] +2.2.20=[[0], [2], [2], [20]] +2.2.20210901154959=[[0], [2], [2], [20210901154959]] +2.2.20211116163652=[[0], [2], [2], [20211116163652]] +2.2.20220521103021=[[0], [2], [2], [20220521103021]] +2.2.21=[[0], [2], [2], [21]] +2.2.22=[[0], [2], [2], [22]] +2.2.23=[[0], [2], [2], [23]] +2.2.24=[[0], [2], [2], [24]] +2.2.25=[[0], [2], [2], [25]] +2.2.26=[[0], [2], [2], [26]] +2.2.27=[[0], [2], [2], [27]] +2.2.27.27=[[0], [2], [2], [27], [27]] +2.2.27.6=[[0], [2], [2], [27], [6]] +2.2.28=[[0], [2], [2], [28]] +2.2.2a=[[0], [2], [2], [2, 'a']] +2.2.2b=[[0], [2], [2], [2, 'b']] +2.2.2c=[[0], [2], [2], [2, 'c']] +2.2.2d=[[0], [2], [2], [2, 'd']] +2.2.3=[[0], [2], [2], [3]] +2.2.31=[[0], [2], [2], [31]] +2.2.4=[[0], [2], [2], [4]] +2.2.4.1=[[0], [2], [2], [4], [1]] +2.2.5=[[0], [2], [2], [5]] +2.2.5.0=[[0], [2], [2], [5], [0]] +2.2.6=[[0], [2], [2], [6]] +2.2.6.1=[[0], [2], [2], [6], [1]] +2.2.7=[[0], [2], [2], [7]] +2.2.8=[[0], [2], [2], [8]] +2.2.9=[[0], [2], [2], [9]] +2.2.post0=[[0], [2], [2], [0, inf, 0]] +2.2.post1=[[0], [2], [2], [0, inf, 1]] +2.20=[[0], [2], [20]] +2.20.0=[[0], [2], [20], [0]] +2.20.1=[[0], [2], [20], [1]] +2.20.10=[[0], [2], [20], [10]] +2.20.12=[[0], [2], [20], [12]] +2.20.13=[[0], [2], [20], [13]] +2.20.14=[[0], [2], [20], [14]] +2.20.15=[[0], [2], [20], [15]] +2.20.17=[[0], [2], [20], [17]] +2.20.18=[[0], [2], [20], [18]] +2.20.19=[[0], [2], [20], [19]] +2.20.2=[[0], [2], [20], [2]] +2.20.20=[[0], [2], [20], [20]] +2.20.3=[[0], [2], [20], [3]] +2.20.35=[[0], [2], [20], [35]] +2.20.36=[[0], [2], [20], [36]] +2.20.36.1=[[0], [2], [20], [36], [1]] +2.20.36.2=[[0], [2], [20], [36], [2]] +2.20.36.3=[[0], [2], [20], [36], [3]] +2.20.4=[[0], [2], [20], [4]] +2.20.5=[[0], [2], [20], [5]] +2.20.6=[[0], [2], [20], [6]] +2.20.7=[[0], [2], [20], [7]] +2.20.8=[[0], [2], [20], [8]] +2.20.9=[[0], [2], [20], [9]] +2.2006=[[0], [2], [2006]] +2.201=[[0], [2], [201]] +2.20170703=[[0], [2], [20170703]] +2.20191221=[[0], [2], [20191221]] +2.202=[[0], [2], [202]] +2.21=[[0], [2], [21]] +2.21.0=[[0], [2], [21], [0]] +2.21.0_1=[[0], [2], [21], [0], [1]] +2.21.0_3=[[0], [2], [21], [0], [3]] +2.21.0_5=[[0], [2], [21], [0], [5]] +2.21.0_6=[[0], [2], [21], [0], [6]] +2.21.0_7=[[0], [2], [21], [0], [7]] +2.21.1=[[0], [2], [21], [1]] +2.21.2=[[0], [2], [21], [2]] +2.21.3=[[0], [2], [21], [3]] +2.21.4=[[0], [2], [21], [4]] +2.21.5=[[0], [2], [21], [5]] +2.21.6=[[0], [2], [21], [6]] +2.21.7=[[0], [2], [21], [7]] +2.21.8=[[0], [2], [21], [8]] +2.21.9=[[0], [2], [21], [9]] +2.216=[[0], [2], [216]] +2.218=[[0], [2], [218]] +2.22=[[0], [2], [22]] +2.22.0=[[0], [2], [22], [0]] +2.22.1=[[0], [2], [22], [1]] +2.22.2=[[0], [2], [22], [2]] +2.22.213=[[0], [2], [22], [213]] +2.22.3=[[0], [2], [22], [3]] +2.22.4=[[0], [2], [22], [4]] +2.22.5=[[0], [2], [22], [5]] +2.22.6=[[0], [2], [22], [6]] +2.22.7=[[0], [2], [22], [7]] +2.22.8=[[0], [2], [22], [8]] +2.22.9=[[0], [2], [22], [9]] +2.2203=[[0], [2], [2203]] +2.2207=[[0], [2], [2207]] +2.2207.1=[[0], [2], [2207], [1]] +2.2207.2=[[0], [2], [2207], [2]] +2.2207.3=[[0], [2], [2207], [3]] +2.23=[[0], [2], [23]] +2.23.0=[[0], [2], [23], [0]] +2.23.1=[[0], [2], [23], [1]] +2.23.2=[[0], [2], [23], [2]] +2.23.222=[[0], [2], [23], [222]] +2.23.3=[[0], [2], [23], [3]] +2.23.4=[[0], [2], [23], [4]] +2.23.4.post0=[[0], [2], [23], [4], [0, inf, 0]] +2.23.5=[[0], [2], [23], [5]] +2.23.6=[[0], [2], [23], [6]] +2.23.7=[[0], [2], [23], [7]] +2.23.8=[[0], [2], [23], [8]] +2.23.9=[[0], [2], [23], [9]] +2.23_15=[[0], [2], [23], [15]] +2.23_16=[[0], [2], [23], [16]] +2.23_17=[[0], [2], [23], [17]] +2.23_18=[[0], [2], [23], [18]] +2.23_20=[[0], [2], [23], [20]] +2.23_21=[[0], [2], [23], [21]] +2.24=[[0], [2], [24]] +2.24.0=[[0], [2], [24], [0]] +2.24.1=[[0], [2], [24], [1]] +2.24.2=[[0], [2], [24], [2]] +2.24.23=[[0], [2], [24], [23]] +2.24.231=[[0], [2], [24], [231]] +2.24.232=[[0], [2], [24], [232]] +2.24.3=[[0], [2], [24], [3]] +2.24.31=[[0], [2], [24], [31]] +2.24.32=[[0], [2], [24], [32]] +2.24.33=[[0], [2], [24], [33]] +2.24.4=[[0], [2], [24], [4]] +2.24.5=[[0], [2], [24], [5]] +2.25=[[0], [2], [25]] +2.25.0=[[0], [2], [25], [0]] +2.25.1=[[0], [2], [25], [1]] +2.25.10=[[0], [2], [25], [10]] +2.25.11=[[0], [2], [25], [11]] +2.25.12=[[0], [2], [25], [12]] +2.25.2=[[0], [2], [25], [2]] +2.25.236=[[0], [2], [25], [236]] +2.25.3=[[0], [2], [25], [3]] +2.25.4=[[0], [2], [25], [4]] +2.25.5=[[0], [2], [25], [5]] +2.25.6=[[0], [2], [25], [6]] +2.25.7=[[0], [2], [25], [7]] +2.25.8=[[0], [2], [25], [8]] +2.25.9=[[0], [2], [25], [9]] +2.25.90=[[0], [2], [25], [90]] +2.25_5=[[0], [2], [25], [5]] +2.26=[[0], [2], [26]] +2.26.0=[[0], [2], [26], [0]] +2.26.0.post1=[[0], [2], [26], [0], [0, inf, 1]] +2.26.1=[[0], [2], [26], [1]] +2.26.10=[[0], [2], [26], [10]] +2.26.11=[[0], [2], [26], [11]] +2.26.2=[[0], [2], [26], [2]] +2.26.25=[[0], [2], [26], [25]] +2.26.26=[[0], [2], [26], [26]] +2.26.27=[[0], [2], [26], [27]] +2.26.3=[[0], [2], [26], [3]] +2.26.4=[[0], [2], [26], [4]] +2.26.5=[[0], [2], [26], [5]] +2.26.6=[[0], [2], [26], [6]] +2.26.7=[[0], [2], [26], [7]] +2.26.8=[[0], [2], [26], [8]] +2.26.9=[[0], [2], [26], [9]] +2.27=[[0], [2], [27]] +2.27.0=[[0], [2], [27], [0]] +2.27.1=[[0], [2], [27], [1]] +2.27.10=[[0], [2], [27], [10]] +2.27.11=[[0], [2], [27], [11]] +2.27.12=[[0], [2], [27], [12]] +2.27.13=[[0], [2], [27], [13]] +2.27.14=[[0], [2], [27], [14]] +2.27.15=[[0], [2], [27], [15]] +2.27.16=[[0], [2], [27], [16]] +2.27.17=[[0], [2], [27], [17]] +2.27.18=[[0], [2], [27], [18]] +2.27.19=[[0], [2], [27], [19]] +2.27.2=[[0], [2], [27], [2]] +2.27.20=[[0], [2], [27], [20]] +2.27.22=[[0], [2], [27], [22]] +2.27.23=[[0], [2], [27], [23]] +2.27.24=[[0], [2], [27], [24]] +2.27.25=[[0], [2], [27], [25]] +2.27.26=[[0], [2], [27], [26]] +2.27.27=[[0], [2], [27], [27]] +2.27.28=[[0], [2], [27], [28]] +2.27.29=[[0], [2], [27], [29]] +2.27.3=[[0], [2], [27], [3]] +2.27.30=[[0], [2], [27], [30]] +2.27.31=[[0], [2], [27], [31]] +2.27.4=[[0], [2], [27], [4]] +2.27.5=[[0], [2], [27], [5]] +2.27.6=[[0], [2], [27], [6]] +2.27.7=[[0], [2], [27], [7]] +2.27.8=[[0], [2], [27], [8]] +2.27.9=[[0], [2], [27], [9]] +2.27_62=[[0], [2], [27], [62]] +2.28=[[0], [2], [28]] +2.28.0=[[0], [2], [28], [0]] +2.28.1=[[0], [2], [28], [1]] +2.28.10=[[0], [2], [28], [10]] +2.28.11=[[0], [2], [28], [11]] +2.28.11.1=[[0], [2], [28], [11], [1]] +2.28.11.11=[[0], [2], [28], [11], [11]] +2.28.11.12=[[0], [2], [28], [11], [12]] +2.28.11.13=[[0], [2], [28], [11], [13]] +2.28.11.14=[[0], [2], [28], [11], [14]] +2.28.11.15=[[0], [2], [28], [11], [15]] +2.28.11.2=[[0], [2], [28], [11], [2]] +2.28.11.3=[[0], [2], [28], [11], [3]] +2.28.11.4=[[0], [2], [28], [11], [4]] +2.28.11.5=[[0], [2], [28], [11], [5]] +2.28.11.6=[[0], [2], [28], [11], [6]] +2.28.11.7=[[0], [2], [28], [11], [7]] +2.28.11.8=[[0], [2], [28], [11], [8]] +2.28.11.9=[[0], [2], [28], [11], [9]] +2.28.2=[[0], [2], [28], [2]] +2.28.2.1=[[0], [2], [28], [2], [1]] +2.28.2.2=[[0], [2], [28], [2], [2]] +2.28.3=[[0], [2], [28], [3]] +2.28.4=[[0], [2], [28], [4]] +2.28.5=[[0], [2], [28], [5]] +2.28.6=[[0], [2], [28], [6]] +2.28.6.1=[[0], [2], [28], [6], [1]] +2.28.7=[[0], [2], [28], [7]] +2.28.8=[[0], [2], [28], [8]] +2.28.9=[[0], [2], [28], [9]] +2.29=[[0], [2], [29]] +2.29.0=[[0], [2], [29], [0]] +2.29.1=[[0], [2], [29], [1]] +2.29.2=[[0], [2], [29], [2]] +2.294.0=[[0], [2], [294], [0]] +2.295.0=[[0], [2], [295], [0]] +2.296.0=[[0], [2], [296], [0]] +2.296.1=[[0], [2], [296], [1]] +2.296.2=[[0], [2], [296], [2]] +2.297.0=[[0], [2], [297], [0]] +2.298.2=[[0], [2], [298], [2]] +2.299.1=[[0], [2], [299], [1]] +2.2_0=[[0], [2], [2], [0]] +2.2_0.1=[[0], [2], [2], [0], [1]] +2.2_1=[[0], [2], [2], [1]] +2.2_10=[[0], [2], [2], [10]] +2.2_11=[[0], [2], [2], [11]] +2.2_13=[[0], [2], [2], [13]] +2.2_14=[[0], [2], [2], [14]] +2.2_14.2=[[0], [2], [2], [14], [2]] +2.2_16=[[0], [2], [2], [16]] +2.2_17=[[0], [2], [2], [17]] +2.2_18=[[0], [2], [2], [18]] +2.2_18.1=[[0], [2], [2], [18], [1]] +2.2_2=[[0], [2], [2], [2]] +2.2_3=[[0], [2], [2], [3]] +2.2_32=[[0], [2], [2], [32]] +2.2_39=[[0], [2], [2], [39]] +2.2_4=[[0], [2], [2], [4]] +2.2_40=[[0], [2], [2], [40]] +2.2_47=[[0], [2], [2], [47]] +2.2_5=[[0], [2], [2], [5]] +2.2_5.4=[[0], [2], [2], [5], [4]] +2.2_5.6=[[0], [2], [2], [5], [6]] +2.2_5.7=[[0], [2], [2], [5], [7]] +2.2_5.7.1=[[0], [2], [2], [5], [7], [1]] +2.2_54=[[0], [2], [2], [54]] +2.2_6=[[0], [2], [2], [6]] +2.2_7=[[0], [2], [2], [7]] +2.2_8=[[0], [2], [2], [8]] +2.2_9=[[0], [2], [2], [9]] +2.3=[[0], [2], [3]] +2.3.0=[[0], [2], [3], [0]] +2.3.0.0=[[0], [2], [3], [0], [0]] +2.3.0.1=[[0], [2], [3], [0], [1]] +2.3.0.2=[[0], [2], [3], [0], [2]] +2.3.0.post1=[[0], [2], [3], [0], [0, inf, 1]] +2.3.0_b=[[0], [2], [3], [0], [0, 'b']] +2.3.0b0=[[0], [2], [3], [0, 'b', 0]] +2.3.1=[[0], [2], [3], [1]] +2.3.1.post1=[[0], [2], [3], [1], [0, inf, 1]] +2.3.10=[[0], [2], [3], [10]] +2.3.11=[[0], [2], [3], [11]] +2.3.12=[[0], [2], [3], [12]] +2.3.13=[[0], [2], [3], [13]] +2.3.14=[[0], [2], [3], [14]] +2.3.15=[[0], [2], [3], [15]] +2.3.16=[[0], [2], [3], [16]] +2.3.17=[[0], [2], [3], [17]] +2.3.18=[[0], [2], [3], [18]] +2.3.19=[[0], [2], [3], [19]] +2.3.1a1=[[0], [2], [3], [1, 'a', 1]] +2.3.2=[[0], [2], [3], [2]] +2.3.2.0=[[0], [2], [3], [2], [0]] +2.3.2.post1=[[0], [2], [3], [2], [0, inf, 1]] +2.3.20=[[0], [2], [3], [20]] +2.3.21=[[0], [2], [3], [21]] +2.3.22=[[0], [2], [3], [22]] +2.3.24=[[0], [2], [3], [24]] +2.3.25=[[0], [2], [3], [25]] +2.3.26=[[0], [2], [3], [26]] +2.3.27=[[0], [2], [3], [27]] +2.3.28=[[0], [2], [3], [28]] +2.3.29=[[0], [2], [3], [29]] +2.3.2a1=[[0], [2], [3], [2, 'a', 1]] +2.3.3=[[0], [2], [3], [3]] +2.3.3.post0=[[0], [2], [3], [3], [0, inf, 0]] +2.3.4=[[0], [2], [3], [4]] +2.3.4.post1=[[0], [2], [3], [4], [0, inf, 1]] +2.3.4.post2=[[0], [2], [3], [4], [0, inf, 2]] +2.3.4.post3=[[0], [2], [3], [4], [0, inf, 3]] +2.3.4.post4=[[0], [2], [3], [4], [0, inf, 4]] +2.3.5=[[0], [2], [3], [5]] +2.3.5.1=[[0], [2], [3], [5], [1]] +2.3.6=[[0], [2], [3], [6]] +2.3.6.1=[[0], [2], [3], [6], [1]] +2.3.6.2=[[0], [2], [3], [6], [2]] +2.3.7=[[0], [2], [3], [7]] +2.3.7.post0=[[0], [2], [3], [7], [0, inf, 0]] +2.3.7.post1=[[0], [2], [3], [7], [0, inf, 1]] +2.3.7.rc1=[[0], [2], [3], [7], [0, 'rc', 1]] +2.3.8=[[0], [2], [3], [8]] +2.3.9=[[0], [2], [3], [9]] +2.3.b1=[[0], [2], [3], [0, 'b', 1]] +2.3.beta2=[[0], [2], [3], [0, 'beta', 2]] +2.3.post0=[[0], [2], [3], [0, inf, 0]] +2.30=[[0], [2], [30]] +2.30.0=[[0], [2], [30], [0]] +2.30.0.2=[[0], [2], [30], [0], [2]] +2.30.1=[[0], [2], [30], [1]] +2.30.2=[[0], [2], [30], [2]] +2.30.3=[[0], [2], [30], [3]] +2.30.36=[[0], [2], [30], [36]] +2.30.39=[[0], [2], [30], [39]] +2.30.43=[[0], [2], [30], [43]] +2.30.46=[[0], [2], [30], [46]] +2.30.50=[[0], [2], [30], [50]] +2.30.51=[[0], [2], [30], [51]] +2.30.52=[[0], [2], [30], [52]] +2.30.54=[[0], [2], [30], [54]] +2.30.55=[[0], [2], [30], [55]] +2.30.62=[[0], [2], [30], [62]] +2.300.0=[[0], [2], [300], [0]] +2.300.2=[[0], [2], [300], [2]] +2.301.0=[[0], [2], [301], [0]] +2.301.1=[[0], [2], [301], [1]] +2.302.1=[[0], [2], [302], [1]] +2.303.0=[[0], [2], [303], [0]] +2.304.0=[[0], [2], [304], [0]] +2.30_0=[[0], [2], [30], [0]] +2.31=[[0], [2], [31]] +2.31.0=[[0], [2], [31], [0]] +2.31.1=[[0], [2], [31], [1]] +2.31.10=[[0], [2], [31], [10]] +2.31.11=[[0], [2], [31], [11]] +2.31.15=[[0], [2], [31], [15]] +2.31.19=[[0], [2], [31], [19]] +2.31.20=[[0], [2], [31], [20]] +2.31.21=[[0], [2], [31], [21]] +2.31.24=[[0], [2], [31], [24]] +2.31.25=[[0], [2], [31], [25]] +2.31.26=[[0], [2], [31], [26]] +2.31.31=[[0], [2], [31], [31]] +2.31.33=[[0], [2], [31], [33]] +2.31.36=[[0], [2], [31], [36]] +2.31.37=[[0], [2], [31], [37]] +2.31.38=[[0], [2], [31], [38]] +2.31.39=[[0], [2], [31], [39]] +2.31.42=[[0], [2], [31], [42]] +2.31.43=[[0], [2], [31], [43]] +2.31.46=[[0], [2], [31], [46]] +2.31.48=[[0], [2], [31], [48]] +2.31.50=[[0], [2], [31], [50]] +2.31.52=[[0], [2], [31], [52]] +2.31.54=[[0], [2], [31], [54]] +2.31.6=[[0], [2], [31], [6]] +2.32=[[0], [2], [32]] +2.32.0=[[0], [2], [32], [0]] +2.32.1=[[0], [2], [32], [1]] +2.32.10=[[0], [2], [32], [10]] +2.32.11=[[0], [2], [32], [11]] +2.32.2=[[0], [2], [32], [2]] +2.32.3=[[0], [2], [32], [3]] +2.32.5=[[0], [2], [32], [5]] +2.32.6=[[0], [2], [32], [6]] +2.32.8=[[0], [2], [32], [8]] +2.33=[[0], [2], [33]] +2.33.0=[[0], [2], [33], [0]] +2.33.1=[[0], [2], [33], [1]] +2.33.11=[[0], [2], [33], [11]] +2.33.12=[[0], [2], [33], [12]] +2.33.14=[[0], [2], [33], [14]] +2.33.15=[[0], [2], [33], [15]] +2.33.18=[[0], [2], [33], [18]] +2.33.19=[[0], [2], [33], [19]] +2.33.2=[[0], [2], [33], [2]] +2.33.21=[[0], [2], [33], [21]] +2.33.22=[[0], [2], [33], [22]] +2.33.23=[[0], [2], [33], [23]] +2.33.25=[[0], [2], [33], [25]] +2.33.26=[[0], [2], [33], [26]] +2.33.27=[[0], [2], [33], [27]] +2.33.28=[[0], [2], [33], [28]] +2.33.29=[[0], [2], [33], [29]] +2.33.3=[[0], [2], [33], [3]] +2.33.33=[[0], [2], [33], [33]] +2.33.34=[[0], [2], [33], [34]] +2.33.36=[[0], [2], [33], [36]] +2.33.37=[[0], [2], [33], [37]] +2.33.38=[[0], [2], [33], [38]] +2.33.39=[[0], [2], [33], [39]] +2.33.4=[[0], [2], [33], [4]] +2.33.40=[[0], [2], [33], [40]] +2.33.41=[[0], [2], [33], [41]] +2.33.43=[[0], [2], [33], [43]] +2.33.5=[[0], [2], [33], [5]] +2.34=[[0], [2], [34]] +2.34.0=[[0], [2], [34], [0]] +2.34.1=[[0], [2], [34], [1]] +2.34.14=[[0], [2], [34], [14]] +2.34.2=[[0], [2], [34], [2]] +2.34.3=[[0], [2], [34], [3]] +2.34.4=[[0], [2], [34], [4]] +2.34.7=[[0], [2], [34], [7]] +2.34.8=[[0], [2], [34], [8]] +2.34.9=[[0], [2], [34], [9]] +2.35=[[0], [2], [35]] +2.35.0=[[0], [2], [35], [0]] +2.35.1=[[0], [2], [35], [1]] +2.35.10=[[0], [2], [35], [10]] +2.35.13=[[0], [2], [35], [13]] +2.35.14=[[0], [2], [35], [14]] +2.35.15=[[0], [2], [35], [15]] +2.35.17=[[0], [2], [35], [17]] +2.35.18=[[0], [2], [35], [18]] +2.35.2=[[0], [2], [35], [2]] +2.35.21=[[0], [2], [35], [21]] +2.35.23=[[0], [2], [35], [23]] +2.35.24=[[0], [2], [35], [24]] +2.35.26=[[0], [2], [35], [26]] +2.35.28=[[0], [2], [35], [28]] +2.35.3=[[0], [2], [35], [3]] +2.35.32=[[0], [2], [35], [32]] +2.35.33=[[0], [2], [35], [33]] +2.35.34=[[0], [2], [35], [34]] +2.35.36=[[0], [2], [35], [36]] +2.35.39=[[0], [2], [35], [39]] +2.35.4=[[0], [2], [35], [4]] +2.35.40=[[0], [2], [35], [40]] +2.35.41=[[0], [2], [35], [41]] +2.35.42=[[0], [2], [35], [42]] +2.35.44=[[0], [2], [35], [44]] +2.35.47=[[0], [2], [35], [47]] +2.35.49=[[0], [2], [35], [49]] +2.35.5=[[0], [2], [35], [5]] +2.35.6=[[0], [2], [35], [6]] +2.35.7=[[0], [2], [35], [7]] +2.36=[[0], [2], [36]] +2.36.0=[[0], [2], [36], [0]] +2.36.1=[[0], [2], [36], [1]] +2.36.12=[[0], [2], [36], [12]] +2.36.13=[[0], [2], [36], [13]] +2.36.17=[[0], [2], [36], [17]] +2.36.2=[[0], [2], [36], [2]] +2.36.22=[[0], [2], [36], [22]] +2.36.23=[[0], [2], [36], [23]] +2.36.24=[[0], [2], [36], [24]] +2.36.25=[[0], [2], [36], [25]] +2.36.27=[[0], [2], [36], [27]] +2.36.28=[[0], [2], [36], [28]] +2.36.29=[[0], [2], [36], [29]] +2.36.3=[[0], [2], [36], [3]] +2.36.30=[[0], [2], [36], [30]] +2.36.32=[[0], [2], [36], [32]] +2.36.36=[[0], [2], [36], [36]] +2.36.4=[[0], [2], [36], [4]] +2.36.6=[[0], [2], [36], [6]] +2.36.7=[[0], [2], [36], [7]] +2.36.9=[[0], [2], [36], [9]] +2.37=[[0], [2], [37]] +2.37.0=[[0], [2], [37], [0]] +2.37.1=[[0], [2], [37], [1]] +2.37.16=[[0], [2], [37], [16]] +2.37.2=[[0], [2], [37], [2]] +2.37.20=[[0], [2], [37], [20]] +2.37.21=[[0], [2], [37], [21]] +2.37.22=[[0], [2], [37], [22]] +2.37.24=[[0], [2], [37], [24]] +2.37.25=[[0], [2], [37], [25]] +2.37.27=[[0], [2], [37], [27]] +2.37.29=[[0], [2], [37], [29]] +2.37.3=[[0], [2], [37], [3]] +2.37.32=[[0], [2], [37], [32]] +2.37.34=[[0], [2], [37], [34]] +2.37.35=[[0], [2], [37], [35]] +2.37.41=[[0], [2], [37], [41]] +2.37.44=[[0], [2], [37], [44]] +2.37.47=[[0], [2], [37], [47]] +2.37.48=[[0], [2], [37], [48]] +2.37.5=[[0], [2], [37], [5]] +2.37.6=[[0], [2], [37], [6]] +2.37.7=[[0], [2], [37], [7]] +2.38=[[0], [2], [38]] +2.38.0=[[0], [2], [38], [0]] +2.38.1=[[0], [2], [38], [1]] +2.38.13=[[0], [2], [38], [13]] +2.38.14=[[0], [2], [38], [14]] +2.38.15=[[0], [2], [38], [15]] +2.38.17=[[0], [2], [38], [17]] +2.38.19=[[0], [2], [38], [19]] +2.38.2=[[0], [2], [38], [2]] +2.38.20=[[0], [2], [38], [20]] +2.38.21=[[0], [2], [38], [21]] +2.38.24=[[0], [2], [38], [24]] +2.38.26=[[0], [2], [38], [26]] +2.38.27=[[0], [2], [38], [27]] +2.38.29=[[0], [2], [38], [29]] +2.38.30=[[0], [2], [38], [30]] +2.38.33=[[0], [2], [38], [33]] +2.38.34=[[0], [2], [38], [34]] +2.38.37=[[0], [2], [38], [37]] +2.38.38=[[0], [2], [38], [38]] +2.38.40=[[0], [2], [38], [40]] +2.38.42=[[0], [2], [38], [42]] +2.38.8=[[0], [2], [38], [8]] +2.39=[[0], [2], [39]] +2.39.0=[[0], [2], [39], [0]] +2.39.0.post0=[[0], [2], [39], [0], [0, inf, 0]] +2.39.1=[[0], [2], [39], [1]] +2.39.2=[[0], [2], [39], [2]] +2.3_0=[[0], [2], [3], [0]] +2.3_1=[[0], [2], [3], [1]] +2.3_13=[[0], [2], [3], [13]] +2.3_14=[[0], [2], [3], [14]] +2.3_15=[[0], [2], [3], [15]] +2.3_17=[[0], [2], [3], [17]] +2.3_18=[[0], [2], [3], [18]] +2.3_2=[[0], [2], [3], [2]] +2.3_3=[[0], [2], [3], [3]] +2.3_4=[[0], [2], [3], [4]] +2.3_5=[[0], [2], [3], [5]] +2.3_50=[[0], [2], [3], [50]] +2.3_53=[[0], [2], [3], [53]] +2.3_54=[[0], [2], [3], [54]] +2.3_55=[[0], [2], [3], [55]] +2.3_56=[[0], [2], [3], [56]] +2.3_57=[[0], [2], [3], [57]] +2.3_58=[[0], [2], [3], [58]] +2.3_59=[[0], [2], [3], [59]] +2.3_6=[[0], [2], [3], [6]] +2.3_6.1=[[0], [2], [3], [6], [1]] +2.3_60=[[0], [2], [3], [60]] +2.3_61=[[0], [2], [3], [61]] +2.4=[[0], [2], [4]] +2.4.0=[[0], [2], [4], [0]] +2.4.0.0=[[0], [2], [4], [0], [0]] +2.4.0.2=[[0], [2], [4], [0], [2]] +2.4.0.post1=[[0], [2], [4], [0], [0, inf, 1]] +2.4.0.post12=[[0], [2], [4], [0], [0, inf, 12]] +2.4.0.post5=[[0], [2], [4], [0], [0, inf, 5]] +2.4.0.post6=[[0], [2], [4], [0], [0, inf, 6]] +2.4.0.post7=[[0], [2], [4], [0], [0, inf, 7]] +2.4.0.post8=[[0], [2], [4], [0], [0, inf, 8]] +2.4.0.r4736=[[0], [2], [4], [0], [0, 'r', 4736]] +2.4.0.snapshot_2015_02_13=[[0], [2], [4], [0], [0, 'snapshot'], [2015], [2], [13]] +2.4.1=[[0], [2], [4], [1]] +2.4.1.0=[[0], [2], [4], [1], [0]] +2.4.1.1=[[0], [2], [4], [1], [1]] +2.4.1.3=[[0], [2], [4], [1], [3]] +2.4.1.post5=[[0], [2], [4], [1], [0, inf, 5]] +2.4.10=[[0], [2], [4], [10]] +2.4.100=[[0], [2], [4], [100]] +2.4.102=[[0], [2], [4], [102]] +2.4.103=[[0], [2], [4], [103]] +2.4.104=[[0], [2], [4], [104]] +2.4.105=[[0], [2], [4], [105]] +2.4.106=[[0], [2], [4], [106]] +2.4.107=[[0], [2], [4], [107]] +2.4.108=[[0], [2], [4], [108]] +2.4.109=[[0], [2], [4], [109]] +2.4.11=[[0], [2], [4], [11]] +2.4.111=[[0], [2], [4], [111]] +2.4.112=[[0], [2], [4], [112]] +2.4.113=[[0], [2], [4], [113]] +2.4.114=[[0], [2], [4], [114]] +2.4.12=[[0], [2], [4], [12]] +2.4.13=[[0], [2], [4], [13]] +2.4.13.4=[[0], [2], [4], [13], [4]] +2.4.14=[[0], [2], [4], [14]] +2.4.15=[[0], [2], [4], [15]] +2.4.16=[[0], [2], [4], [16]] +2.4.17=[[0], [2], [4], [17]] +2.4.18=[[0], [2], [4], [18]] +2.4.2=[[0], [2], [4], [2]] +2.4.2.post1=[[0], [2], [4], [2], [0, inf, 1]] +2.4.2.post2=[[0], [2], [4], [2], [0, inf, 2]] +2.4.20=[[0], [2], [4], [20]] +2.4.21=[[0], [2], [4], [21]] +2.4.22=[[0], [2], [4], [22]] +2.4.23=[[0], [2], [4], [23]] +2.4.24=[[0], [2], [4], [24]] +2.4.25=[[0], [2], [4], [25]] +2.4.27=[[0], [2], [4], [27]] +2.4.29=[[0], [2], [4], [29]] +2.4.2a0=[[0], [2], [4], [2, 'a', 0]] +2.4.3=[[0], [2], [4], [3]] +2.4.3+10.3=[[0], [2], [4], [3]] +2.4.3+9.6.3=[[0], [2], [4], [3]] +2.4.3+9.6.7=[[0], [2], [4], [3]] +2.4.3+9.6.8=[[0], [2], [4], [3]] +2.4.31=[[0], [2], [4], [31]] +2.4.33=[[0], [2], [4], [33]] +2.4.35=[[0], [2], [4], [35]] +2.4.37=[[0], [2], [4], [37]] +2.4.39=[[0], [2], [4], [39]] +2.4.393442.3710985=[[0], [2], [4], [393442], [3710985]] +2.4.3rc2=[[0], [2], [4], [3, 'rc', 2]] +2.4.4=[[0], [2], [4], [4]] +2.4.4.0=[[0], [2], [4], [4], [0]] +2.4.4.1=[[0], [2], [4], [4], [1]] +2.4.4.2=[[0], [2], [4], [4], [2]] +2.4.404381.4453942=[[0], [2], [4], [404381], [4453942]] +2.4.41=[[0], [2], [4], [41]] +2.4.417127.4579844=[[0], [2], [4], [417127], [4579844]] +2.4.42=[[0], [2], [4], [42]] +2.4.44=[[0], [2], [4], [44]] +2.4.46=[[0], [2], [4], [46]] +2.4.47=[[0], [2], [4], [47]] +2.4.48=[[0], [2], [4], [48]] +2.4.5=[[0], [2], [4], [5]] +2.4.5.0=[[0], [2], [4], [5], [0]] +2.4.5.1=[[0], [2], [4], [5], [1]] +2.4.5.2=[[0], [2], [4], [5], [2]] +2.4.5.3=[[0], [2], [4], [5], [3]] +2.4.5.4=[[0], [2], [4], [5], [4]] +2.4.52=[[0], [2], [4], [52]] +2.4.53=[[0], [2], [4], [53]] +2.4.54=[[0], [2], [4], [54]] +2.4.55=[[0], [2], [4], [55]] +2.4.56=[[0], [2], [4], [56]] +2.4.58=[[0], [2], [4], [58]] +2.4.59=[[0], [2], [4], [59]] +2.4.6=[[0], [2], [4], [6]] +2.4.6.1=[[0], [2], [4], [6], [1]] +2.4.6.2=[[0], [2], [4], [6], [2]] +2.4.6.3=[[0], [2], [4], [6], [3]] +2.4.6.4=[[0], [2], [4], [6], [4]] +2.4.65=[[0], [2], [4], [65]] +2.4.7=[[0], [2], [4], [7]] +2.4.7.1=[[0], [2], [4], [7], [1]] +2.4.8=[[0], [2], [4], [8]] +2.4.8.1=[[0], [2], [4], [8], [1]] +2.4.9=[[0], [2], [4], [9]] +2.4.91=[[0], [2], [4], [91]] +2.4.96=[[0], [2], [4], [96]] +2.4.97=[[0], [2], [4], [97]] +2.4.98=[[0], [2], [4], [98]] +2.4.99=[[0], [2], [4], [99]] +2.4.rc4=[[0], [2], [4], [0, 'rc', 4]] +2.40=[[0], [2], [40]] +2.40.0=[[0], [2], [40], [0]] +2.40.1=[[0], [2], [40], [1]] +2.40.19=[[0], [2], [40], [19]] +2.40.2=[[0], [2], [40], [2]] +2.40.3=[[0], [2], [40], [3]] +2.40_1=[[0], [2], [40], [1]] +2.41=[[0], [2], [41]] +2.41.0=[[0], [2], [41], [0]] +2.42=[[0], [2], [42]] +2.42.0=[[0], [2], [42], [0]] +2.42.1=[[0], [2], [42], [1]] +2.42.10=[[0], [2], [42], [10]] +2.42.2=[[0], [2], [42], [2]] +2.42.3=[[0], [2], [42], [3]] +2.42.4=[[0], [2], [42], [4]] +2.42.6=[[0], [2], [42], [6]] +2.42.8=[[0], [2], [42], [8]] +2.42_6=[[0], [2], [42], [6]] +2.43=[[0], [2], [43]] +2.43.0=[[0], [2], [43], [0]] +2.43_3=[[0], [2], [43], [3]] +2.44=[[0], [2], [44]] +2.44.0=[[0], [2], [44], [0]] +2.44.1=[[0], [2], [44], [1]] +2.44.13=[[0], [2], [44], [13]] +2.44.14=[[0], [2], [44], [14]] +2.44.15=[[0], [2], [44], [15]] +2.44.3=[[0], [2], [44], [3]] +2.44.5=[[0], [2], [44], [5]] +2.44.7=[[0], [2], [44], [7]] +2.44_01=[[0], [2], [44], [1]] +2.44_1.1=[[0], [2], [44], [1], [1]] +2.45=[[0], [2], [45]] +2.45.0=[[0], [2], [45], [0]] +2.45.1=[[0], [2], [45], [1]] +2.46=[[0], [2], [46]] +2.46.0=[[0], [2], [46], [0]] +2.46.1=[[0], [2], [46], [1]] +2.46.2=[[0], [2], [46], [2]] +2.46.3=[[0], [2], [46], [3]] +2.46.4=[[0], [2], [46], [4]] +2.47=[[0], [2], [47]] +2.47.0=[[0], [2], [47], [0]] +2.47.1=[[0], [2], [47], [1]] +2.47.12=[[0], [2], [47], [12]] +2.47.14=[[0], [2], [47], [14]] +2.47.2=[[0], [2], [47], [2]] +2.47.2.post0=[[0], [2], [47], [2], [0, inf, 0]] +2.47.3=[[0], [2], [47], [3]] +2.48=[[0], [2], [48]] +2.48.0=[[0], [2], [48], [0]] +2.48.1=[[0], [2], [48], [1]] +2.48.19205=[[0], [2], [48], [19205]] +2.48.2=[[0], [2], [48], [2]] +2.48.3=[[0], [2], [48], [3]] +2.48.4=[[0], [2], [48], [4]] +2.49=[[0], [2], [49]] +2.49.0=[[0], [2], [49], [0]] +2.49.1=[[0], [2], [49], [1]] +2.49.10=[[0], [2], [49], [10]] +2.49.11=[[0], [2], [49], [11]] +2.49.12=[[0], [2], [49], [12]] +2.49.13=[[0], [2], [49], [13]] +2.49.14=[[0], [2], [49], [14]] +2.49.15=[[0], [2], [49], [15]] +2.49.16=[[0], [2], [49], [16]] +2.49.17=[[0], [2], [49], [17]] +2.49.18=[[0], [2], [49], [18]] +2.49.18.1=[[0], [2], [49], [18], [1]] +2.49.18.2=[[0], [2], [49], [18], [2]] +2.49.18.3=[[0], [2], [49], [18], [3]] +2.49.18.4=[[0], [2], [49], [18], [4]] +2.49.18.5=[[0], [2], [49], [18], [5]] +2.49.18.6=[[0], [2], [49], [18], [6]] +2.49.2=[[0], [2], [49], [2]] +2.49.3=[[0], [2], [49], [3]] +2.49.4=[[0], [2], [49], [4]] +2.49.5=[[0], [2], [49], [5]] +2.49.6=[[0], [2], [49], [6]] +2.49.7=[[0], [2], [49], [7]] +2.49.8=[[0], [2], [49], [8]] +2.49.9=[[0], [2], [49], [9]] +2.4_0=[[0], [2], [4], [0]] +2.4_1=[[0], [2], [4], [1]] +2.4_2=[[0], [2], [4], [2]] +2.4_21=[[0], [2], [4], [21]] +2.4_3=[[0], [2], [4], [3]] +2.4_4=[[0], [2], [4], [4]] +2.4_5=[[0], [2], [4], [5]] +2.4_8=[[0], [2], [4], [8]] +2.5=[[0], [2], [5]] +2.5.0=[[0], [2], [5], [0]] +2.5.0.1=[[0], [2], [5], [0], [1]] +2.5.0.17080.65c939c=[[0], [2], [5], [0], [17080], [65, 'c', 939, 'c']] +2.5.0.2=[[0], [2], [5], [0], [2]] +2.5.0.21=[[0], [2], [5], [0], [21]] +2.5.0.23=[[0], [2], [5], [0], [23]] +2.5.0.3=[[0], [2], [5], [0], [3]] +2.5.0.post1=[[0], [2], [5], [0], [0, inf, 1]] +2.5.0a1=[[0], [2], [5], [0, 'a', 1]] +2.5.0a2=[[0], [2], [5], [0, 'a', 2]] +2.5.0a3=[[0], [2], [5], [0, 'a', 3]] +2.5.0b1=[[0], [2], [5], [0, 'b', 1]] +2.5.1=[[0], [2], [5], [1]] +2.5.1.post0=[[0], [2], [5], [1], [0, inf, 0]] +2.5.10=[[0], [2], [5], [10]] +2.5.11=[[0], [2], [5], [11]] +2.5.12=[[0], [2], [5], [12]] +2.5.13=[[0], [2], [5], [13]] +2.5.14=[[0], [2], [5], [14]] +2.5.15=[[0], [2], [5], [15]] +2.5.16=[[0], [2], [5], [16]] +2.5.17=[[0], [2], [5], [17]] +2.5.17.0=[[0], [2], [5], [17], [0]] +2.5.18=[[0], [2], [5], [18]] +2.5.2=[[0], [2], [5], [2]] +2.5.20=[[0], [2], [5], [20]] +2.5.21=[[0], [2], [5], [21]] +2.5.22=[[0], [2], [5], [22]] +2.5.25=[[0], [2], [5], [25]] +2.5.3=[[0], [2], [5], [3]] +2.5.39=[[0], [2], [5], [39]] +2.5.4=[[0], [2], [5], [4]] +2.5.5=[[0], [2], [5], [5]] +2.5.6=[[0], [2], [5], [6]] +2.5.6.1=[[0], [2], [5], [6], [1]] +2.5.7=[[0], [2], [5], [7]] +2.5.7.1=[[0], [2], [5], [7], [1]] +2.5.8=[[0], [2], [5], [8]] +2.5.9=[[0], [2], [5], [9]] +2.50=[[0], [2], [50]] +2.50.0=[[0], [2], [50], [0]] +2.50.1=[[0], [2], [50], [1]] +2.50.2=[[0], [2], [50], [2]] +2.50.3=[[0], [2], [50], [3]] +2.50.4=[[0], [2], [50], [4]] +2.50.5=[[0], [2], [50], [5]] +2.50.7=[[0], [2], [50], [7]] +2.51=[[0], [2], [51]] +2.51.0=[[0], [2], [51], [0]] +2.51.4=[[0], [2], [51], [4]] +2.52=[[0], [2], [52]] +2.52.0=[[0], [2], [52], [0]] +2.52.1=[[0], [2], [52], [1]] +2.52.2=[[0], [2], [52], [2]] +2.52.3=[[0], [2], [52], [3]] +2.52.4=[[0], [2], [52], [4]] +2.52.5=[[0], [2], [52], [5]] +2.53=[[0], [2], [53]] +2.53.0=[[0], [2], [53], [0]] +2.53.1=[[0], [2], [53], [1]] +2.53.5=[[0], [2], [53], [5]] +2.54=[[0], [2], [54]] +2.54.0=[[0], [2], [54], [0]] +2.54.1=[[0], [2], [54], [1]] +2.54.3=[[0], [2], [54], [3]] +2.54.4=[[0], [2], [54], [4]] +2.55=[[0], [2], [55]] +2.55.0=[[0], [2], [55], [0]] +2.56.0=[[0], [2], [56], [0]] +2.56.1=[[0], [2], [56], [1]] +2.56.2=[[0], [2], [56], [2]] +2.57.0=[[0], [2], [57], [0]] +2.58=[[0], [2], [58]] +2.58.0=[[0], [2], [58], [0]] +2.58.1=[[0], [2], [58], [1]] +2.58.2=[[0], [2], [58], [2]] +2.58.3=[[0], [2], [58], [3]] +2.59.0=[[0], [2], [59], [0]] +2.59.1=[[0], [2], [59], [1]] +2.59.4=[[0], [2], [59], [4]] +2.5_0=[[0], [2], [5], [0]] +2.5_1=[[0], [2], [5], [1]] +2.5_2=[[0], [2], [5], [2]] +2.5_3=[[0], [2], [5], [3]] +2.5_4=[[0], [2], [5], [4]] +2.5_5=[[0], [2], [5], [5]] +2.5_6=[[0], [2], [5], [6]] +2.5_7=[[0], [2], [5], [7]] +2.5_8=[[0], [2], [5], [8]] +2.6=[[0], [2], [6]] +2.6.0=[[0], [2], [6], [0]] +2.6.0.1=[[0], [2], [6], [0], [1]] +2.6.0.10=[[0], [2], [6], [0], [10]] +2.6.0.13=[[0], [2], [6], [0], [13]] +2.6.0.2=[[0], [2], [6], [0], [2]] +2.6.0.3=[[0], [2], [6], [0], [3]] +2.6.0.4=[[0], [2], [6], [0], [4]] +2.6.0.5=[[0], [2], [6], [0], [5]] +2.6.0.6=[[0], [2], [6], [0], [6]] +2.6.0.7=[[0], [2], [6], [0], [7]] +2.6.0.8=[[0], [2], [6], [0], [8]] +2.6.0.9=[[0], [2], [6], [0], [9]] +2.6.5=[[0], [2], [6], [5]] +2.6.1=[[0], [2], [6], [1]] +2.6.1.post1=[[0], [2], [6], [1], [0, inf, 1]] +2.6.10=[[0], [2], [6], [10]] +2.6.11=[[0], [2], [6], [11]] +2.6.12=[[0], [2], [6], [12]] +2.6.13=[[0], [2], [6], [13]] +2.6.14=[[0], [2], [6], [14]] +2.6.15=[[0], [2], [6], [15]] +2.6.16=[[0], [2], [6], [16]] +2.6.17=[[0], [2], [6], [17]] +2.6.18=[[0], [2], [6], [18]] +2.6.2=[[0], [2], [6], [2]] +2.6.2.post1=[[0], [2], [6], [2], [0, inf, 1]] +2.6.3=[[0], [2], [6], [3]] +2.6.32=[[0], [2], [6], [32]] +2.6.4=[[0], [2], [6], [4]] +2.6.4.1=[[0], [2], [6], [4], [1]] +2.6.4.2=[[0], [2], [6], [4], [2]] +2.6.4.3=[[0], [2], [6], [4], [3]] +2.6.4.4=[[0], [2], [6], [4], [4]] +2.6.5=[[0], [2], [6], [5]] +2.6.6=[[0], [2], [6], [6]] +2.6.7=[[0], [2], [6], [7]] +2.6.8=[[0], [2], [6], [8]] +2.6.9=[[0], [2], [6], [9]] +2.60=[[0], [2], [60]] +2.60.0=[[0], [2], [60], [0]] +2.61=[[0], [2], [61]] +2.61.0=[[0], [2], [61], [0]] +2.62=[[0], [2], [62]] +2.62.0=[[0], [2], [62], [0]] +2.62.1=[[0], [2], [62], [1]] +2.62.2=[[0], [2], [62], [2]] +2.63=[[0], [2], [63]] +2.63.0=[[0], [2], [63], [0]] +2.63.2=[[0], [2], [63], [2]] +2.63.3=[[0], [2], [63], [3]] +2.64=[[0], [2], [64]] +2.64.0=[[0], [2], [64], [0]] +2.64.1=[[0], [2], [64], [1]] +2.64.2=[[0], [2], [64], [2]] +2.64.3=[[0], [2], [64], [3]] +2.64.6=[[0], [2], [64], [6]] +2.65=[[0], [2], [65]] +2.65.0=[[0], [2], [65], [0]] +2.65.1=[[0], [2], [65], [1]] +2.66=[[0], [2], [66]] +2.66.0=[[0], [2], [66], [0]] +2.66.1=[[0], [2], [66], [1]] +2.66.2=[[0], [2], [66], [2]] +2.66.3=[[0], [2], [66], [3]] +2.66.4=[[0], [2], [66], [4]] +2.66.5=[[0], [2], [66], [5]] +2.66.6=[[0], [2], [66], [6]] +2.66.7=[[0], [2], [66], [7]] +2.67=[[0], [2], [67]] +2.67.0=[[0], [2], [67], [0]] +2.68=[[0], [2], [68]] +2.68.0=[[0], [2], [68], [0]] +2.68.0.50=[[0], [2], [68], [0], [50]] +2.68.1=[[0], [2], [68], [1]] +2.68.2=[[0], [2], [68], [2]] +2.68.3=[[0], [2], [68], [3]] +2.68.4=[[0], [2], [68], [4]] +2.69=[[0], [2], [69]] +2.69.0=[[0], [2], [69], [0]] +2.69.1=[[0], [2], [69], [1]] +2.6_0=[[0], [2], [6], [0]] +2.6_1=[[0], [2], [6], [1]] +2.6_10=[[0], [2], [6], [10]] +2.6_2=[[0], [2], [6], [2]] +2.6_4=[[0], [2], [6], [4]] +2.6_5=[[0], [2], [6], [5]] +2.6_7=[[0], [2], [6], [7]] +2.6_8=[[0], [2], [6], [8]] +2.6_9=[[0], [2], [6], [9]] +2.6a1=[[0], [2], [6, 'a', 1]] +2.6a2=[[0], [2], [6, 'a', 2]] +2.6a4=[[0], [2], [6, 'a', 4]] +2.6r7=[[0], [2], [6, 'r', 7]] +2.7=[[0], [2], [7]] +2.7.0=[[0], [2], [7], [0]] +2.7.0.rc=[[0], [2], [7], [0], [0, 'rc']] +2.7.1=[[0], [2], [7], [1]] +2.7.1.1=[[0], [2], [7], [1], [1]] +2.7.10=[[0], [2], [7], [10]] +2.7.11=[[0], [2], [7], [11]] +2.7.12=[[0], [2], [7], [12]] +2.7.13=[[0], [2], [7], [13]] +2.7.14=[[0], [2], [7], [14]] +2.7.15=[[0], [2], [7], [15]] +2.7.16=[[0], [2], [7], [16]] +2.7.17=[[0], [2], [7], [17]] +2.7.18=[[0], [2], [7], [18]] +2.7.19=[[0], [2], [7], [19]] +2.7.2=[[0], [2], [7], [2]] +2.7.20=[[0], [2], [7], [20]] +2.7.20180809223002=[[0], [2], [7], [20180809223002]] +2.7.21=[[0], [2], [7], [21]] +2.7.22=[[0], [2], [7], [22]] +2.7.23=[[0], [2], [7], [23]] +2.7.24=[[0], [2], [7], [24]] +2.7.25=[[0], [2], [7], [25]] +2.7.26=[[0], [2], [7], [26]] +2.7.27=[[0], [2], [7], [27]] +2.7.29=[[0], [2], [7], [29]] +2.7.3=[[0], [2], [7], [3]] +2.7.3.1=[[0], [2], [7], [3], [1]] +2.7.3.2=[[0], [2], [7], [3], [2]] +2.7.32=[[0], [2], [7], [32]] +2.7.4=[[0], [2], [7], [4]] +2.7.5=[[0], [2], [7], [5]] +2.7.5.1=[[0], [2], [7], [5], [1]] +2.7.5.2=[[0], [2], [7], [5], [2]] +2.7.5.3=[[0], [2], [7], [5], [3]] +2.7.5.4=[[0], [2], [7], [5], [4]] +2.7.6=[[0], [2], [7], [6]] +2.7.6.1=[[0], [2], [7], [6], [1]] +2.7.7=[[0], [2], [7], [7]] +2.7.7.2=[[0], [2], [7], [7], [2]] +2.7.8=[[0], [2], [7], [8]] +2.7.8.1=[[0], [2], [7], [8], [1]] +2.7.9=[[0], [2], [7], [9]] +2.7.dev2=[[0], [2], [7], [0, 'DEV', 2]] +2.7.dev3=[[0], [2], [7], [0, 'DEV', 3]] +2.7.dev5=[[0], [2], [7], [0, 'DEV', 5]] +2.7.dev6=[[0], [2], [7], [0, 'DEV', 6]] +2.7.dev7=[[0], [2], [7], [0, 'DEV', 7]] +2.7.dev8=[[0], [2], [7], [0, 'DEV', 8]] +2.70=[[0], [2], [70]] +2.70.0=[[0], [2], [70], [0]] +2.70.1=[[0], [2], [70], [1]] +2.70.2=[[0], [2], [70], [2]] +2.70.3=[[0], [2], [70], [3]] +2.71=[[0], [2], [71]] +2.71.0=[[0], [2], [71], [0]] +2.71.1=[[0], [2], [71], [1]] +2.72=[[0], [2], [72]] +2.72.0=[[0], [2], [72], [0]] +2.72.1=[[0], [2], [72], [1]] +2.72.1.53=[[0], [2], [72], [1], [53]] +2.72.2=[[0], [2], [72], [2]] +2.72.3=[[0], [2], [72], [3]] +2.73=[[0], [2], [73]] +2.73.0=[[0], [2], [73], [0]] +2.74.0=[[0], [2], [74], [0]] +2.74.1=[[0], [2], [74], [1]] +2.74.2=[[0], [2], [74], [2]] +2.75.0=[[0], [2], [75], [0]] +2.75.1=[[0], [2], [75], [1]] +2.75.3=[[0], [2], [75], [3]] +2.76.0=[[0], [2], [76], [0]] +2.76.1=[[0], [2], [76], [1]] +2.76.2=[[0], [2], [76], [2]] +2.76.3=[[0], [2], [76], [3]] +2.77.0=[[0], [2], [77], [0]] +2.77.1=[[0], [2], [77], [1]] +2.78.0=[[0], [2], [78], [0]] +2.79=[[0], [2], [79]] +2.79.0=[[0], [2], [79], [0]] +2.79.1=[[0], [2], [79], [1]] +2.7_0=[[0], [2], [7], [0]] +2.7_1=[[0], [2], [7], [1]] +2.7_2=[[0], [2], [7], [2]] +2.7_3=[[0], [2], [7], [3]] +2.7_4=[[0], [2], [7], [4]] +2.7_5=[[0], [2], [7], [5]] +2.7_6=[[0], [2], [7], [6]] +2.8=[[0], [2], [8]] +2.8.0=[[0], [2], [8], [0]] +2.8.0.1=[[0], [2], [8], [0], [1]] +2.8.0.2=[[0], [2], [8], [0], [2]] +2.8.0.3=[[0], [2], [8], [0], [3]] +2.8.0.4=[[0], [2], [8], [0], [4]] +2.8.0.5=[[0], [2], [8], [0], [5]] +2.8.0.post2=[[0], [2], [8], [0], [0, inf, 2]] +2.8.1=[[0], [2], [8], [1]] +2.8.1.1=[[0], [2], [8], [1], [1]] +2.8.10=[[0], [2], [8], [10]] +2.8.101=[[0], [2], [8], [101]] +2.8.102=[[0], [2], [8], [102]] +2.8.103=[[0], [2], [8], [103]] +2.8.104=[[0], [2], [8], [104]] +2.8.105=[[0], [2], [8], [105]] +2.8.106=[[0], [2], [8], [106]] +2.8.108=[[0], [2], [8], [108]] +2.8.109=[[0], [2], [8], [109]] +2.8.11=[[0], [2], [8], [11]] +2.8.110=[[0], [2], [8], [110]] +2.8.117=[[0], [2], [8], [117]] +2.8.118=[[0], [2], [8], [118]] +2.8.119=[[0], [2], [8], [119]] +2.8.12=[[0], [2], [8], [12]] +2.8.120=[[0], [2], [8], [120]] +2.8.121=[[0], [2], [8], [121]] +2.8.122=[[0], [2], [8], [122]] +2.8.123=[[0], [2], [8], [123]] +2.8.13=[[0], [2], [8], [13]] +2.8.14=[[0], [2], [8], [14]] +2.8.15=[[0], [2], [8], [15]] +2.8.16=[[0], [2], [8], [16]] +2.8.17=[[0], [2], [8], [17]] +2.8.18=[[0], [2], [8], [18]] +2.8.19=[[0], [2], [8], [19]] +2.8.19.1=[[0], [2], [8], [19], [1]] +2.8.19.10=[[0], [2], [8], [19], [10]] +2.8.19.2=[[0], [2], [8], [19], [2]] +2.8.19.3=[[0], [2], [8], [19], [3]] +2.8.19.4=[[0], [2], [8], [19], [4]] +2.8.19.5=[[0], [2], [8], [19], [5]] +2.8.19.6=[[0], [2], [8], [19], [6]] +2.8.19.7=[[0], [2], [8], [19], [7]] +2.8.19.8=[[0], [2], [8], [19], [8]] +2.8.19.9=[[0], [2], [8], [19], [9]] +2.8.2=[[0], [2], [8], [2]] +2.8.2.post0=[[0], [2], [8], [2], [0, inf, 0]] +2.8.20=[[0], [2], [8], [20]] +2.8.21=[[0], [2], [8], [21]] +2.8.23=[[0], [2], [8], [23]] +2.8.29=[[0], [2], [8], [29]] +2.8.3=[[0], [2], [8], [3]] +2.8.3.1=[[0], [2], [8], [3], [1]] +2.8.30=[[0], [2], [8], [30]] +2.8.31=[[0], [2], [8], [31]] +2.8.32=[[0], [2], [8], [32]] +2.8.33=[[0], [2], [8], [33]] +2.8.34=[[0], [2], [8], [34]] +2.8.35=[[0], [2], [8], [35]] +2.8.36=[[0], [2], [8], [36]] +2.8.4=[[0], [2], [8], [4]] +2.8.4.1=[[0], [2], [8], [4], [1]] +2.8.40=[[0], [2], [8], [40]] +2.8.5=[[0], [2], [8], [5]] +2.8.6=[[0], [2], [8], [6]] +2.8.6.post0=[[0], [2], [8], [6], [0, inf, 0]] +2.8.6.post1=[[0], [2], [8], [6], [0, inf, 1]] +2.8.6.post2=[[0], [2], [8], [6], [0, inf, 2]] +2.8.7=[[0], [2], [8], [7]] +2.8.78=[[0], [2], [8], [78]] +2.8.8=[[0], [2], [8], [8]] +2.8.82=[[0], [2], [8], [82]] +2.8.83=[[0], [2], [8], [83]] +2.8.85=[[0], [2], [8], [85]] +2.8.86=[[0], [2], [8], [86]] +2.8.87=[[0], [2], [8], [87]] +2.8.88=[[0], [2], [8], [88]] +2.8.89=[[0], [2], [8], [89]] +2.8.9=[[0], [2], [8], [9]] +2.8.9.1=[[0], [2], [8], [9], [1]] +2.8.91=[[0], [2], [8], [91]] +2.8.92=[[0], [2], [8], [92]] +2.8.93=[[0], [2], [8], [93]] +2.8.96=[[0], [2], [8], [96]] +2.8.97=[[0], [2], [8], [97]] +2.8.98=[[0], [2], [8], [98]] +2.8.99=[[0], [2], [8], [99]] +2.80.0=[[0], [2], [80], [0]] +2.80.1=[[0], [2], [80], [1]] +2.81.0=[[0], [2], [81], [0]] +2.81.1=[[0], [2], [81], [1]] +2.82.0=[[0], [2], [82], [0]] +2.82.1=[[0], [2], [82], [1]] +2.82.2=[[0], [2], [82], [2]] +2.83.0=[[0], [2], [83], [0]] +2.83.1=[[0], [2], [83], [1]] +2.84=[[0], [2], [84]] +2.84.0=[[0], [2], [84], [0]] +2.85.0=[[0], [2], [85], [0]] +2.86=[[0], [2], [86]] +2.86.0=[[0], [2], [86], [0]] +2.86.1=[[0], [2], [86], [1]] +2.86.2=[[0], [2], [86], [2]] +2.87=[[0], [2], [87]] +2.87.0=[[0], [2], [87], [0]] +2.88=[[0], [2], [88]] +2.88.0=[[0], [2], [88], [0]] +2.88.1=[[0], [2], [88], [1]] +2.88.1.73=[[0], [2], [88], [1], [73]] +2.88.2=[[0], [2], [88], [2]] +2.88.3=[[0], [2], [88], [3]] +2.89=[[0], [2], [89]] +2.89.0=[[0], [2], [89], [0]] +2.8_0=[[0], [2], [8], [0]] +2.8_1=[[0], [2], [8], [1]] +2.8_19=[[0], [2], [8], [19]] +2.8_3=[[0], [2], [8], [3]] +2.8_4=[[0], [2], [8], [4]] +2.8_5=[[0], [2], [8], [5]] +2.8_5.1=[[0], [2], [8], [5], [1]] +2.8_6=[[0], [2], [8], [6]] +2.8_7=[[0], [2], [8], [7]] +2.8_7.1=[[0], [2], [8], [7], [1]] +2.8_8=[[0], [2], [8], [8]] +2.9=[[0], [2], [9]] +2.9.0=[[0], [2], [9], [0]] +2.9.1=[[0], [2], [9], [1]] +2.9.1.1=[[0], [2], [9], [1], [1]] +2.9.10=[[0], [2], [9], [10]] +2.9.11=[[0], [2], [9], [11]] +2.9.12=[[0], [2], [9], [12]] +2.9.13=[[0], [2], [9], [13]] +2.9.14=[[0], [2], [9], [14]] +2.9.15=[[0], [2], [9], [15]] +2.9.16=[[0], [2], [9], [16]] +2.9.17=[[0], [2], [9], [17]] +2.9.18=[[0], [2], [9], [18]] +2.9.19=[[0], [2], [9], [19]] +2.9.2=[[0], [2], [9], [2]] +2.9.2.0.1=[[0], [2], [9], [2], [0], [1]] +2.9.2.0.2=[[0], [2], [9], [2], [0], [2]] +2.9.2.1=[[0], [2], [9], [2], [1]] +2.9.2.1.1=[[0], [2], [9], [2], [1], [1]] +2.9.2.1.2=[[0], [2], [9], [2], [1], [2]] +2.9.20=[[0], [2], [9], [20]] +2.9.20rc2=[[0], [2], [9], [20, 'rc', 2]] +2.9.21=[[0], [2], [9], [21]] +2.9.21.1=[[0], [2], [9], [21], [1]] +2.9.21.2=[[0], [2], [9], [21], [2]] +2.9.21.4=[[0], [2], [9], [21], [4]] +2.9.21.5=[[0], [2], [9], [21], [5]] +2.9.21.6=[[0], [2], [9], [21], [6]] +2.9.21.7=[[0], [2], [9], [21], [7]] +2.9.21.8=[[0], [2], [9], [21], [8]] +2.9.22=[[0], [2], [9], [22]] +2.9.3=[[0], [2], [9], [3]] +2.9.4=[[0], [2], [9], [4]] +2.9.41=[[0], [2], [9], [41]] +2.9.42=[[0], [2], [9], [42]] +2.9.43=[[0], [2], [9], [43]] +2.9.44=[[0], [2], [9], [44]] +2.9.45=[[0], [2], [9], [45]] +2.9.5=[[0], [2], [9], [5]] +2.9.5857=[[0], [2], [9], [5857]] +2.9.5987=[[0], [2], [9], [5987]] +2.9.6=[[0], [2], [9], [6]] +2.9.6.1=[[0], [2], [9], [6], [1]] +2.9.6621=[[0], [2], [9], [6621]] +2.9.6753=[[0], [2], [9], [6753]] +2.9.7=[[0], [2], [9], [7]] +2.9.7.1=[[0], [2], [9], [7], [1]] +2.9.8=[[0], [2], [9], [8]] +2.9.8.1=[[0], [2], [9], [8], [1]] +2.9.9=[[0], [2], [9], [9]] +2.9.9.1=[[0], [2], [9], [9], [1]] +2.90.0=[[0], [2], [90], [0]] +2.90.1=[[0], [2], [90], [1]] +2.90.2=[[0], [2], [90], [2]] +2.90.3=[[0], [2], [90], [3]] +2.90.4=[[0], [2], [90], [4]] +2.91.0=[[0], [2], [91], [0]] +2.91.1=[[0], [2], [91], [1]] +2.92.0=[[0], [2], [92], [0]] +2.92.1=[[0], [2], [92], [1]] +2.92.2=[[0], [2], [92], [2]] +2.93.0=[[0], [2], [93], [0]] +2.93.1=[[0], [2], [93], [1]] +2.94.0=[[0], [2], [94], [0]] +2.95.0=[[0], [2], [95], [0]] +2.96=[[0], [2], [96]] +2.96.0=[[0], [2], [96], [0]] +2.96.1=[[0], [2], [96], [1]] +2.97=[[0], [2], [97]] +2.97.0=[[0], [2], [97], [0]] +2.98.0=[[0], [2], [98], [0]] +2.99.0=[[0], [2], [99], [0]] +2.9_0=[[0], [2], [9], [0]] +2.9_1=[[0], [2], [9], [1]] +2.9_2=[[0], [2], [9], [2]] +2.9_2.1=[[0], [2], [9], [2], [1]] +2.9_3=[[0], [2], [9], [3]] +2.9_4=[[0], [2], [9], [4]] +2.9_5=[[0], [2], [9], [5]] +2.9_6=[[0], [2], [9], [6]] +2.9_7=[[0], [2], [9], [7]] +20=[[0], [20]] +20.0=[[0], [20], [0]] +20.0.0=[[0], [20], [0], [0]] +20.0.0.post0=[[0], [20], [0], [0], [0, inf, 0]] +20.0.1=[[0], [20], [0], [1]] +20.0.1.post0=[[0], [20], [0], [1], [0, inf, 0]] +20.0.1.post1=[[0], [20], [0], [1], [0, inf, 1]] +20.0.1.post2=[[0], [20], [0], [1], [0, inf, 2]] +20.0.2=[[0], [20], [0], [2]] +20.0.20=[[0], [20], [0], [20]] +20.0.3=[[0], [20], [0], [3]] +20.0.33=[[0], [20], [0], [33]] +20.0.34=[[0], [20], [0], [34]] +20.0.35=[[0], [20], [0], [35]] +20.0.4=[[0], [20], [0], [4]] +20.0.5=[[0], [20], [0], [5]] +20.0.6=[[0], [20], [0], [6]] +20.0.7=[[0], [20], [0], [7]] +20.0.8=[[0], [20], [0], [8]] +20.0.9=[[0], [20], [0], [9]] +20.01.0=[[0], [20], [1], [0]] +20.010=[[0], [20], [10]] +20.02.15268=[[0], [20], [2], [15268]] +20.03=[[0], [20], [3]] +20.04.1=[[0], [20], [4], [1]] +20.07.1=[[0], [20], [7], [1]] +20.07.15711=[[0], [20], [7], [15711]] +20.08.15750=[[0], [20], [8], [15750]] +20.09.0=[[0], [20], [9], [0]] +20.09.15980=[[0], [20], [9], [15980]] +20.1=[[0], [20], [1]] +20.1.0=[[0], [20], [1], [0]] +20.1.1=[[0], [20], [1], [1]] +20.1.2=[[0], [20], [1], [2]] +20.1.3=[[0], [20], [1], [3]] +20.1.4=[[0], [20], [1], [4]] +20.1.5=[[0], [20], [1], [5]] +20.10=[[0], [20], [10]] +20.10.0=[[0], [20], [10], [0]] +20.10.08=[[0], [20], [10], [8]] +20.10.18=[[0], [20], [10], [18]] +20.10.29=[[0], [20], [10], [29]] +20.10.8=[[0], [20], [10], [8]] +20.10.9=[[0], [20], [10], [9]] +20.11=[[0], [20], [11]] +20.11.0=[[0], [20], [11], [0]] +20.11.1=[[0], [20], [11], [1]] +20.11.16158=[[0], [20], [11], [16158]] +20.11.2=[[0], [20], [11], [2]] +20.12=[[0], [20], [12]] +20.12.0=[[0], [20], [12], [0]] +20.12.1=[[0], [20], [12], [1]] +20.12.2=[[0], [20], [12], [2]] +20.12.3=[[0], [20], [12], [3]] +20.13=[[0], [20], [13]] +20.13.0=[[0], [20], [13], [0]] +20.13.1=[[0], [20], [13], [1]] +20.13.2=[[0], [20], [13], [2]] +20.13.3=[[0], [20], [13], [3]] +20.13.4=[[0], [20], [13], [4]] +20.14=[[0], [20], [14]] +20.14.0=[[0], [20], [14], [0]] +20.14.1=[[0], [20], [14], [1]] +20.15=[[0], [20], [15]] +20.15.0=[[0], [20], [15], [0]] +20.15.1=[[0], [20], [15], [1]] +20.16.0=[[0], [20], [16], [0]] +20.16.1=[[0], [20], [16], [1]] +20.16.2=[[0], [20], [16], [2]] +20.16.3=[[0], [20], [16], [3]] +20.16.4=[[0], [20], [16], [4]] +20.16.5=[[0], [20], [16], [5]] +20.16.6=[[0], [20], [16], [6]] +20.16.7=[[0], [20], [16], [7]] +20.17.0=[[0], [20], [17], [0]] +20.17.1=[[0], [20], [17], [1]] +20.18.0=[[0], [20], [18], [0]] +20.19.0=[[0], [20], [19], [0]] +20.2=[[0], [20], [2]] +20.2.0=[[0], [20], [2], [0]] +20.2.1=[[0], [20], [2], [1]] +20.2.2=[[0], [20], [2], [2]] +20.2.3=[[0], [20], [2], [3]] +20.2.4=[[0], [20], [2], [4]] +20.20.0=[[0], [20], [20], [0]] +20.3=[[0], [20], [3]] +20.3.0=[[0], [20], [3], [0]] +20.3.1=[[0], [20], [3], [1]] +20.3.2=[[0], [20], [3], [2]] +20.3.3=[[0], [20], [3], [3]] +20.3.4=[[0], [20], [3], [4]] +20.36.0=[[0], [20], [36], [0]] +20.37.0=[[0], [20], [37], [0]] +20.38.0=[[0], [20], [38], [0]] +20.39.0=[[0], [20], [39], [0]] +20.4=[[0], [20], [4]] +20.4.0=[[0], [20], [4], [0]] +20.4.1=[[0], [20], [4], [1]] +20.4.2=[[0], [20], [4], [2]] +20.4.24=[[0], [20], [4], [24]] +20.4.3=[[0], [20], [4], [3]] +20.4.4=[[0], [20], [4], [4]] +20.4.5=[[0], [20], [4], [5]] +20.4.6=[[0], [20], [4], [6]] +20.4.7=[[0], [20], [4], [7]] +20.40.0=[[0], [20], [40], [0]] +20.41.0=[[0], [20], [41], [0]] +20.42.0=[[0], [20], [42], [0]] +20.43.0=[[0], [20], [43], [0]] +20.44.0=[[0], [20], [44], [0]] +20.5=[[0], [20], [5]] +20.5.0=[[0], [20], [5], [0]] +20.5.1=[[0], [20], [5], [1]] +20.5.2=[[0], [20], [5], [2]] +20.6=[[0], [20], [6]] +20.6.0=[[0], [20], [6], [0]] +20.6.1=[[0], [20], [6], [1]] +20.6.2=[[0], [20], [6], [2]] +20.6.3=[[0], [20], [6], [3]] +20.7=[[0], [20], [7]] +20.7.0=[[0], [20], [7], [0]] +20.7.1=[[0], [20], [7], [1]] +20.7.3=[[0], [20], [7], [3]] +20.8=[[0], [20], [8]] +20.8.0=[[0], [20], [8], [0]] +20.8.1=[[0], [20], [8], [1]] +20.8b1=[[0], [20], [8, 'b', 1]] +20.9=[[0], [20], [9]] +20.9.0=[[0], [20], [9], [0]] +20.9.1=[[0], [20], [9], [1]] +200=[[0], [200]] +20070912=[[0], [20070912]] +201=[[0], [201]] +2010.002=[[0], [2010], [2]] +201008=[[0], [201008]] +20120220=[[0], [20120220]] +20120904=[[0], [20120904]] +20121119=[[0], [20121119]] +2013=[[0], [2013]] +2013.03.29=[[0], [2013], [3], [29]] +2013.03.29.1=[[0], [2013], [3], [29], [1]] +2013.523=[[0], [2013], [523]] +2013.8.7=[[0], [2013], [8], [7]] +2013.9.3=[[0], [2013], [9], [3]] +2013.9_1=[[0], [2013], [9], [1]] +20131217=[[0], [20131217]] +20131218=[[0], [20131218]] +2013_2.21=[[0], [2013], [2], [21]] +2014.10_1=[[0], [2014], [10], [1]] +2014.11_1=[[0], [2014], [11], [1]] +20140328=[[0], [20140328]] +20140424=[[0], [20140424]] +20140630=[[0], [20140630]] +20140910.003=[[0], [20140910], [3]] +20140914=[[0], [20140914]] +2015.12_1.1=[[0], [2015], [12], [1], [1]] +2015.2=[[0], [2015], [2]] +2015.2.1=[[0], [2015], [2], [1]] +2015.3_1=[[0], [2015], [3], [1]] +2015.8.7=[[0], [2015], [8], [7]] +2015.e=[[0], [2015], [0, 'e']] +20150426=[[0], [20150426]] +20150526=[[0], [20150526]] +20150908=[[0], [20150908]] +20151101.12.0=[[0], [20151101], [12], [0]] +20151101.14.0=[[0], [20151101], [14], [0]] +20151101.16.0=[[0], [20151101], [16], [0]] +20151101.18.0=[[0], [20151101], [18], [0]] +20151101.19.0=[[0], [20151101], [19], [0]] +20151101.20.0=[[0], [20151101], [20], [0]] +20151101.22.0=[[0], [20151101], [22], [0]] +20151101.24.0=[[0], [20151101], [24], [0]] +20151101.27.0=[[0], [20151101], [27], [0]] +2016.03.31=[[0], [2016], [3], [31]] +2016.04=[[0], [2016], [4]] +2016.04.25=[[0], [2016], [4], [25]] +2016.5.15=[[0], [2016], [5], [15]] +2016.06.19=[[0], [2016], [6], [19]] +2016.06.23=[[0], [2016], [6], [23]] +2016.06.24=[[0], [2016], [6], [24]] +2016.07.21=[[0], [2016], [7], [21]] +2016.08.27=[[0], [2016], [8], [27]] +2016.09.22=[[0], [2016], [9], [22]] +2016.1=[[0], [2016], [1]] +2016.1.0=[[0], [2016], [1], [0]] +2016.1.2=[[0], [2016], [1], [2]] +2016.1.3=[[0], [2016], [1], [3]] +2016.10=[[0], [2016], [10]] +2016.10.12=[[0], [2016], [10], [12]] +2016.10.22=[[0], [2016], [10], [22]] +2016.10.25=[[0], [2016], [10], [25]] +2016.11.01=[[0], [2016], [11], [1]] +2016.11.18=[[0], [2016], [11], [18]] +2016.12.27=[[0], [2016], [12], [27]] +2016.2=[[0], [2016], [2]] +2016.2.0=[[0], [2016], [2], [0]] +2016.2.1=[[0], [2016], [2], [1]] +2016.2.2=[[0], [2016], [2], [2]] +2016.2.28=[[0], [2016], [2], [28]] +2016.2.3=[[0], [2016], [2], [3]] +2016.2.4=[[0], [2016], [2], [4]] +2016.2.5=[[0], [2016], [2], [5]] +2016.2.6=[[0], [2016], [2], [6]] +2016.3=[[0], [2016], [3]] +2016.3.0=[[0], [2016], [3], [0]] +2016.3.28=[[0], [2016], [3], [28]] +2016.4=[[0], [2016], [4]] +2016.6.1=[[0], [2016], [6], [1]] +2016.6.4=[[0], [2016], [6], [4]] +2016.66=[[0], [2016], [66]] +2016.67=[[0], [2016], [67]] +2016.68=[[0], [2016], [68]] +2016.69=[[0], [2016], [69]] +2016.7=[[0], [2016], [7]] +2016.70=[[0], [2016], [70]] +2016.8.2=[[0], [2016], [8], [2]] +2016.8.31=[[0], [2016], [8], [31]] +2016.8.8=[[0], [2016], [8], [8]] +2016.8_1=[[0], [2016], [8], [1]] +2016.8_1.1=[[0], [2016], [8], [1], [1]] +2016.8_2=[[0], [2016], [8], [2]] +2016.9=[[0], [2016], [9]] +2016.9.26=[[0], [2016], [9], [26]] +20160102=[[0], [20160102]] +20160103=[[0], [20160103]] +20160127=[[0], [20160127]] +20160418=[[0], [20160418]] +20160520=[[0], [20160520]] +20160523b=[[0], [20160523, 'b']] +20160614=[[0], [20160614]] +20160825=[[0], [20160825]] +20161019=[[0], [20161019]] +20161026=[[0], [20161026]] +2016_8.8=[[0], [2016], [8], [8]] +2017.01.01=[[0], [2017], [1], [1]] +2017.01.17=[[0], [2017], [1], [17]] +2017.02.08=[[0], [2017], [2], [8]] +2017.03.31=[[0], [2017], [3], [31]] +2017.04.5=[[0], [2017], [4], [5]] +2017.04.23=[[0], [2017], [4], [23]] +2017.04.29=[[0], [2017], [4], [29]] +2017.5.26=[[0], [2017], [5], [26]] +2017.06.07=[[0], [2017], [6], [7]] +2017.06.20=[[0], [2017], [6], [20]] +2017.06.23=[[0], [2017], [6], [23]] +2017.07.11=[[0], [2017], [7], [11]] +2017.07.21=[[0], [2017], [7], [21]] +2017.07.28=[[0], [2017], [7], [28]] +2017.09.01=[[0], [2017], [9], [1]] +2017.09.23=[[0], [2017], [9], [23]] +2017.09.27=[[0], [2017], [9], [27]] +2017.09.3=[[0], [2017], [9], [3]] +2017.1=[[0], [2017], [1]] +2017.1.0=[[0], [2017], [1], [0]] +2017.1.1=[[0], [2017], [1], [1]] +2017.1.16.14.45=[[0], [2017], [1], [16], [14], [45]] +2017.1.2=[[0], [2017], [1], [2]] +2017.1.23=[[0], [2017], [1], [23]] +2017.1.3=[[0], [2017], [1], [3]] +2017.1.4=[[0], [2017], [1], [4]] +2017.1.9.21.24=[[0], [2017], [1], [9], [21], [24]] +2017.10=[[0], [2017], [10]] +2017.10.22=[[0], [2017], [10], [22]] +2017.10_1=[[0], [2017], [10], [1]] +2017.11.09=[[0], [2017], [11], [9]] +2017.11.5=[[0], [2017], [11], [5]] +2017.12.5=[[0], [2017], [12], [5]] +2017.12.12=[[0], [2017], [12], [12]] +2017.12.31=[[0], [2017], [12], [31]] +2017.12_1=[[0], [2017], [12], [1]] +2017.2=[[0], [2017], [2]] +2017.2.0=[[0], [2017], [2], [0]] +2017.2.1=[[0], [2017], [2], [1]] +2017.2.2=[[0], [2017], [2], [2]] +2017.3=[[0], [2017], [3]] +2017.3.1=[[0], [2017], [3], [1]] +2017.4=[[0], [2017], [4]] +2017.4.1=[[0], [2017], [4], [1]] +2017.4.17=[[0], [2017], [4], [17]] +2017.5=[[0], [2017], [5]] +2017.6=[[0], [2017], [6]] +2017.7.27.1=[[0], [2017], [7], [27], [1]] +2017.9=[[0], [2017], [9]] +2017.9.19=[[0], [2017], [9], [19]] +2017.9.3=[[0], [2017], [9], [3]] +20170122=[[0], [20170122]] +20170220=[[0], [20170220]] +20170330=[[0], [20170330]] +20170419=[[0], [20170419]] +20170520=[[0], [20170520]] +2017060201=[[0], [2017060201]] +20170625=[[0], [20170625]] +20170720=[[0], [20170720]] +20171003=[[0], [20171003]] +20171108=[[0], [20171108]] +20171219=[[0], [20171219]] +20171222=[[0], [20171222]] +20171231=[[0], [20171231]] +2017_20160722=[[0], [2017], [20160722]] +2017_20160916=[[0], [2017], [20160916]] +2017_20161004=[[0], [2017], [20161004]] +2017_20161128=[[0], [2017], [20161128]] +2017_20170226=[[0], [2017], [20170226]] +2017_20170412=[[0], [2017], [20170412]] +2017_20170604=[[0], [2017], [20170604]] +2017_7.18=[[0], [2017], [7], [18]] +2018.0.3=[[0], [2018], [0], [3]] +2018.0.4=[[0], [2018], [0], [4]] +2018.0.5=[[0], [2018], [0], [5]] +2018.01.10=[[0], [2018], [1], [10]] +2018.02.08=[[0], [2018], [2], [8]] +2018.02.15=[[0], [2018], [2], [15]] +2018.02.21=[[0], [2018], [2], [21]] +2018.03.1=[[0], [2018], [3], [1]] +2018.03.13=[[0], [2018], [3], [13]] +2018.03.16=[[0], [2018], [3], [16]] +2018.03.2=[[0], [2018], [3], [2]] +2018.03.3=[[0], [2018], [3], [3]] +2018.03.4=[[0], [2018], [3], [4]] +2018.04.01=[[0], [2018], [4], [1]] +2018.04.18=[[0], [2018], [4], [18]] +2018.5.22=[[0], [2018], [5], [22]] +2018.5.22.1=[[0], [2018], [5], [22], [1]] +2018.06.06=[[0], [2018], [6], [6]] +2018.06.09=[[0], [2018], [6], [9]] +2018.06.21=[[0], [2018], [6], [21]] +2018.06.29=[[0], [2018], [6], [29]] +2018.07.01=[[0], [2018], [7], [1]] +2018.07.11=[[0], [2018], [7], [11]] +2018.07.26=[[0], [2018], [7], [26]] +2018.08.01=[[0], [2018], [8], [1]] +2018.08.17=[[0], [2018], [8], [17]] +2018.08.29=[[0], [2018], [8], [29]] +2018.09.01=[[0], [2018], [9], [1]] +2018.09.1=[[0], [2018], [9], [1]] +2018.09.2=[[0], [2018], [9], [2]] +2018.09.3=[[0], [2018], [9], [3]] +2018.1=[[0], [2018], [1]] +2018.1.0=[[0], [2018], [1], [0]] +2018.1.0_0.5=[[0], [2018], [1], [0], [0], [5]] +2018.1.0_0.8=[[0], [2018], [1], [0], [0], [8]] +2018.1.1=[[0], [2018], [1], [1]] +2018.1.18=[[0], [2018], [1], [18]] +2018.1.2=[[0], [2018], [1], [2]] +2018.1.3=[[0], [2018], [1], [3]] +2018.10=[[0], [2018], [10]] +2018.10.0=[[0], [2018], [10], [0]] +2018.10.01=[[0], [2018], [10], [1]] +2018.10.1=[[0], [2018], [10], [1]] +2018.10.1.22.5.32=[[0], [2018], [10], [1], [22], [5], [32]] +2018.10.15=[[0], [2018], [10], [15]] +2018.10.17=[[0], [2018], [10], [17]] +2018.10.2=[[0], [2018], [10], [2]] +2018.10.26=[[0], [2018], [10], [26]] +2018.10.29=[[0], [2018], [10], [29]] +2018.10.3=[[0], [2018], [10], [3]] +2018.10.5=[[0], [2018], [10], [5]] +2018.11=[[0], [2018], [11]] +2018.11.02=[[0], [2018], [11], [2]] +2018.11.03=[[0], [2018], [11], [3]] +2018.11.06=[[0], [2018], [11], [6]] +2018.11.07=[[0], [2018], [11], [7]] +2018.11.18=[[0], [2018], [11], [18]] +2018.11.22=[[0], [2018], [11], [22]] +2018.11.23=[[0], [2018], [11], [23]] +2018.11.29=[[0], [2018], [11], [29]] +2018.11.3=[[0], [2018], [11], [3]] +2018.11.3.1.0.41=[[0], [2018], [11], [3], [1], [0], [41]] +2018.11.7=[[0], [2018], [11], [7]] +2018.12.01=[[0], [2018], [12], [1]] +2018.12.1=[[0], [2018], [12], [1]] +2018.12.12=[[0], [2018], [12], [12]] +2018.12.13=[[0], [2018], [12], [13]] +2018.12.17=[[0], [2018], [12], [17]] +2018.12.3=[[0], [2018], [12], [3]] +2018.12.31=[[0], [2018], [12], [31]] +2018.12.9=[[0], [2018], [12], [9]] +2018.2=[[0], [2018], [2]] +2018.2.1=[[0], [2018], [2], [1]] +2018.2.2=[[0], [2018], [2], [2]] +2018.2.22=[[0], [2018], [2], [22]] +2018.2.26=[[0], [2018], [2], [26]] +2018.2.3=[[0], [2018], [2], [3]] +2018.2.5=[[0], [2018], [2], [5]] +2018.2_1=[[0], [2018], [2], [1]] +2018.3=[[0], [2018], [3]] +2018.3.10=[[0], [2018], [3], [10]] +2018.3.25.2110=[[0], [2018], [3], [25], [2110]] +2018.4=[[0], [2018], [4]] +2018.4.16=[[0], [2018], [4], [16]] +2018.4.16.17.4.9=[[0], [2018], [4], [16], [17], [4], [9]] +2018.4.25=[[0], [2018], [4], [25]] +2018.4.26.9.35.2=[[0], [2018], [4], [26], [9], [35], [2]] +2018.5=[[0], [2018], [5]] +2018.5.1=[[0], [2018], [5], [1]] +2018.5.10.13.50.12=[[0], [2018], [5], [10], [13], [50], [12]] +2018.5.16.9.16.21=[[0], [2018], [5], [16], [9], [16], [21]] +2018.5.18=[[0], [2018], [5], [18]] +2018.5.2=[[0], [2018], [5], [2]] +2018.5.2.21.39.8=[[0], [2018], [5], [2], [21], [39], [8]] +2018.5.31.16.8.42=[[0], [2018], [5], [31], [16], [8], [42]] +2018.5.9.12.22.4=[[0], [2018], [5], [9], [12], [22], [4]] +2018.5.9.21.48.54=[[0], [2018], [5], [9], [21], [48], [54]] +2018.6=[[0], [2018], [6]] +2018.6.18.16.33.12=[[0], [2018], [6], [18], [16], [33], [12]] +2018.6.2=[[0], [2018], [6], [2]] +2018.7=[[0], [2018], [7]] +2018.7.21=[[0], [2018], [7], [21]] +2018.7.23=[[0], [2018], [7], [23]] +2018.7.29=[[0], [2018], [7], [29]] +2018.7.4=[[0], [2018], [7], [4]] +2018.7.5.21.55.13=[[0], [2018], [7], [5], [21], [55], [13]] +2018.8.13=[[0], [2018], [8], [13]] +2018.8.22=[[0], [2018], [8], [22]] +2018.8.24=[[0], [2018], [8], [24]] +2018.8.28=[[0], [2018], [8], [28]] +2018.8.4=[[0], [2018], [8], [4]] +2018.8.8=[[0], [2018], [8], [8]] +2018.8_25=[[0], [2018], [8], [25]] +2018.9=[[0], [2018], [9]] +2018.9.1=[[0], [2018], [9], [1]] +2018.9.18=[[0], [2018], [9], [18]] +2018.9.2=[[0], [2018], [9], [2]] +2018.9.26=[[0], [2018], [9], [26]] +2018.9.3=[[0], [2018], [9], [3]] +2018.9.4=[[0], [2018], [9], [4]] +2018.9.8=[[0], [2018], [9], [8]] +20180117=[[0], [20180117]] +20180222=[[0], [20180222]] +20180322=[[0], [20180322]] +20180414=[[0], [20180414]] +20180501=[[0], [20180501]] +20180522=[[0], [20180522]] +20180523.0=[[0], [20180523], [0]] +20180710=[[0], [20180710]] +20180712=[[0], [20180712]] +20180815=[[0], [20180815]] +20180828=[[0], [20180828]] +20180922=[[0], [20180922]] +20181022=[[0], [20181022]] +20181108=[[0], [20181108]] +20181111=[[0], [20181111]] +20181205=[[0], [20181205]] +2018_06_28=[[0], [2018], [6], [28]] +2018_2.13_1=[[0], [2018], [2], [13], [1]] +2018_20170726=[[0], [2018], [20170726]] +2018_20170919=[[0], [2018], [20170919]] +2018_20171205=[[0], [2018], [20171205]] +2018_4.17=[[0], [2018], [4], [17]] +2018_4.17.1=[[0], [2018], [4], [17], [1]] +2018_7.10=[[0], [2018], [7], [10]] +2018g=[[0], [2018, 'g']] +2019.0=[[0], [2019], [0]] +2019.001=[[0], [2019], [1]] +2019.01.01=[[0], [2019], [1], [1]] +2019.01.15=[[0], [2019], [1], [15]] +2019.01.16=[[0], [2019], [1], [16]] +2019.01.18=[[0], [2019], [1], [18]] +2019.01.20=[[0], [2019], [1], [20]] +2019.01.21=[[0], [2019], [1], [21]] +2019.01.24=[[0], [2019], [1], [24]] +2019.01.29=[[0], [2019], [1], [29]] +2019.02.03=[[0], [2019], [2], [3]] +2019.02.5=[[0], [2019], [2], [5]] +2019.02.06=[[0], [2019], [2], [6]] +2019.02.07=[[0], [2019], [2], [7]] +2019.02.11=[[0], [2019], [2], [11]] +2019.02.13=[[0], [2019], [2], [13]] +2019.02.15=[[0], [2019], [2], [15]] +2019.02.18=[[0], [2019], [2], [18]] +2019.02.20=[[0], [2019], [2], [20]] +2019.02.21=[[0], [2019], [2], [21]] +2019.02.24=[[0], [2019], [2], [24]] +2019.02.28=[[0], [2019], [2], [28]] +2019.03.04=[[0], [2019], [3], [4]] +2019.03.09=[[0], [2019], [3], [9]] +2019.03.1=[[0], [2019], [3], [1]] +2019.03.10=[[0], [2019], [3], [10]] +2019.03.11=[[0], [2019], [3], [11]] +2019.03.12=[[0], [2019], [3], [12]] +2019.03.13=[[0], [2019], [3], [13]] +2019.03.14=[[0], [2019], [3], [14]] +2019.03.15=[[0], [2019], [3], [15]] +2019.03.17=[[0], [2019], [3], [17]] +2019.03.2=[[0], [2019], [3], [2]] +2019.03.3=[[0], [2019], [3], [3]] +2019.03.4=[[0], [2019], [3], [4]] +2019.04.01=[[0], [2019], [4], [1]] +2019.04.09=[[0], [2019], [4], [9]] +2019.04.10=[[0], [2019], [4], [10]] +2019.04.11=[[0], [2019], [4], [11]] +2019.04.12=[[0], [2019], [4], [12]] +2019.04.14=[[0], [2019], [4], [14]] +2019.04.18=[[0], [2019], [4], [18]] +2019.04.22=[[0], [2019], [4], [22]] +2019.04.24=[[0], [2019], [4], [24]] +2019.04.25=[[0], [2019], [4], [25]] +2019.5.06=[[0], [2019], [5], [6]] +2019.5.11=[[0], [2019], [5], [11]] +2019.5.21=[[0], [2019], [5], [21]] +2019.5.25=[[0], [2019], [5], [25]] +2019.5.26=[[0], [2019], [5], [26]] +2019.5.29=[[0], [2019], [5], [29]] +2019.5.31=[[0], [2019], [5], [31]] +2019.06.01=[[0], [2019], [6], [1]] +2019.06.02=[[0], [2019], [6], [2]] +2019.06.04=[[0], [2019], [6], [4]] +2019.06.5=[[0], [2019], [6], [5]] +2019.06.06=[[0], [2019], [6], [6]] +2019.06.08=[[0], [2019], [6], [8]] +2019.06.09=[[0], [2019], [6], [9]] +2019.06.17=[[0], [2019], [6], [17]] +2019.06.18=[[0], [2019], [6], [18]] +2019.06.19=[[0], [2019], [6], [19]] +2019.06.27=[[0], [2019], [6], [27]] +2019.06.28=[[0], [2019], [6], [28]] +2019.07=[[0], [2019], [7]] +2019.07.01=[[0], [2019], [7], [1]] +2019.07.02.16.09=[[0], [2019], [7], [2], [16], [9]] +2019.07.03=[[0], [2019], [7], [3]] +2019.07.04=[[0], [2019], [7], [4]] +2019.07.10=[[0], [2019], [7], [10]] +2019.07.11=[[0], [2019], [7], [11]] +2019.07.12=[[0], [2019], [7], [12]] +2019.07.13=[[0], [2019], [7], [13]] +2019.07.15=[[0], [2019], [7], [15]] +2019.07.19=[[0], [2019], [7], [19]] +2019.07.20=[[0], [2019], [7], [20]] +2019.07.22=[[0], [2019], [7], [22]] +2019.07.23=[[0], [2019], [7], [23]] +2019.07.25=[[0], [2019], [7], [25]] +2019.07.26=[[0], [2019], [7], [26]] +2019.08.01=[[0], [2019], [8], [1]] +2019.08.07=[[0], [2019], [8], [7]] +2019.08.08=[[0], [2019], [8], [8]] +2019.08.09=[[0], [2019], [8], [9]] +2019.08.11=[[0], [2019], [8], [11]] +2019.08.12=[[0], [2019], [8], [12]] +2019.08.19=[[0], [2019], [8], [19]] +2019.08.22=[[0], [2019], [8], [22]] +2019.08.27=[[0], [2019], [8], [27]] +2019.09.01=[[0], [2019], [9], [1]] +2019.09.08=[[0], [2019], [9], [8]] +2019.09.1=[[0], [2019], [9], [1]] +2019.09.2=[[0], [2019], [9], [2]] +2019.09.24=[[0], [2019], [9], [24]] +2019.09.25=[[0], [2019], [9], [25]] +2019.09.27=[[0], [2019], [9], [27]] +2019.09.3=[[0], [2019], [9], [3]] +2019.1=[[0], [2019], [1]] +2019.1.0=[[0], [2019], [1], [0]] +2019.1.1=[[0], [2019], [1], [1]] +2019.1.10=[[0], [2019], [1], [10]] +2019.1.144=[[0], [2019], [1], [144]] +2019.1.16=[[0], [2019], [1], [16]] +2019.1.17=[[0], [2019], [1], [17]] +2019.1.2=[[0], [2019], [1], [2]] +2019.1.27=[[0], [2019], [1], [27]] +2019.1.3=[[0], [2019], [1], [3]] +2019.1.30=[[0], [2019], [1], [30]] +2019.1.30.1=[[0], [2019], [1], [30], [1]] +2019.1.4=[[0], [2019], [1], [4]] +2019.1.5=[[0], [2019], [1], [5]] +2019.1.8=[[0], [2019], [1], [8]] +2019.10.01=[[0], [2019], [10], [1]] +2019.10.5.12.26=[[0], [2019], [10], [5], [12], [26]] +2019.10.08=[[0], [2019], [10], [8]] +2019.10.11=[[0], [2019], [10], [11]] +2019.10.13=[[0], [2019], [10], [13]] +2019.10.15=[[0], [2019], [10], [15]] +2019.10.16=[[0], [2019], [10], [16]] +2019.10.22=[[0], [2019], [10], [22]] +2019.10.25=[[0], [2019], [10], [25]] +2019.10.26=[[0], [2019], [10], [26]] +2019.10.28=[[0], [2019], [10], [28]] +2019.10.28.11.59.32=[[0], [2019], [10], [28], [11], [59], [32]] +2019.10.29=[[0], [2019], [10], [29]] +2019.10.3=[[0], [2019], [10], [3]] +2019.10.3.10.26.21=[[0], [2019], [10], [3], [10], [26], [21]] +2019.10.30=[[0], [2019], [10], [30]] +2019.10.4=[[0], [2019], [10], [4]] +2019.10_1=[[0], [2019], [10], [1]] +2019.11=[[0], [2019], [11]] +2019.11.0=[[0], [2019], [11], [0]] +2019.11.01=[[0], [2019], [11], [1]] +2019.11.03=[[0], [2019], [11], [3]] +2019.11.1=[[0], [2019], [11], [1]] +2019.11.11=[[0], [2019], [11], [11]] +2019.11.12=[[0], [2019], [11], [12]] +2019.11.13=[[0], [2019], [11], [13]] +2019.11.14=[[0], [2019], [11], [14]] +2019.11.18=[[0], [2019], [11], [18]] +2019.11.19=[[0], [2019], [11], [19]] +2019.11.20=[[0], [2019], [11], [20]] +2019.11.22=[[0], [2019], [11], [22]] +2019.11.23=[[0], [2019], [11], [23]] +2019.11.25=[[0], [2019], [11], [25]] +2019.11.26=[[0], [2019], [11], [26]] +2019.11.28=[[0], [2019], [11], [28]] +2019.11.30=[[0], [2019], [11], [30]] +2019.11.4=[[0], [2019], [11], [4]] +2019.11.5=[[0], [2019], [11], [5]] +2019.11.9=[[0], [2019], [11], [9]] +2019.12=[[0], [2019], [12]] +2019.12.01=[[0], [2019], [12], [1]] +2019.12.02=[[0], [2019], [12], [2]] +2019.12.09=[[0], [2019], [12], [9]] +2019.12.11.13.26.16=[[0], [2019], [12], [11], [13], [26], [16]] +2019.12.11.22.25.52=[[0], [2019], [12], [11], [22], [25], [52]] +2019.12.13=[[0], [2019], [12], [13]] +2019.12.17=[[0], [2019], [12], [17]] +2019.12.18=[[0], [2019], [12], [18]] +2019.12.19=[[0], [2019], [12], [19]] +2019.12.2=[[0], [2019], [12], [2]] +2019.12.20=[[0], [2019], [12], [20]] +2019.12.22=[[0], [2019], [12], [22]] +2019.12.25=[[0], [2019], [12], [25]] +2019.12.3=[[0], [2019], [12], [3]] +2019.12.5=[[0], [2019], [12], [5]] +2019.12.6=[[0], [2019], [12], [6]] +2019.12.9=[[0], [2019], [12], [9]] +2019.12_10=[[0], [2019], [12], [10]] +2019.2=[[0], [2019], [2]] +2019.2.0=[[0], [2019], [2], [0]] +2019.2.1=[[0], [2019], [2], [1]] +2019.2.10=[[0], [2019], [2], [10]] +2019.2.18=[[0], [2019], [2], [18]] +2019.2.28=[[0], [2019], [2], [28]] +2019.2.32=[[0], [2019], [2], [32]] +2019.2.8=[[0], [2019], [2], [8]] +2019.3=[[0], [2019], [3]] +2019.3.1=[[0], [2019], [3], [1]] +2019.3.16=[[0], [2019], [3], [16]] +2019.3.18=[[0], [2019], [3], [18]] +2019.3.18.14.33.20=[[0], [2019], [3], [18], [14], [33], [20]] +2019.3.20.17.25.52=[[0], [2019], [3], [20], [17], [25], [52]] +2019.3.21.12.25.52=[[0], [2019], [3], [21], [12], [25], [52]] +2019.3.21.21.27.29=[[0], [2019], [3], [21], [21], [27], [29]] +2019.3.28=[[0], [2019], [3], [28]] +2019.3.9=[[0], [2019], [3], [9]] +2019.4=[[0], [2019], [4]] +2019.4.1=[[0], [2019], [4], [1]] +2019.4.11=[[0], [2019], [4], [11]] +2019.4.14=[[0], [2019], [4], [14]] +2019.4.17=[[0], [2019], [4], [17]] +2019.4.17.13.51.39=[[0], [2019], [4], [17], [13], [51], [39]] +2019.4.18=[[0], [2019], [4], [18]] +2019.4.20=[[0], [2019], [4], [20]] +2019.4.24=[[0], [2019], [4], [24]] +2019.4.26.1=[[0], [2019], [4], [26], [1]] +2019.4.27=[[0], [2019], [4], [27]] +2019.4.30=[[0], [2019], [4], [30]] +2019.4.7=[[0], [2019], [4], [7]] +2019.4_25=[[0], [2019], [4], [25]] +2019.5=[[0], [2019], [5]] +2019.5.1=[[0], [2019], [5], [1]] +2019.5.11=[[0], [2019], [5], [11]] +2019.5.20=[[0], [2019], [5], [20]] +2019.5.30=[[0], [2019], [5], [30]] +2019.6=[[0], [2019], [6]] +2019.6.11.17.26.3=[[0], [2019], [6], [11], [17], [26], [3]] +2019.6.16=[[0], [2019], [6], [16]] +2019.6.21=[[0], [2019], [6], [21]] +2019.6.26.0.0.13=[[0], [2019], [6], [26], [0], [0], [13]] +2019.6.26.13.52.49=[[0], [2019], [6], [26], [13], [52], [49]] +2019.6.26.15.8.24=[[0], [2019], [6], [26], [15], [8], [24]] +2019.6.27=[[0], [2019], [6], [27]] +2019.6.5.13.20.47=[[0], [2019], [6], [5], [13], [20], [47]] +2019.6.8=[[0], [2019], [6], [8]] +2019.7=[[0], [2019], [7]] +2019.7.12=[[0], [2019], [7], [12]] +2019.7.12.23.25.11=[[0], [2019], [7], [12], [23], [25], [11]] +2019.7.14=[[0], [2019], [7], [14]] +2019.7.15.12.50.36=[[0], [2019], [7], [15], [12], [50], [36]] +2019.7.16=[[0], [2019], [7], [16]] +2019.7.2=[[0], [2019], [7], [2]] +2019.7.21=[[0], [2019], [7], [21]] +2019.7.22.22.13.57=[[0], [2019], [7], [22], [22], [13], [57]] +2019.7.23.15.26.49=[[0], [2019], [7], [23], [15], [26], [49]] +2019.7.26=[[0], [2019], [7], [26]] +2019.7.26.2=[[0], [2019], [7], [26], [2]] +2019.7.27=[[0], [2019], [7], [27]] +2019.7.3.22.46.7=[[0], [2019], [7], [3], [22], [46], [7]] +2019.7.30=[[0], [2019], [7], [30]] +2019.8=[[0], [2019], [8]] +2019.8.1=[[0], [2019], [8], [1]] +2019.8.13=[[0], [2019], [8], [13]] +2019.8.14=[[0], [2019], [8], [14]] +2019.8.18=[[0], [2019], [8], [18]] +2019.8.2=[[0], [2019], [8], [2]] +2019.8.20=[[0], [2019], [8], [20]] +2019.8.23=[[0], [2019], [8], [23]] +2019.8.24=[[0], [2019], [8], [24]] +2019.8.5=[[0], [2019], [8], [5]] +2019.8.9.16.54.31=[[0], [2019], [8], [9], [16], [54], [31]] +2019.9=[[0], [2019], [9]] +2019.9.1=[[0], [2019], [9], [1]] +2019.9.11=[[0], [2019], [9], [11]] +2019.9.12=[[0], [2019], [9], [12]] +2019.9.16=[[0], [2019], [9], [16]] +2019.9.19.23.25.28=[[0], [2019], [9], [19], [23], [25], [28]] +2019.9.23=[[0], [2019], [9], [23]] +2019.9.26=[[0], [2019], [9], [26]] +2019.9.28=[[0], [2019], [9], [28]] +2019.9.30.17.47.33=[[0], [2019], [9], [30], [17], [47], [33]] +2019.9.8=[[0], [2019], [9], [8]] +2019.9.9.23.27.50=[[0], [2019], [9], [9], [23], [27], [50]] +20190110=[[0], [20190110]] +20190115=[[0], [20190115]] +20190122=[[0], [20190122]] +20190201=[[0], [20190201]] +20190207=[[0], [20190207]] +20190212=[[0], [20190212]] +20190226=[[0], [20190226]] +20190318=[[0], [20190318]] +20190321=[[0], [20190321]] +20190322=[[0], [20190322]] +20190417=[[0], [20190417]] +201904251722=[[0], [201904251722]] +20190522=[[0], [20190522]] +20190722=[[0], [20190722]] +20190808=[[0], [20190808]] +20190909=[[0], [20190909]] +20190922=[[0], [20190922]] +20191020=[[0], [20191020]] +20191026=[[0], [20191026]] +20191106=[[0], [20191106]] +20191111=[[0], [20191111]] +20191115=[[0], [20191115]] +20191122=[[0], [20191122]] +20191125=[[0], [20191125]] +2019_11.26=[[0], [2019], [11], [26]] +2019_12.16=[[0], [2019], [12], [16]] +2019_12.4=[[0], [2019], [12], [4]] +2019a=[[0], [2019, 'a']] +202=[[0], [202]] +2020.0=[[0], [2020], [0]] +2020.0.0=[[0], [2020], [0], [0]] +2020.0.1=[[0], [2020], [0], [1]] +2020.0.2=[[0], [2020], [0], [2]] +2020.0.3=[[0], [2020], [0], [3]] +2020.0.6=[[0], [2020], [0], [6]] +2020.0.6rc2=[[0], [2020], [0], [6, 'rc', 2]] +2020.0.7=[[0], [2020], [0], [7]] +2020.01=[[0], [2020], [1]] +2020.01.01=[[0], [2020], [1], [1]] +2020.01.5=[[0], [2020], [1], [5]] +2020.01.06=[[0], [2020], [1], [6]] +2020.01.07=[[0], [2020], [1], [7]] +2020.01.08=[[0], [2020], [1], [8]] +2020.01.10=[[0], [2020], [1], [10]] +2020.01.15=[[0], [2020], [1], [15]] +2020.01.16=[[0], [2020], [1], [16]] +2020.01.21=[[0], [2020], [1], [21]] +2020.01.22=[[0], [2020], [1], [22]] +2020.01.24=[[0], [2020], [1], [24]] +2020.01.27=[[0], [2020], [1], [27]] +2020.01.28=[[0], [2020], [1], [28]] +2020.02=[[0], [2020], [2]] +2020.02.5=[[0], [2020], [2], [5]] +2020.02.06=[[0], [2020], [2], [6]] +2020.02.12=[[0], [2020], [2], [12]] +2020.02.19=[[0], [2020], [2], [19]] +2020.02.20=[[0], [2020], [2], [20]] +2020.02.24=[[0], [2020], [2], [24]] +2020.03=[[0], [2020], [3]] +2020.03.01=[[0], [2020], [3], [1]] +2020.03.02=[[0], [2020], [3], [2]] +2020.03.03=[[0], [2020], [3], [3]] +2020.03.04=[[0], [2020], [3], [4]] +2020.03.5=[[0], [2020], [3], [5]] +2020.03.06=[[0], [2020], [3], [6]] +2020.03.09=[[0], [2020], [3], [9]] +2020.03.1=[[0], [2020], [3], [1]] +2020.03.10=[[0], [2020], [3], [10]] +2020.03.12=[[0], [2020], [3], [12]] +2020.03.13=[[0], [2020], [3], [13]] +2020.03.14=[[0], [2020], [3], [14]] +2020.03.15.13.27=[[0], [2020], [3], [15], [13], [27]] +2020.03.16=[[0], [2020], [3], [16]] +2020.03.19=[[0], [2020], [3], [19]] +2020.03.2=[[0], [2020], [3], [2]] +2020.03.20=[[0], [2020], [3], [20]] +2020.03.22=[[0], [2020], [3], [22]] +2020.03.23=[[0], [2020], [3], [23]] +2020.03.24=[[0], [2020], [3], [24]] +2020.03.27=[[0], [2020], [3], [27]] +2020.03.28=[[0], [2020], [3], [28]] +2020.03.3=[[0], [2020], [3], [3]] +2020.03.30=[[0], [2020], [3], [30]] +2020.03.4=[[0], [2020], [3], [4]] +2020.03.5=[[0], [2020], [3], [5]] +2020.03.6=[[0], [2020], [3], [6]] +2020.04.01=[[0], [2020], [4], [1]] +2020.04.02=[[0], [2020], [4], [2]] +2020.04.03=[[0], [2020], [4], [3]] +2020.04.04=[[0], [2020], [4], [4]] +2020.04.06=[[0], [2020], [4], [6]] +2020.04.07=[[0], [2020], [4], [7]] +2020.04.08=[[0], [2020], [4], [8]] +2020.04.09=[[0], [2020], [4], [9]] +2020.04.10=[[0], [2020], [4], [10]] +2020.04.10.14.16.24=[[0], [2020], [4], [10], [14], [16], [24]] +2020.04.10.14.21.26=[[0], [2020], [4], [10], [14], [21], [26]] +2020.04.10.14.22.02=[[0], [2020], [4], [10], [14], [22], [2]] +2020.04.10.14.33.34=[[0], [2020], [4], [10], [14], [33], [34]] +2020.04.10.16.51.29=[[0], [2020], [4], [10], [16], [51], [29]] +2020.04.10.18.29.06=[[0], [2020], [4], [10], [18], [29], [6]] +2020.04.10.23.07.47=[[0], [2020], [4], [10], [23], [7], [47]] +2020.04.12.13.56.44=[[0], [2020], [4], [12], [13], [56], [44]] +2020.04.14=[[0], [2020], [4], [14]] +2020.04.14.00.23.16=[[0], [2020], [4], [14], [0], [23], [16]] +2020.04.14.12.02.49=[[0], [2020], [4], [14], [12], [2], [49]] +2020.04.15.00.37.28=[[0], [2020], [4], [15], [0], [37], [28]] +2020.04.15.16.20.31=[[0], [2020], [4], [15], [16], [20], [31]] +2020.04.15.22.14.52=[[0], [2020], [4], [15], [22], [14], [52]] +2020.04.15.23.38.20=[[0], [2020], [4], [15], [23], [38], [20]] +2020.04.16.03.28.28=[[0], [2020], [4], [16], [3], [28], [28]] +2020.04.16.07.55.54=[[0], [2020], [4], [16], [7], [55], [54]] +2020.04.16.16.23.46=[[0], [2020], [4], [16], [16], [23], [46]] +2020.04.17.01.00.32=[[0], [2020], [4], [17], [1], [0], [32]] +2020.04.17.09.06.29=[[0], [2020], [4], [17], [9], [6], [29]] +2020.04.17.11.22.12=[[0], [2020], [4], [17], [11], [22], [12]] +2020.04.17.11.45.02=[[0], [2020], [4], [17], [11], [45], [2]] +2020.04.17.22.20.20=[[0], [2020], [4], [17], [22], [20], [20]] +2020.04.18.00.00.57=[[0], [2020], [4], [18], [0], [0], [57]] +2020.04.20.03.17.56=[[0], [2020], [4], [20], [3], [17], [56]] +2020.04.21.12.59.15=[[0], [2020], [4], [21], [12], [59], [15]] +2020.04.22.02.5.22=[[0], [2020], [4], [22], [2], [5], [22]] +2020.04.22.03.51.02=[[0], [2020], [4], [22], [3], [51], [2]] +2020.04.23=[[0], [2020], [4], [23]] +2020.04.23.5.37.39=[[0], [2020], [4], [23], [5], [37], [39]] +2020.04.23.13.54.59=[[0], [2020], [4], [23], [13], [54], [59]] +2020.04.23.16.40.11=[[0], [2020], [4], [23], [16], [40], [11]] +2020.04.23.22.5.54=[[0], [2020], [4], [23], [22], [5], [54]] +2020.04.24.08.48.19=[[0], [2020], [4], [24], [8], [48], [19]] +2020.04.24.22.48.20=[[0], [2020], [4], [24], [22], [48], [20]] +2020.04.24.22.56.04=[[0], [2020], [4], [24], [22], [56], [4]] +2020.04.25=[[0], [2020], [4], [25]] +2020.04.26.12.54.30=[[0], [2020], [4], [26], [12], [54], [30]] +2020.04.26.19.17.14=[[0], [2020], [4], [26], [19], [17], [14]] +2020.04.27.17.45.41=[[0], [2020], [4], [27], [17], [45], [41]] +2020.04.28=[[0], [2020], [4], [28]] +2020.04.28.13.02.26=[[0], [2020], [4], [28], [13], [2], [26]] +2020.04.29=[[0], [2020], [4], [29]] +2020.04.30.12.38.06=[[0], [2020], [4], [30], [12], [38], [6]] +2020.04.30.13.04.49=[[0], [2020], [4], [30], [13], [4], [49]] +2020.04.30.15.17.54=[[0], [2020], [4], [30], [15], [17], [54]] +2020.04.30.15.41.11=[[0], [2020], [4], [30], [15], [41], [11]] +2020.04.30.22.10.16=[[0], [2020], [4], [30], [22], [10], [16]] +2020.04.30.22.51.59=[[0], [2020], [4], [30], [22], [51], [59]] +2020.5=[[0], [2020], [5]] +2020.5.01=[[0], [2020], [5], [1]] +2020.5.01.13.16.44=[[0], [2020], [5], [1], [13], [16], [44]] +2020.5.01.18.41.01=[[0], [2020], [5], [1], [18], [41], [1]] +2020.5.01.20.16.02=[[0], [2020], [5], [1], [20], [16], [2]] +2020.5.01.23.5.28=[[0], [2020], [5], [1], [23], [5], [28]] +2020.5.02.01.08.57=[[0], [2020], [5], [2], [1], [8], [57]] +2020.5.02.02.22.03=[[0], [2020], [5], [2], [2], [22], [3]] +2020.5.02.14.58.15=[[0], [2020], [5], [2], [14], [58], [15]] +2020.5.03.17.40.55=[[0], [2020], [5], [3], [17], [40], [55]] +2020.5.03.19.37.20=[[0], [2020], [5], [3], [19], [37], [20]] +2020.5.04=[[0], [2020], [5], [4]] +2020.5.04.00.11.09=[[0], [2020], [5], [4], [0], [11], [9]] +2020.5.04.5.46.47=[[0], [2020], [5], [4], [5], [46], [47]] +2020.5.04.19.36.16=[[0], [2020], [5], [4], [19], [36], [16]] +2020.5.04.19.59.17=[[0], [2020], [5], [4], [19], [59], [17]] +2020.5.06.22.15.02=[[0], [2020], [5], [6], [22], [15], [2]] +2020.5.08.11.44.00=[[0], [2020], [5], [8], [11], [44], [0]] +2020.5.09=[[0], [2020], [5], [9]] +2020.5.09.00.08.03=[[0], [2020], [5], [9], [0], [8], [3]] +2020.5.10=[[0], [2020], [5], [10]] +2020.5.10.5.52.45=[[0], [2020], [5], [10], [5], [52], [45]] +2020.5.11.06.13.34=[[0], [2020], [5], [11], [6], [13], [34]] +2020.5.11.16.49.47=[[0], [2020], [5], [11], [16], [49], [47]] +2020.5.12.18.03.58=[[0], [2020], [5], [12], [18], [3], [58]] +2020.5.13.13.23.43=[[0], [2020], [5], [13], [13], [23], [43]] +2020.5.14.17.14.20=[[0], [2020], [5], [14], [17], [14], [20]] +2020.5.18.07.14.19=[[0], [2020], [5], [18], [7], [14], [19]] +2020.5.18.07.24.43=[[0], [2020], [5], [18], [7], [24], [43]] +2020.5.18.11.53.22=[[0], [2020], [5], [18], [11], [53], [22]] +2020.5.18.14.31.44=[[0], [2020], [5], [18], [14], [31], [44]] +2020.5.19=[[0], [2020], [5], [19]] +2020.5.19.09.34.36=[[0], [2020], [5], [19], [9], [34], [36]] +2020.5.19.13.30.35=[[0], [2020], [5], [19], [13], [30], [35]] +2020.5.19.19.39.08=[[0], [2020], [5], [19], [19], [39], [8]] +2020.5.19.2=[[0], [2020], [5], [19], [2]] +2020.5.20.09.40.28=[[0], [2020], [5], [20], [9], [40], [28]] +2020.5.20.21.21.18=[[0], [2020], [5], [20], [21], [21], [18]] +2020.5.21=[[0], [2020], [5], [21]] +2020.5.25.23.01.15=[[0], [2020], [5], [25], [23], [1], [15]] +2020.5.27=[[0], [2020], [5], [27]] +2020.5.27.14.19.32=[[0], [2020], [5], [27], [14], [19], [32]] +2020.5.27.16.15=[[0], [2020], [5], [27], [16], [15]] +2020.5.28=[[0], [2020], [5], [28]] +2020.5.29=[[0], [2020], [5], [29]] +2020.5.31.21.10.28=[[0], [2020], [5], [31], [21], [10], [28]] +2020.06=[[0], [2020], [6]] +2020.06.01=[[0], [2020], [6], [1]] +2020.06.01.14.18.30=[[0], [2020], [6], [1], [14], [18], [30]] +2020.06.01.17.08.18=[[0], [2020], [6], [1], [17], [8], [18]] +2020.06.01.18.18.56=[[0], [2020], [6], [1], [18], [18], [56]] +2020.06.02.12.20.38=[[0], [2020], [6], [2], [12], [20], [38]] +2020.06.03=[[0], [2020], [6], [3]] +2020.06.03.1=[[0], [2020], [6], [3], [1]] +2020.06.03.11.59.27=[[0], [2020], [6], [3], [11], [59], [27]] +2020.06.03.12.27.10=[[0], [2020], [6], [3], [12], [27], [10]] +2020.06.03.12.27.21=[[0], [2020], [6], [3], [12], [27], [21]] +2020.06.03.13.07.20=[[0], [2020], [6], [3], [13], [7], [20]] +2020.06.03.13.16.18=[[0], [2020], [6], [3], [13], [16], [18]] +2020.06.03.13.41.50=[[0], [2020], [6], [3], [13], [41], [50]] +2020.06.04.02.43.14=[[0], [2020], [6], [4], [2], [43], [14]] +2020.06.04.10.25.49=[[0], [2020], [6], [4], [10], [25], [49]] +2020.06.04.13.55.38=[[0], [2020], [6], [4], [13], [55], [38]] +2020.06.06=[[0], [2020], [6], [6]] +2020.06.06.02.30.37=[[0], [2020], [6], [6], [2], [30], [37]] +2020.06.06.15.39.47=[[0], [2020], [6], [6], [15], [39], [47]] +2020.06.06.18.33.32=[[0], [2020], [6], [6], [18], [33], [32]] +2020.06.07=[[0], [2020], [6], [7]] +2020.06.07.16.42.19=[[0], [2020], [6], [7], [16], [42], [19]] +2020.06.10=[[0], [2020], [6], [10]] +2020.06.10.22.19.47=[[0], [2020], [6], [10], [22], [19], [47]] +2020.06.12.09.54.30=[[0], [2020], [6], [12], [9], [54], [30]] +2020.06.12.12.07.36=[[0], [2020], [6], [12], [12], [7], [36]] +2020.06.12.14.12.47=[[0], [2020], [6], [12], [14], [12], [47]] +2020.06.13.02.15.08=[[0], [2020], [6], [13], [2], [15], [8]] +2020.06.15.11.48.40=[[0], [2020], [6], [15], [11], [48], [40]] +2020.06.15.22.23.21=[[0], [2020], [6], [15], [22], [23], [21]] +2020.06.15.22.23.24=[[0], [2020], [6], [15], [22], [23], [24]] +2020.06.16=[[0], [2020], [6], [16]] +2020.06.16.14.10.58=[[0], [2020], [6], [16], [14], [10], [58]] +2020.06.16.21.09.39=[[0], [2020], [6], [16], [21], [9], [39]] +2020.06.18=[[0], [2020], [6], [18]] +2020.06.19=[[0], [2020], [6], [19]] +2020.06.22=[[0], [2020], [6], [22]] +2020.06.23.06.07.46=[[0], [2020], [6], [23], [6], [7], [46]] +2020.06.23.15.5.51=[[0], [2020], [6], [23], [15], [5], [51]] +2020.06.24.16.31.11=[[0], [2020], [6], [24], [16], [31], [11]] +2020.07=[[0], [2020], [7]] +2020.07.01=[[0], [2020], [7], [1]] +2020.07.01.19.41.39=[[0], [2020], [7], [1], [19], [41], [39]] +2020.07.01.21.17.12=[[0], [2020], [7], [1], [21], [17], [12]] +2020.07.02.16.06.52=[[0], [2020], [7], [2], [16], [6], [52]] +2020.07.02.17.22.00=[[0], [2020], [7], [2], [17], [22], [0]] +2020.07.03=[[0], [2020], [7], [3]] +2020.07.03.10.54.45=[[0], [2020], [7], [3], [10], [54], [45]] +2020.07.5.20.11.47=[[0], [2020], [7], [5], [20], [11], [47]] +2020.07.5.21.09.16=[[0], [2020], [7], [5], [21], [9], [16]] +2020.07.06=[[0], [2020], [7], [6]] +2020.07.06.07.16.19=[[0], [2020], [7], [6], [7], [16], [19]] +2020.07.06.14.07.53=[[0], [2020], [7], [6], [14], [7], [53]] +2020.07.06.15.09.44=[[0], [2020], [7], [6], [15], [9], [44]] +2020.07.06.15.29.37=[[0], [2020], [7], [6], [15], [29], [37]] +2020.07.06.18.43.00=[[0], [2020], [7], [6], [18], [43], [0]] +2020.07.07.15.30.32=[[0], [2020], [7], [7], [15], [30], [32]] +2020.07.07.19.27.52=[[0], [2020], [7], [7], [19], [27], [52]] +2020.07.1=[[0], [2020], [7], [1]] +2020.07.12.08.10.44=[[0], [2020], [7], [12], [8], [10], [44]] +2020.07.12.14.17.08=[[0], [2020], [7], [12], [14], [17], [8]] +2020.07.13.5.21.24=[[0], [2020], [7], [13], [5], [21], [24]] +2020.07.13.5.22.39=[[0], [2020], [7], [13], [5], [22], [39]] +2020.07.13.5.22.51=[[0], [2020], [7], [13], [5], [22], [51]] +2020.07.13.5.23.11=[[0], [2020], [7], [13], [5], [23], [11]] +2020.07.14.15.32.37=[[0], [2020], [7], [14], [15], [32], [37]] +2020.07.15.13.14.37=[[0], [2020], [7], [15], [13], [14], [37]] +2020.07.15.18.17.54=[[0], [2020], [7], [15], [18], [17], [54]] +2020.07.15.18.18.04=[[0], [2020], [7], [15], [18], [18], [4]] +2020.07.17.07.07.44=[[0], [2020], [7], [17], [7], [7], [44]] +2020.07.17.07.14.20=[[0], [2020], [7], [17], [7], [14], [20]] +2020.07.17.17.28.25=[[0], [2020], [7], [17], [17], [28], [25]] +2020.07.18=[[0], [2020], [7], [18]] +2020.07.18.02.18.36=[[0], [2020], [7], [18], [2], [18], [36]] +2020.07.18.17.52.56=[[0], [2020], [7], [18], [17], [52], [56]] +2020.07.18.19.24.57=[[0], [2020], [7], [18], [19], [24], [57]] +2020.07.18.20.5.59=[[0], [2020], [7], [18], [20], [5], [59]] +2020.07.18.20.56.00=[[0], [2020], [7], [18], [20], [56], [0]] +2020.07.19.19.30.49=[[0], [2020], [7], [19], [19], [30], [49]] +2020.07.20.22.41.22=[[0], [2020], [7], [20], [22], [41], [22]] +2020.07.21.08.49.43=[[0], [2020], [7], [21], [8], [49], [43]] +2020.07.21.17.10.15=[[0], [2020], [7], [21], [17], [10], [15]] +2020.07.22.15.50.26=[[0], [2020], [7], [22], [15], [50], [26]] +2020.07.23.07.37.39=[[0], [2020], [7], [23], [7], [37], [39]] +2020.07.24.15.53.25=[[0], [2020], [7], [24], [15], [53], [25]] +2020.07.25.08.41=[[0], [2020], [7], [25], [8], [41]] +2020.07.26.17.35.30=[[0], [2020], [7], [26], [17], [35], [30]] +2020.07.26.20.00.32=[[0], [2020], [7], [26], [20], [0], [32]] +2020.07.27=[[0], [2020], [7], [27]] +2020.07.27.09.21.49=[[0], [2020], [7], [27], [9], [21], [49]] +2020.07.27.18.59.53=[[0], [2020], [7], [27], [18], [59], [53]] +2020.07.28.15.09.26=[[0], [2020], [7], [28], [15], [9], [26]] +2020.07.29.10.14.20=[[0], [2020], [7], [29], [10], [14], [20]] +2020.07.30.14.5.10=[[0], [2020], [7], [30], [14], [5], [10]] +2020.07.31.22.07.41=[[0], [2020], [7], [31], [22], [7], [41]] +2020.08.01=[[0], [2020], [8], [1]] +2020.08.01.13.32.00=[[0], [2020], [8], [1], [13], [32], [0]] +2020.08.01.17.49.49=[[0], [2020], [8], [1], [17], [49], [49]] +2020.08.02=[[0], [2020], [8], [2]] +2020.08.02.14.12.45=[[0], [2020], [8], [2], [14], [12], [45]] +2020.08.02.14.15.29=[[0], [2020], [8], [2], [14], [15], [29]] +2020.08.02.15.39.57=[[0], [2020], [8], [2], [15], [39], [57]] +2020.08.04.07.08.47=[[0], [2020], [8], [4], [7], [8], [47]] +2020.08.04.10.51.31=[[0], [2020], [8], [4], [10], [51], [31]] +2020.08.04.14.41.32=[[0], [2020], [8], [4], [14], [41], [32]] +2020.08.5=[[0], [2020], [8], [5]] +2020.08.5.17.02.37=[[0], [2020], [8], [5], [17], [2], [37]] +2020.08.08=[[0], [2020], [8], [8]] +2020.08.09.19.50.01=[[0], [2020], [8], [9], [19], [50], [1]] +2020.08.10.21.36.31=[[0], [2020], [8], [10], [21], [36], [31]] +2020.08.11=[[0], [2020], [8], [11]] +2020.08.12.15.50.13=[[0], [2020], [8], [12], [15], [50], [13]] +2020.08.12.15.52.31=[[0], [2020], [8], [12], [15], [52], [31]] +2020.08.12.16.30.22=[[0], [2020], [8], [12], [16], [30], [22]] +2020.08.13.04.25.14=[[0], [2020], [8], [13], [4], [25], [14]] +2020.08.14.17.10.59=[[0], [2020], [8], [14], [17], [10], [59]] +2020.08.15.14.52.28=[[0], [2020], [8], [15], [14], [52], [28]] +2020.08.15.14.59.48=[[0], [2020], [8], [15], [14], [59], [48]] +2020.08.17.19.54.37=[[0], [2020], [8], [17], [19], [54], [37]] +2020.08.17.20.01.55=[[0], [2020], [8], [17], [20], [1], [55]] +2020.08.21.04.46.41=[[0], [2020], [8], [21], [4], [46], [41]] +2020.08.24=[[0], [2020], [8], [24]] +2020.08.25.14.55.21=[[0], [2020], [8], [25], [14], [55], [21]] +2020.08.26.22.12.02=[[0], [2020], [8], [26], [22], [12], [2]] +2020.08.27.12.52.30=[[0], [2020], [8], [27], [12], [52], [30]] +2020.08.27.19.07.14=[[0], [2020], [8], [27], [19], [7], [14]] +2020.08.29.21.09.48=[[0], [2020], [8], [29], [21], [9], [48]] +2020.08.30=[[0], [2020], [8], [30]] +2020.08.31=[[0], [2020], [8], [31]] +2020.09.01.20.11.42=[[0], [2020], [9], [1], [20], [11], [42]] +2020.09.01.22.03.41=[[0], [2020], [9], [1], [22], [3], [41]] +2020.09.02.00.32.57=[[0], [2020], [9], [2], [0], [32], [57]] +2020.09.02.16.41.07=[[0], [2020], [9], [2], [16], [41], [7]] +2020.09.03.21.06.41=[[0], [2020], [9], [3], [21], [6], [41]] +2020.09.03.21.10.34=[[0], [2020], [9], [3], [21], [10], [34]] +2020.09.04.10.00.02=[[0], [2020], [9], [4], [10], [0], [2]] +2020.09.07.14.45.08=[[0], [2020], [9], [7], [14], [45], [8]] +2020.09.07.15.41.27=[[0], [2020], [9], [7], [15], [41], [27]] +2020.09.07.16.02.10=[[0], [2020], [9], [7], [16], [2], [10]] +2020.09.07.20.08.14=[[0], [2020], [9], [7], [20], [8], [14]] +2020.09.07.21.12.35=[[0], [2020], [9], [7], [21], [12], [35]] +2020.09.08.14.30.5=[[0], [2020], [9], [8], [14], [30], [5]] +2020.09.08.18.21.18=[[0], [2020], [9], [8], [18], [21], [18]] +2020.09.09.10.20.41=[[0], [2020], [9], [9], [10], [20], [41]] +2020.09.09.20.59.59=[[0], [2020], [9], [9], [20], [59], [59]] +2020.09.1=[[0], [2020], [9], [1]] +2020.09.10.13.34.01=[[0], [2020], [9], [10], [13], [34], [1]] +2020.09.11.15.57.35=[[0], [2020], [9], [11], [15], [57], [35]] +2020.09.11.18.34.57=[[0], [2020], [9], [11], [18], [34], [57]] +2020.09.11.18.40.13=[[0], [2020], [9], [11], [18], [40], [13]] +2020.09.11.19.40.57=[[0], [2020], [9], [11], [19], [40], [57]] +2020.09.13=[[0], [2020], [9], [13]] +2020.09.14.17.07.46=[[0], [2020], [9], [14], [17], [7], [46]] +2020.09.14.18.14.00=[[0], [2020], [9], [14], [18], [14], [0]] +2020.09.16.03.5.24=[[0], [2020], [9], [16], [3], [5], [24]] +2020.09.16.09.15.38=[[0], [2020], [9], [16], [9], [15], [38]] +2020.09.16.16.02.20=[[0], [2020], [9], [16], [16], [2], [20]] +2020.09.16.18.10.04=[[0], [2020], [9], [16], [18], [10], [4]] +2020.09.17.18.10.19=[[0], [2020], [9], [17], [18], [10], [19]] +2020.09.17.18.26.02=[[0], [2020], [9], [17], [18], [26], [2]] +2020.09.18.08.06.5=[[0], [2020], [9], [18], [8], [6], [5]] +2020.09.18.08.23.49=[[0], [2020], [9], [18], [8], [23], [49]] +2020.09.18.15.42.03=[[0], [2020], [9], [18], [15], [42], [3]] +2020.09.18.21.5.29=[[0], [2020], [9], [18], [21], [5], [29]] +2020.09.19=[[0], [2020], [9], [19]] +2020.09.19.08.22.59=[[0], [2020], [9], [19], [8], [22], [59]] +2020.09.19.20.20.14=[[0], [2020], [9], [19], [20], [20], [14]] +2020.09.2=[[0], [2020], [9], [2]] +2020.09.21=[[0], [2020], [9], [21]] +2020.09.23.12.58.01=[[0], [2020], [9], [23], [12], [58], [1]] +2020.09.23.21.28.59=[[0], [2020], [9], [23], [21], [28], [59]] +2020.09.23.23.12.07=[[0], [2020], [9], [23], [23], [12], [7]] +2020.09.23.23.13.32=[[0], [2020], [9], [23], [23], [13], [32]] +2020.09.24.02.52.44=[[0], [2020], [9], [24], [2], [52], [44]] +2020.09.24.5.55.20=[[0], [2020], [9], [24], [5], [55], [20]] +2020.09.24.11.51.54=[[0], [2020], [9], [24], [11], [51], [54]] +2020.09.25.13.11.25=[[0], [2020], [9], [25], [13], [11], [25]] +2020.09.25.17.46.30=[[0], [2020], [9], [25], [17], [46], [30]] +2020.09.26.07.48.26=[[0], [2020], [9], [26], [7], [48], [26]] +2020.09.26.15.06.30=[[0], [2020], [9], [26], [15], [6], [30]] +2020.09.27=[[0], [2020], [9], [27]] +2020.09.28=[[0], [2020], [9], [28]] +2020.09.28.09.54.5=[[0], [2020], [9], [28], [9], [54], [5]] +2020.09.28.17.33.40=[[0], [2020], [9], [28], [17], [33], [40]] +2020.09.28.20.29.37=[[0], [2020], [9], [28], [20], [29], [37]] +2020.09.28.21.5.13=[[0], [2020], [9], [28], [21], [5], [13]] +2020.09.28.22.08.29=[[0], [2020], [9], [28], [22], [8], [29]] +2020.09.28.22.13.14=[[0], [2020], [9], [28], [22], [13], [14]] +2020.09.29.03.36.00=[[0], [2020], [9], [29], [3], [36], [0]] +2020.09.29.09.53.28=[[0], [2020], [9], [29], [9], [53], [28]] +2020.09.29.10.44.38=[[0], [2020], [9], [29], [10], [44], [38]] +2020.09.29.13.22.45=[[0], [2020], [9], [29], [13], [22], [45]] +2020.09.29.16.41.07=[[0], [2020], [9], [29], [16], [41], [7]] +2020.09.3=[[0], [2020], [9], [3]] +2020.09.30=[[0], [2020], [9], [30]] +2020.09.30.11.43.38=[[0], [2020], [9], [30], [11], [43], [38]] +2020.09.30.16.33.39=[[0], [2020], [9], [30], [16], [33], [39]] +2020.09.4=[[0], [2020], [9], [4]] +2020.09.5=[[0], [2020], [9], [5]] +2020.1=[[0], [2020], [1]] +2020.1.0=[[0], [2020], [1], [0]] +2020.1.1=[[0], [2020], [1], [1]] +2020.1.10=[[0], [2020], [1], [10]] +2020.1.15=[[0], [2020], [1], [15]] +2020.1.16=[[0], [2020], [1], [16]] +2020.1.17=[[0], [2020], [1], [17]] +2020.1.2=[[0], [2020], [1], [2]] +2020.1.22=[[0], [2020], [1], [22]] +2020.1.24=[[0], [2020], [1], [24]] +2020.1.28=[[0], [2020], [1], [28]] +2020.1.29=[[0], [2020], [1], [29]] +2020.1.3=[[0], [2020], [1], [3]] +2020.1.30=[[0], [2020], [1], [30]] +2020.1.31=[[0], [2020], [1], [31]] +2020.1.31.12.4.51=[[0], [2020], [1], [31], [12], [4], [51]] +2020.1.7=[[0], [2020], [1], [7]] +2020.1.8=[[0], [2020], [1], [8]] +2020.10=[[0], [2020], [10]] +2020.10.0=[[0], [2020], [10], [0]] +2020.10.01=[[0], [2020], [10], [1]] +2020.10.01.08.48.5=[[0], [2020], [10], [1], [8], [48], [5]] +2020.10.01.12.20.34=[[0], [2020], [10], [1], [12], [20], [34]] +2020.10.01.12.20.37=[[0], [2020], [10], [1], [12], [20], [37]] +2020.10.01.12.48.12=[[0], [2020], [10], [1], [12], [48], [12]] +2020.10.01.19.13.14=[[0], [2020], [10], [1], [19], [13], [14]] +2020.10.02=[[0], [2020], [10], [2]] +2020.10.02.09.22.14=[[0], [2020], [10], [2], [9], [22], [14]] +2020.10.02.11.13.19=[[0], [2020], [10], [2], [11], [13], [19]] +2020.10.02.11.26.57=[[0], [2020], [10], [2], [11], [26], [57]] +2020.10.02.13.16.37=[[0], [2020], [10], [2], [13], [16], [37]] +2020.10.03=[[0], [2020], [10], [3]] +2020.10.04.20.30.50=[[0], [2020], [10], [4], [20], [30], [50]] +2020.10.5.16.30.09=[[0], [2020], [10], [5], [16], [30], [9]] +2020.10.06.07.41.18=[[0], [2020], [10], [6], [7], [41], [18]] +2020.10.07.06.34.32=[[0], [2020], [10], [7], [6], [34], [32]] +2020.10.07.09.03.27=[[0], [2020], [10], [7], [9], [3], [27]] +2020.10.07.13.18.22=[[0], [2020], [10], [7], [13], [18], [22]] +2020.10.07.15.27.08=[[0], [2020], [10], [7], [15], [27], [8]] +2020.10.07.18.43.37=[[0], [2020], [10], [7], [18], [43], [37]] +2020.10.07.19.26.27=[[0], [2020], [10], [7], [19], [26], [27]] +2020.10.07.20.17.51=[[0], [2020], [10], [7], [20], [17], [51]] +2020.10.07.20.47.11=[[0], [2020], [10], [7], [20], [47], [11]] +2020.10.07.21.07.43=[[0], [2020], [10], [7], [21], [7], [43]] +2020.10.07.22.34.39=[[0], [2020], [10], [7], [22], [34], [39]] +2020.10.07.22.37.31=[[0], [2020], [10], [7], [22], [37], [31]] +2020.10.07.23.53.48=[[0], [2020], [10], [7], [23], [53], [48]] +2020.10.08=[[0], [2020], [10], [8]] +2020.10.08.11.41.29=[[0], [2020], [10], [8], [11], [41], [29]] +2020.10.08.14.14.24=[[0], [2020], [10], [8], [14], [14], [24]] +2020.10.08.15.13.14=[[0], [2020], [10], [8], [15], [13], [14]] +2020.10.08.18.09.54=[[0], [2020], [10], [8], [18], [9], [54]] +2020.10.08.20.29.16=[[0], [2020], [10], [8], [20], [29], [16]] +2020.10.09.16.47.17=[[0], [2020], [10], [9], [16], [47], [17]] +2020.10.1=[[0], [2020], [10], [1]] +2020.10.10=[[0], [2020], [10], [10]] +2020.10.11=[[0], [2020], [10], [11]] +2020.10.11.15.10.22=[[0], [2020], [10], [11], [15], [10], [22]] +2020.10.12.09.51.03=[[0], [2020], [10], [12], [9], [51], [3]] +2020.10.12.15.08.21=[[0], [2020], [10], [12], [15], [8], [21]] +2020.10.12.15.14.45=[[0], [2020], [10], [12], [15], [14], [45]] +2020.10.12.17.33.53=[[0], [2020], [10], [12], [17], [33], [53]] +2020.10.12.21.02.26=[[0], [2020], [10], [12], [21], [2], [26]] +2020.10.12.22.41.22=[[0], [2020], [10], [12], [22], [41], [22]] +2020.10.13.00.03.02=[[0], [2020], [10], [13], [0], [3], [2]] +2020.10.13.15.16.20=[[0], [2020], [10], [13], [15], [16], [20]] +2020.10.13.18.06.16=[[0], [2020], [10], [13], [18], [6], [16]] +2020.10.13.18.50.19=[[0], [2020], [10], [13], [18], [50], [19]] +2020.10.13.19.09.25=[[0], [2020], [10], [13], [19], [9], [25]] +2020.10.14.13.15.42=[[0], [2020], [10], [14], [13], [15], [42]] +2020.10.14.18.14.07=[[0], [2020], [10], [14], [18], [14], [7]] +2020.10.14.20.18.28=[[0], [2020], [10], [14], [20], [18], [28]] +2020.10.14.22.34.53=[[0], [2020], [10], [14], [22], [34], [53]] +2020.10.15=[[0], [2020], [10], [15]] +2020.10.15.14.59.50=[[0], [2020], [10], [15], [14], [59], [50]] +2020.10.15.16.53.35=[[0], [2020], [10], [15], [16], [53], [35]] +2020.10.15.16.54.09=[[0], [2020], [10], [15], [16], [54], [9]] +2020.10.16=[[0], [2020], [10], [16]] +2020.10.16.00.16.46=[[0], [2020], [10], [16], [0], [16], [46]] +2020.10.16.02.36.37=[[0], [2020], [10], [16], [2], [36], [37]] +2020.10.16.18.51.08=[[0], [2020], [10], [16], [18], [51], [8]] +2020.10.18.07.06.23=[[0], [2020], [10], [18], [7], [6], [23]] +2020.10.18.17.43.44=[[0], [2020], [10], [18], [17], [43], [44]] +2020.10.19.14.5.29=[[0], [2020], [10], [19], [14], [5], [29]] +2020.10.19.14.20.14=[[0], [2020], [10], [19], [14], [20], [14]] +2020.10.19b4=[[0], [2020], [10], [19, 'b', 4]] +2020.10.20=[[0], [2020], [10], [20]] +2020.10.20.11.21.36=[[0], [2020], [10], [20], [11], [21], [36]] +2020.10.20.11.22.02=[[0], [2020], [10], [20], [11], [22], [2]] +2020.10.20.15.08.50=[[0], [2020], [10], [20], [15], [8], [50]] +2020.10.20.15.55.33=[[0], [2020], [10], [20], [15], [55], [33]] +2020.10.20.16.09.06=[[0], [2020], [10], [20], [16], [9], [6]] +2020.10.20.19.24.17=[[0], [2020], [10], [20], [19], [24], [17]] +2020.10.21=[[0], [2020], [10], [21]] +2020.10.21.13.25.30=[[0], [2020], [10], [21], [13], [25], [30]] +2020.10.22.15.42.41=[[0], [2020], [10], [22], [15], [42], [41]] +2020.10.23=[[0], [2020], [10], [23]] +2020.10.24.12.16=[[0], [2020], [10], [24], [12], [16]] +2020.10.24.16.47.03=[[0], [2020], [10], [24], [16], [47], [3]] +2020.10.25.18.56.06=[[0], [2020], [10], [25], [18], [56], [6]] +2020.10.26.03.51.59=[[0], [2020], [10], [26], [3], [51], [59]] +2020.10.26.12.39.30=[[0], [2020], [10], [26], [12], [39], [30]] +2020.10.27=[[0], [2020], [10], [27]] +2020.10.27.07.15.50=[[0], [2020], [10], [27], [7], [15], [50]] +2020.10.27.17.47.18=[[0], [2020], [10], [27], [17], [47], [18]] +2020.10.28=[[0], [2020], [10], [28]] +2020.10.28.12.21.23=[[0], [2020], [10], [28], [12], [21], [23]] +2020.10.29=[[0], [2020], [10], [29]] +2020.10.29.11.45.42=[[0], [2020], [10], [29], [11], [45], [42]] +2020.10.30=[[0], [2020], [10], [30]] +2020.10.31.07.20.24=[[0], [2020], [10], [31], [7], [20], [24]] +2020.10.31.07.46.09=[[0], [2020], [10], [31], [7], [46], [9]] +2020.10.31.07.47.31=[[0], [2020], [10], [31], [7], [47], [31]] +2020.10.31.07.48.09=[[0], [2020], [10], [31], [7], [48], [9]] +2020.10.31.11.52.50=[[0], [2020], [10], [31], [11], [52], [50]] +2020.10.31.20.42.37=[[0], [2020], [10], [31], [20], [42], [37]] +2020.10.6=[[0], [2020], [10], [6]] +2020.10.7=[[0], [2020], [10], [7]] +2020.10.8=[[0], [2020], [10], [8]] +2020.10.9=[[0], [2020], [10], [9]] +2020.10.9.1=[[0], [2020], [10], [9], [1]] +2020.10_1=[[0], [2020], [10], [1]] +2020.11=[[0], [2020], [11]] +2020.11.0=[[0], [2020], [11], [0]] +2020.11.01=[[0], [2020], [11], [1]] +2020.11.01.15.38.34=[[0], [2020], [11], [1], [15], [38], [34]] +2020.11.01.16.28.01=[[0], [2020], [11], [1], [16], [28], [1]] +2020.11.01.23.03.12=[[0], [2020], [11], [1], [23], [3], [12]] +2020.11.02.09.20.27=[[0], [2020], [11], [2], [9], [20], [27]] +2020.11.02.18.31.44=[[0], [2020], [11], [2], [18], [31], [44]] +2020.11.02.18.49.03=[[0], [2020], [11], [2], [18], [49], [3]] +2020.11.03.00.15.30=[[0], [2020], [11], [3], [0], [15], [30]] +2020.11.03.14.04.27=[[0], [2020], [11], [3], [14], [4], [27]] +2020.11.03.15.27.20=[[0], [2020], [11], [3], [15], [27], [20]] +2020.11.03.19.14.45=[[0], [2020], [11], [3], [19], [14], [45]] +2020.11.03.22.36.25=[[0], [2020], [11], [3], [22], [36], [25]] +2020.11.04.10.33.26=[[0], [2020], [11], [4], [10], [33], [26]] +2020.11.04.10.33.32=[[0], [2020], [11], [4], [10], [33], [32]] +2020.11.04.10.36.34=[[0], [2020], [11], [4], [10], [36], [34]] +2020.11.5=[[0], [2020], [11], [5]] +2020.11.06=[[0], [2020], [11], [6]] +2020.11.06.18.20.12=[[0], [2020], [11], [6], [18], [20], [12]] +2020.11.07=[[0], [2020], [11], [7]] +2020.11.07.01.17.04=[[0], [2020], [11], [7], [1], [17], [4]] +2020.11.07.01.17.20=[[0], [2020], [11], [7], [1], [17], [20]] +2020.11.08.20.44.44=[[0], [2020], [11], [8], [20], [44], [44]] +2020.11.1=[[0], [2020], [11], [1]] +2020.11.1.1=[[0], [2020], [11], [1], [1]] +2020.11.10=[[0], [2020], [11], [10]] +2020.11.10.10.45.26=[[0], [2020], [11], [10], [10], [45], [26]] +2020.11.10.18.54.39=[[0], [2020], [11], [10], [18], [54], [39]] +2020.11.10.21.31.03=[[0], [2020], [11], [10], [21], [31], [3]] +2020.11.11=[[0], [2020], [11], [11]] +2020.11.11.10.18.59=[[0], [2020], [11], [11], [10], [18], [59]] +2020.11.11.15.57.25=[[0], [2020], [11], [11], [15], [57], [25]] +2020.11.12=[[0], [2020], [11], [12]] +2020.11.12.0=[[0], [2020], [11], [12], [0]] +2020.11.12.14.52.24=[[0], [2020], [11], [12], [14], [52], [24]] +2020.11.12.16.29.34=[[0], [2020], [11], [12], [16], [29], [34]] +2020.11.12.19.01.39=[[0], [2020], [11], [12], [19], [1], [39]] +2020.11.12.21.44.15=[[0], [2020], [11], [12], [21], [44], [15]] +2020.11.12.21.52.18=[[0], [2020], [11], [12], [21], [52], [18]] +2020.11.13=[[0], [2020], [11], [13]] +2020.11.13.16.12.32=[[0], [2020], [11], [13], [16], [12], [32]] +2020.11.13.16.40.26=[[0], [2020], [11], [13], [16], [40], [26]] +2020.11.13.20.10.34=[[0], [2020], [11], [13], [20], [10], [34]] +2020.11.13.21.19.21=[[0], [2020], [11], [13], [21], [19], [21]] +2020.11.14.07.41.32=[[0], [2020], [11], [14], [7], [41], [32]] +2020.11.14.14.16.41=[[0], [2020], [11], [14], [14], [16], [41]] +2020.11.15=[[0], [2020], [11], [15]] +2020.11.15.04.59.29=[[0], [2020], [11], [15], [4], [59], [29]] +2020.11.15.13.01.59=[[0], [2020], [11], [15], [13], [1], [59]] +2020.11.15.19.46.57=[[0], [2020], [11], [15], [19], [46], [57]] +2020.11.16.10.22.59=[[0], [2020], [11], [16], [10], [22], [59]] +2020.11.16.11.06.23=[[0], [2020], [11], [16], [11], [6], [23]] +2020.11.16.18.10.02=[[0], [2020], [11], [16], [18], [10], [2]] +2020.11.17=[[0], [2020], [11], [17]] +2020.11.17.17.01.24=[[0], [2020], [11], [17], [17], [1], [24]] +2020.11.18=[[0], [2020], [11], [18]] +2020.11.18.18.18.16=[[0], [2020], [11], [18], [18], [18], [16]] +2020.11.18.20.19.01=[[0], [2020], [11], [18], [20], [19], [1]] +2020.11.19=[[0], [2020], [11], [19]] +2020.11.20=[[0], [2020], [11], [20]] +2020.11.20.14.18.33=[[0], [2020], [11], [20], [14], [18], [33]] +2020.11.21=[[0], [2020], [11], [21]] +2020.11.21.04.23.28=[[0], [2020], [11], [21], [4], [23], [28]] +2020.11.21.1=[[0], [2020], [11], [21], [1]] +2020.11.21.12.44.23=[[0], [2020], [11], [21], [12], [44], [23]] +2020.11.22.13.14.13=[[0], [2020], [11], [22], [13], [14], [13]] +2020.11.23.01.47.34=[[0], [2020], [11], [23], [1], [47], [34]] +2020.11.23.12.48.02=[[0], [2020], [11], [23], [12], [48], [2]] +2020.11.23.13.18.02=[[0], [2020], [11], [23], [13], [18], [2]] +2020.11.23.15.13.34=[[0], [2020], [11], [23], [15], [13], [34]] +2020.11.23.16.56.19=[[0], [2020], [11], [23], [16], [56], [19]] +2020.11.23.17.11.04=[[0], [2020], [11], [23], [17], [11], [4]] +2020.11.23.17.11.18=[[0], [2020], [11], [23], [17], [11], [18]] +2020.11.23.21.32.28=[[0], [2020], [11], [23], [21], [32], [28]] +2020.11.24=[[0], [2020], [11], [24]] +2020.11.24.14.19.48=[[0], [2020], [11], [24], [14], [19], [48]] +2020.11.24.19.24.28=[[0], [2020], [11], [24], [19], [24], [28]] +2020.11.24.22.57.48=[[0], [2020], [11], [24], [22], [57], [48]] +2020.11.25=[[0], [2020], [11], [25]] +2020.11.25.09.00.04=[[0], [2020], [11], [25], [9], [0], [4]] +2020.11.25.17.00.45=[[0], [2020], [11], [25], [17], [0], [45]] +2020.11.25.20.41.30=[[0], [2020], [11], [25], [20], [41], [30]] +2020.11.25.21.48.01=[[0], [2020], [11], [25], [21], [48], [1]] +2020.11.26=[[0], [2020], [11], [26]] +2020.11.26.06.28.51=[[0], [2020], [11], [26], [6], [28], [51]] +2020.11.26.07.13.25=[[0], [2020], [11], [26], [7], [13], [25]] +2020.11.27=[[0], [2020], [11], [27]] +2020.11.27.22.34.30=[[0], [2020], [11], [27], [22], [34], [30]] +2020.11.28=[[0], [2020], [11], [28]] +2020.11.29=[[0], [2020], [11], [29]] +2020.11.30=[[0], [2020], [11], [30]] +2020.11.30.18.15.16=[[0], [2020], [11], [30], [18], [15], [16]] +2020.11.4=[[0], [2020], [11], [4]] +2020.11.5=[[0], [2020], [11], [5]] +2020.11.8=[[0], [2020], [11], [8]] +2020.11.9=[[0], [2020], [11], [9]] +2020.12=[[0], [2020], [12]] +2020.12.0=[[0], [2020], [12], [0]] +2020.12.01.14.31.10=[[0], [2020], [12], [1], [14], [31], [10]] +2020.12.01.14.31.16=[[0], [2020], [12], [1], [14], [31], [16]] +2020.12.01.14.33.39=[[0], [2020], [12], [1], [14], [33], [39]] +2020.12.02.08.58.00=[[0], [2020], [12], [2], [8], [58], [0]] +2020.12.02.08.58.36=[[0], [2020], [12], [2], [8], [58], [36]] +2020.12.02.10.35.15=[[0], [2020], [12], [2], [10], [35], [15]] +2020.12.02.18.06.47=[[0], [2020], [12], [2], [18], [6], [47]] +2020.12.04=[[0], [2020], [12], [4]] +2020.12.04.08.17.45=[[0], [2020], [12], [4], [8], [17], [45]] +2020.12.04.16.35.12=[[0], [2020], [12], [4], [16], [35], [12]] +2020.12.04.20.36.45=[[0], [2020], [12], [4], [20], [36], [45]] +2020.12.06.16.40.53=[[0], [2020], [12], [6], [16], [40], [53]] +2020.12.07.18.58.57=[[0], [2020], [12], [7], [18], [58], [57]] +2020.12.08=[[0], [2020], [12], [8]] +2020.12.08.18.08.39=[[0], [2020], [12], [8], [18], [8], [39]] +2020.12.08.22.36.27=[[0], [2020], [12], [8], [22], [36], [27]] +2020.12.09.12.04.26=[[0], [2020], [12], [9], [12], [4], [26]] +2020.12.09.12.57.46=[[0], [2020], [12], [9], [12], [57], [46]] +2020.12.09.17.24.5=[[0], [2020], [12], [9], [17], [24], [5]] +2020.12.1=[[0], [2020], [12], [1]] +2020.12.10=[[0], [2020], [12], [10]] +2020.12.10.15.32.5=[[0], [2020], [12], [10], [15], [32], [5]] +2020.12.10.16.43.04=[[0], [2020], [12], [10], [16], [43], [4]] +2020.12.10.20.27.39=[[0], [2020], [12], [10], [20], [27], [39]] +2020.12.10.20.57.11=[[0], [2020], [12], [10], [20], [57], [11]] +2020.12.10.21.13.33=[[0], [2020], [12], [10], [21], [13], [33]] +2020.12.11=[[0], [2020], [12], [11]] +2020.12.11.09.47.37=[[0], [2020], [12], [11], [9], [47], [37]] +2020.12.12=[[0], [2020], [12], [12]] +2020.12.12.12.24.07=[[0], [2020], [12], [12], [12], [24], [7]] +2020.12.14=[[0], [2020], [12], [14]] +2020.12.14.20.00.20=[[0], [2020], [12], [14], [20], [0], [20]] +2020.12.14.20.07.44=[[0], [2020], [12], [14], [20], [7], [44]] +2020.12.15=[[0], [2020], [12], [15]] +2020.12.15.10.41.23=[[0], [2020], [12], [15], [10], [41], [23]] +2020.12.15.21.48.12=[[0], [2020], [12], [15], [21], [48], [12]] +2020.12.15.22.08.25=[[0], [2020], [12], [15], [22], [8], [25]] +2020.12.16=[[0], [2020], [12], [16]] +2020.12.16.02.08.12=[[0], [2020], [12], [16], [2], [8], [12]] +2020.12.16.09.27.23=[[0], [2020], [12], [16], [9], [27], [23]] +2020.12.16.10.46.5=[[0], [2020], [12], [16], [10], [46], [5]] +2020.12.16.16.31.44=[[0], [2020], [12], [16], [16], [31], [44]] +2020.12.16.17.43.31=[[0], [2020], [12], [16], [17], [43], [31]] +2020.12.17.16.32.44=[[0], [2020], [12], [17], [16], [32], [44]] +2020.12.17_2=[[0], [2020], [12], [17], [2]] +2020.12.18=[[0], [2020], [12], [18]] +2020.12.18.01.20.00=[[0], [2020], [12], [18], [1], [20], [0]] +2020.12.18.16.58.40=[[0], [2020], [12], [18], [16], [58], [40]] +2020.12.18.18.5.13=[[0], [2020], [12], [18], [18], [5], [13]] +2020.12.18.23.13.23=[[0], [2020], [12], [18], [23], [13], [23]] +2020.12.19.03.20.16=[[0], [2020], [12], [19], [3], [20], [16]] +2020.12.2=[[0], [2020], [12], [2]] +2020.12.20.03.10.16=[[0], [2020], [12], [20], [3], [10], [16]] +2020.12.20.15.35.03=[[0], [2020], [12], [20], [15], [35], [3]] +2020.12.20.21.33.49=[[0], [2020], [12], [20], [21], [33], [49]] +2020.12.21.10.29.32=[[0], [2020], [12], [21], [10], [29], [32]] +2020.12.21.11.21.41=[[0], [2020], [12], [21], [11], [21], [41]] +2020.12.21.13.42.08=[[0], [2020], [12], [21], [13], [42], [8]] +2020.12.22=[[0], [2020], [12], [22]] +2020.12.22.11.23.16=[[0], [2020], [12], [22], [11], [23], [16]] +2020.12.22.15.34.48=[[0], [2020], [12], [22], [15], [34], [48]] +2020.12.23=[[0], [2020], [12], [23]] +2020.12.23.12.00.44=[[0], [2020], [12], [23], [12], [0], [44]] +2020.12.23.19.30.24=[[0], [2020], [12], [23], [19], [30], [24]] +2020.12.24=[[0], [2020], [12], [24]] +2020.12.25.18.5.12=[[0], [2020], [12], [25], [18], [5], [12]] +2020.12.26=[[0], [2020], [12], [26]] +2020.12.26.13.11.41=[[0], [2020], [12], [26], [13], [11], [41]] +2020.12.28.08.15.01=[[0], [2020], [12], [28], [8], [15], [1]] +2020.12.28.19.16.11=[[0], [2020], [12], [28], [19], [16], [11]] +2020.12.29=[[0], [2020], [12], [29]] +2020.12.29.17.41.50=[[0], [2020], [12], [29], [17], [41], [50]] +2020.12.29.19.31.56=[[0], [2020], [12], [29], [19], [31], [56]] +2020.12.29.19.35.25=[[0], [2020], [12], [29], [19], [35], [25]] +2020.12.3=[[0], [2020], [12], [3]] +2020.12.30.15.14.36=[[0], [2020], [12], [30], [15], [14], [36]] +2020.12.30.16.09.43=[[0], [2020], [12], [30], [16], [9], [43]] +2020.12.30b24=[[0], [2020], [12], [30, 'b', 24]] +2020.12.31=[[0], [2020], [12], [31]] +2020.12.31.00.10.22=[[0], [2020], [12], [31], [0], [10], [22]] +2020.12.31.20.36.09=[[0], [2020], [12], [31], [20], [36], [9]] +2020.12.31.21.12.36=[[0], [2020], [12], [31], [21], [12], [36]] +2020.12.31.21.46.35=[[0], [2020], [12], [31], [21], [46], [35]] +2020.12.4=[[0], [2020], [12], [4]] +2020.12.5=[[0], [2020], [12], [5]] +2020.12.7=[[0], [2020], [12], [7]] +2020.12.8=[[0], [2020], [12], [8]] +2020.12.9=[[0], [2020], [12], [9]] +2020.12.9b21=[[0], [2020], [12], [9, 'b', 21]] +2020.2=[[0], [2020], [2]] +2020.2.0=[[0], [2020], [2], [0]] +2020.2.1=[[0], [2020], [2], [1]] +2020.2.10=[[0], [2020], [2], [10]] +2020.2.12=[[0], [2020], [2], [12]] +2020.2.15=[[0], [2020], [2], [15]] +2020.2.16=[[0], [2020], [2], [16]] +2020.2.17=[[0], [2020], [2], [17]] +2020.2.17.23.39.39=[[0], [2020], [2], [17], [23], [39], [39]] +2020.2.18=[[0], [2020], [2], [18]] +2020.2.18.11.46.9=[[0], [2020], [2], [18], [11], [46], [9]] +2020.2.19=[[0], [2020], [2], [19]] +2020.2.2=[[0], [2020], [2], [2]] +2020.2.20=[[0], [2020], [2], [20]] +2020.2.21=[[0], [2020], [2], [21]] +2020.2.21.10.36.37=[[0], [2020], [2], [21], [10], [36], [37]] +2020.2.25=[[0], [2020], [2], [25]] +2020.2.26.10.41.58=[[0], [2020], [2], [26], [10], [41], [58]] +2020.2.26.16.29.24=[[0], [2020], [2], [26], [16], [29], [24]] +2020.2.29=[[0], [2020], [2], [29]] +2020.2.3=[[0], [2020], [2], [3]] +2020.2.4=[[0], [2020], [2], [4]] +2020.2.4.15.27.6=[[0], [2020], [2], [4], [15], [27], [6]] +2020.2.4.post1=[[0], [2020], [2], [4], [0, inf, 1]] +2020.2.41=[[0], [2020], [2], [41]] +2020.2.5=[[0], [2020], [2], [5]] +2020.2.6=[[0], [2020], [2], [6]] +2020.2.7=[[0], [2020], [2], [7]] +2020.2.8=[[0], [2020], [2], [8]] +2020.2_1=[[0], [2020], [2], [1]] +2020.3=[[0], [2020], [3]] +2020.3.0=[[0], [2020], [3], [0]] +2020.3.1=[[0], [2020], [3], [1]] +2020.3.10=[[0], [2020], [3], [10]] +2020.3.12=[[0], [2020], [3], [12]] +2020.3.13=[[0], [2020], [3], [13]] +2020.3.16=[[0], [2020], [3], [16]] +2020.3.16.1=[[0], [2020], [3], [16], [1]] +2020.3.16.2=[[0], [2020], [3], [16], [2]] +2020.3.17=[[0], [2020], [3], [17]] +2020.3.2=[[0], [2020], [3], [2]] +2020.3.21.10.12.32=[[0], [2020], [3], [21], [10], [12], [32]] +2020.3.24=[[0], [2020], [3], [24]] +2020.3.25=[[0], [2020], [3], [25]] +2020.3.3=[[0], [2020], [3], [3]] +2020.3.31=[[0], [2020], [3], [31]] +2020.3.4=[[0], [2020], [3], [4]] +2020.4=[[0], [2020], [4]] +2020.4.0=[[0], [2020], [4], [0]] +2020.4.1=[[0], [2020], [4], [1]] +2020.4.14=[[0], [2020], [4], [14]] +2020.4.2=[[0], [2020], [4], [2]] +2020.4.21=[[0], [2020], [4], [21]] +2020.4.21.11.20.15=[[0], [2020], [4], [21], [11], [20], [15]] +2020.4.21.14.53.58=[[0], [2020], [4], [21], [14], [53], [58]] +2020.4.22=[[0], [2020], [4], [22]] +2020.4.23=[[0], [2020], [4], [23]] +2020.4.24=[[0], [2020], [4], [24]] +2020.4.24.9.29.7=[[0], [2020], [4], [24], [9], [29], [7]] +2020.4.27=[[0], [2020], [4], [27]] +2020.4.28=[[0], [2020], [4], [28]] +2020.4.29=[[0], [2020], [4], [29]] +2020.4.3=[[0], [2020], [4], [3]] +2020.4.30=[[0], [2020], [4], [30]] +2020.4.4=[[0], [2020], [4], [4]] +2020.4.5.1=[[0], [2020], [4], [5], [1]] +2020.4.5.2=[[0], [2020], [4], [5], [2]] +2020.4.7=[[0], [2020], [4], [7]] +2020.5=[[0], [2020], [5]] +2020.5.0=[[0], [2020], [5], [0]] +2020.5.1=[[0], [2020], [5], [1]] +2020.5.1.9.54.41=[[0], [2020], [5], [1], [9], [54], [41]] +2020.5.11=[[0], [2020], [5], [11]] +2020.5.11.13.33.35=[[0], [2020], [5], [11], [13], [33], [35]] +2020.5.13=[[0], [2020], [5], [13]] +2020.5.14=[[0], [2020], [5], [14]] +2020.5.16=[[0], [2020], [5], [16]] +2020.5.19=[[0], [2020], [5], [19]] +2020.5.19.15.27.24=[[0], [2020], [5], [19], [15], [27], [24]] +2020.5.2=[[0], [2020], [5], [2]] +2020.5.21=[[0], [2020], [5], [21]] +2020.5.24=[[0], [2020], [5], [24]] +2020.5.27=[[0], [2020], [5], [27]] +2020.5.28=[[0], [2020], [5], [28]] +2020.5.29=[[0], [2020], [5], [29]] +2020.5.3=[[0], [2020], [5], [3]] +2020.5.30=[[0], [2020], [5], [30]] +2020.5.5=[[0], [2020], [5], [5]] +2020.5.7=[[0], [2020], [5], [7]] +2020.5.8=[[0], [2020], [5], [8]] +2020.6=[[0], [2020], [6]] +2020.6.0=[[0], [2020], [6], [0]] +2020.6.1=[[0], [2020], [6], [1]] +2020.6.11=[[0], [2020], [6], [11]] +2020.6.16=[[0], [2020], [6], [16]] +2020.6.16.1=[[0], [2020], [6], [16], [1]] +2020.6.17=[[0], [2020], [6], [17]] +2020.6.2=[[0], [2020], [6], [2]] +2020.6.20=[[0], [2020], [6], [20]] +2020.6.23=[[0], [2020], [6], [23]] +2020.6.26=[[0], [2020], [6], [26]] +2020.6.3=[[0], [2020], [6], [3]] +2020.6.30=[[0], [2020], [6], [30]] +2020.6.4=[[0], [2020], [6], [4]] +2020.6.5=[[0], [2020], [6], [5]] +2020.6.5.10.11.45=[[0], [2020], [6], [5], [10], [11], [45]] +2020.6.6=[[0], [2020], [6], [6]] +2020.6.7=[[0], [2020], [6], [7]] +2020.6.8=[[0], [2020], [6], [8]] +2020.6.9=[[0], [2020], [6], [9]] +2020.7=[[0], [2020], [7]] +2020.7.0=[[0], [2020], [7], [0]] +2020.7.1=[[0], [2020], [7], [1]] +2020.7.10=[[0], [2020], [7], [10]] +2020.7.14=[[0], [2020], [7], [14]] +2020.7.15=[[0], [2020], [7], [15]] +2020.7.16=[[0], [2020], [7], [16]] +2020.7.16.22.25.48=[[0], [2020], [7], [16], [22], [25], [48]] +2020.7.17=[[0], [2020], [7], [17]] +2020.7.18=[[0], [2020], [7], [18]] +2020.7.2=[[0], [2020], [7], [2]] +2020.7.20=[[0], [2020], [7], [20]] +2020.7.21=[[0], [2020], [7], [21]] +2020.7.22=[[0], [2020], [7], [22]] +2020.7.24=[[0], [2020], [7], [24]] +2020.7.28=[[0], [2020], [7], [28]] +2020.7.29=[[0], [2020], [7], [29]] +2020.7.3=[[0], [2020], [7], [3]] +2020.7.30=[[0], [2020], [7], [30]] +2020.7.30.11.47.47=[[0], [2020], [7], [30], [11], [47], [47]] +2020.7.30.11.56.5=[[0], [2020], [7], [30], [11], [56], [5]] +2020.7.30.17.4.28=[[0], [2020], [7], [30], [17], [4], [28]] +2020.7.31.11.53.28=[[0], [2020], [7], [31], [11], [53], [28]] +2020.7.31.23.51.16=[[0], [2020], [7], [31], [23], [51], [16]] +2020.7.4=[[0], [2020], [7], [4]] +2020.7.7=[[0], [2020], [7], [7]] +2020.8=[[0], [2020], [8]] +2020.8.0=[[0], [2020], [8], [0]] +2020.8.1=[[0], [2020], [8], [1]] +2020.8.10=[[0], [2020], [8], [10]] +2020.8.11=[[0], [2020], [8], [11]] +2020.8.12=[[0], [2020], [8], [12]] +2020.8.13=[[0], [2020], [8], [13]] +2020.8.15=[[0], [2020], [8], [15]] +2020.8.17=[[0], [2020], [8], [17]] +2020.8.18=[[0], [2020], [8], [18]] +2020.8.18.15.37.20=[[0], [2020], [8], [18], [15], [37], [20]] +2020.8.18.15.46.4=[[0], [2020], [8], [18], [15], [46], [4]] +2020.8.22=[[0], [2020], [8], [22]] +2020.8.25=[[0], [2020], [8], [25]] +2020.8.3=[[0], [2020], [8], [3]] +2020.8.5=[[0], [2020], [8], [5]] +2020.8.6=[[0], [2020], [8], [6]] +2020.8.8=[[0], [2020], [8], [8]] +2020.9=[[0], [2020], [9]] +2020.9.1=[[0], [2020], [9], [1]] +2020.9.10.15.53.14=[[0], [2020], [9], [10], [15], [53], [14]] +2020.9.10.16.24.8=[[0], [2020], [9], [10], [16], [24], [8]] +2020.9.11=[[0], [2020], [9], [11]] +2020.9.12=[[0], [2020], [9], [12]] +2020.9.13=[[0], [2020], [9], [13]] +2020.9.14=[[0], [2020], [9], [14]] +2020.9.15=[[0], [2020], [9], [15]] +2020.9.16=[[0], [2020], [9], [16]] +2020.9.18=[[0], [2020], [9], [18]] +2020.9.19=[[0], [2020], [9], [19]] +2020.9.2=[[0], [2020], [9], [2]] +2020.9.2.20.23.42=[[0], [2020], [9], [2], [20], [23], [42]] +2020.9.20=[[0], [2020], [9], [20]] +2020.9.22=[[0], [2020], [9], [22]] +2020.9.23=[[0], [2020], [9], [23]] +2020.9.24=[[0], [2020], [9], [24]] +2020.9.25=[[0], [2020], [9], [25]] +2020.9.27=[[0], [2020], [9], [27]] +2020.9.28=[[0], [2020], [9], [28]] +2020.9.29=[[0], [2020], [9], [29]] +2020.9.3=[[0], [2020], [9], [3]] +2020.9.30=[[0], [2020], [9], [30]] +2020.9.5.14.42.2=[[0], [2020], [9], [5], [14], [42], [2]] +2020.9.6=[[0], [2020], [9], [6]] +2020.9.8=[[0], [2020], [9], [8]] +2020.9.9=[[0], [2020], [9], [9]] +20200110=[[0], [20200110]] +20200122=[[0], [20200122]] +20200126=[[0], [20200126]] +20200128=[[0], [20200128]] +20200205=[[0], [20200205]] +20200211=[[0], [20200211]] +20200219=[[0], [20200219]] +20200225.1=[[0], [20200225], [1]] +20200225.2=[[0], [20200225], [2]] +20200226=[[0], [20200226]] +20200304=[[0], [20200304]] +20200305=[[0], [20200305]] +20200317=[[0], [20200317]] +20200320=[[0], [20200320]] +20200322=[[0], [20200322]] +20200323.0=[[0], [20200323], [0]] +20200330=[[0], [20200330]] +20200413.0=[[0], [20200413], [0]] +20200422.0=[[0], [20200422], [0]] +20200423=[[0], [20200423]] +20200428.10.5.5=[[0], [20200428], [10], [5], [5]] +20200428.13.47.36=[[0], [20200428], [13], [47], [36]] +20200505=[[0], [20200505]] +20200505.0=[[0], [20200505], [0]] +20200511=[[0], [20200511]] +20200511.0=[[0], [20200511], [0]] +20200514.00.49.50=[[0], [20200514], [0], [49], [50]] +20200514.00.57.51=[[0], [20200514], [0], [57], [51]] +20200515.13.47.58=[[0], [20200515], [13], [47], [58]] +20200517=[[0], [20200517]] +20200517.03.43.56=[[0], [20200517], [3], [43], [56]] +20200518.0=[[0], [20200518], [0]] +20200520.14.5.38=[[0], [20200520], [14], [5], [38]] +20200520.15.34.58=[[0], [20200520], [15], [34], [58]] +20200520.16.38.30=[[0], [20200520], [16], [38], [30]] +20200520.21.20.54=[[0], [20200520], [21], [20], [54]] +20200520.22.03.44=[[0], [20200520], [22], [3], [44]] +20200521.02.27.49=[[0], [20200521], [2], [27], [49]] +20200521.17.36.00=[[0], [20200521], [17], [36], [0]] +20200521.19.50.00=[[0], [20200521], [19], [50], [0]] +20200521.20.03.07=[[0], [20200521], [20], [3], [7]] +20200522=[[0], [20200522]] +20200522.0=[[0], [20200522], [0]] +20200522.15.45.49=[[0], [20200522], [15], [45], [49]] +20200526.00.39.06=[[0], [20200526], [0], [39], [6]] +20200528.15.47.12=[[0], [20200528], [15], [47], [12]] +20200529.21.11.54=[[0], [20200529], [21], [11], [54]] +20200529.21.13.08=[[0], [20200529], [21], [13], [8]] +20200529.21.26.13=[[0], [20200529], [21], [26], [13]] +20200529.21.33.12=[[0], [20200529], [21], [33], [12]] +20200529.21.36.51=[[0], [20200529], [21], [36], [51]] +20200529.21.40.29=[[0], [20200529], [21], [40], [29]] +20200529.21.43.14=[[0], [20200529], [21], [43], [14]] +20200529.21.46.16=[[0], [20200529], [21], [46], [16]] +20200529.21.51.26=[[0], [20200529], [21], [51], [26]] +20200529.21.52.15=[[0], [20200529], [21], [52], [15]] +20200530.10.47.29=[[0], [20200530], [10], [47], [29]] +20200530.10.53.50=[[0], [20200530], [10], [53], [50]] +20200530.15.54.35=[[0], [20200530], [15], [54], [35]] +20200530.16.32.19=[[0], [20200530], [16], [32], [19]] +20200601.18.11.21=[[0], [20200601], [18], [11], [21]] +20200603.20.14.55=[[0], [20200603], [20], [14], [55]] +20200603.20.19.52=[[0], [20200603], [20], [19], [52]] +20200604.02.52.42=[[0], [20200604], [2], [52], [42]] +20200604.04.15.03=[[0], [20200604], [4], [15], [3]] +20200604.18.10.49=[[0], [20200604], [18], [10], [49]] +20200605.5.19.15=[[0], [20200605], [5], [19], [15]] +20200605.11.42.39=[[0], [20200605], [11], [42], [39]] +20200605.20.10.54=[[0], [20200605], [20], [10], [54]] +20200606.10.22.48=[[0], [20200606], [10], [22], [48]] +20200606.10.33.51=[[0], [20200606], [10], [33], [51]] +20200606.13.39.49=[[0], [20200606], [13], [39], [49]] +20200606.14.26.47=[[0], [20200606], [14], [26], [47]] +20200608.0=[[0], [20200608], [0]] +20200608.15.03.28=[[0], [20200608], [15], [3], [28]] +20200609.12.01.41=[[0], [20200609], [12], [1], [41]] +20200611.16.28.35=[[0], [20200611], [16], [28], [35]] +20200612.03.49.34=[[0], [20200612], [3], [49], [34]] +20200612.08.38.08=[[0], [20200612], [8], [38], [8]] +20200615.17.54.31=[[0], [20200615], [17], [54], [31]] +20200616.11.55.25=[[0], [20200616], [11], [55], [25]] +20200617.20.33.21=[[0], [20200617], [20], [33], [21]] +20200618.20.52.47=[[0], [20200618], [20], [52], [47]] +20200622.1=[[0], [20200622], [1]] +20200624.12.50.58=[[0], [20200624], [12], [50], [58]] +20200703.14.42.21=[[0], [20200703], [14], [42], [21]] +20200703.14.49.48=[[0], [20200703], [14], [49], [48]] +20200708.18.08.14=[[0], [20200708], [18], [8], [14]] +20200713=[[0], [20200713]] +20200715.11.57.07=[[0], [20200715], [11], [57], [7]] +20200715.18.03.44=[[0], [20200715], [18], [3], [44]] +20200715.22.16.50=[[0], [20200715], [22], [16], [50]] +20200716.18.57.02=[[0], [20200716], [18], [57], [2]] +20200717.14.23.58=[[0], [20200717], [14], [23], [58]] +20200718.19.10.00=[[0], [20200718], [19], [10], [0]] +20200720=[[0], [20200720]] +20200720.16.55.17=[[0], [20200720], [16], [55], [17]] +20200722=[[0], [20200722]] +20200722.11.28.50=[[0], [20200722], [11], [28], [50]] +20200723.11.04.25=[[0], [20200723], [11], [4], [25]] +20200724.16.21.18=[[0], [20200724], [16], [21], [18]] +20200725.00.04.39=[[0], [20200725], [0], [4], [39]] +20200725.13.38.53=[[0], [20200725], [13], [38], [53]] +20200725.17.15.53=[[0], [20200725], [17], [15], [53]] +20200725.18.02.27=[[0], [20200725], [18], [2], [27]] +20200725.19.5.50=[[0], [20200725], [19], [5], [50]] +20200726=[[0], [20200726]] +20200726.22.03.22=[[0], [20200726], [22], [3], [22]] +20200729.12.30.33=[[0], [20200729], [12], [30], [33]] +20200729.22.15.55=[[0], [20200729], [22], [15], [55]] +20200801.19.08.44=[[0], [20200801], [19], [8], [44]] +20200802.18.59.02=[[0], [20200802], [18], [59], [2]] +20200804.0=[[0], [20200804], [0]] +20200806.11.21.55=[[0], [20200806], [11], [21], [55]] +20200806.14.03.41=[[0], [20200806], [14], [3], [41]] +20200810.0=[[0], [20200810], [0]] +20200810.17.26.18=[[0], [20200810], [17], [26], [18]] +20200817.19.37.39=[[0], [20200817], [19], [37], [39]] +20200818.0=[[0], [20200818], [0]] +20200818.03.13.48=[[0], [20200818], [3], [13], [48]] +20200818.18.16.02=[[0], [20200818], [18], [16], [2]] +20200821.17.20.38=[[0], [20200821], [17], [20], [38]] +20200821.17.35.53=[[0], [20200821], [17], [35], [53]] +20200825.11.40.56=[[0], [20200825], [11], [40], [56]] +20200825.11.41.46=[[0], [20200825], [11], [41], [46]] +20200825.21.16.22=[[0], [20200825], [21], [16], [22]] +20200827.16.16.10=[[0], [20200827], [16], [16], [10]] +20200831.13.02.33=[[0], [20200831], [13], [2], [33]] +20200901.11.31.23=[[0], [20200901], [11], [31], [23]] +20200901.21.5.57=[[0], [20200901], [21], [5], [57]] +20200907.0=[[0], [20200907], [0]] +20200907.15.30.32=[[0], [20200907], [15], [30], [32]] +20200908.19.42.17=[[0], [20200908], [19], [42], [17]] +20200909.19.52.10=[[0], [20200909], [19], [52], [10]] +20200909.21.18.33=[[0], [20200909], [21], [18], [33]] +20200914.0=[[0], [20200914], [0]] +20200914.15.33.56=[[0], [20200914], [15], [33], [56]] +20200915.11.11.13=[[0], [20200915], [11], [11], [13]] +20200921.0=[[0], [20200921], [0]] +20200921.15.46.24=[[0], [20200921], [15], [46], [24]] +20200922=[[0], [20200922]] +20200922.21.17.15=[[0], [20200922], [21], [17], [15]] +20200922.21.17.37=[[0], [20200922], [21], [17], [37]] +20200922.21.18.5=[[0], [20200922], [21], [18], [5]] +20200923.09.23.10=[[0], [20200923], [9], [23], [10]] +20200923.2=[[0], [20200923], [2]] +20200923.3=[[0], [20200923], [3]] +20200924.08.02.13=[[0], [20200924], [8], [2], [13]] +20200928.0=[[0], [20200928], [0]] +20200928.17.51.12=[[0], [20200928], [17], [51], [12]] +20200929.15.37.45=[[0], [20200929], [15], [37], [45]] +20201001=[[0], [20201001]] +20201002.15.57.39=[[0], [20201002], [15], [57], [39]] +20201004.16.43.10=[[0], [20201004], [16], [43], [10]] +20201005.0=[[0], [20201005], [0]] +20201006.08.38.15=[[0], [20201006], [8], [38], [15]] +20201006.16.36.59=[[0], [20201006], [16], [36], [59]] +20201007.17.34.35=[[0], [20201007], [17], [34], [35]] +20201007.23.53.02=[[0], [20201007], [23], [53], [2]] +20201008.01.49.19=[[0], [20201008], [1], [49], [19]] +20201009.5.37.22=[[0], [20201009], [5], [37], [22]] +20201010.20.55.23=[[0], [20201010], [20], [55], [23]] +20201011.22.11.35=[[0], [20201011], [22], [11], [35]] +20201013.21.30.52=[[0], [20201013], [21], [30], [52]] +20201014.00.47.07=[[0], [20201014], [0], [47], [7]] +20201014.01.24.06=[[0], [20201014], [1], [24], [6]] +20201015.03.07.40=[[0], [20201015], [3], [7], [40]] +20201016.20.10.29=[[0], [20201016], [20], [10], [29]] +20201018=[[0], [20201018]] +20201018.16.29.41=[[0], [20201018], [16], [29], [41]] +20201019.0=[[0], [20201019], [0]] +20201021.16.34.29=[[0], [20201021], [16], [34], [29]] +20201028.23.01.36=[[0], [20201028], [23], [1], [36]] +20201029.10.37.14=[[0], [20201029], [10], [37], [14]] +20201031.14.58.41=[[0], [20201031], [14], [58], [41]] +20201101.22.55.16=[[0], [20201101], [22], [55], [16]] +20201102.00.37.57=[[0], [20201102], [0], [37], [57]] +20201102.13.34.15=[[0], [20201102], [13], [34], [15]] +20201103.16.28.34=[[0], [20201103], [16], [28], [34]] +20201104.10.24.10=[[0], [20201104], [10], [24], [10]] +20201104.11.08.07=[[0], [20201104], [11], [8], [7]] +20201105.13.07.35=[[0], [20201105], [13], [7], [35]] +20201109.14.47.49=[[0], [20201109], [14], [47], [49]] +20201109.17.33.13=[[0], [20201109], [17], [33], [13]] +20201111.06.55.56=[[0], [20201111], [6], [55], [56]] +20201111.15.15.36=[[0], [20201111], [15], [15], [36]] +20201113.12.45.19=[[0], [20201113], [12], [45], [19]] +20201117.0=[[0], [20201117], [0]] +20201118.23.15.49=[[0], [20201118], [23], [15], [49]] +20201118.23.16.42=[[0], [20201118], [23], [16], [42]] +20201118.23.34.02=[[0], [20201118], [23], [34], [2]] +20201120.14.17.51=[[0], [20201120], [14], [17], [51]] +20201120.19.54.29=[[0], [20201120], [19], [54], [29]] +20201122=[[0], [20201122]] +20201122.20.48.44=[[0], [20201122], [20], [48], [44]] +20201125.16.42.55=[[0], [20201125], [16], [42], [55]] +20201205.00.54.19=[[0], [20201205], [0], [54], [19]] +20201205.12.49.56=[[0], [20201205], [12], [49], [56]] +20201205.12.49.58=[[0], [20201205], [12], [49], [58]] +20201205.18.42.56=[[0], [20201205], [18], [42], [56]] +20201206=[[0], [20201206]] +20201208.16.07.04=[[0], [20201208], [16], [7], [4]] +20201208.20.46.21=[[0], [20201208], [20], [46], [21]] +20201209.15.04.48=[[0], [20201209], [15], [4], [48]] +20201213.13.38.10=[[0], [20201213], [13], [38], [10]] +20201213.22.54.19=[[0], [20201213], [22], [54], [19]] +20201214.13.41.24=[[0], [20201214], [13], [41], [24]] +20201215.03.51.10=[[0], [20201215], [3], [51], [10]] +20201215.03.51.39=[[0], [20201215], [3], [51], [39]] +20201215.03.53.08=[[0], [20201215], [3], [53], [8]] +20201215.03.54.30=[[0], [20201215], [3], [54], [30]] +20201215.03.56.19=[[0], [20201215], [3], [56], [19]] +20201215.03.59.5=[[0], [20201215], [3], [59], [5]] +20201215.03.59.21=[[0], [20201215], [3], [59], [21]] +20201215.04.00.31=[[0], [20201215], [4], [0], [31]] +20201215.04.10.35=[[0], [20201215], [4], [10], [35]] +20201215.04.10.43=[[0], [20201215], [4], [10], [43]] +20201215.04.10.46=[[0], [20201215], [4], [10], [46]] +20201215.04.11.04=[[0], [20201215], [4], [11], [4]] +20201215.11.48.26=[[0], [20201215], [11], [48], [26]] +20201215.11.49.09=[[0], [20201215], [11], [49], [9]] +20201215.11.49.47=[[0], [20201215], [11], [49], [47]] +20201215.11.50.54=[[0], [20201215], [11], [50], [54]] +20201215.11.52.26=[[0], [20201215], [11], [52], [26]] +20201215.11.54.24=[[0], [20201215], [11], [54], [24]] +20201215.12.11.09=[[0], [20201215], [12], [11], [9]] +20201215.12.12.19=[[0], [20201215], [12], [12], [19]] +20201215.12.15.17=[[0], [20201215], [12], [15], [17]] +20201216.12.00.47=[[0], [20201216], [12], [0], [47]] +20201217.20.20.42=[[0], [20201217], [20], [20], [42]] +20201217.22.38.00=[[0], [20201217], [22], [38], [0]] +20201222.16.12.09=[[0], [20201222], [16], [12], [9]] +20201223=[[0], [20201223]] +20201225.04.22.41=[[0], [20201225], [4], [22], [41]] +20201230.01.24.34=[[0], [20201230], [1], [24], [34]] +2020_04_03=[[0], [2020], [4], [3]] +2020_1.31=[[0], [2020], [1], [31]] +2020_2.2=[[0], [2020], [2], [2]] +2020_2.3=[[0], [2020], [2], [3]] +2020_3.2=[[0], [2020], [3], [2]] +2020_4.2=[[0], [2020], [4], [2]] +2020a=[[0], [2020, 'a']] +2020b=[[0], [2020, 'b']] +2020c=[[0], [2020, 'c']] +2020d=[[0], [2020, 'd']] +2020e=[[0], [2020, 'e']] +2020f=[[0], [2020, 'f']] +2021.0.0=[[0], [2021], [0], [0]] +2021.0.1=[[0], [2021], [0], [1]] +2021.0.2=[[0], [2021], [0], [2]] +2021.0.3=[[0], [2021], [0], [3]] +2021.0.4=[[0], [2021], [0], [4]] +2021.0.5=[[0], [2021], [0], [5]] +2021.0.6=[[0], [2021], [0], [6]] +2021.0.7=[[0], [2021], [0], [7]] +2021.01.01.06.32.46=[[0], [2021], [1], [1], [6], [32], [46]] +2021.01.01.06.39.5=[[0], [2021], [1], [1], [6], [39], [5]] +2021.01.01.16.59.39=[[0], [2021], [1], [1], [16], [59], [39]] +2021.01.02.17.39.38=[[0], [2021], [1], [2], [17], [39], [38]] +2021.01.02.20.34.06=[[0], [2021], [1], [2], [20], [34], [6]] +2021.01.02.21.38.25=[[0], [2021], [1], [2], [21], [38], [25]] +2021.01.02.21.51.16=[[0], [2021], [1], [2], [21], [51], [16]] +2021.01.02.22.15.58=[[0], [2021], [1], [2], [22], [15], [58]] +2021.01.02.23.04.21=[[0], [2021], [1], [2], [23], [4], [21]] +2021.01.03.14.20.46=[[0], [2021], [1], [3], [14], [20], [46]] +2021.01.03.16.11.28=[[0], [2021], [1], [3], [16], [11], [28]] +2021.01.04.08.19.58.619=[[0], [2021], [1], [4], [8], [19], [58], [619]] +2021.01.04.22.18.20=[[0], [2021], [1], [4], [22], [18], [20]] +2021.01.5=[[0], [2021], [1], [5]] +2021.01.06.5.50.08=[[0], [2021], [1], [6], [5], [50], [8]] +2021.01.06.17.18.37=[[0], [2021], [1], [6], [17], [18], [37]] +2021.01.06.22.06.17=[[0], [2021], [1], [6], [22], [6], [17]] +2021.01.06.23.46.21=[[0], [2021], [1], [6], [23], [46], [21]] +2021.01.07.14.45.49=[[0], [2021], [1], [7], [14], [45], [49]] +2021.01.08=[[0], [2021], [1], [8]] +2021.01.08.07.53.07=[[0], [2021], [1], [8], [7], [53], [7]] +2021.01.08.13.07.06=[[0], [2021], [1], [8], [13], [7], [6]] +2021.01.08.14.47.47=[[0], [2021], [1], [8], [14], [47], [47]] +2021.01.08.15.27.57=[[0], [2021], [1], [8], [15], [27], [57]] +2021.01.08.18.10.03=[[0], [2021], [1], [8], [18], [10], [3]] +2021.01.09.06.19.14=[[0], [2021], [1], [9], [6], [19], [14]] +2021.01.09.14.56.12=[[0], [2021], [1], [9], [14], [56], [12]] +2021.01.09.15.04.21=[[0], [2021], [1], [9], [15], [4], [21]] +2021.01.09.18.21.49=[[0], [2021], [1], [9], [18], [21], [49]] +2021.01.10.01.07.36=[[0], [2021], [1], [10], [1], [7], [36]] +2021.01.10.22.36.39=[[0], [2021], [1], [10], [22], [36], [39]] +2021.01.11=[[0], [2021], [1], [11]] +2021.01.11.07.23.24=[[0], [2021], [1], [11], [7], [23], [24]] +2021.01.11.16.32.51=[[0], [2021], [1], [11], [16], [32], [51]] +2021.01.11.16.49.01=[[0], [2021], [1], [11], [16], [49], [1]] +2021.01.11.17.02.47=[[0], [2021], [1], [11], [17], [2], [47]] +2021.01.11.19.34.08=[[0], [2021], [1], [11], [19], [34], [8]] +2021.01.12.09.41.14=[[0], [2021], [1], [12], [9], [41], [14]] +2021.01.12.14.47.32=[[0], [2021], [1], [12], [14], [47], [32]] +2021.01.12.15.04.08=[[0], [2021], [1], [12], [15], [4], [8]] +2021.01.13.00.11.42=[[0], [2021], [1], [13], [0], [11], [42]] +2021.01.13.00.12.17=[[0], [2021], [1], [13], [0], [12], [17]] +2021.01.13.00.12.29=[[0], [2021], [1], [13], [0], [12], [29]] +2021.01.13.00.12.42=[[0], [2021], [1], [13], [0], [12], [42]] +2021.01.13.00.13.23=[[0], [2021], [1], [13], [0], [13], [23]] +2021.01.13.10.53.5=[[0], [2021], [1], [13], [10], [53], [5]] +2021.01.13.11.13.22=[[0], [2021], [1], [13], [11], [13], [22]] +2021.01.13.15.26.02=[[0], [2021], [1], [13], [15], [26], [2]] +2021.01.13.21.25.48=[[0], [2021], [1], [13], [21], [25], [48]] +2021.01.13.21.45.44=[[0], [2021], [1], [13], [21], [45], [44]] +2021.01.14.02.00.22=[[0], [2021], [1], [14], [2], [0], [22]] +2021.01.14.02.00.42=[[0], [2021], [1], [14], [2], [0], [42]] +2021.01.14.09.11.00=[[0], [2021], [1], [14], [9], [11], [0]] +2021.01.14.14.58.32=[[0], [2021], [1], [14], [14], [58], [32]] +2021.01.14.19.12.27=[[0], [2021], [1], [14], [19], [12], [27]] +2021.01.14.22.52.52=[[0], [2021], [1], [14], [22], [52], [52]] +2021.01.15.03.03.28=[[0], [2021], [1], [15], [3], [3], [28]] +2021.01.15.10.51.29=[[0], [2021], [1], [15], [10], [51], [29]] +2021.01.15.13.32.18=[[0], [2021], [1], [15], [13], [32], [18]] +2021.01.15.16.49.23=[[0], [2021], [1], [15], [16], [49], [23]] +2021.01.15.17.44.36=[[0], [2021], [1], [15], [17], [44], [36]] +2021.01.15.18.48.14=[[0], [2021], [1], [15], [18], [48], [14]] +2021.01.15.19.19.06=[[0], [2021], [1], [15], [19], [19], [6]] +2021.01.15.19.38.06=[[0], [2021], [1], [15], [19], [38], [6]] +2021.01.16=[[0], [2021], [1], [16]] +2021.01.18=[[0], [2021], [1], [18]] +2021.01.18.08.22.28=[[0], [2021], [1], [18], [8], [22], [28]] +2021.01.18.08.28.29=[[0], [2021], [1], [18], [8], [28], [29]] +2021.01.18.09.10.39=[[0], [2021], [1], [18], [9], [10], [39]] +2021.01.18.13.32.07=[[0], [2021], [1], [18], [13], [32], [7]] +2021.01.18.20.12.31=[[0], [2021], [1], [18], [20], [12], [31]] +2021.01.19.11.36.16=[[0], [2021], [1], [19], [11], [36], [16]] +2021.01.20.10.13.49=[[0], [2021], [1], [20], [10], [13], [49]] +2021.01.20.10.14.01=[[0], [2021], [1], [20], [10], [14], [1]] +2021.01.20.10.50.33=[[0], [2021], [1], [20], [10], [50], [33]] +2021.01.20.13.06.20=[[0], [2021], [1], [20], [13], [6], [20]] +2021.01.20.14.54.11=[[0], [2021], [1], [20], [14], [54], [11]] +2021.01.20.17.18.42=[[0], [2021], [1], [20], [17], [18], [42]] +2021.01.20.17.38.08=[[0], [2021], [1], [20], [17], [38], [8]] +2021.01.21.00.27.51=[[0], [2021], [1], [21], [0], [27], [51]] +2021.01.21.19.42.28=[[0], [2021], [1], [21], [19], [42], [28]] +2021.01.21.20.00.11=[[0], [2021], [1], [21], [20], [0], [11]] +2021.01.21.20.5.24=[[0], [2021], [1], [21], [20], [5], [24]] +2021.01.21.20.37.27=[[0], [2021], [1], [21], [20], [37], [27]] +2021.01.21.20.49.50=[[0], [2021], [1], [21], [20], [49], [50]] +2021.01.21.20.50.37=[[0], [2021], [1], [21], [20], [50], [37]] +2021.01.21.20.52.15=[[0], [2021], [1], [21], [20], [52], [15]] +2021.01.21.20.54.11=[[0], [2021], [1], [21], [20], [54], [11]] +2021.01.22=[[0], [2021], [1], [22]] +2021.01.22.00.15.48=[[0], [2021], [1], [22], [0], [15], [48]] +2021.01.22.02.33.32=[[0], [2021], [1], [22], [2], [33], [32]] +2021.01.22.08.09.04=[[0], [2021], [1], [22], [8], [9], [4]] +2021.01.22.09.07.34=[[0], [2021], [1], [22], [9], [7], [34]] +2021.01.22.10.30.34=[[0], [2021], [1], [22], [10], [30], [34]] +2021.01.22.11.31.14=[[0], [2021], [1], [22], [11], [31], [14]] +2021.01.22.15.25.06=[[0], [2021], [1], [22], [15], [25], [6]] +2021.01.22.15.29.58=[[0], [2021], [1], [22], [15], [29], [58]] +2021.01.22.18.42.29=[[0], [2021], [1], [22], [18], [42], [29]] +2021.01.22.19.19.10=[[0], [2021], [1], [22], [19], [19], [10]] +2021.01.23.08.21.35=[[0], [2021], [1], [23], [8], [21], [35]] +2021.01.23.15.45.39=[[0], [2021], [1], [23], [15], [45], [39]] +2021.01.24=[[0], [2021], [1], [24]] +2021.01.24.19.22.01=[[0], [2021], [1], [24], [19], [22], [1]] +2021.01.25.11.09.47=[[0], [2021], [1], [25], [11], [9], [47]] +2021.01.25.14.47.27=[[0], [2021], [1], [25], [14], [47], [27]] +2021.01.26.04.10.57=[[0], [2021], [1], [26], [4], [10], [57]] +2021.01.26.08.41.30=[[0], [2021], [1], [26], [8], [41], [30]] +2021.01.26.21.55.00=[[0], [2021], [1], [26], [21], [55], [0]] +2021.01.26.22.04.53=[[0], [2021], [1], [26], [22], [4], [53]] +2021.01.27=[[0], [2021], [1], [27]] +2021.01.27.06.58.29=[[0], [2021], [1], [27], [6], [58], [29]] +2021.01.27.08.12.57=[[0], [2021], [1], [27], [8], [12], [57]] +2021.01.27.08.19.07=[[0], [2021], [1], [27], [8], [19], [7]] +2021.01.27.12.03.38=[[0], [2021], [1], [27], [12], [3], [38]] +2021.01.27.21.31.49=[[0], [2021], [1], [27], [21], [31], [49]] +2021.01.28=[[0], [2021], [1], [28]] +2021.01.29.20.41.28=[[0], [2021], [1], [29], [20], [41], [28]] +2021.01.30=[[0], [2021], [1], [30]] +2021.01.31.00.18.44=[[0], [2021], [1], [31], [0], [18], [44]] +2021.02.01=[[0], [2021], [2], [1]] +2021.02.02.13.42.52=[[0], [2021], [2], [2], [13], [42], [52]] +2021.02.02.17.45.15=[[0], [2021], [2], [2], [17], [45], [15]] +2021.02.02.22.13.44=[[0], [2021], [2], [2], [22], [13], [44]] +2021.02.03.13.27.35=[[0], [2021], [2], [3], [13], [27], [35]] +2021.02.04=[[0], [2021], [2], [4]] +2021.02.04.12.49.47=[[0], [2021], [2], [4], [12], [49], [47]] +2021.02.04.15.44.04=[[0], [2021], [2], [4], [15], [44], [4]] +2021.02.04.16.58.43=[[0], [2021], [2], [4], [16], [58], [43]] +2021.02.5=[[0], [2021], [2], [5]] +2021.02.5.06.14.51=[[0], [2021], [2], [5], [6], [14], [51]] +2021.02.5.12.35.12=[[0], [2021], [2], [5], [12], [35], [12]] +2021.02.5.18.39.21=[[0], [2021], [2], [5], [18], [39], [21]] +2021.02.5.19.06.00=[[0], [2021], [2], [5], [19], [6], [0]] +2021.02.5.20.43.41=[[0], [2021], [2], [5], [20], [43], [41]] +2021.02.5.22.15=[[0], [2021], [2], [5], [22], [15]] +2021.02.06=[[0], [2021], [2], [6]] +2021.02.06.20.5.27=[[0], [2021], [2], [6], [20], [5], [27]] +2021.02.07=[[0], [2021], [2], [7]] +2021.02.07.11.21.33=[[0], [2021], [2], [7], [11], [21], [33]] +2021.02.08.14.52.5=[[0], [2021], [2], [8], [14], [52], [5]] +2021.02.08.19.19.27=[[0], [2021], [2], [8], [19], [19], [27]] +2021.02.08.20.29.31=[[0], [2021], [2], [8], [20], [29], [31]] +2021.02.09.00.37.38=[[0], [2021], [2], [9], [0], [37], [38]] +2021.02.09.12.13.43=[[0], [2021], [2], [9], [12], [13], [43]] +2021.02.09.12.24.06=[[0], [2021], [2], [9], [12], [24], [6]] +2021.02.09.18.00.00=[[0], [2021], [2], [9], [18], [0], [0]] +2021.02.09.20.54.49=[[0], [2021], [2], [9], [20], [54], [49]] +2021.02.1=[[0], [2021], [2], [1]] +2021.02.10=[[0], [2021], [2], [10]] +2021.02.10.00.55.52=[[0], [2021], [2], [10], [0], [55], [52]] +2021.02.10.11.36.34=[[0], [2021], [2], [10], [11], [36], [34]] +2021.02.10.13.11.27=[[0], [2021], [2], [10], [13], [11], [27]] +2021.02.10.13.52.40=[[0], [2021], [2], [10], [13], [52], [40]] +2021.02.11.03.11.06=[[0], [2021], [2], [11], [3], [11], [6]] +2021.02.11.17.33.54=[[0], [2021], [2], [11], [17], [33], [54]] +2021.02.11.18.30.5=[[0], [2021], [2], [11], [18], [30], [5]] +2021.02.11.19.41.33=[[0], [2021], [2], [11], [19], [41], [33]] +2021.02.11.20.02.02=[[0], [2021], [2], [11], [20], [2], [2]] +2021.02.12=[[0], [2021], [2], [12]] +2021.02.12.11.45.20=[[0], [2021], [2], [12], [11], [45], [20]] +2021.02.12.15.59.38=[[0], [2021], [2], [12], [15], [59], [38]] +2021.02.12.17.51.53=[[0], [2021], [2], [12], [17], [51], [53]] +2021.02.13=[[0], [2021], [2], [13]] +2021.02.13.00.11.08=[[0], [2021], [2], [13], [0], [11], [8]] +2021.02.13.5.44.39=[[0], [2021], [2], [13], [5], [44], [39]] +2021.02.13.12.56.44=[[0], [2021], [2], [13], [12], [56], [44]] +2021.02.13.16.08.32=[[0], [2021], [2], [13], [16], [8], [32]] +2021.02.14.11.06.31=[[0], [2021], [2], [14], [11], [6], [31]] +2021.02.15.18.17.52=[[0], [2021], [2], [15], [18], [17], [52]] +2021.02.16.12.53.49=[[0], [2021], [2], [16], [12], [53], [49]] +2021.02.16.14.13.27=[[0], [2021], [2], [16], [14], [13], [27]] +2021.02.16.17.23.45=[[0], [2021], [2], [16], [17], [23], [45]] +2021.02.16.21.37.58=[[0], [2021], [2], [16], [21], [37], [58]] +2021.02.16.22.51.53=[[0], [2021], [2], [16], [22], [51], [53]] +2021.02.17.06.54.06=[[0], [2021], [2], [17], [6], [54], [6]] +2021.02.17.21.17.16=[[0], [2021], [2], [17], [21], [17], [16]] +2021.02.18=[[0], [2021], [2], [18]] +2021.02.18.01.26.24=[[0], [2021], [2], [18], [1], [26], [24]] +2021.02.19=[[0], [2021], [2], [19]] +2021.02.19.04.55.39=[[0], [2021], [2], [19], [4], [55], [39]] +2021.02.19.14.14.29=[[0], [2021], [2], [19], [14], [14], [29]] +2021.02.19.15.24.04=[[0], [2021], [2], [19], [15], [24], [4]] +2021.02.20.20.42.23=[[0], [2021], [2], [20], [20], [42], [23]] +2021.02.21=[[0], [2021], [2], [21]] +2021.02.21.18.29.10=[[0], [2021], [2], [21], [18], [29], [10]] +2021.02.22.13.58.30=[[0], [2021], [2], [22], [13], [58], [30]] +2021.02.22.16.11.12=[[0], [2021], [2], [22], [16], [11], [12]] +2021.02.22.18.58.55=[[0], [2021], [2], [22], [18], [58], [55]] +2021.02.22.20.37.29=[[0], [2021], [2], [22], [20], [37], [29]] +2021.02.23=[[0], [2021], [2], [23]] +2021.02.23.06.49.59=[[0], [2021], [2], [23], [6], [49], [59]] +2021.02.24=[[0], [2021], [2], [24]] +2021.02.24.15.35.41=[[0], [2021], [2], [24], [15], [35], [41]] +2021.02.25.09.52.02=[[0], [2021], [2], [25], [9], [52], [2]] +2021.02.25.19.12.52=[[0], [2021], [2], [25], [19], [12], [52]] +2021.02.25.19.26.45=[[0], [2021], [2], [25], [19], [26], [45]] +2021.02.25.19.30.33=[[0], [2021], [2], [25], [19], [30], [33]] +2021.02.25.20.42.52=[[0], [2021], [2], [25], [20], [42], [52]] +2021.02.25.21.00.20=[[0], [2021], [2], [25], [21], [0], [20]] +2021.02.25.21.45.38=[[0], [2021], [2], [25], [21], [45], [38]] +2021.02.25.22.01.04=[[0], [2021], [2], [25], [22], [1], [4]] +2021.02.26.07.54.25=[[0], [2021], [2], [26], [7], [54], [25]] +2021.02.26.08.43.38=[[0], [2021], [2], [26], [8], [43], [38]] +2021.02.26.08.44.51=[[0], [2021], [2], [26], [8], [44], [51]] +2021.02.26.08.45.5=[[0], [2021], [2], [26], [8], [45], [5]] +2021.02.26.09.26.57=[[0], [2021], [2], [26], [9], [26], [57]] +2021.02.26.09.28.45=[[0], [2021], [2], [26], [9], [28], [45]] +2021.02.26.11.24.58=[[0], [2021], [2], [26], [11], [24], [58]] +2021.02.26.15.36.03=[[0], [2021], [2], [26], [15], [36], [3]] +2021.03.0=[[0], [2021], [3], [0]] +2021.03.01=[[0], [2021], [3], [1]] +2021.03.01.11.14.33=[[0], [2021], [3], [1], [11], [14], [33]] +2021.03.01.11.30.41=[[0], [2021], [3], [1], [11], [30], [41]] +2021.03.01.12.29.12=[[0], [2021], [3], [1], [12], [29], [12]] +2021.03.01.13.11.42=[[0], [2021], [3], [1], [13], [11], [42]] +2021.03.01.17.49.23=[[0], [2021], [3], [1], [17], [49], [23]] +2021.03.01.19.40.18=[[0], [2021], [3], [1], [19], [40], [18]] +2021.03.02.09.48.16=[[0], [2021], [3], [2], [9], [48], [16]] +2021.03.02.09.49.23=[[0], [2021], [3], [2], [9], [49], [23]] +2021.03.02.11.40.47=[[0], [2021], [3], [2], [11], [40], [47]] +2021.03.02.12.06.47=[[0], [2021], [3], [2], [12], [6], [47]] +2021.03.02.16.00.15=[[0], [2021], [3], [2], [16], [0], [15]] +2021.03.02.16.48.17=[[0], [2021], [3], [2], [16], [48], [17]] +2021.03.02.20.03.28=[[0], [2021], [3], [2], [20], [3], [28]] +2021.03.03=[[0], [2021], [3], [3]] +2021.03.03.07.46.54=[[0], [2021], [3], [3], [7], [46], [54]] +2021.03.03.09.54.37=[[0], [2021], [3], [3], [9], [54], [37]] +2021.03.03.10.54.47=[[0], [2021], [3], [3], [10], [54], [47]] +2021.03.03.14.17.27=[[0], [2021], [3], [3], [14], [17], [27]] +2021.03.03.14.34.46=[[0], [2021], [3], [3], [14], [34], [46]] +2021.03.03.14.53.22=[[0], [2021], [3], [3], [14], [53], [22]] +2021.03.03.20.57.29=[[0], [2021], [3], [3], [20], [57], [29]] +2021.03.04=[[0], [2021], [3], [4]] +2021.03.04.15.24.59=[[0], [2021], [3], [4], [15], [24], [59]] +2021.03.5.02.43.08=[[0], [2021], [3], [5], [2], [43], [8]] +2021.03.5.06.59.08=[[0], [2021], [3], [5], [6], [59], [8]] +2021.03.5.10.46.00=[[0], [2021], [3], [5], [10], [46], [0]] +2021.03.5.10.51.56=[[0], [2021], [3], [5], [10], [51], [56]] +2021.03.5.11.08.04=[[0], [2021], [3], [5], [11], [8], [4]] +2021.03.5.13.29.10=[[0], [2021], [3], [5], [13], [29], [10]] +2021.03.5.14.23.58=[[0], [2021], [3], [5], [14], [23], [58]] +2021.03.5.15.23.24=[[0], [2021], [3], [5], [15], [23], [24]] +2021.03.06=[[0], [2021], [3], [6]] +2021.03.06.03.53.09=[[0], [2021], [3], [6], [3], [53], [9]] +2021.03.06.20.50.02=[[0], [2021], [3], [6], [20], [50], [2]] +2021.03.07.11.50.11=[[0], [2021], [3], [7], [11], [50], [11]] +2021.03.07.13.04.03=[[0], [2021], [3], [7], [13], [4], [3]] +2021.03.07.18.51.23=[[0], [2021], [3], [7], [18], [51], [23]] +2021.03.08.16.14.30=[[0], [2021], [3], [8], [16], [14], [30]] +2021.03.08.18.23.20=[[0], [2021], [3], [8], [18], [23], [20]] +2021.03.09.5.56.03=[[0], [2021], [3], [9], [5], [56], [3]] +2021.03.09.08.18.28=[[0], [2021], [3], [9], [8], [18], [28]] +2021.03.09.08.31.26=[[0], [2021], [3], [9], [8], [31], [26]] +2021.03.09.08.59.33=[[0], [2021], [3], [9], [8], [59], [33]] +2021.03.09.10.29.40=[[0], [2021], [3], [9], [10], [29], [40]] +2021.03.09.13.26.23=[[0], [2021], [3], [9], [13], [26], [23]] +2021.03.09.14.14.27=[[0], [2021], [3], [9], [14], [14], [27]] +2021.03.09.14.43.50=[[0], [2021], [3], [9], [14], [43], [50]] +2021.03.09.15.32.03=[[0], [2021], [3], [9], [15], [32], [3]] +2021.03.09.16.03.5=[[0], [2021], [3], [9], [16], [3], [5]] +2021.03.09.16.03.58=[[0], [2021], [3], [9], [16], [3], [58]] +2021.03.09.16.13.06=[[0], [2021], [3], [9], [16], [13], [6]] +2021.03.09.16.18.34=[[0], [2021], [3], [9], [16], [18], [34]] +2021.03.09.16.23.02=[[0], [2021], [3], [9], [16], [23], [2]] +2021.03.09.16.23.08=[[0], [2021], [3], [9], [16], [23], [8]] +2021.03.09.16.31.55=[[0], [2021], [3], [9], [16], [31], [55]] +2021.03.09.17.11.18=[[0], [2021], [3], [9], [17], [11], [18]] +2021.03.09.17.52.47=[[0], [2021], [3], [9], [17], [52], [47]] +2021.03.09.17.59.11=[[0], [2021], [3], [9], [17], [59], [11]] +2021.03.09.22.39.45=[[0], [2021], [3], [9], [22], [39], [45]] +2021.03.1=[[0], [2021], [3], [1]] +2021.03.10.08.11.17=[[0], [2021], [3], [10], [8], [11], [17]] +2021.03.10.20.27.19=[[0], [2021], [3], [10], [20], [27], [19]] +2021.03.11.06.59.32=[[0], [2021], [3], [11], [6], [59], [32]] +2021.03.11.09.06.20=[[0], [2021], [3], [11], [9], [6], [20]] +2021.03.11.09.17.26=[[0], [2021], [3], [11], [9], [17], [26]] +2021.03.11.10.47.45=[[0], [2021], [3], [11], [10], [47], [45]] +2021.03.11.12.19.54=[[0], [2021], [3], [11], [12], [19], [54]] +2021.03.11.16.06.04=[[0], [2021], [3], [11], [16], [6], [4]] +2021.03.11.17.08.57=[[0], [2021], [3], [11], [17], [8], [57]] +2021.03.11.17.43.23=[[0], [2021], [3], [11], [17], [43], [23]] +2021.03.12.08.20.07=[[0], [2021], [3], [12], [8], [20], [7]] +2021.03.12.09.11.36=[[0], [2021], [3], [12], [9], [11], [36]] +2021.03.12.19.24.49=[[0], [2021], [3], [12], [19], [24], [49]] +2021.03.13.12.09.21=[[0], [2021], [3], [13], [12], [9], [21]] +2021.03.13.19.06.41=[[0], [2021], [3], [13], [19], [6], [41]] +2021.03.13.19.08.27=[[0], [2021], [3], [13], [19], [8], [27]] +2021.03.14=[[0], [2021], [3], [14]] +2021.03.15.03.57.07=[[0], [2021], [3], [15], [3], [57], [7]] +2021.03.15.12.27.52=[[0], [2021], [3], [15], [12], [27], [52]] +2021.03.15.13.17.50=[[0], [2021], [3], [15], [13], [17], [50]] +2021.03.16=[[0], [2021], [3], [16]] +2021.03.17.11.02.03=[[0], [2021], [3], [17], [11], [2], [3]] +2021.03.17.15.5.46=[[0], [2021], [3], [17], [15], [5], [46]] +2021.03.17.22.18.58=[[0], [2021], [3], [17], [22], [18], [58]] +2021.03.18.08.08.13=[[0], [2021], [3], [18], [8], [8], [13]] +2021.03.18.19.24.21=[[0], [2021], [3], [18], [19], [24], [21]] +2021.03.19.06.10.36=[[0], [2021], [3], [19], [6], [10], [36]] +2021.03.19.08.01.08=[[0], [2021], [3], [19], [8], [1], [8]] +2021.03.2=[[0], [2021], [3], [2]] +2021.03.20.03.34.19=[[0], [2021], [3], [20], [3], [34], [19]] +2021.03.20.13.12.43=[[0], [2021], [3], [20], [13], [12], [43]] +2021.03.20.17.14.24=[[0], [2021], [3], [20], [17], [14], [24]] +2021.03.20.22.01.54=[[0], [2021], [3], [20], [22], [1], [54]] +2021.03.21.09.23.20=[[0], [2021], [3], [21], [9], [23], [20]] +2021.03.21.19.58.38=[[0], [2021], [3], [21], [19], [58], [38]] +2021.03.21.21.30.33=[[0], [2021], [3], [21], [21], [30], [33]] +2021.03.22=[[0], [2021], [3], [22]] +2021.03.22.07.37.28=[[0], [2021], [3], [22], [7], [37], [28]] +2021.03.22.11.12.50=[[0], [2021], [3], [22], [11], [12], [50]] +2021.03.23.5.40.02=[[0], [2021], [3], [23], [5], [40], [2]] +2021.03.23.08.35.57=[[0], [2021], [3], [23], [8], [35], [57]] +2021.03.23.12.40.48=[[0], [2021], [3], [23], [12], [40], [48]] +2021.03.23.17.55.38=[[0], [2021], [3], [23], [17], [55], [38]] +2021.03.24.14.49.49=[[0], [2021], [3], [24], [14], [49], [49]] +2021.03.25.11.29.14=[[0], [2021], [3], [25], [11], [29], [14]] +2021.03.25.14.57.03=[[0], [2021], [3], [25], [14], [57], [3]] +2021.03.26.09.02.42=[[0], [2021], [3], [26], [9], [2], [42]] +2021.03.26.11.37.5=[[0], [2021], [3], [26], [11], [37], [5]] +2021.03.26.13.02.38=[[0], [2021], [3], [26], [13], [2], [38]] +2021.03.26.15.18.50=[[0], [2021], [3], [26], [15], [18], [50]] +2021.03.26.18.53.25=[[0], [2021], [3], [26], [18], [53], [25]] +2021.03.26.22.47.29=[[0], [2021], [3], [26], [22], [47], [29]] +2021.03.27=[[0], [2021], [3], [27]] +2021.03.27.06.50.49=[[0], [2021], [3], [27], [6], [50], [49]] +2021.03.28.06.26.20=[[0], [2021], [3], [28], [6], [26], [20]] +2021.03.28.06.26.21=[[0], [2021], [3], [28], [6], [26], [21]] +2021.03.28.13.37.18=[[0], [2021], [3], [28], [13], [37], [18]] +2021.03.28.21.25.09=[[0], [2021], [3], [28], [21], [25], [9]] +2021.03.29=[[0], [2021], [3], [29]] +2021.03.29.11.20.03=[[0], [2021], [3], [29], [11], [20], [3]] +2021.03.29.13.15.38=[[0], [2021], [3], [29], [13], [15], [38]] +2021.03.29.15.45.30=[[0], [2021], [3], [29], [15], [45], [30]] +2021.03.3=[[0], [2021], [3], [3]] +2021.03.31.16.02.06=[[0], [2021], [3], [31], [16], [2], [6]] +2021.03.4=[[0], [2021], [3], [4]] +2021.03.5=[[0], [2021], [3], [5]] +2021.04.0=[[0], [2021], [4], [0]] +2021.04.00=[[0], [2021], [4], [0]] +2021.04.01=[[0], [2021], [4], [1]] +2021.04.01.09.17.11=[[0], [2021], [4], [1], [9], [17], [11]] +2021.04.01.12.40.32=[[0], [2021], [4], [1], [12], [40], [32]] +2021.04.01.12.45.45=[[0], [2021], [4], [1], [12], [45], [45]] +2021.04.02.09.35.22=[[0], [2021], [4], [2], [9], [35], [22]] +2021.04.02.15.43.00=[[0], [2021], [4], [2], [15], [43], [0]] +2021.04.03.5.20.29=[[0], [2021], [4], [3], [5], [20], [29]] +2021.04.04=[[0], [2021], [4], [4]] +2021.04.04.5.03.22=[[0], [2021], [4], [4], [5], [3], [22]] +2021.04.04.06.28.42=[[0], [2021], [4], [4], [6], [28], [42]] +2021.04.04.13.46.57=[[0], [2021], [4], [4], [13], [46], [57]] +2021.04.5=[[0], [2021], [4], [5]] +2021.04.5.09.52.31=[[0], [2021], [4], [5], [9], [52], [31]] +2021.04.5.17.37.43=[[0], [2021], [4], [5], [17], [37], [43]] +2021.04.06.12.55.50=[[0], [2021], [4], [6], [12], [55], [50]] +2021.04.06.13.31.20=[[0], [2021], [4], [6], [13], [31], [20]] +2021.04.06.18.42.56=[[0], [2021], [4], [6], [18], [42], [56]] +2021.04.06.19.11.00=[[0], [2021], [4], [6], [19], [11], [0]] +2021.04.07.18.46.00=[[0], [2021], [4], [7], [18], [46], [0]] +2021.04.08.08.06.32=[[0], [2021], [4], [8], [8], [6], [32]] +2021.04.08.08.07.10=[[0], [2021], [4], [8], [8], [7], [10]] +2021.04.08.09.49.10=[[0], [2021], [4], [8], [9], [49], [10]] +2021.04.08.13.14.59=[[0], [2021], [4], [8], [13], [14], [59]] +2021.04.09.00.48.02=[[0], [2021], [4], [9], [0], [48], [2]] +2021.04.09.07.49.51=[[0], [2021], [4], [9], [7], [49], [51]] +2021.04.09.16.03.53=[[0], [2021], [4], [9], [16], [3], [53]] +2021.04.09.17.43.25=[[0], [2021], [4], [9], [17], [43], [25]] +2021.04.1=[[0], [2021], [4], [1]] +2021.04.10.19.49.31=[[0], [2021], [4], [10], [19], [49], [31]] +2021.04.12.07.49.20=[[0], [2021], [4], [12], [7], [49], [20]] +2021.04.12.12.10.31=[[0], [2021], [4], [12], [12], [10], [31]] +2021.04.12.12.11.21=[[0], [2021], [4], [12], [12], [11], [21]] +2021.04.12.21.54.14=[[0], [2021], [4], [12], [21], [54], [14]] +2021.04.13.13.25.55=[[0], [2021], [4], [13], [13], [25], [55]] +2021.04.13.13.54.57=[[0], [2021], [4], [13], [13], [54], [57]] +2021.04.14=[[0], [2021], [4], [14]] +2021.04.14.08.37.12=[[0], [2021], [4], [14], [8], [37], [12]] +2021.04.15.09.30.17=[[0], [2021], [4], [15], [9], [30], [17]] +2021.04.16=[[0], [2021], [4], [16]] +2021.04.17.14.54.41=[[0], [2021], [4], [17], [14], [54], [41]] +2021.04.19.16.42.48=[[0], [2021], [4], [19], [16], [42], [48]] +2021.04.2=[[0], [2021], [4], [2]] +2021.04.20.06.10.28=[[0], [2021], [4], [20], [6], [10], [28]] +2021.04.20.18.36.07=[[0], [2021], [4], [20], [18], [36], [7]] +2021.04.21=[[0], [2021], [4], [21]] +2021.04.21.17.39.23=[[0], [2021], [4], [21], [17], [39], [23]] +2021.04.22.19.34.35=[[0], [2021], [4], [22], [19], [34], [35]] +2021.04.23=[[0], [2021], [4], [23]] +2021.04.23.13.32.29=[[0], [2021], [4], [23], [13], [32], [29]] +2021.04.24.06.28.24=[[0], [2021], [4], [24], [6], [28], [24]] +2021.04.26=[[0], [2021], [4], [26]] +2021.04.27.07.37.24=[[0], [2021], [4], [27], [7], [37], [24]] +2021.04.28=[[0], [2021], [4], [28]] +2021.04.28.10.30.51=[[0], [2021], [4], [28], [10], [30], [51]] +2021.04.28.12.37.37=[[0], [2021], [4], [28], [12], [37], [37]] +2021.04.29=[[0], [2021], [4], [29]] +2021.04.29.06.02.52=[[0], [2021], [4], [29], [6], [2], [52]] +2021.04.29.07.21.23=[[0], [2021], [4], [29], [7], [21], [23]] +2021.04.29.11.43.28=[[0], [2021], [4], [29], [11], [43], [28]] +2021.04.29.13.58.20=[[0], [2021], [4], [29], [13], [58], [20]] +2021.04.3=[[0], [2021], [4], [3]] +2021.04.30.5.29.14=[[0], [2021], [4], [30], [5], [29], [14]] +2021.04.30.07.03.20=[[0], [2021], [4], [30], [7], [3], [20]] +2021.04.30.14.06.07=[[0], [2021], [4], [30], [14], [6], [7]] +2021.04.30.20.46.56=[[0], [2021], [4], [30], [20], [46], [56]] +2021.04.30.23.32.31=[[0], [2021], [4], [30], [23], [32], [31]] +2021.04.4=[[0], [2021], [4], [4]] +2021.5.0=[[0], [2021], [5], [0]] +2021.5.002=[[0], [2021], [5], [2]] +2021.5.01.04.49.48=[[0], [2021], [5], [1], [4], [49], [48]] +2021.5.01.06.26.24=[[0], [2021], [5], [1], [6], [26], [24]] +2021.5.03.17.22.16=[[0], [2021], [5], [3], [17], [22], [16]] +2021.5.03.19.31.03=[[0], [2021], [5], [3], [19], [31], [3]] +2021.5.04.03.13.01=[[0], [2021], [5], [4], [3], [13], [1]] +2021.5.04.03.28.08=[[0], [2021], [5], [4], [3], [28], [8]] +2021.5.04.04.37.02=[[0], [2021], [5], [4], [4], [37], [2]] +2021.5.04.09.34.47=[[0], [2021], [5], [4], [9], [34], [47]] +2021.5.04.11.10.16=[[0], [2021], [5], [4], [11], [10], [16]] +2021.5.04.12.13.46=[[0], [2021], [5], [4], [12], [13], [46]] +2021.5.04.13.59.10=[[0], [2021], [5], [4], [13], [59], [10]] +2021.5.5.5.27.00=[[0], [2021], [5], [5], [5], [27], [0]] +2021.5.5.08.35.31=[[0], [2021], [5], [5], [8], [35], [31]] +2021.5.5.20.37.49=[[0], [2021], [5], [5], [20], [37], [49]] +2021.5.06.04.07.30=[[0], [2021], [5], [6], [4], [7], [30]] +2021.5.06.04.07.38=[[0], [2021], [5], [6], [4], [7], [38]] +2021.5.06.10.47.03=[[0], [2021], [5], [6], [10], [47], [3]] +2021.5.07.07.45.40=[[0], [2021], [5], [7], [7], [45], [40]] +2021.5.07.07.46.32=[[0], [2021], [5], [7], [7], [46], [32]] +2021.5.07.14.11.28=[[0], [2021], [5], [7], [14], [11], [28]] +2021.5.07.14.12.29=[[0], [2021], [5], [7], [14], [12], [29]] +2021.5.07.21.50.21=[[0], [2021], [5], [7], [21], [50], [21]] +2021.5.07.21.54.12=[[0], [2021], [5], [7], [21], [54], [12]] +2021.5.09.02.32.46=[[0], [2021], [5], [9], [2], [32], [46]] +2021.5.09.5.19.45=[[0], [2021], [5], [9], [5], [19], [45]] +2021.5.10=[[0], [2021], [5], [10]] +2021.5.10.08.45.30=[[0], [2021], [5], [10], [8], [45], [30]] +2021.5.10.08.45.52=[[0], [2021], [5], [10], [8], [45], [52]] +2021.5.10.08.50.57=[[0], [2021], [5], [10], [8], [50], [57]] +2021.5.10.13.04.18=[[0], [2021], [5], [10], [13], [4], [18]] +2021.5.10.13.35.14=[[0], [2021], [5], [10], [13], [35], [14]] +2021.5.10.18.04.02=[[0], [2021], [5], [10], [18], [4], [2]] +2021.5.11.17.38.26=[[0], [2021], [5], [11], [17], [38], [26]] +2021.5.11.20.13.5=[[0], [2021], [5], [11], [20], [13], [5]] +2021.5.12=[[0], [2021], [5], [12]] +2021.5.12.07.26.21=[[0], [2021], [5], [12], [7], [26], [21]] +2021.5.12.13.31.46=[[0], [2021], [5], [12], [13], [31], [46]] +2021.5.12.18.50.42=[[0], [2021], [5], [12], [18], [50], [42]] +2021.5.13.5.52.52=[[0], [2021], [5], [13], [5], [52], [52]] +2021.5.13.06.27.30=[[0], [2021], [5], [13], [6], [27], [30]] +2021.5.13.06.28.40=[[0], [2021], [5], [13], [6], [28], [40]] +2021.5.13.11.03.51=[[0], [2021], [5], [13], [11], [3], [51]] +2021.5.13.19.15.21=[[0], [2021], [5], [13], [19], [15], [21]] +2021.5.14.09.10.29=[[0], [2021], [5], [14], [9], [10], [29]] +2021.5.14.18.59.58=[[0], [2021], [5], [14], [18], [59], [58]] +2021.5.15=[[0], [2021], [5], [15]] +2021.5.15.09.25.10=[[0], [2021], [5], [15], [9], [25], [10]] +2021.5.16.17.33.49=[[0], [2021], [5], [16], [17], [33], [49]] +2021.5.17.04.31.24=[[0], [2021], [5], [17], [4], [31], [24]] +2021.5.17.11.22.30=[[0], [2021], [5], [17], [11], [22], [30]] +2021.5.18.06.34.34=[[0], [2021], [5], [18], [6], [34], [34]] +2021.5.19=[[0], [2021], [5], [19]] +2021.5.19.17.00.25=[[0], [2021], [5], [19], [17], [0], [25]] +2021.5.19.20.23.18=[[0], [2021], [5], [19], [20], [23], [18]] +2021.5.20=[[0], [2021], [5], [20]] +2021.5.20.03.08.44=[[0], [2021], [5], [20], [3], [8], [44]] +2021.5.20.12.45.47=[[0], [2021], [5], [20], [12], [45], [47]] +2021.5.20.13.08.59=[[0], [2021], [5], [20], [13], [8], [59]] +2021.5.21.04.32.12=[[0], [2021], [5], [21], [4], [32], [12]] +2021.5.21.10.03.19=[[0], [2021], [5], [21], [10], [3], [19]] +2021.5.21.11.17.06=[[0], [2021], [5], [21], [11], [17], [6]] +2021.5.21.11.35.00=[[0], [2021], [5], [21], [11], [35], [0]] +2021.5.21.12.25.49=[[0], [2021], [5], [21], [12], [25], [49]] +2021.5.21.13.51.08=[[0], [2021], [5], [21], [13], [51], [8]] +2021.5.23.06.20.32=[[0], [2021], [5], [23], [6], [20], [32]] +2021.5.23.19.32.25=[[0], [2021], [5], [23], [19], [32], [25]] +2021.5.24.03.00.35=[[0], [2021], [5], [24], [3], [0], [35]] +2021.5.24.19.39.56=[[0], [2021], [5], [24], [19], [39], [56]] +2021.5.25.06.47.12=[[0], [2021], [5], [25], [6], [47], [12]] +2021.5.27=[[0], [2021], [5], [27]] +2021.5.27.11.25.44=[[0], [2021], [5], [27], [11], [25], [44]] +2021.5.27.12.00.13=[[0], [2021], [5], [27], [12], [0], [13]] +2021.5.27.16.10.46=[[0], [2021], [5], [27], [16], [10], [46]] +2021.5.27.19.14.28=[[0], [2021], [5], [27], [19], [14], [28]] +2021.5.28.18.39.39=[[0], [2021], [5], [28], [18], [39], [39]] +2021.5.29.5.52.27=[[0], [2021], [5], [29], [5], [52], [27]] +2021.5.29.5.58.58=[[0], [2021], [5], [29], [5], [58], [58]] +2021.5.29.17.33.56=[[0], [2021], [5], [29], [17], [33], [56]] +2021.5.29.17.55.47=[[0], [2021], [5], [29], [17], [55], [47]] +2021.5.29.19.25.09=[[0], [2021], [5], [29], [19], [25], [9]] +2021.5.30=[[0], [2021], [5], [30]] +2021.5.30.06.37.44=[[0], [2021], [5], [30], [6], [37], [44]] +2021.5.30.13.57.26=[[0], [2021], [5], [30], [13], [57], [26]] +2021.5.30.21.14.06=[[0], [2021], [5], [30], [21], [14], [6]] +2021.5.31.13.35.15=[[0], [2021], [5], [31], [13], [35], [15]] +2021.5.31.15.51.19=[[0], [2021], [5], [31], [15], [51], [19]] +2021.5.31.18.53.41=[[0], [2021], [5], [31], [18], [53], [41]] +2021.5.31.19.54.34=[[0], [2021], [5], [31], [19], [54], [34]] +2021.5.31.20.14.01=[[0], [2021], [5], [31], [20], [14], [1]] +2021.06.01=[[0], [2021], [6], [1]] +2021.06.01.04.20.09=[[0], [2021], [6], [1], [4], [20], [9]] +2021.06.01.04.22.10=[[0], [2021], [6], [1], [4], [22], [10]] +2021.06.01.5.21.06=[[0], [2021], [6], [1], [5], [21], [6]] +2021.06.02.12.58.30=[[0], [2021], [6], [2], [12], [58], [30]] +2021.06.02.13.20.38=[[0], [2021], [6], [2], [13], [20], [38]] +2021.06.03=[[0], [2021], [6], [3]] +2021.06.03.08.31.37=[[0], [2021], [6], [3], [8], [31], [37]] +2021.06.03.12.21.11=[[0], [2021], [6], [3], [12], [21], [11]] +2021.06.03.19.15.36=[[0], [2021], [6], [3], [19], [15], [36]] +2021.06.03.19.30.35=[[0], [2021], [6], [3], [19], [30], [35]] +2021.06.04=[[0], [2021], [6], [4]] +2021.06.04.18.58.43=[[0], [2021], [6], [4], [18], [58], [43]] +2021.06.5=[[0], [2021], [6], [5]] +2021.06.06.11.32.14=[[0], [2021], [6], [6], [11], [32], [14]] +2021.06.06.13.20.5=[[0], [2021], [6], [6], [13], [20], [5]] +2021.06.06.13.38.51=[[0], [2021], [6], [6], [13], [38], [51]] +2021.06.06.14.23.31=[[0], [2021], [6], [6], [14], [23], [31]] +2021.06.06.15.51.47=[[0], [2021], [6], [6], [15], [51], [47]] +2021.06.06.17.59.58=[[0], [2021], [6], [6], [17], [59], [58]] +2021.06.06.18.58.44=[[0], [2021], [6], [6], [18], [58], [44]] +2021.06.07.5.50.19=[[0], [2021], [6], [7], [5], [50], [19]] +2021.06.07.06.03.15=[[0], [2021], [6], [7], [6], [3], [15]] +2021.06.07.06.04.09=[[0], [2021], [6], [7], [6], [4], [9]] +2021.06.07.07.55.19=[[0], [2021], [6], [7], [7], [55], [19]] +2021.06.08.18.19.07=[[0], [2021], [6], [8], [18], [19], [7]] +2021.06.08.19.16.20=[[0], [2021], [6], [8], [19], [16], [20]] +2021.06.09.12.45.55=[[0], [2021], [6], [9], [12], [45], [55]] +2021.06.09.12.46.12=[[0], [2021], [6], [9], [12], [46], [12]] +2021.06.09.12.51.26=[[0], [2021], [6], [9], [12], [51], [26]] +2021.06.10.06.09.54=[[0], [2021], [6], [10], [6], [9], [54]] +2021.06.10.08.18.57=[[0], [2021], [6], [10], [8], [18], [57]] +2021.06.10.12.00.57=[[0], [2021], [6], [10], [12], [0], [57]] +2021.06.10.12.30.48=[[0], [2021], [6], [10], [12], [30], [48]] +2021.06.10.14.08.07=[[0], [2021], [6], [10], [14], [8], [7]] +2021.06.11.09.24.58=[[0], [2021], [6], [11], [9], [24], [58]] +2021.06.11.11.13.28=[[0], [2021], [6], [11], [11], [13], [28]] +2021.06.11.18.04.32=[[0], [2021], [6], [11], [18], [4], [32]] +2021.06.11.18.15.44=[[0], [2021], [6], [11], [18], [15], [44]] +2021.06.12.18.00.56=[[0], [2021], [6], [12], [18], [0], [56]] +2021.06.13.16.56.48=[[0], [2021], [6], [13], [16], [56], [48]] +2021.06.14.12.21.47=[[0], [2021], [6], [14], [12], [21], [47]] +2021.06.15=[[0], [2021], [6], [15]] +2021.06.15.19.40.12=[[0], [2021], [6], [15], [19], [40], [12]] +2021.06.15.19.42.39=[[0], [2021], [6], [15], [19], [42], [39]] +2021.06.16.07.35.33=[[0], [2021], [6], [16], [7], [35], [33]] +2021.06.16.10.14.32=[[0], [2021], [6], [16], [10], [14], [32]] +2021.06.16.16.53.58=[[0], [2021], [6], [16], [16], [53], [58]] +2021.06.16.19.20.17=[[0], [2021], [6], [16], [19], [20], [17]] +2021.06.18.08.15.43=[[0], [2021], [6], [18], [8], [15], [43]] +2021.06.18.08.15.47=[[0], [2021], [6], [18], [8], [15], [47]] +2021.06.20.18.38.41=[[0], [2021], [6], [20], [18], [38], [41]] +2021.06.21.02.43.59=[[0], [2021], [6], [21], [2], [43], [59]] +2021.06.21.08.16.27=[[0], [2021], [6], [21], [8], [16], [27]] +2021.06.21.13.13.35=[[0], [2021], [6], [21], [13], [13], [35]] +2021.06.21.13.14.31=[[0], [2021], [6], [21], [13], [14], [31]] +2021.06.21.19.40.11=[[0], [2021], [6], [21], [19], [40], [11]] +2021.06.21.19.41.29=[[0], [2021], [6], [21], [19], [41], [29]] +2021.06.21.19.44.12=[[0], [2021], [6], [21], [19], [44], [12]] +2021.06.22.04.56.18=[[0], [2021], [6], [22], [4], [56], [18]] +2021.06.23.07.26.43=[[0], [2021], [6], [23], [7], [26], [43]] +2021.06.23.10.03.36=[[0], [2021], [6], [23], [10], [3], [36]] +2021.06.23.12.50.49=[[0], [2021], [6], [23], [12], [50], [49]] +2021.06.23.14.21.23=[[0], [2021], [6], [23], [14], [21], [23]] +2021.06.23.14.38.15=[[0], [2021], [6], [23], [14], [38], [15]] +2021.06.23.19.14.55=[[0], [2021], [6], [23], [19], [14], [55]] +2021.06.23.19.15.25=[[0], [2021], [6], [23], [19], [15], [25]] +2021.06.23.19.21.14=[[0], [2021], [6], [23], [19], [21], [14]] +2021.06.24.04.54.45=[[0], [2021], [6], [24], [4], [54], [45]] +2021.06.24.04.58.53=[[0], [2021], [6], [24], [4], [58], [53]] +2021.06.24.04.59.31=[[0], [2021], [6], [24], [4], [59], [31]] +2021.06.24.07.00.52=[[0], [2021], [6], [24], [7], [0], [52]] +2021.06.24.07.39.41=[[0], [2021], [6], [24], [7], [39], [41]] +2021.06.24.13.08.40=[[0], [2021], [6], [24], [13], [8], [40]] +2021.06.24.19.19.34=[[0], [2021], [6], [24], [19], [19], [34]] +2021.06.25.19.28.53=[[0], [2021], [6], [25], [19], [28], [53]] +2021.06.26.09.41.00=[[0], [2021], [6], [26], [9], [41], [0]] +2021.06.26.09.45.00=[[0], [2021], [6], [26], [9], [45], [0]] +2021.06.26.09.48.18=[[0], [2021], [6], [26], [9], [48], [18]] +2021.06.26.09.51.46=[[0], [2021], [6], [26], [9], [51], [46]] +2021.06.26.14.08.36=[[0], [2021], [6], [26], [14], [8], [36]] +2021.06.26.17.17.42=[[0], [2021], [6], [26], [17], [17], [42]] +2021.06.27.07.32.44=[[0], [2021], [6], [27], [7], [32], [44]] +2021.06.27.12.20.13=[[0], [2021], [6], [27], [12], [20], [13]] +2021.06.27.12.20.29=[[0], [2021], [6], [27], [12], [20], [29]] +2021.06.29=[[0], [2021], [6], [29]] +2021.06.29.02.04.54=[[0], [2021], [6], [29], [2], [4], [54]] +2021.06.29.5.53.46=[[0], [2021], [6], [29], [5], [53], [46]] +2021.06.29.15.41.36=[[0], [2021], [6], [29], [15], [41], [36]] +2021.06.30=[[0], [2021], [6], [30]] +2021.06.30.5.51.30=[[0], [2021], [6], [30], [5], [51], [30]] +2021.06.30.5.52.22=[[0], [2021], [6], [30], [5], [52], [22]] +2021.06.30.16.50.29=[[0], [2021], [6], [30], [16], [50], [29]] +2021.06.30.16.50.47=[[0], [2021], [6], [30], [16], [50], [47]] +2021.07.0=[[0], [2021], [7], [0]] +2021.07.01.17.09.14=[[0], [2021], [7], [1], [17], [9], [14]] +2021.07.02.12.06.00=[[0], [2021], [7], [2], [12], [6], [0]] +2021.07.02.13.35.43=[[0], [2021], [7], [2], [13], [35], [43]] +2021.07.02.15.37.15=[[0], [2021], [7], [2], [15], [37], [15]] +2021.07.03.13.42.34=[[0], [2021], [7], [3], [13], [42], [34]] +2021.07.03.17.26.03=[[0], [2021], [7], [3], [17], [26], [3]] +2021.07.04.06.12.14=[[0], [2021], [7], [4], [6], [12], [14]] +2021.07.04.16.58.42=[[0], [2021], [7], [4], [16], [58], [42]] +2021.07.5.14.37.02=[[0], [2021], [7], [5], [14], [37], [2]] +2021.07.5.18.29.06=[[0], [2021], [7], [5], [18], [29], [6]] +2021.07.5.18.48.25=[[0], [2021], [7], [5], [18], [48], [25]] +2021.07.5.18.49.25=[[0], [2021], [7], [5], [18], [49], [25]] +2021.07.5.18.53.45=[[0], [2021], [7], [5], [18], [53], [45]] +2021.07.5.19.11.37=[[0], [2021], [7], [5], [19], [11], [37]] +2021.07.5.21.22.36=[[0], [2021], [7], [5], [21], [22], [36]] +2021.07.06.09.30.02=[[0], [2021], [7], [6], [9], [30], [2]] +2021.07.06.17.46.33=[[0], [2021], [7], [6], [17], [46], [33]] +2021.07.06.19.03.5=[[0], [2021], [7], [6], [19], [3], [5]] +2021.07.06.20.59.07=[[0], [2021], [7], [6], [20], [59], [7]] +2021.07.06.21.30.14=[[0], [2021], [7], [6], [21], [30], [14]] +2021.07.06.21.55.47=[[0], [2021], [7], [6], [21], [55], [47]] +2021.07.06.22.44.26=[[0], [2021], [7], [6], [22], [44], [26]] +2021.07.07.07.21.45=[[0], [2021], [7], [7], [7], [21], [45]] +2021.07.07.07.29.11=[[0], [2021], [7], [7], [7], [29], [11]] +2021.07.07.10.15.37=[[0], [2021], [7], [7], [10], [15], [37]] +2021.07.07.12.50.48=[[0], [2021], [7], [7], [12], [50], [48]] +2021.07.07.15.42.36=[[0], [2021], [7], [7], [15], [42], [36]] +2021.07.08.5.52.37=[[0], [2021], [7], [8], [5], [52], [37]] +2021.07.08.5.53.35=[[0], [2021], [7], [8], [5], [53], [35]] +2021.07.08.5.56.39=[[0], [2021], [7], [8], [5], [56], [39]] +2021.07.09=[[0], [2021], [7], [9]] +2021.07.09.5.57.39=[[0], [2021], [7], [9], [5], [57], [39]] +2021.07.09.06.16.01=[[0], [2021], [7], [9], [6], [16], [1]] +2021.07.09.06.19.08=[[0], [2021], [7], [9], [6], [19], [8]] +2021.07.09.13.37.12=[[0], [2021], [7], [9], [13], [37], [12]] +2021.07.1=[[0], [2021], [7], [1]] +2021.07.10.5.17.21=[[0], [2021], [7], [10], [5], [17], [21]] +2021.07.11.12.10.29=[[0], [2021], [7], [11], [12], [10], [29]] +2021.07.13=[[0], [2021], [7], [13]] +2021.07.14.07.32.57=[[0], [2021], [7], [14], [7], [32], [57]] +2021.07.14.14.38.04=[[0], [2021], [7], [14], [14], [38], [4]] +2021.07.15.07.57.26=[[0], [2021], [7], [15], [7], [57], [26]] +2021.07.16=[[0], [2021], [7], [16]] +2021.07.16.5.11.27=[[0], [2021], [7], [16], [5], [11], [27]] +2021.07.17=[[0], [2021], [7], [17]] +2021.07.18.01.27.32=[[0], [2021], [7], [18], [1], [27], [32]] +2021.07.18.01.27.37=[[0], [2021], [7], [18], [1], [27], [37]] +2021.07.18.06.20.38=[[0], [2021], [7], [18], [6], [20], [38]] +2021.07.18.08.46.59=[[0], [2021], [7], [18], [8], [46], [59]] +2021.07.19.17.59.15=[[0], [2021], [7], [19], [17], [59], [15]] +2021.07.21.07.43.34=[[0], [2021], [7], [21], [7], [43], [34]] +2021.07.21.11.32.06=[[0], [2021], [7], [21], [11], [32], [6]] +2021.07.21.16.24.32=[[0], [2021], [7], [21], [16], [24], [32]] +2021.07.21.20.39.59=[[0], [2021], [7], [21], [20], [39], [59]] +2021.07.21.22.24.14=[[0], [2021], [7], [21], [22], [24], [14]] +2021.07.22.07.49.14=[[0], [2021], [7], [22], [7], [49], [14]] +2021.07.22.10.53.36=[[0], [2021], [7], [22], [10], [53], [36]] +2021.07.23.09.5.31=[[0], [2021], [7], [23], [9], [5], [31]] +2021.07.23.11.50.59=[[0], [2021], [7], [23], [11], [50], [59]] +2021.07.23.11.55.58=[[0], [2021], [7], [23], [11], [55], [58]] +2021.07.24=[[0], [2021], [7], [24]] +2021.07.25.07.58.12=[[0], [2021], [7], [25], [7], [58], [12]] +2021.07.25.10.25.07=[[0], [2021], [7], [25], [10], [25], [7]] +2021.07.25.11.01.12=[[0], [2021], [7], [25], [11], [1], [12]] +2021.07.26=[[0], [2021], [7], [26]] +2021.07.26.07.32.18=[[0], [2021], [7], [26], [7], [32], [18]] +2021.07.26.10.51.38=[[0], [2021], [7], [26], [10], [51], [38]] +2021.07.26.14.39.31=[[0], [2021], [7], [26], [14], [39], [31]] +2021.07.27.13.04.27=[[0], [2021], [7], [27], [13], [4], [27]] +2021.07.27.19.47.02=[[0], [2021], [7], [27], [19], [47], [2]] +2021.07.28=[[0], [2021], [7], [28]] +2021.07.28.08.03.56=[[0], [2021], [7], [28], [8], [3], [56]] +2021.07.29=[[0], [2021], [7], [29]] +2021.07.29.07.25.26=[[0], [2021], [7], [29], [7], [25], [26]] +2021.07.29.19.16.08=[[0], [2021], [7], [29], [19], [16], [8]] +2021.07.29.23.13.45=[[0], [2021], [7], [29], [23], [13], [45]] +2021.07.30=[[0], [2021], [7], [30]] +2021.07.30.06.17.46=[[0], [2021], [7], [30], [6], [17], [46]] +2021.07.30.07.43.16=[[0], [2021], [7], [30], [7], [43], [16]] +2021.07.30.08.02.55=[[0], [2021], [7], [30], [8], [2], [55]] +2021.07.30.08.11.18=[[0], [2021], [7], [30], [8], [11], [18]] +2021.07.30.11.17.02=[[0], [2021], [7], [30], [11], [17], [2]] +2021.08.0=[[0], [2021], [8], [0]] +2021.08.01=[[0], [2021], [8], [1]] +2021.08.02=[[0], [2021], [8], [2]] +2021.08.02.00=[[0], [2021], [8], [2], [0]] +2021.08.02.07.59.16=[[0], [2021], [8], [2], [7], [59], [16]] +2021.08.02.10.03.47=[[0], [2021], [8], [2], [10], [3], [47]] +2021.08.02.12.49.19=[[0], [2021], [8], [2], [12], [49], [19]] +2021.08.02.13.50.20=[[0], [2021], [8], [2], [13], [50], [20]] +2021.08.02.18.50.19=[[0], [2021], [8], [2], [18], [50], [19]] +2021.08.03.07.36.34=[[0], [2021], [8], [3], [7], [36], [34]] +2021.08.03.08.19.27=[[0], [2021], [8], [3], [8], [19], [27]] +2021.08.03.12.17.29=[[0], [2021], [8], [3], [12], [17], [29]] +2021.08.03.20.37.26=[[0], [2021], [8], [3], [20], [37], [26]] +2021.08.04=[[0], [2021], [8], [4]] +2021.08.04.12.02.02=[[0], [2021], [8], [4], [12], [2], [2]] +2021.08.04.16.13.53=[[0], [2021], [8], [4], [16], [13], [53]] +2021.08.04.19.20.59=[[0], [2021], [8], [4], [19], [20], [59]] +2021.08.5.06.02.11=[[0], [2021], [8], [5], [6], [2], [11]] +2021.08.5.18.49.22=[[0], [2021], [8], [5], [18], [49], [22]] +2021.08.5.18.49.42=[[0], [2021], [8], [5], [18], [49], [42]] +2021.08.06=[[0], [2021], [8], [6]] +2021.08.06.19.41.12=[[0], [2021], [8], [6], [19], [41], [12]] +2021.08.07.07.31.39=[[0], [2021], [8], [7], [7], [31], [39]] +2021.08.07.13.25.53=[[0], [2021], [8], [7], [13], [25], [53]] +2021.08.07.13.26.34=[[0], [2021], [8], [7], [13], [26], [34]] +2021.08.08.03.57.11=[[0], [2021], [8], [8], [3], [57], [11]] +2021.08.09=[[0], [2021], [8], [9]] +2021.08.11=[[0], [2021], [8], [11]] +2021.08.11.08.27.19=[[0], [2021], [8], [11], [8], [27], [19]] +2021.08.11.13.14.20=[[0], [2021], [8], [11], [13], [14], [20]] +2021.08.11.13.25.00=[[0], [2021], [8], [11], [13], [25], [0]] +2021.08.11.13.32.18=[[0], [2021], [8], [11], [13], [32], [18]] +2021.08.11.15.51.53=[[0], [2021], [8], [11], [15], [51], [53]] +2021.08.11.16.56.58=[[0], [2021], [8], [11], [16], [56], [58]] +2021.08.11.20.24.59=[[0], [2021], [8], [11], [20], [24], [59]] +2021.08.12=[[0], [2021], [8], [12]] +2021.08.12.5.10.51=[[0], [2021], [8], [12], [5], [10], [51]] +2021.08.14.10.07.17=[[0], [2021], [8], [14], [10], [7], [17]] +2021.08.14.10.30.44=[[0], [2021], [8], [14], [10], [30], [44]] +2021.08.15=[[0], [2021], [8], [15]] +2021.08.16=[[0], [2021], [8], [16]] +2021.08.17=[[0], [2021], [8], [17]] +2021.08.17.12.40.09=[[0], [2021], [8], [17], [12], [40], [9]] +2021.08.18.12.46.46=[[0], [2021], [8], [18], [12], [46], [46]] +2021.08.19.19.17.07=[[0], [2021], [8], [19], [19], [17], [7]] +2021.08.20.14.07.28=[[0], [2021], [8], [20], [14], [7], [28]] +2021.08.20.17.24.12=[[0], [2021], [8], [20], [17], [24], [12]] +2021.08.20.21.03.08=[[0], [2021], [8], [20], [21], [3], [8]] +2021.08.21=[[0], [2021], [8], [21]] +2021.08.22.14.13.28=[[0], [2021], [8], [22], [14], [13], [28]] +2021.08.22.15.08.21=[[0], [2021], [8], [22], [15], [8], [21]] +2021.08.23=[[0], [2021], [8], [23]] +2021.08.23.00=[[0], [2021], [8], [23], [0]] +2021.08.24=[[0], [2021], [8], [24]] +2021.08.24.08.46.15=[[0], [2021], [8], [24], [8], [46], [15]] +2021.08.24.09.50.37=[[0], [2021], [8], [24], [9], [50], [37]] +2021.08.24.19.08.13=[[0], [2021], [8], [24], [19], [8], [13]] +2021.08.24.20.53.37=[[0], [2021], [8], [24], [20], [53], [37]] +2021.08.25.17.17.57=[[0], [2021], [8], [25], [17], [17], [57]] +2021.08.25.20.48.50=[[0], [2021], [8], [25], [20], [48], [50]] +2021.08.26=[[0], [2021], [8], [26]] +2021.08.26.08.06.04=[[0], [2021], [8], [26], [8], [6], [4]] +2021.08.26.14.38.21=[[0], [2021], [8], [26], [14], [38], [21]] +2021.08.27.15.13.14=[[0], [2021], [8], [27], [15], [13], [14]] +2021.08.27.17.30.23=[[0], [2021], [8], [27], [17], [30], [23]] +2021.08.28.07.07.17=[[0], [2021], [8], [28], [7], [7], [17]] +2021.08.28.13.14.36=[[0], [2021], [8], [28], [13], [14], [36]] +2021.08.30.12.31.33=[[0], [2021], [8], [30], [12], [31], [33]] +2021.08.31=[[0], [2021], [8], [31]] +2021.08.31.06.27.03=[[0], [2021], [8], [31], [6], [27], [3]] +2021.08.31.12.12.37=[[0], [2021], [8], [31], [12], [12], [37]] +2021.08.31.17.13.10=[[0], [2021], [8], [31], [17], [13], [10]] +2021.0814=[[0], [2021], [814]] +2021.09.01=[[0], [2021], [9], [1]] +2021.09.01.13.23.17=[[0], [2021], [9], [1], [13], [23], [17]] +2021.09.01.13.24.03=[[0], [2021], [9], [1], [13], [24], [3]] +2021.09.01.15.16.23=[[0], [2021], [9], [1], [15], [16], [23]] +2021.09.01.19.36.24=[[0], [2021], [9], [1], [19], [36], [24]] +2021.09.01.19.59.10=[[0], [2021], [9], [1], [19], [59], [10]] +2021.09.02.07.24.59=[[0], [2021], [9], [2], [7], [24], [59]] +2021.09.02.12.47.16=[[0], [2021], [9], [2], [12], [47], [16]] +2021.09.03.10.00.36=[[0], [2021], [9], [3], [10], [0], [36]] +2021.09.04.06.26.55=[[0], [2021], [9], [4], [6], [26], [55]] +2021.09.04.06.27.17=[[0], [2021], [9], [4], [6], [27], [17]] +2021.09.5.11.13.08=[[0], [2021], [9], [5], [11], [13], [8]] +2021.09.06=[[0], [2021], [9], [6]] +2021.09.06.00=[[0], [2021], [9], [6], [0]] +2021.09.06.17.49.39=[[0], [2021], [9], [6], [17], [49], [39]] +2021.09.06.19.10.42=[[0], [2021], [9], [6], [19], [10], [42]] +2021.09.07.19.41.11=[[0], [2021], [9], [7], [19], [41], [11]] +2021.09.08=[[0], [2021], [9], [8]] +2021.09.08.04.27.50=[[0], [2021], [9], [8], [4], [27], [50]] +2021.09.08.17.55.54=[[0], [2021], [9], [8], [17], [55], [54]] +2021.09.08.19.33.08=[[0], [2021], [9], [8], [19], [33], [8]] +2021.09.08.19.36.45=[[0], [2021], [9], [8], [19], [36], [45]] +2021.09.08.19.37.20=[[0], [2021], [9], [8], [19], [37], [20]] +2021.09.08.19.38.37=[[0], [2021], [9], [8], [19], [38], [37]] +2021.09.09.09.53.54=[[0], [2021], [9], [9], [9], [53], [54]] +2021.09.09.18.37.58=[[0], [2021], [9], [9], [18], [37], [58]] +2021.09.1=[[0], [2021], [9], [1]] +2021.09.10.04.35.28=[[0], [2021], [9], [10], [4], [35], [28]] +2021.09.10.08.20.24=[[0], [2021], [9], [10], [8], [20], [24]] +2021.09.10.12.5.17=[[0], [2021], [9], [10], [12], [5], [17]] +2021.09.11=[[0], [2021], [9], [11]] +2021.09.11.5.26.33=[[0], [2021], [9], [11], [5], [26], [33]] +2021.09.11.17.45.07=[[0], [2021], [9], [11], [17], [45], [7]] +2021.09.12.15.00.37=[[0], [2021], [9], [12], [15], [0], [37]] +2021.09.12.20.29.51=[[0], [2021], [9], [12], [20], [29], [51]] +2021.09.13.00=[[0], [2021], [9], [13], [0]] +2021.09.13.07.45.03=[[0], [2021], [9], [13], [7], [45], [3]] +2021.09.13.17.04.56=[[0], [2021], [9], [13], [17], [4], [56]] +2021.09.13.18.02.33=[[0], [2021], [9], [13], [18], [2], [33]] +2021.09.14.01.25.07=[[0], [2021], [9], [14], [1], [25], [7]] +2021.09.14.5.32.42=[[0], [2021], [9], [14], [5], [32], [42]] +2021.09.14.14.16.49=[[0], [2021], [9], [14], [14], [16], [49]] +2021.09.14.16.50.33=[[0], [2021], [9], [14], [16], [50], [33]] +2021.09.14.23.42.52=[[0], [2021], [9], [14], [23], [42], [52]] +2021.09.15.06.06.59=[[0], [2021], [9], [15], [6], [6], [59]] +2021.09.15.18.54.07=[[0], [2021], [9], [15], [18], [54], [7]] +2021.09.16.16.29.28=[[0], [2021], [9], [16], [16], [29], [28]] +2021.09.16.16.55.48=[[0], [2021], [9], [16], [16], [55], [48]] +2021.09.16.19.31.02=[[0], [2021], [9], [16], [19], [31], [2]] +2021.09.16.19.31.43=[[0], [2021], [9], [16], [19], [31], [43]] +2021.09.16.19.33.28=[[0], [2021], [9], [16], [19], [33], [28]] +2021.09.16.19.34.16=[[0], [2021], [9], [16], [19], [34], [16]] +2021.09.16.19.35.38=[[0], [2021], [9], [16], [19], [35], [38]] +2021.09.17=[[0], [2021], [9], [17]] +2021.09.17.5.51.46=[[0], [2021], [9], [17], [5], [51], [46]] +2021.09.18.06.25.36=[[0], [2021], [9], [18], [6], [25], [36]] +2021.09.18.11.30.50=[[0], [2021], [9], [18], [11], [30], [50]] +2021.09.18.12.11.20=[[0], [2021], [9], [18], [12], [11], [20]] +2021.09.19.5.45.53=[[0], [2021], [9], [19], [5], [45], [53]] +2021.09.19.06.12.32=[[0], [2021], [9], [19], [6], [12], [32]] +2021.09.19.18.58.33=[[0], [2021], [9], [19], [18], [58], [33]] +2021.09.2=[[0], [2021], [9], [2]] +2021.09.20.00=[[0], [2021], [9], [20], [0]] +2021.09.20.09.23.12=[[0], [2021], [9], [20], [9], [23], [12]] +2021.09.20.16.37.35=[[0], [2021], [9], [20], [16], [37], [35]] +2021.09.20.19.07.36=[[0], [2021], [9], [20], [19], [7], [36]] +2021.09.20.19.58.40=[[0], [2021], [9], [20], [19], [58], [40]] +2021.09.21.5.16.19=[[0], [2021], [9], [21], [5], [16], [19]] +2021.09.21.16.23.56=[[0], [2021], [9], [21], [16], [23], [56]] +2021.09.22.12.25.12=[[0], [2021], [9], [22], [12], [25], [12]] +2021.09.22.17.56.27=[[0], [2021], [9], [22], [17], [56], [27]] +2021.09.23.07.33.37=[[0], [2021], [9], [23], [7], [33], [37]] +2021.09.23.16.54.17=[[0], [2021], [9], [23], [16], [54], [17]] +2021.09.24.10.19.42=[[0], [2021], [9], [24], [10], [19], [42]] +2021.09.25.11.37.45=[[0], [2021], [9], [25], [11], [37], [45]] +2021.09.25.11.41.17=[[0], [2021], [9], [25], [11], [41], [17]] +2021.09.25.11.41.51=[[0], [2021], [9], [25], [11], [41], [51]] +2021.09.25.11.56.47=[[0], [2021], [9], [25], [11], [56], [47]] +2021.09.26.06.24.32=[[0], [2021], [9], [26], [6], [24], [32]] +2021.09.26.18.14.07=[[0], [2021], [9], [26], [18], [14], [7]] +2021.09.26.18.14.27=[[0], [2021], [9], [26], [18], [14], [27]] +2021.09.26.18.22.49=[[0], [2021], [9], [26], [18], [22], [49]] +2021.09.26.gr3.8=[[0], [2021], [9], [26], [0, 'gr', 3], [8]] +2021.09.26.gr3.9=[[0], [2021], [9], [26], [0, 'gr', 3], [9]] +2021.09.27.00=[[0], [2021], [9], [27], [0]] +2021.09.27.04.23.34=[[0], [2021], [9], [27], [4], [23], [34]] +2021.09.27.04.24.06=[[0], [2021], [9], [27], [4], [24], [6]] +2021.09.27.04.24.34=[[0], [2021], [9], [27], [4], [24], [34]] +2021.09.27.04.24.35=[[0], [2021], [9], [27], [4], [24], [35]] +2021.09.27.11.28.37=[[0], [2021], [9], [27], [11], [28], [37]] +2021.09.27.18.34.32=[[0], [2021], [9], [27], [18], [34], [32]] +2021.09.28=[[0], [2021], [9], [28]] +2021.09.28.08.30.34=[[0], [2021], [9], [28], [8], [30], [34]] +2021.09.28.08.56.09=[[0], [2021], [9], [28], [8], [56], [9]] +2021.09.28.12.10.28=[[0], [2021], [9], [28], [12], [10], [28]] +2021.09.28.15.07.49=[[0], [2021], [9], [28], [15], [7], [49]] +2021.09.28.17.32.49=[[0], [2021], [9], [28], [17], [32], [49]] +2021.09.28.18.18.24=[[0], [2021], [9], [28], [18], [18], [24]] +2021.09.28.19.51.35=[[0], [2021], [9], [28], [19], [51], [35]] +2021.09.29=[[0], [2021], [9], [29]] +2021.09.29.19.08.16=[[0], [2021], [9], [29], [19], [8], [16]] +2021.09.29.19.57.52=[[0], [2021], [9], [29], [19], [57], [52]] +2021.09.3=[[0], [2021], [9], [3]] +2021.09.30=[[0], [2021], [9], [30]] +2021.09.30.13.35.17=[[0], [2021], [9], [30], [13], [35], [17]] +2021.09.30.18.20.56=[[0], [2021], [9], [30], [18], [20], [56]] +2021.09.30.18.26.11=[[0], [2021], [9], [30], [18], [26], [11]] +2021.09.30.20.35.40=[[0], [2021], [9], [30], [20], [35], [40]] +2021.09.4=[[0], [2021], [9], [4]] +2021.09.5=[[0], [2021], [9], [5]] +2021.1=[[0], [2021], [1]] +2021.1.0=[[0], [2021], [1], [0]] +2021.1.1=[[0], [2021], [1], [1]] +2021.1.11=[[0], [2021], [1], [11]] +2021.1.13=[[0], [2021], [1], [13]] +2021.1.14=[[0], [2021], [1], [14]] +2021.1.15=[[0], [2021], [1], [15]] +2021.1.16=[[0], [2021], [1], [16]] +2021.1.2=[[0], [2021], [1], [2]] +2021.1.20=[[0], [2021], [1], [20]] +2021.1.21=[[0], [2021], [1], [21]] +2021.1.24.1=[[0], [2021], [1], [24], [1]] +2021.1.25=[[0], [2021], [1], [25]] +2021.1.28=[[0], [2021], [1], [28]] +2021.1.3=[[0], [2021], [1], [3]] +2021.1.4=[[0], [2021], [1], [4]] +2021.1.5=[[0], [2021], [1], [5]] +2021.1.6=[[0], [2021], [1], [6]] +2021.1.7=[[0], [2021], [1], [7]] +2021.1.8=[[0], [2021], [1], [8]] +2021.10=[[0], [2021], [10]] +2021.10.0=[[0], [2021], [10], [0]] +2021.10.01.10.31.28=[[0], [2021], [10], [1], [10], [31], [28]] +2021.10.02.18.18.33=[[0], [2021], [10], [2], [18], [18], [33]] +2021.10.02.19.18.39=[[0], [2021], [10], [2], [19], [18], [39]] +2021.10.02.19.19.46=[[0], [2021], [10], [2], [19], [19], [46]] +2021.10.02.19.22.52=[[0], [2021], [10], [2], [19], [22], [52]] +2021.10.02.19.28.15=[[0], [2021], [10], [2], [19], [28], [15]] +2021.10.02.19.29.40=[[0], [2021], [10], [2], [19], [29], [40]] +2021.10.02.19.31.29=[[0], [2021], [10], [2], [19], [31], [29]] +2021.10.02.19.35.26=[[0], [2021], [10], [2], [19], [35], [26]] +2021.10.02.19.43.30=[[0], [2021], [10], [2], [19], [43], [30]] +2021.10.02.20.04.23=[[0], [2021], [10], [2], [20], [4], [23]] +2021.10.03.04.50.14=[[0], [2021], [10], [3], [4], [50], [14]] +2021.10.03.04.50.38=[[0], [2021], [10], [3], [4], [50], [38]] +2021.10.03.04.50.56=[[0], [2021], [10], [3], [4], [50], [56]] +2021.10.03.14.57.11=[[0], [2021], [10], [3], [14], [57], [11]] +2021.10.04.00=[[0], [2021], [10], [4], [0]] +2021.10.04.01.54.40=[[0], [2021], [10], [4], [1], [54], [40]] +2021.10.04.18.35.53=[[0], [2021], [10], [4], [18], [35], [53]] +2021.10.04.19.42.48=[[0], [2021], [10], [4], [19], [42], [48]] +2021.10.04.21.09.37=[[0], [2021], [10], [4], [21], [9], [37]] +2021.10.04.21.54.16=[[0], [2021], [10], [4], [21], [54], [16]] +2021.10.04.21.54.47=[[0], [2021], [10], [4], [21], [54], [47]] +2021.10.5.12.13.40=[[0], [2021], [10], [5], [12], [13], [40]] +2021.10.5.13.41.55=[[0], [2021], [10], [5], [13], [41], [55]] +2021.10.5.15.34.59=[[0], [2021], [10], [5], [15], [34], [59]] +2021.10.5.23.24.58=[[0], [2021], [10], [5], [23], [24], [58]] +2021.10.06=[[0], [2021], [10], [6]] +2021.10.06.07.16.42=[[0], [2021], [10], [6], [7], [16], [42]] +2021.10.06.07.17.19=[[0], [2021], [10], [6], [7], [17], [19]] +2021.10.06.07.17.27=[[0], [2021], [10], [6], [7], [17], [27]] +2021.10.06.08.16.35=[[0], [2021], [10], [6], [8], [16], [35]] +2021.10.06.22.07.41=[[0], [2021], [10], [6], [22], [7], [41]] +2021.10.07.13.33.31=[[0], [2021], [10], [7], [13], [33], [31]] +2021.10.07.13.38.58=[[0], [2021], [10], [7], [13], [38], [58]] +2021.10.08.08.39.03=[[0], [2021], [10], [8], [8], [39], [3]] +2021.10.08.16.45.02=[[0], [2021], [10], [8], [16], [45], [2]] +2021.10.09=[[0], [2021], [10], [9]] +2021.10.1=[[0], [2021], [10], [1]] +2021.10.10=[[0], [2021], [10], [10]] +2021.10.10.22.03.30=[[0], [2021], [10], [10], [22], [3], [30]] +2021.10.11=[[0], [2021], [10], [11]] +2021.10.12=[[0], [2021], [10], [12]] +2021.10.12.12.38.27=[[0], [2021], [10], [12], [12], [38], [27]] +2021.10.12.19.5.13=[[0], [2021], [10], [12], [19], [5], [13]] +2021.10.13=[[0], [2021], [10], [13]] +2021.10.13.14.39.09=[[0], [2021], [10], [13], [14], [39], [9]] +2021.10.13.14.39.56=[[0], [2021], [10], [13], [14], [39], [56]] +2021.10.13.14.41.18=[[0], [2021], [10], [13], [14], [41], [18]] +2021.10.13.18.53.40=[[0], [2021], [10], [13], [18], [53], [40]] +2021.10.13.18.54.36=[[0], [2021], [10], [13], [18], [54], [36]] +2021.10.13.20.25.29=[[0], [2021], [10], [13], [20], [25], [29]] +2021.10.13.20.25.34=[[0], [2021], [10], [13], [20], [25], [34]] +2021.10.13.20.28.53=[[0], [2021], [10], [13], [20], [28], [53]] +2021.10.14=[[0], [2021], [10], [14]] +2021.10.15=[[0], [2021], [10], [15]] +2021.10.16.13.24.41=[[0], [2021], [10], [16], [13], [24], [41]] +2021.10.16.13.25.24=[[0], [2021], [10], [16], [13], [25], [24]] +2021.10.16.20.31.55=[[0], [2021], [10], [16], [20], [31], [55]] +2021.10.17=[[0], [2021], [10], [17]] +2021.10.17.5.19.28=[[0], [2021], [10], [17], [5], [19], [28]] +2021.10.17.5.19.58=[[0], [2021], [10], [17], [5], [19], [58]] +2021.10.17.5.23.58=[[0], [2021], [10], [17], [5], [23], [58]] +2021.10.17.5.24.25=[[0], [2021], [10], [17], [5], [24], [25]] +2021.10.18=[[0], [2021], [10], [18]] +2021.10.18.00=[[0], [2021], [10], [18], [0]] +2021.10.18.5.45.34=[[0], [2021], [10], [18], [5], [45], [34]] +2021.10.18.15.47.12=[[0], [2021], [10], [18], [15], [47], [12]] +2021.10.19.00.27.40=[[0], [2021], [10], [19], [0], [27], [40]] +2021.10.19.12.53.40=[[0], [2021], [10], [19], [12], [53], [40]] +2021.10.19.14.43.13=[[0], [2021], [10], [19], [14], [43], [13]] +2021.10.19.19.34.43=[[0], [2021], [10], [19], [19], [34], [43]] +2021.10.19.19.50.47=[[0], [2021], [10], [19], [19], [50], [47]] +2021.10.2=[[0], [2021], [10], [2]] +2021.10.20.09.54.11=[[0], [2021], [10], [20], [9], [54], [11]] +2021.10.20.09.55.13=[[0], [2021], [10], [20], [9], [55], [13]] +2021.10.20.09.58.59=[[0], [2021], [10], [20], [9], [58], [59]] +2021.10.20.10.45.40=[[0], [2021], [10], [20], [10], [45], [40]] +2021.10.20.11.00.47=[[0], [2021], [10], [20], [11], [0], [47]] +2021.10.20.15.45.32=[[0], [2021], [10], [20], [15], [45], [32]] +2021.10.20.17.23.01=[[0], [2021], [10], [20], [17], [23], [1]] +2021.10.20.19.04.24=[[0], [2021], [10], [20], [19], [4], [24]] +2021.10.20.19.04.40=[[0], [2021], [10], [20], [19], [4], [40]] +2021.10.20.19.04.48=[[0], [2021], [10], [20], [19], [4], [48]] +2021.10.20.19.08.40=[[0], [2021], [10], [20], [19], [8], [40]] +2021.10.20.19.09.48=[[0], [2021], [10], [20], [19], [9], [48]] +2021.10.20.19.16.36=[[0], [2021], [10], [20], [19], [16], [36]] +2021.10.20.22.24.36=[[0], [2021], [10], [20], [22], [24], [36]] +2021.10.21=[[0], [2021], [10], [21]] +2021.10.21.11.39.39=[[0], [2021], [10], [21], [11], [39], [39]] +2021.10.22=[[0], [2021], [10], [22]] +2021.10.22.07.28.38=[[0], [2021], [10], [22], [7], [28], [38]] +2021.10.22.07.31.20=[[0], [2021], [10], [22], [7], [31], [20]] +2021.10.22.11.06.24=[[0], [2021], [10], [22], [11], [6], [24]] +2021.10.22.17.22.02=[[0], [2021], [10], [22], [17], [22], [2]] +2021.10.22.20.56.07=[[0], [2021], [10], [22], [20], [56], [7]] +2021.10.23=[[0], [2021], [10], [23]] +2021.10.24=[[0], [2021], [10], [24]] +2021.10.25=[[0], [2021], [10], [25]] +2021.10.25.00=[[0], [2021], [10], [25], [0]] +2021.10.25.16.23.24=[[0], [2021], [10], [25], [16], [23], [24]] +2021.10.25.16.37.45=[[0], [2021], [10], [25], [16], [37], [45]] +2021.10.25.23.28.29=[[0], [2021], [10], [25], [23], [28], [29]] +2021.10.26=[[0], [2021], [10], [26]] +2021.10.27=[[0], [2021], [10], [27]] +2021.10.27.16.34.33=[[0], [2021], [10], [27], [16], [34], [33]] +2021.10.27.19.55.21=[[0], [2021], [10], [27], [19], [55], [21]] +2021.10.28.00.11.12=[[0], [2021], [10], [28], [0], [11], [12]] +2021.10.28.10.17.27=[[0], [2021], [10], [28], [10], [17], [27]] +2021.10.28.11.11.18=[[0], [2021], [10], [28], [11], [11], [18]] +2021.10.28.15.03.29=[[0], [2021], [10], [28], [15], [3], [29]] +2021.10.29=[[0], [2021], [10], [29]] +2021.10.29.07.22.09=[[0], [2021], [10], [29], [7], [22], [9]] +2021.10.29.07.34.22=[[0], [2021], [10], [29], [7], [34], [22]] +2021.10.3=[[0], [2021], [10], [3]] +2021.10.30.01.57.10=[[0], [2021], [10], [30], [1], [57], [10]] +2021.10.30.10.37.17=[[0], [2021], [10], [30], [10], [37], [17]] +2021.10.30.13.29.36=[[0], [2021], [10], [30], [13], [29], [36]] +2021.10.30.13.31.5=[[0], [2021], [10], [30], [13], [31], [5]] +2021.10.30.17.45.23=[[0], [2021], [10], [30], [17], [45], [23]] +2021.10.31=[[0], [2021], [10], [31]] +2021.10.31.18.51.35=[[0], [2021], [10], [31], [18], [51], [35]] +2021.10.4=[[0], [2021], [10], [4]] +2021.10.5=[[0], [2021], [10], [5]] +2021.10.5.0=[[0], [2021], [10], [5], [0]] +2021.10.6=[[0], [2021], [10], [6]] +2021.10.7=[[0], [2021], [10], [7]] +2021.10.7.1=[[0], [2021], [10], [7], [1]] +2021.10.7.23.40.37=[[0], [2021], [10], [7], [23], [40], [37]] +2021.10.8=[[0], [2021], [10], [8]] +2021.10.8.0=[[0], [2021], [10], [8], [0]] +2021.10.8.1=[[0], [2021], [10], [8], [1]] +2021.10.8.2=[[0], [2021], [10], [8], [2]] +2021.10.8.3=[[0], [2021], [10], [8], [3]] +2021.10.9=[[0], [2021], [10], [9]] +2021.1006=[[0], [2021], [1006]] +2021.11=[[0], [2021], [11]] +2021.11.0=[[0], [2021], [11], [0]] +2021.11.001=[[0], [2021], [11], [1]] +2021.11.01=[[0], [2021], [11], [1]] +2021.11.01.00=[[0], [2021], [11], [1], [0]] +2021.11.01.03.37.22=[[0], [2021], [11], [1], [3], [37], [22]] +2021.11.01.14.38.46=[[0], [2021], [11], [1], [14], [38], [46]] +2021.11.01.14.43.27=[[0], [2021], [11], [1], [14], [43], [27]] +2021.11.01.16.15.27=[[0], [2021], [11], [1], [16], [15], [27]] +2021.11.01.20.14.43=[[0], [2021], [11], [1], [20], [14], [43]] +2021.11.01.21.58.36=[[0], [2021], [11], [1], [21], [58], [36]] +2021.11.02=[[0], [2021], [11], [2]] +2021.11.02.10.51.41=[[0], [2021], [11], [2], [10], [51], [41]] +2021.11.02.13.16.49=[[0], [2021], [11], [2], [13], [16], [49]] +2021.11.02.13.43.59=[[0], [2021], [11], [2], [13], [43], [59]] +2021.11.02.13.44.19=[[0], [2021], [11], [2], [13], [44], [19]] +2021.11.02.13.47.38=[[0], [2021], [11], [2], [13], [47], [38]] +2021.11.02.14.58.36=[[0], [2021], [11], [2], [14], [58], [36]] +2021.11.02.15.31.35=[[0], [2021], [11], [2], [15], [31], [35]] +2021.11.02.15.38.33=[[0], [2021], [11], [2], [15], [38], [33]] +2021.11.02.19.51.37=[[0], [2021], [11], [2], [19], [51], [37]] +2021.11.02.20.02.01=[[0], [2021], [11], [2], [20], [2], [1]] +2021.11.02.20.53.42=[[0], [2021], [11], [2], [20], [53], [42]] +2021.11.03.14.42.24=[[0], [2021], [11], [3], [14], [42], [24]] +2021.11.03.23.52.26=[[0], [2021], [11], [3], [23], [52], [26]] +2021.11.04=[[0], [2021], [11], [4]] +2021.11.04.13.17.13=[[0], [2021], [11], [4], [13], [17], [13]] +2021.11.04.14.02.03=[[0], [2021], [11], [4], [14], [2], [3]] +2021.11.04.14.33.12=[[0], [2021], [11], [4], [14], [33], [12]] +2021.11.04.20.47.06=[[0], [2021], [11], [4], [20], [47], [6]] +2021.11.5.06.04.56=[[0], [2021], [11], [5], [6], [4], [56]] +2021.11.5.06.07.08=[[0], [2021], [11], [5], [6], [7], [8]] +2021.11.5.13.08.42=[[0], [2021], [11], [5], [13], [8], [42]] +2021.11.5.13.41.56=[[0], [2021], [11], [5], [13], [41], [56]] +2021.11.5.13.42.27=[[0], [2021], [11], [5], [13], [42], [27]] +2021.11.5.14.12.54=[[0], [2021], [11], [5], [14], [12], [54]] +2021.11.5.16.04.24=[[0], [2021], [11], [5], [16], [4], [24]] +2021.11.5.19.42.11=[[0], [2021], [11], [5], [19], [42], [11]] +2021.11.5.20.51.02=[[0], [2021], [11], [5], [20], [51], [2]] +2021.11.06=[[0], [2021], [11], [6]] +2021.11.07=[[0], [2021], [11], [7]] +2021.11.07.11.04.46=[[0], [2021], [11], [7], [11], [4], [46]] +2021.11.07.12.06.04=[[0], [2021], [11], [7], [12], [6], [4]] +2021.11.08.00=[[0], [2021], [11], [8], [0]] +2021.11.08.01.51.47=[[0], [2021], [11], [8], [1], [51], [47]] +2021.11.08.12.30.35=[[0], [2021], [11], [8], [12], [30], [35]] +2021.11.08.12.30.51=[[0], [2021], [11], [8], [12], [30], [51]] +2021.11.08.12.31.14=[[0], [2021], [11], [8], [12], [31], [14]] +2021.11.08.14.56.40=[[0], [2021], [11], [8], [14], [56], [40]] +2021.11.08.16.07.04=[[0], [2021], [11], [8], [16], [7], [4]] +2021.11.08.17.18.53=[[0], [2021], [11], [8], [17], [18], [53]] +2021.11.08.17.22.51=[[0], [2021], [11], [8], [17], [22], [51]] +2021.11.09=[[0], [2021], [11], [9]] +2021.11.09.00.35.45=[[0], [2021], [11], [9], [0], [35], [45]] +2021.11.09.08.32.45=[[0], [2021], [11], [9], [8], [32], [45]] +2021.11.09.11.27.09=[[0], [2021], [11], [9], [11], [27], [9]] +2021.11.09.12.53.33=[[0], [2021], [11], [9], [12], [53], [33]] +2021.11.09.13.41.48=[[0], [2021], [11], [9], [13], [41], [48]] +2021.11.09.16.16.13=[[0], [2021], [11], [9], [16], [16], [13]] +2021.11.09.16.18.45=[[0], [2021], [11], [9], [16], [18], [45]] +2021.11.09.18.53.34=[[0], [2021], [11], [9], [18], [53], [34]] +2021.11.1=[[0], [2021], [11], [1]] +2021.11.10=[[0], [2021], [11], [10]] +2021.11.10.00.44.44=[[0], [2021], [11], [10], [0], [44], [44]] +2021.11.10.11.11.54=[[0], [2021], [11], [10], [11], [11], [54]] +2021.11.10.13.02.31=[[0], [2021], [11], [10], [13], [2], [31]] +2021.11.10.17.41.07=[[0], [2021], [11], [10], [17], [41], [7]] +2021.11.10.20.30.57=[[0], [2021], [11], [10], [20], [30], [57]] +2021.11.10.20.45.22=[[0], [2021], [11], [10], [20], [45], [22]] +2021.11.10.21.33.30=[[0], [2021], [11], [10], [21], [33], [30]] +2021.11.11=[[0], [2021], [11], [11]] +2021.11.11.00.26.27=[[0], [2021], [11], [11], [0], [26], [27]] +2021.11.11.06.30.39=[[0], [2021], [11], [11], [6], [30], [39]] +2021.11.11.06.31.57=[[0], [2021], [11], [11], [6], [31], [57]] +2021.11.11.10.04.21=[[0], [2021], [11], [11], [10], [4], [21]] +2021.11.11.14.27.22=[[0], [2021], [11], [11], [14], [27], [22]] +2021.11.11.16.10.5=[[0], [2021], [11], [11], [16], [10], [5]] +2021.11.11.16.34.59=[[0], [2021], [11], [11], [16], [34], [59]] +2021.11.11.20.25.44=[[0], [2021], [11], [11], [20], [25], [44]] +2021.11.12=[[0], [2021], [11], [12]] +2021.11.12.06.15.55=[[0], [2021], [11], [12], [6], [15], [55]] +2021.11.12.13.49.06=[[0], [2021], [11], [12], [13], [49], [6]] +2021.11.12.14.40.22=[[0], [2021], [11], [12], [14], [40], [22]] +2021.11.12.17.5.18=[[0], [2021], [11], [12], [17], [5], [18]] +2021.11.13.09.50.22=[[0], [2021], [11], [13], [9], [50], [22]] +2021.11.13.15.55.10=[[0], [2021], [11], [13], [15], [55], [10]] +2021.11.14=[[0], [2021], [11], [14]] +2021.11.14.11.55.25=[[0], [2021], [11], [14], [11], [55], [25]] +2021.11.14.20.28.34=[[0], [2021], [11], [14], [20], [28], [34]] +2021.11.15=[[0], [2021], [11], [15]] +2021.11.15.00=[[0], [2021], [11], [15], [0]] +2021.11.15.20.12.07=[[0], [2021], [11], [15], [20], [12], [7]] +2021.11.16=[[0], [2021], [11], [16]] +2021.11.16.02.03.58=[[0], [2021], [11], [16], [2], [3], [58]] +2021.11.16.06.49.33=[[0], [2021], [11], [16], [6], [49], [33]] +2021.11.16.06.49.48=[[0], [2021], [11], [16], [6], [49], [48]] +2021.11.16.06.49.57=[[0], [2021], [11], [16], [6], [49], [57]] +2021.11.16.06.51.28=[[0], [2021], [11], [16], [6], [51], [28]] +2021.11.16.16.42.08=[[0], [2021], [11], [16], [16], [42], [8]] +2021.11.16.18.04.56=[[0], [2021], [11], [16], [18], [4], [56]] +2021.11.16.19.19.07=[[0], [2021], [11], [16], [19], [19], [7]] +2021.11.16.23.41.17=[[0], [2021], [11], [16], [23], [41], [17]] +2021.11.17=[[0], [2021], [11], [17]] +2021.11.17.5.54.26=[[0], [2021], [11], [17], [5], [54], [26]] +2021.11.17.5.55.09=[[0], [2021], [11], [17], [5], [55], [9]] +2021.11.17.08.26.55=[[0], [2021], [11], [17], [8], [26], [55]] +2021.11.17.08.30.27=[[0], [2021], [11], [17], [8], [30], [27]] +2021.11.17.12.43.31=[[0], [2021], [11], [17], [12], [43], [31]] +2021.11.17.14.11.48=[[0], [2021], [11], [17], [14], [11], [48]] +2021.11.17.14.13.46=[[0], [2021], [11], [17], [14], [13], [46]] +2021.11.17.14.15.31=[[0], [2021], [11], [17], [14], [15], [31]] +2021.11.17.14.18.28=[[0], [2021], [11], [17], [14], [18], [28]] +2021.11.17.15.51.01=[[0], [2021], [11], [17], [15], [51], [1]] +2021.11.18=[[0], [2021], [11], [18]] +2021.11.18.06.33.30=[[0], [2021], [11], [18], [6], [33], [30]] +2021.11.18.06.44.41=[[0], [2021], [11], [18], [6], [44], [41]] +2021.11.18.06.46.36=[[0], [2021], [11], [18], [6], [46], [36]] +2021.11.18.08.49.12=[[0], [2021], [11], [18], [8], [49], [12]] +2021.11.18.13.47.51=[[0], [2021], [11], [18], [13], [47], [51]] +2021.11.18.13.48.29=[[0], [2021], [11], [18], [13], [48], [29]] +2021.11.18.16.03.5=[[0], [2021], [11], [18], [16], [3], [5]] +2021.11.18.16.03.34=[[0], [2021], [11], [18], [16], [3], [34]] +2021.11.18.16.04.16=[[0], [2021], [11], [18], [16], [4], [16]] +2021.11.18.16.04.58=[[0], [2021], [11], [18], [16], [4], [58]] +2021.11.18.16.06.03=[[0], [2021], [11], [18], [16], [6], [3]] +2021.11.18.16.07.31=[[0], [2021], [11], [18], [16], [7], [31]] +2021.11.18.16.59.41=[[0], [2021], [11], [18], [16], [59], [41]] +2021.11.19.08.07.16=[[0], [2021], [11], [19], [8], [7], [16]] +2021.11.19.08.14.35=[[0], [2021], [11], [19], [8], [14], [35]] +2021.11.19.08.29.02=[[0], [2021], [11], [19], [8], [29], [2]] +2021.11.19.08.29.04=[[0], [2021], [11], [19], [8], [29], [4]] +2021.11.19.19.43.21=[[0], [2021], [11], [19], [19], [43], [21]] +2021.11.19.19.47.13=[[0], [2021], [11], [19], [19], [47], [13]] +2021.11.2=[[0], [2021], [11], [2]] +2021.11.20=[[0], [2021], [11], [20]] +2021.11.20.13.24.25=[[0], [2021], [11], [20], [13], [24], [25]] +2021.11.20.16.12.52=[[0], [2021], [11], [20], [16], [12], [52]] +2021.11.20.19.20.32=[[0], [2021], [11], [20], [19], [20], [32]] +2021.11.21=[[0], [2021], [11], [21]] +2021.11.22=[[0], [2021], [11], [22]] +2021.11.22.14.12.01=[[0], [2021], [11], [22], [14], [12], [1]] +2021.11.22.15.24.15=[[0], [2021], [11], [22], [15], [24], [15]] +2021.11.23=[[0], [2021], [11], [23]] +2021.11.23.03.23.53=[[0], [2021], [11], [23], [3], [23], [53]] +2021.11.23.03.24.17=[[0], [2021], [11], [23], [3], [24], [17]] +2021.11.23.1=[[0], [2021], [11], [23], [1]] +2021.11.23.17.03.49=[[0], [2021], [11], [23], [17], [3], [49]] +2021.11.23.19.18.04=[[0], [2021], [11], [23], [19], [18], [4]] +2021.11.23.20.00.06=[[0], [2021], [11], [23], [20], [0], [6]] +2021.11.23.20.00.37=[[0], [2021], [11], [23], [20], [0], [37]] +2021.11.25=[[0], [2021], [11], [25]] +2021.11.25.19.10.54=[[0], [2021], [11], [25], [19], [10], [54]] +2021.11.25.20.09.27=[[0], [2021], [11], [25], [20], [9], [27]] +2021.11.26=[[0], [2021], [11], [26]] +2021.11.26.06.16.55=[[0], [2021], [11], [26], [6], [16], [55]] +2021.11.26.23.11.41=[[0], [2021], [11], [26], [23], [11], [41]] +2021.11.27=[[0], [2021], [11], [27]] +2021.11.27.20.04.21=[[0], [2021], [11], [27], [20], [4], [21]] +2021.11.28=[[0], [2021], [11], [28]] +2021.11.28.13.12.27=[[0], [2021], [11], [28], [13], [12], [27]] +2021.11.28.20.57.40=[[0], [2021], [11], [28], [20], [57], [40]] +2021.11.28.21.09.04=[[0], [2021], [11], [28], [21], [9], [4]] +2021.11.29=[[0], [2021], [11], [29]] +2021.11.29.00=[[0], [2021], [11], [29], [0]] +2021.11.29.12.56.12=[[0], [2021], [11], [29], [12], [56], [12]] +2021.11.29.15.18.09=[[0], [2021], [11], [29], [15], [18], [9]] +2021.11.29.20.15.42=[[0], [2021], [11], [29], [20], [15], [42]] +2021.11.29.20.33.06=[[0], [2021], [11], [29], [20], [33], [6]] +2021.11.29.22.5.59=[[0], [2021], [11], [29], [22], [5], [59]] +2021.11.29.22.17.03=[[0], [2021], [11], [29], [22], [17], [3]] +2021.11.3=[[0], [2021], [11], [3]] +2021.11.30=[[0], [2021], [11], [30]] +2021.11.30.01.02.30=[[0], [2021], [11], [30], [1], [2], [30]] +2021.11.30.01.13.34=[[0], [2021], [11], [30], [1], [13], [34]] +2021.11.30.01.13.56=[[0], [2021], [11], [30], [1], [13], [56]] +2021.11.30.01.14.29=[[0], [2021], [11], [30], [1], [14], [29]] +2021.11.30.01.14.50=[[0], [2021], [11], [30], [1], [14], [50]] +2021.11.30.01.15.24=[[0], [2021], [11], [30], [1], [15], [24]] +2021.11.30.01.21.31=[[0], [2021], [11], [30], [1], [21], [31]] +2021.11.30.02.56.36=[[0], [2021], [11], [30], [2], [56], [36]] +2021.11.30.08.47.36=[[0], [2021], [11], [30], [8], [47], [36]] +2021.11.4=[[0], [2021], [11], [4]] +2021.11.4.0=[[0], [2021], [11], [4], [0]] +2021.11.4.15.26.3=[[0], [2021], [11], [4], [15], [26], [3]] +2021.11.5=[[0], [2021], [11], [5]] +2021.11.5.post0=[[0], [2021], [11], [5], [0, inf, 0]] +2021.11.7=[[0], [2021], [11], [7]] +2021.11.9=[[0], [2021], [11], [9]] +2021.1112=[[0], [2021], [1112]] +2021.1113=[[0], [2021], [1113]] +2021.1114=[[0], [2021], [1114]] +2021.12=[[0], [2021], [12]] +2021.12.0=[[0], [2021], [12], [0]] +2021.12.01.07.22.59=[[0], [2021], [12], [1], [7], [22], [59]] +2021.12.01.12.44.56=[[0], [2021], [12], [1], [12], [44], [56]] +2021.12.01.14.55.33=[[0], [2021], [12], [1], [14], [55], [33]] +2021.12.01.14.57.30=[[0], [2021], [12], [1], [14], [57], [30]] +2021.12.01.20.09.37=[[0], [2021], [12], [1], [20], [9], [37]] +2021.12.01.21.50.36=[[0], [2021], [12], [1], [21], [50], [36]] +2021.12.01.23.47.03=[[0], [2021], [12], [1], [23], [47], [3]] +2021.12.01.23.52.30=[[0], [2021], [12], [1], [23], [52], [30]] +2021.12.02.07.24.04=[[0], [2021], [12], [2], [7], [24], [4]] +2021.12.02.07.24.50=[[0], [2021], [12], [2], [7], [24], [50]] +2021.12.02.07.27.15=[[0], [2021], [12], [2], [7], [27], [15]] +2021.12.02.13.07.22=[[0], [2021], [12], [2], [13], [7], [22]] +2021.12.02.17.12.32=[[0], [2021], [12], [2], [17], [12], [32]] +2021.12.03.06.35.07=[[0], [2021], [12], [3], [6], [35], [7]] +2021.12.03.06.35.54=[[0], [2021], [12], [3], [6], [35], [54]] +2021.12.03.06.37.06=[[0], [2021], [12], [3], [6], [37], [6]] +2021.12.03.08.21.30=[[0], [2021], [12], [3], [8], [21], [30]] +2021.12.5.10.31.58=[[0], [2021], [12], [5], [10], [31], [58]] +2021.12.5.20.29.01=[[0], [2021], [12], [5], [20], [29], [1]] +2021.12.5.20.40.01=[[0], [2021], [12], [5], [20], [40], [1]] +2021.12.06=[[0], [2021], [12], [6]] +2021.12.07.5.32.24=[[0], [2021], [12], [7], [5], [32], [24]] +2021.12.07.08.5.09=[[0], [2021], [12], [7], [8], [5], [9]] +2021.12.07.13.39.21=[[0], [2021], [12], [7], [13], [39], [21]] +2021.12.08.5.46.13=[[0], [2021], [12], [8], [5], [46], [13]] +2021.12.08.5.59.51=[[0], [2021], [12], [8], [5], [59], [51]] +2021.12.08.09.24.44=[[0], [2021], [12], [8], [9], [24], [44]] +2021.12.08.18.31.22=[[0], [2021], [12], [8], [18], [31], [22]] +2021.12.09.08.18.11=[[0], [2021], [12], [9], [8], [18], [11]] +2021.12.09.09.29.57=[[0], [2021], [12], [9], [9], [29], [57]] +2021.12.09.09.29.59=[[0], [2021], [12], [9], [9], [29], [59]] +2021.12.09.09.30.27=[[0], [2021], [12], [9], [9], [30], [27]] +2021.12.09.09.30.48=[[0], [2021], [12], [9], [9], [30], [48]] +2021.12.09.09.36.11=[[0], [2021], [12], [9], [9], [36], [11]] +2021.12.09.14.59.11=[[0], [2021], [12], [9], [14], [59], [11]] +2021.12.1=[[0], [2021], [12], [1]] +2021.12.10=[[0], [2021], [12], [10]] +2021.12.10.07.17.27=[[0], [2021], [12], [10], [7], [17], [27]] +2021.12.10.14.02.49=[[0], [2021], [12], [10], [14], [2], [49]] +2021.12.10.18.18.24=[[0], [2021], [12], [10], [18], [18], [24]] +2021.12.11.13.00.52=[[0], [2021], [12], [11], [13], [0], [52]] +2021.12.11.13.03.49=[[0], [2021], [12], [11], [13], [3], [49]] +2021.12.11.13.14.30=[[0], [2021], [12], [11], [13], [14], [30]] +2021.12.11.19.41.15=[[0], [2021], [12], [11], [19], [41], [15]] +2021.12.11.19.51.40=[[0], [2021], [12], [11], [19], [51], [40]] +2021.12.11.20.48.53=[[0], [2021], [12], [11], [20], [48], [53]] +2021.12.12=[[0], [2021], [12], [12]] +2021.12.13.11.03.33=[[0], [2021], [12], [13], [11], [3], [33]] +2021.12.14=[[0], [2021], [12], [14]] +2021.12.14.06.33.15=[[0], [2021], [12], [14], [6], [33], [15]] +2021.12.14.07.11.41=[[0], [2021], [12], [14], [7], [11], [41]] +2021.12.14.08.51.52=[[0], [2021], [12], [14], [8], [51], [52]] +2021.12.14.17.54.38=[[0], [2021], [12], [14], [17], [54], [38]] +2021.12.14.22.09.21=[[0], [2021], [12], [14], [22], [9], [21]] +2021.12.14.23.47.20=[[0], [2021], [12], [14], [23], [47], [20]] +2021.12.15.01.15.50=[[0], [2021], [12], [15], [1], [15], [50]] +2021.12.15.01.15.53=[[0], [2021], [12], [15], [1], [15], [53]] +2021.12.15.02.16.59=[[0], [2021], [12], [15], [2], [16], [59]] +2021.12.15.02.32.19=[[0], [2021], [12], [15], [2], [32], [19]] +2021.12.15.03.46.39=[[0], [2021], [12], [15], [3], [46], [39]] +2021.12.15.14.57.56=[[0], [2021], [12], [15], [14], [57], [56]] +2021.12.15.23.54.31=[[0], [2021], [12], [15], [23], [54], [31]] +2021.12.16=[[0], [2021], [12], [16]] +2021.12.16.23.38.36=[[0], [2021], [12], [16], [23], [38], [36]] +2021.12.17=[[0], [2021], [12], [17]] +2021.12.17.10.55.22=[[0], [2021], [12], [17], [10], [55], [22]] +2021.12.17.16.44.26=[[0], [2021], [12], [17], [16], [44], [26]] +2021.12.18.06.45.12=[[0], [2021], [12], [18], [6], [45], [12]] +2021.12.19=[[0], [2021], [12], [19]] +2021.12.2=[[0], [2021], [12], [2]] +2021.12.20.00=[[0], [2021], [12], [20], [0]] +2021.12.20.19.09.43=[[0], [2021], [12], [20], [19], [9], [43]] +2021.12.21=[[0], [2021], [12], [21]] +2021.12.21.12.48.53=[[0], [2021], [12], [21], [12], [48], [53]] +2021.12.21.14.59.39=[[0], [2021], [12], [21], [14], [59], [39]] +2021.12.22.16.51.01=[[0], [2021], [12], [22], [16], [51], [1]] +2021.12.22.18.14.36=[[0], [2021], [12], [22], [18], [14], [36]] +2021.12.23=[[0], [2021], [12], [23]] +2021.12.23.19.21.51=[[0], [2021], [12], [23], [19], [21], [51]] +2021.12.24=[[0], [2021], [12], [24]] +2021.12.24.10.42.15=[[0], [2021], [12], [24], [10], [42], [15]] +2021.12.24.10.42.22=[[0], [2021], [12], [24], [10], [42], [22]] +2021.12.25.08.18.31=[[0], [2021], [12], [25], [8], [18], [31]] +2021.12.25.08.18.48=[[0], [2021], [12], [25], [8], [18], [48]] +2021.12.27=[[0], [2021], [12], [27]] +2021.12.27.00=[[0], [2021], [12], [27], [0]] +2021.12.28=[[0], [2021], [12], [28]] +2021.12.28.08.47.33=[[0], [2021], [12], [28], [8], [47], [33]] +2021.12.29=[[0], [2021], [12], [29]] +2021.12.29.09.38.02=[[0], [2021], [12], [29], [9], [38], [2]] +2021.12.29.20.24.27=[[0], [2021], [12], [29], [20], [24], [27]] +2021.12.29.20.25.32=[[0], [2021], [12], [29], [20], [25], [32]] +2021.12.3=[[0], [2021], [12], [3]] +2021.12.30.03.08.12=[[0], [2021], [12], [30], [3], [8], [12]] +2021.12.30.12.59.11=[[0], [2021], [12], [30], [12], [59], [11]] +2021.12.30.13.02.53=[[0], [2021], [12], [30], [13], [2], [53]] +2021.12.30.13.14.56=[[0], [2021], [12], [30], [13], [14], [56]] +2021.12.31.07.26.12=[[0], [2021], [12], [31], [7], [26], [12]] +2021.12.31.11.59.58=[[0], [2021], [12], [31], [11], [59], [58]] +2021.12.4=[[0], [2021], [12], [4]] +2021.12.5=[[0], [2021], [12], [5]] +2021.12.6=[[0], [2021], [12], [6]] +2021.12.7=[[0], [2021], [12], [7]] +2021.12.8=[[0], [2021], [12], [8]] +2021.12.9=[[0], [2021], [12], [9]] +2021.2=[[0], [2021], [2]] +2021.2.0=[[0], [2021], [2], [0]] +2021.2.0rc2=[[0], [2021], [2], [0, 'rc', 2]] +2021.2.1=[[0], [2021], [2], [1]] +2021.2.10=[[0], [2021], [2], [10]] +2021.2.11=[[0], [2021], [2], [11]] +2021.2.12=[[0], [2021], [2], [12]] +2021.2.13=[[0], [2021], [2], [13]] +2021.2.14=[[0], [2021], [2], [14]] +2021.2.16=[[0], [2021], [2], [16]] +2021.2.17=[[0], [2021], [2], [17]] +2021.2.1rc1=[[0], [2021], [2], [1, 'rc', 1]] +2021.2.2=[[0], [2021], [2], [2]] +2021.2.21=[[0], [2021], [2], [21]] +2021.2.21b25=[[0], [2021], [2], [21, 'b', 25]] +2021.2.22=[[0], [2021], [2], [22]] +2021.2.23=[[0], [2021], [2], [23]] +2021.2.26=[[0], [2021], [2], [26]] +2021.2.2rc1=[[0], [2021], [2], [2, 'rc', 1]] +2021.2.3=[[0], [2021], [2], [3]] +2021.2.4=[[0], [2021], [2], [4]] +2021.2.4.1=[[0], [2021], [2], [4], [1]] +2021.2.4rc1=[[0], [2021], [2], [4, 'rc', 1]] +2021.2.5=[[0], [2021], [2], [5]] +2021.2.582707922=[[0], [2021], [2], [582707922]] +2021.2.6=[[0], [2021], [2], [6]] +2021.2.7=[[0], [2021], [2], [7]] +2021.2.8=[[0], [2021], [2], [8]] +2021.2.8.1=[[0], [2021], [2], [8], [1]] +2021.2.9=[[0], [2021], [2], [9]] +2021.2.post0=[[0], [2021], [2], [0, inf, 0]] +2021.3=[[0], [2021], [3]] +2021.3.0=[[0], [2021], [3], [0]] +2021.3.1=[[0], [2021], [3], [1]] +2021.3.11=[[0], [2021], [3], [11]] +2021.3.11.10.32.22=[[0], [2021], [3], [11], [10], [32], [22]] +2021.3.13=[[0], [2021], [3], [13]] +2021.3.14=[[0], [2021], [3], [14]] +2021.3.16=[[0], [2021], [3], [16]] +2021.3.17=[[0], [2021], [3], [17]] +2021.3.17.16.51.43=[[0], [2021], [3], [17], [16], [51], [43]] +2021.3.2=[[0], [2021], [3], [2]] +2021.3.21=[[0], [2021], [3], [21]] +2021.3.22=[[0], [2021], [3], [22]] +2021.3.24=[[0], [2021], [3], [24]] +2021.3.25=[[0], [2021], [3], [25]] +2021.3.3=[[0], [2021], [3], [3]] +2021.3.31=[[0], [2021], [3], [31]] +2021.3.4=[[0], [2021], [3], [4]] +2021.3.5=[[0], [2021], [3], [5]] +2021.3.6=[[0], [2021], [3], [6]] +2021.3.6.15.24.2=[[0], [2021], [3], [6], [15], [24], [2]] +2021.3.680753044=[[0], [2021], [3], [680753044]] +2021.3.7=[[0], [2021], [3], [7]] +2021.3.8=[[0], [2021], [3], [8]] +2021.4=[[0], [2021], [4]] +2021.4.0=[[0], [2021], [4], [0]] +2021.4.1=[[0], [2021], [4], [1]] +2021.4.10=[[0], [2021], [4], [10]] +2021.4.11b34=[[0], [2021], [4], [11, 'b', 34]] +2021.4.11b9=[[0], [2021], [4], [11, 'b', 9]] +2021.4.13=[[0], [2021], [4], [13]] +2021.4.14=[[0], [2021], [4], [14]] +2021.4.17=[[0], [2021], [4], [17]] +2021.4.18=[[0], [2021], [4], [18]] +2021.4.24=[[0], [2021], [4], [24]] +2021.4.26=[[0], [2021], [4], [26]] +2021.4.28=[[0], [2021], [4], [28]] +2021.4.29=[[0], [2021], [4], [29]] +2021.4.4=[[0], [2021], [4], [4]] +2021.4.4.21.44.8=[[0], [2021], [4], [4], [21], [44], [8]] +2021.4.5.14.42.35=[[0], [2021], [4], [5], [14], [42], [35]] +2021.4.7=[[0], [2021], [4], [7]] +2021.4.765268190=[[0], [2021], [4], [765268190]] +2021.4.8=[[0], [2021], [4], [8]] +2021.5=[[0], [2021], [5]] +2021.5.0=[[0], [2021], [5], [0]] +2021.5.1=[[0], [2021], [5], [1]] +2021.5.10=[[0], [2021], [5], [10]] +2021.5.11=[[0], [2021], [5], [11]] +2021.5.12=[[0], [2021], [5], [12]] +2021.5.13=[[0], [2021], [5], [13]] +2021.5.16=[[0], [2021], [5], [16]] +2021.5.17=[[0], [2021], [5], [17]] +2021.5.19=[[0], [2021], [5], [19]] +2021.5.2=[[0], [2021], [5], [2]] +2021.5.24=[[0], [2021], [5], [24]] +2021.5.25=[[0], [2021], [5], [25]] +2021.5.26=[[0], [2021], [5], [26]] +2021.5.27.641=[[0], [2021], [5], [27], [641]] +2021.5.28=[[0], [2021], [5], [28]] +2021.5.29=[[0], [2021], [5], [29]] +2021.5.3=[[0], [2021], [5], [3]] +2021.5.30=[[0], [2021], [5], [30]] +2021.5.31=[[0], [2021], [5], [31]] +2021.5.5=[[0], [2021], [5], [5]] +2021.5.6=[[0], [2021], [5], [6]] +2021.5.9=[[0], [2021], [5], [9]] +2021.6=[[0], [2021], [6]] +2021.6.0=[[0], [2021], [6], [0]] +2021.6.0a15=[[0], [2021], [6], [0, 'a', 15]] +2021.6.1=[[0], [2021], [6], [1]] +2021.6.10=[[0], [2021], [6], [10]] +2021.6.12=[[0], [2021], [6], [12]] +2021.6.14=[[0], [2021], [6], [14]] +2021.6.16=[[0], [2021], [6], [16]] +2021.6.18=[[0], [2021], [6], [18]] +2021.6.2=[[0], [2021], [6], [2]] +2021.6.21.0=[[0], [2021], [6], [21], [0]] +2021.6.3=[[0], [2021], [6], [3]] +2021.6.5=[[0], [2021], [6], [5]] +2021.6.6=[[0], [2021], [6], [6]] +2021.6.8=[[0], [2021], [6], [8]] +2021.6.9.13.34.11=[[0], [2021], [6], [9], [13], [34], [11]] +2021.6_1=[[0], [2021], [6], [1]] +2021.7=[[0], [2021], [7]] +2021.7.0=[[0], [2021], [7], [0]] +2021.7.1=[[0], [2021], [7], [1]] +2021.7.10=[[0], [2021], [7], [10]] +2021.7.11=[[0], [2021], [7], [11]] +2021.7.12.0=[[0], [2021], [7], [12], [0]] +2021.7.13.7.29.27=[[0], [2021], [7], [13], [7], [29], [27]] +2021.7.14.0=[[0], [2021], [7], [14], [0]] +2021.7.17=[[0], [2021], [7], [17]] +2021.7.18=[[0], [2021], [7], [18]] +2021.7.18.0=[[0], [2021], [7], [18], [0]] +2021.7.19=[[0], [2021], [7], [19]] +2021.7.2=[[0], [2021], [7], [2]] +2021.7.21=[[0], [2021], [7], [21]] +2021.7.21.3=[[0], [2021], [7], [21], [3]] +2021.7.23=[[0], [2021], [7], [23]] +2021.7.24=[[0], [2021], [7], [24]] +2021.7.25.0=[[0], [2021], [7], [25], [0]] +2021.7.28=[[0], [2021], [7], [28]] +2021.7.28.0=[[0], [2021], [7], [28], [0]] +2021.7.28b40=[[0], [2021], [7], [28, 'b', 40]] +2021.7.29=[[0], [2021], [7], [29]] +2021.7.3=[[0], [2021], [7], [3]] +2021.7.30=[[0], [2021], [7], [30]] +2021.7.31b41=[[0], [2021], [7], [31, 'b', 41]] +2021.7.4=[[0], [2021], [7], [4]] +2021.7.5=[[0], [2021], [7], [5]] +2021.7.5b38=[[0], [2021], [7], [5, 'b', 38]] +2021.7.6=[[0], [2021], [7], [6]] +2021.7.7=[[0], [2021], [7], [7]] +2021.7.8=[[0], [2021], [7], [8]] +2021.8=[[0], [2021], [8]] +2021.8.0=[[0], [2021], [8], [0]] +2021.8.1=[[0], [2021], [8], [1]] +2021.8.1.0=[[0], [2021], [8], [1], [0]] +2021.8.10.0=[[0], [2021], [8], [10], [0]] +2021.8.11b42=[[0], [2021], [8], [11, 'b', 42]] +2021.8.12=[[0], [2021], [8], [12]] +2021.8.15.0=[[0], [2021], [8], [15], [0]] +2021.8.16.0=[[0], [2021], [8], [16], [0]] +2021.8.17=[[0], [2021], [8], [17]] +2021.8.17.1=[[0], [2021], [8], [17], [1]] +2021.8.17b10=[[0], [2021], [8], [17, 'b', 10]] +2021.8.17b43=[[0], [2021], [8], [17, 'b', 43]] +2021.8.18=[[0], [2021], [8], [18]] +2021.8.2=[[0], [2021], [8], [2]] +2021.8.2.0=[[0], [2021], [8], [2], [0]] +2021.8.2.1=[[0], [2021], [8], [2], [1]] +2021.8.21=[[0], [2021], [8], [21]] +2021.8.24=[[0], [2021], [8], [24]] +2021.8.25.12.59.41=[[0], [2021], [8], [25], [12], [59], [41]] +2021.8.26=[[0], [2021], [8], [26]] +2021.8.26.15.40.13=[[0], [2021], [8], [26], [15], [40], [13]] +2021.8.27=[[0], [2021], [8], [27]] +2021.8.28=[[0], [2021], [8], [28]] +2021.8.29=[[0], [2021], [8], [29]] +2021.8.3=[[0], [2021], [8], [3]] +2021.8.3.0=[[0], [2021], [8], [3], [0]] +2021.8.3.1=[[0], [2021], [8], [3], [1]] +2021.8.3.3=[[0], [2021], [8], [3], [3]] +2021.8.30=[[0], [2021], [8], [30]] +2021.8.30.10.33.11=[[0], [2021], [8], [30], [10], [33], [11]] +2021.8.30.10.8.27=[[0], [2021], [8], [30], [10], [8], [27]] +2021.8.31=[[0], [2021], [8], [31]] +2021.8.4.0=[[0], [2021], [8], [4], [0]] +2021.8.5=[[0], [2021], [8], [5]] +2021.8.8=[[0], [2021], [8], [8]] +2021.8.8.0=[[0], [2021], [8], [8], [0]] +2021.9=[[0], [2021], [9]] +2021.9.0=[[0], [2021], [9], [0]] +2021.9.1=[[0], [2021], [9], [1]] +2021.9.11=[[0], [2021], [9], [11]] +2021.9.12=[[0], [2021], [9], [12]] +2021.9.14=[[0], [2021], [9], [14]] +2021.9.19=[[0], [2021], [9], [19]] +2021.9.2=[[0], [2021], [9], [2]] +2021.9.21=[[0], [2021], [9], [21]] +2021.9.22=[[0], [2021], [9], [22]] +2021.9.23=[[0], [2021], [9], [23]] +2021.9.24=[[0], [2021], [9], [24]] +2021.9.26=[[0], [2021], [9], [26]] +2021.9.3=[[0], [2021], [9], [3]] +2021.9.3.15.46.13=[[0], [2021], [9], [3], [15], [46], [13]] +2021.9.30=[[0], [2021], [9], [30]] +2021.9.7=[[0], [2021], [9], [7]] +2021.9.8=[[0], [2021], [9], [8]] +2021.9.8.16.34.17=[[0], [2021], [9], [8], [16], [34], [17]] +20210000.2=[[0], [20210000], [2]] +20210000.3=[[0], [20210000], [3]] +20210000.4=[[0], [20210000], [4]] +20210000.5=[[0], [20210000], [5]] +20210000.6=[[0], [20210000], [6]] +20210000.7=[[0], [20210000], [7]] +20210000.8=[[0], [20210000], [8]] +20210102.00.51.07=[[0], [20210102], [0], [51], [7]] +20210105.19.56.5=[[0], [20210105], [19], [56], [5]] +20210108.02.17.20=[[0], [20210108], [2], [17], [20]] +20210108.04.26.17=[[0], [20210108], [4], [26], [17]] +20210108.08.21.29=[[0], [20210108], [8], [21], [29]] +20210108.13.24.12=[[0], [20210108], [13], [24], [12]] +20210110.19.04.49=[[0], [20210110], [19], [4], [49]] +20210112.006=[[0], [20210112], [6]] +20210112.19.57.36=[[0], [20210112], [19], [57], [36]] +20210113.16.44.02=[[0], [20210113], [16], [44], [2]] +20210113.17.02.50=[[0], [20210113], [17], [2], [50]] +20210115.02.16.22=[[0], [20210115], [2], [16], [22]] +20210115.03.22.51=[[0], [20210115], [3], [22], [51]] +20210115.12.20.49=[[0], [20210115], [12], [20], [49]] +20210115.14.50.57=[[0], [20210115], [14], [50], [57]] +20210115.15.43.54=[[0], [20210115], [15], [43], [54]] +20210116.19.10.46=[[0], [20210116], [19], [10], [46]] +20210121=[[0], [20210121]] +20210121.15.56.33=[[0], [20210121], [15], [56], [33]] +20210121.20.06.44=[[0], [20210121], [20], [6], [44]] +20210124.03.42.57=[[0], [20210124], [3], [42], [57]] +20210125.16.44.43=[[0], [20210125], [16], [44], [43]] +20210126.16.57.31=[[0], [20210126], [16], [57], [31]] +20210127.23.39.54=[[0], [20210127], [23], [39], [54]] +20210128.12.03.21=[[0], [20210128], [12], [3], [21]] +20210128.12.03.56=[[0], [20210128], [12], [3], [56]] +20210128.14.04.15=[[0], [20210128], [14], [4], [15]] +20210128.14.24.20=[[0], [20210128], [14], [24], [20]] +20210131.00.15.24=[[0], [20210131], [0], [15], [24]] +20210201=[[0], [20210201]] +20210201.07.13.24=[[0], [20210201], [7], [13], [24]] +20210201.15.55.08=[[0], [20210201], [15], [55], [8]] +20210202.09.24.34=[[0], [20210202], [9], [24], [34]] +20210202.10.00.43=[[0], [20210202], [10], [0], [43]] +20210202.12.20.44=[[0], [20210202], [12], [20], [44]] +20210203.19.10.38=[[0], [20210203], [19], [10], [38]] +20210208.21.14.19=[[0], [20210208], [21], [14], [19]] +20210208.23.14.50=[[0], [20210208], [23], [14], [50]] +20210212=[[0], [20210212]] +20210214=[[0], [20210214]] +20210215.10.16.34=[[0], [20210215], [10], [16], [34]] +20210216.16.42.04=[[0], [20210216], [16], [42], [4]] +20210216.19.02.30=[[0], [20210216], [19], [2], [30]] +20210217.14.12.40=[[0], [20210217], [14], [12], [40]] +20210218.10.46.08=[[0], [20210218], [10], [46], [8]] +20210218.12.04.41=[[0], [20210218], [12], [4], [41]] +20210222=[[0], [20210222]] +20210223.14.15.12=[[0], [20210223], [14], [15], [12]] +20210224.15.35.00=[[0], [20210224], [15], [35], [0]] +20210225.22.08.08=[[0], [20210225], [22], [8], [8]] +20210227.18.40.55=[[0], [20210227], [18], [40], [55]] +20210228.15.56.43=[[0], [20210228], [15], [56], [43]] +20210303.22.35.50=[[0], [20210303], [22], [35], [50]] +20210305.18.36.31=[[0], [20210305], [18], [36], [31]] +20210309.16.52.40=[[0], [20210309], [16], [52], [40]] +20210310=[[0], [20210310]] +20210311.15.21.12=[[0], [20210311], [15], [21], [12]] +20210316.01.11.00=[[0], [20210316], [1], [11], [0]] +20210316.08.08.13=[[0], [20210316], [8], [8], [13]] +20210318.22.45.14=[[0], [20210318], [22], [45], [14]] +20210322.19.32.40=[[0], [20210322], [19], [32], [40]] +20210323183018=[[0], [20210323183018]] +20210324.0=[[0], [20210324], [0]] +20210324.1=[[0], [20210324], [1]] +20210324.14.43.57=[[0], [20210324], [14], [43], [57]] +20210324.2=[[0], [20210324], [2]] +20210325=[[0], [20210325]] +20210328.19.53.44=[[0], [20210328], [19], [53], [44]] +20210401.09.07.52=[[0], [20210401], [9], [7], [52]] +20210401.09.28.16=[[0], [20210401], [9], [28], [16]] +20210401.09.42.39=[[0], [20210401], [9], [42], [39]] +20210402.10.23.36=[[0], [20210402], [10], [23], [36]] +20210406.10.37.11=[[0], [20210406], [10], [37], [11]] +20210407.13.35.54=[[0], [20210407], [13], [35], [54]] +20210407.19.40.12=[[0], [20210407], [19], [40], [12]] +20210408.12.11.25=[[0], [20210408], [12], [11], [25]] +20210411.14.41.52=[[0], [20210411], [14], [41], [52]] +20210412.17.10.53=[[0], [20210412], [17], [10], [53]] +20210413.15.08.36=[[0], [20210413], [15], [8], [36]] +20210413.15.41.36=[[0], [20210413], [15], [41], [36]] +20210413.22.32.5=[[0], [20210413], [22], [32], [5]] +20210413.23.10.14=[[0], [20210413], [23], [10], [14]] +20210414.20.14.38=[[0], [20210414], [20], [14], [38]] +20210415=[[0], [20210415]] +20210419.0=[[0], [20210419], [0]] +20210422=[[0], [20210422]] +20210428.17.55.5=[[0], [20210428], [17], [55], [5]] +20210429.5.51.5=[[0], [20210429], [5], [51], [5]] +20210503=[[0], [20210503]] +20210503.0=[[0], [20210503], [0]] +20210503.16.24.35=[[0], [20210503], [16], [24], [35]] +20210503.16.24.43=[[0], [20210503], [16], [24], [43]] +20210510.0=[[0], [20210510], [0]] +20210510.16.10.10=[[0], [20210510], [16], [10], [10]] +20210513.19.03.5=[[0], [20210513], [19], [3], [5]] +20210514=[[0], [20210514]] +20210518.0=[[0], [20210518], [0]] +20210518.5.38.16=[[0], [20210518], [5], [38], [16]] +20210522.14.45.50=[[0], [20210522], [14], [45], [50]] +20210528.07.43.59=[[0], [20210528], [7], [43], [59]] +20210529.16.24.44=[[0], [20210529], [16], [24], [44]] +20210601.0=[[0], [20210601], [0]] +20210602=[[0], [20210602]] +20210603=[[0], [20210603]] +20210605=[[0], [20210605]] +20210607.0=[[0], [20210607], [0]] +20210607.14.04.52=[[0], [20210607], [14], [4], [52]] +20210607.18.59.32=[[0], [20210607], [18], [59], [32]] +20210608=[[0], [20210608]] +20210611=[[0], [20210611]] +20210611.09.28.12=[[0], [20210611], [9], [28], [12]] +20210611.11.15.13=[[0], [20210611], [11], [15], [13]] +20210614.0=[[0], [20210614], [0]] +20210614.09.43.24=[[0], [20210614], [9], [43], [24]] +20210615=[[0], [20210615]] +20210616.00.03.58=[[0], [20210616], [0], [3], [58]] +20210616.10.39.26=[[0], [20210616], [10], [39], [26]] +20210616.10.41.11=[[0], [20210616], [10], [41], [11]] +20210618.18.33.48=[[0], [20210618], [18], [33], [48]] +20210620=[[0], [20210620]] +20210621.09.51.19=[[0], [20210621], [9], [51], [19]] +20210621.10.58.06=[[0], [20210621], [10], [58], [6]] +20210622=[[0], [20210622]] +20210623=[[0], [20210623]] +20210624=[[0], [20210624]] +20210624.5.11.16=[[0], [20210624], [5], [11], [16]] +20210625=[[0], [20210625]] +20210628.0=[[0], [20210628], [0]] +20210629=[[0], [20210629]] +20210629.04.48.38=[[0], [20210629], [4], [48], [38]] +20210706=[[0], [20210706]] +20210707.07.18.35=[[0], [20210707], [7], [18], [35]] +20210707.08.32.29=[[0], [20210707], [8], [32], [29]] +20210709=[[0], [20210709]] +20210712.0=[[0], [20210712], [0]] +20210713=[[0], [20210713]] +20210715=[[0], [20210715]] +20210715.19.00.25=[[0], [20210715], [19], [0], [25]] +20210716=[[0], [20210716]] +20210716.00.13.07=[[0], [20210716], [0], [13], [7]] +20210719.21.34.15=[[0], [20210719], [21], [34], [15]] +20210720=[[0], [20210720]] +20210720.0=[[0], [20210720], [0]] +20210721=[[0], [20210721]] +20210722=[[0], [20210722]] +20210722.09.03.22=[[0], [20210722], [9], [3], [22]] +20210722.11.02.29=[[0], [20210722], [11], [2], [29]] +20210722.11.32.12=[[0], [20210722], [11], [32], [12]] +20210723.15.27.31=[[0], [20210723], [15], [27], [31]] +20210724=[[0], [20210724]] +20210724.11.19.00=[[0], [20210724], [11], [19], [0]] +20210726.08.02.39=[[0], [20210726], [8], [2], [39]] +20210727=[[0], [20210727]] +20210728=[[0], [20210728]] +20210728.17.28.20=[[0], [20210728], [17], [28], [20]] +20210728.19.03.57=[[0], [20210728], [19], [3], [57]] +20210729.03.47.45=[[0], [20210729], [3], [47], [45]] +20210729.03.48.17=[[0], [20210729], [3], [48], [17]] +20210729.09.00.28=[[0], [20210729], [9], [0], [28]] +20210729.10.42.54=[[0], [20210729], [10], [42], [54]] +20210729.10.45.01=[[0], [20210729], [10], [45], [1]] +20210806.19.18.10=[[0], [20210806], [19], [18], [10]] +20210806.19.31.16=[[0], [20210806], [19], [31], [16]] +20210807.08.23.00=[[0], [20210807], [8], [23], [0]] +20210810=[[0], [20210810]] +20210811=[[0], [20210811]] +20210811.20.28.45=[[0], [20210811], [20], [28], [45]] +20210812=[[0], [20210812]] +20210812.5.13.08=[[0], [20210812], [5], [13], [8]] +20210816.13.23.04=[[0], [20210816], [13], [23], [4]] +20210818=[[0], [20210818]] +20210818.12.29.35=[[0], [20210818], [12], [29], [35]] +20210819=[[0], [20210819]] +20210820.21.03.38=[[0], [20210820], [21], [3], [38]] +20210821=[[0], [20210821]] +20210821.5.07.55=[[0], [20210821], [5], [7], [55]] +20210821.11.21.34=[[0], [20210821], [11], [21], [34]] +20210822=[[0], [20210822]] +20210823=[[0], [20210823]] +20210823.0=[[0], [20210823], [0]] +20210823.13.43.14=[[0], [20210823], [13], [43], [14]] +20210824.03.28.15=[[0], [20210824], [3], [28], [15]] +20210825=[[0], [20210825]] +20210826=[[0], [20210826]] +20210826.08.07.45=[[0], [20210826], [8], [7], [45]] +20210826.22.22.33=[[0], [20210826], [22], [22], [33]] +20210826.23.23.19=[[0], [20210826], [23], [23], [19]] +20210826.23.25.21=[[0], [20210826], [23], [25], [21]] +20210827.20.13.46=[[0], [20210827], [20], [13], [46]] +20210829.23.20.27=[[0], [20210829], [23], [20], [27]] +20210830.12.29.40=[[0], [20210830], [12], [29], [40]] +20210831.15.55.07=[[0], [20210831], [15], [55], [7]] +20210903.11.39.04=[[0], [20210903], [11], [39], [4]] +20210904=[[0], [20210904]] +20210904.10.03.53=[[0], [20210904], [10], [3], [53]] +20210907=[[0], [20210907]] +20210908=[[0], [20210908]] +20210908.14.12.10=[[0], [20210908], [14], [12], [10]] +20210909.15.56.47=[[0], [20210909], [15], [56], [47]] +20210910=[[0], [20210910]] +20210911.08.26.12=[[0], [20210911], [8], [26], [12]] +20210913.19.20.31=[[0], [20210913], [19], [20], [31]] +20210914=[[0], [20210914]] +20210914.5.32.54=[[0], [20210914], [5], [32], [54]] +20210915.09.11.11=[[0], [20210915], [9], [11], [11]] +20210915.20.01.56=[[0], [20210915], [20], [1], [56]] +20210915.21.08.19=[[0], [20210915], [21], [8], [19]] +20210916.14.45.39=[[0], [20210916], [14], [45], [39]] +20210917.04.45.08=[[0], [20210917], [4], [45], [8]] +20210917.22.32.04=[[0], [20210917], [22], [32], [4]] +20210918.12.31.35=[[0], [20210918], [12], [31], [35]] +20210919=[[0], [20210919]] +20210920.20.43.07=[[0], [20210920], [20], [43], [7]] +20210922.15.39.45=[[0], [20210922], [15], [39], [45]] +20210922.16.57.36=[[0], [20210922], [16], [57], [36]] +20210923.0=[[0], [20210923], [0]] +20210925.0=[[0], [20210925], [0]] +20210926.11.02.19=[[0], [20210926], [11], [2], [19]] +20210927.0=[[0], [20210927], [0]] +20210927.18.51.54=[[0], [20210927], [18], [51], [54]] +20210927.22.13.33=[[0], [20210927], [22], [13], [33]] +20210928.1=[[0], [20210928], [1]] +20210930.0=[[0], [20210930], [0]] +20210930.14.01.57=[[0], [20210930], [14], [1], [57]] +20210930.16.20.00=[[0], [20210930], [16], [20], [0]] +20211001=[[0], [20211001]] +20211001.12.31.09=[[0], [20211001], [12], [31], [9]] +20211002.0=[[0], [20211002], [0]] +20211005.0=[[0], [20211005], [0]] +20211005.21.52.10=[[0], [20211005], [21], [52], [10]] +20211006=[[0], [20211006]] +20211006.0=[[0], [20211006], [0]] +20211007.15.42.23=[[0], [20211007], [15], [42], [23]] +20211009.0=[[0], [20211009], [0]] +20211012=[[0], [20211012]] +20211013.0=[[0], [20211013], [0]] +20211013.18.18.49=[[0], [20211013], [18], [18], [49]] +20211016.19.53.32=[[0], [20211016], [19], [53], [32]] +20211017.19.56.43=[[0], [20211017], [19], [56], [43]] +20211018.10.10.5=[[0], [20211018], [10], [10], [5]] +20211019.0=[[0], [20211019], [0]] +20211021.01.34.40=[[0], [20211021], [1], [34], [40]] +20211021.09.06.48=[[0], [20211021], [9], [6], [48]] +20211022=[[0], [20211022]] +20211022.01.00.43=[[0], [20211022], [1], [0], [43]] +20211022.21.53.03=[[0], [20211022], [21], [53], [3]] +20211023.17.27.08=[[0], [20211023], [17], [27], [8]] +20211024.1=[[0], [20211024], [1]] +20211024.17.30.53=[[0], [20211024], [17], [30], [53]] +20211026.0=[[0], [20211026], [0]] +20211026.23.16.01=[[0], [20211026], [23], [16], [1]] +20211027.17.49.07=[[0], [20211027], [17], [49], [7]] +20211027.17.50.45=[[0], [20211027], [17], [50], [45]] +20211028.07.46.01=[[0], [20211028], [7], [46], [1]] +20211029.13.56.28=[[0], [20211029], [13], [56], [28]] +20211029.22.10.01=[[0], [20211029], [22], [10], [1]] +20211101.0=[[0], [20211101], [0]] +20211102.0=[[0], [20211102], [0]] +20211103.15.46.37=[[0], [20211103], [15], [46], [37]] +20211104.19.06.09=[[0], [20211104], [19], [6], [9]] +20211105.13.27.02=[[0], [20211105], [13], [27], [2]] +20211106.22.33.02=[[0], [20211106], [22], [33], [2]] +20211109.0=[[0], [20211109], [0]] +20211110.18.39.16=[[0], [20211110], [18], [39], [16]] +20211111.10.18.16=[[0], [20211111], [10], [18], [16]] +20211111.17.16.28=[[0], [20211111], [17], [16], [28]] +20211111.20.28.57=[[0], [20211111], [20], [28], [57]] +20211112.01.25.30=[[0], [20211112], [1], [25], [30]] +20211112.06.21.31=[[0], [20211112], [6], [21], [31]] +20211112.19.46.23=[[0], [20211112], [19], [46], [23]] +20211116.0=[[0], [20211116], [0]] +20211117.0=[[0], [20211117], [0]] +20211117.12.04.52=[[0], [20211117], [12], [4], [52]] +20211117.20.04.19=[[0], [20211117], [20], [4], [19]] +20211117.21.03.02=[[0], [20211117], [21], [3], [2]] +20211117.21.58.29=[[0], [20211117], [21], [58], [29]] +20211118.0=[[0], [20211118], [0]] +20211119.09.03.32=[[0], [20211119], [9], [3], [32]] +20211119.11.26.38=[[0], [20211119], [11], [26], [38]] +20211121.00.06.30=[[0], [20211121], [0], [6], [30]] +20211122.06.16.50=[[0], [20211122], [6], [16], [50]] +20211123.0=[[0], [20211123], [0]] +20211125.12.16.54=[[0], [20211125], [12], [16], [54]] +20211125.12.27.26=[[0], [20211125], [12], [27], [26]] +20211125.20.27.11=[[0], [20211125], [20], [27], [11]] +20211128.0=[[0], [20211128], [0]] +20211128.00.08.11=[[0], [20211128], [0], [8], [11]] +20211129.0=[[0], [20211129], [0]] +20211129.1=[[0], [20211129], [1]] +20211130.0=[[0], [20211130], [0]] +20211130.01.48.03=[[0], [20211130], [1], [48], [3]] +20211130.01.50.17=[[0], [20211130], [1], [50], [17]] +20211130.22.43.34=[[0], [20211130], [22], [43], [34]] +20211201.13.55.17=[[0], [20211201], [13], [55], [17]] +20211201.17.42.33=[[0], [20211201], [17], [42], [33]] +20211202.20.12.42=[[0], [20211202], [20], [12], [42]] +20211202.23.39.06=[[0], [20211202], [23], [39], [6]] +20211203.01.01.51=[[0], [20211203], [1], [1], [51]] +20211203.15.18.54=[[0], [20211203], [15], [18], [54]] +20211204.14.48.58=[[0], [20211204], [14], [48], [58]] +20211206.21.52.16=[[0], [20211206], [21], [52], [16]] +20211207.1=[[0], [20211207], [1]] +20211207.20.14.40=[[0], [20211207], [20], [14], [40]] +20211208.01.10.47=[[0], [20211208], [1], [10], [47]] +20211209.0=[[0], [20211209], [0]] +20211209.19.32.10=[[0], [20211209], [19], [32], [10]] +20211214.1=[[0], [20211214], [1]] +20211214.2=[[0], [20211214], [2]] +20211215.12.14.32=[[0], [20211215], [12], [14], [32]] +20211215.12.27.06=[[0], [20211215], [12], [27], [6]] +20211215.12.44.53=[[0], [20211215], [12], [44], [53]] +20211215.13.07.04=[[0], [20211215], [13], [7], [4]] +20211217.03.46.46=[[0], [20211217], [3], [46], [46]] +20211217.16.42.20=[[0], [20211217], [16], [42], [20]] +20211218.12.40.33=[[0], [20211218], [12], [40], [33]] +20211218.14.5.09=[[0], [20211218], [14], [5], [9]] +20211218.15.23.11=[[0], [20211218], [15], [23], [11]] +20211219.0=[[0], [20211219], [0]] +20211221.0=[[0], [20211221], [0]] +20211221.15.22.29=[[0], [20211221], [15], [22], [29]] +20211222=[[0], [20211222]] +20211226.00.06.59=[[0], [20211226], [0], [6], [59]] +2021_0511=[[0], [2021], [511]] +2021_0521=[[0], [2021], [521]] +2021_0525=[[0], [2021], [525]] +2021_0526=[[0], [2021], [526]] +2021_10.12=[[0], [2021], [10], [12]] +2021_6.12=[[0], [2021], [6], [12]] +2021a=[[0], [2021, 'a']] +2021b=[[0], [2021, 'b']] +2021c=[[0], [2021, 'c']] +2021d=[[0], [2021, 'd']] +2021e=[[0], [2021, 'e']] +2022=[[0], [2022]] +2022.0=[[0], [2022], [0]] +2022.0.0=[[0], [2022], [0], [0]] +2022.0.0a10=[[0], [2022], [0], [0, 'a', 10]] +2022.0.0a9=[[0], [2022], [0], [0, 'a', 9]] +2022.0.1=[[0], [2022], [0], [1]] +2022.0.10=[[0], [2022], [0], [10]] +2022.0.11=[[0], [2022], [0], [11]] +2022.0.12=[[0], [2022], [0], [12]] +2022.0.13=[[0], [2022], [0], [13]] +2022.0.14=[[0], [2022], [0], [14]] +2022.0.15=[[0], [2022], [0], [15]] +2022.0.16=[[0], [2022], [0], [16]] +2022.0.17=[[0], [2022], [0], [17]] +2022.0.2=[[0], [2022], [0], [2]] +2022.0.3=[[0], [2022], [0], [3]] +2022.0.4=[[0], [2022], [0], [4]] +2022.0.5=[[0], [2022], [0], [5]] +2022.0.6=[[0], [2022], [0], [6]] +2022.0.7=[[0], [2022], [0], [7]] +2022.0.8=[[0], [2022], [0], [8]] +2022.0.9=[[0], [2022], [0], [9]] +2022.01=[[0], [2022], [1]] +2022.01.01=[[0], [2022], [1], [1]] +2022.01.02.09.41.34=[[0], [2022], [1], [2], [9], [41], [34]] +2022.01.02.17.59.50=[[0], [2022], [1], [2], [17], [59], [50]] +2022.01.03.00=[[0], [2022], [1], [3], [0]] +2022.01.03.16.37.21=[[0], [2022], [1], [3], [16], [37], [21]] +2022.01.04=[[0], [2022], [1], [4]] +2022.01.04.09.5.28=[[0], [2022], [1], [4], [9], [5], [28]] +2022.01.04.16.06.57=[[0], [2022], [1], [4], [16], [6], [57]] +2022.01.04.17.59.36=[[0], [2022], [1], [4], [17], [59], [36]] +2022.01.04.18.50.59=[[0], [2022], [1], [4], [18], [50], [59]] +2022.01.04.19.00.57=[[0], [2022], [1], [4], [19], [0], [57]] +2022.01.5.06.51.46=[[0], [2022], [1], [5], [6], [51], [46]] +2022.01.5.07.11.36=[[0], [2022], [1], [5], [7], [11], [36]] +2022.01.5.11.50.48=[[0], [2022], [1], [5], [11], [50], [48]] +2022.01.5.14.36.24=[[0], [2022], [1], [5], [14], [36], [24]] +2022.01.07=[[0], [2022], [1], [7]] +2022.01.07.08.36.56=[[0], [2022], [1], [7], [8], [36], [56]] +2022.01.07.16.19.52=[[0], [2022], [1], [7], [16], [19], [52]] +2022.01.07.19.03.47=[[0], [2022], [1], [7], [19], [3], [47]] +2022.01.07.22.11.42=[[0], [2022], [1], [7], [22], [11], [42]] +2022.01.08=[[0], [2022], [1], [8]] +2022.01.08.03.20.39=[[0], [2022], [1], [8], [3], [20], [39]] +2022.01.08.08.10.13=[[0], [2022], [1], [8], [8], [10], [13]] +2022.01.08.10.20.55=[[0], [2022], [1], [8], [10], [20], [55]] +2022.01.08.14.07.12=[[0], [2022], [1], [8], [14], [7], [12]] +2022.01.08.19.53.23=[[0], [2022], [1], [8], [19], [53], [23]] +2022.01.09=[[0], [2022], [1], [9]] +2022.01.09.03.57.37=[[0], [2022], [1], [9], [3], [57], [37]] +2022.01.09.03.57.47=[[0], [2022], [1], [9], [3], [57], [47]] +2022.01.09.11.48.37=[[0], [2022], [1], [9], [11], [48], [37]] +2022.01.09.13.08.44=[[0], [2022], [1], [9], [13], [8], [44]] +2022.01.09.15.48.10=[[0], [2022], [1], [9], [15], [48], [10]] +2022.01.1=[[0], [2022], [1], [1]] +2022.01.10=[[0], [2022], [1], [10]] +2022.01.10.00=[[0], [2022], [1], [10], [0]] +2022.01.10.13.01.59=[[0], [2022], [1], [10], [13], [1], [59]] +2022.01.11.08.53.25=[[0], [2022], [1], [11], [8], [53], [25]] +2022.01.11.20.10.31=[[0], [2022], [1], [11], [20], [10], [31]] +2022.01.12.13.10.32=[[0], [2022], [1], [12], [13], [10], [32]] +2022.01.12.13.11.41=[[0], [2022], [1], [12], [13], [11], [41]] +2022.01.12.20.51.50=[[0], [2022], [1], [12], [20], [51], [50]] +2022.01.13.01.57.35=[[0], [2022], [1], [13], [1], [57], [35]] +2022.01.13.20.46.10=[[0], [2022], [1], [13], [20], [46], [10]] +2022.01.13.23.27.45=[[0], [2022], [1], [13], [23], [27], [45]] +2022.01.14=[[0], [2022], [1], [14]] +2022.01.14.18.13.59=[[0], [2022], [1], [14], [18], [13], [59]] +2022.01.14.19.02.00=[[0], [2022], [1], [14], [19], [2], [0]] +2022.01.14.19.02.28=[[0], [2022], [1], [14], [19], [2], [28]] +2022.01.14.19.15.38=[[0], [2022], [1], [14], [19], [15], [38]] +2022.01.14.19.19.28=[[0], [2022], [1], [14], [19], [19], [28]] +2022.01.14.22.50.49=[[0], [2022], [1], [14], [22], [50], [49]] +2022.01.15.11.11.15=[[0], [2022], [1], [15], [11], [11], [15]] +2022.01.17.00=[[0], [2022], [1], [17], [0]] +2022.01.17.15.20.04=[[0], [2022], [1], [17], [15], [20], [4]] +2022.01.17.15.36.21=[[0], [2022], [1], [17], [15], [36], [21]] +2022.01.17.16.16.21=[[0], [2022], [1], [17], [16], [16], [21]] +2022.01.17.22.01.08=[[0], [2022], [1], [17], [22], [1], [8]] +2022.01.18=[[0], [2022], [1], [18]] +2022.01.18.15.20.32=[[0], [2022], [1], [18], [15], [20], [32]] +2022.01.18.20.31.32=[[0], [2022], [1], [18], [20], [31], [32]] +2022.01.19=[[0], [2022], [1], [19]] +2022.01.2=[[0], [2022], [1], [2]] +2022.01.20=[[0], [2022], [1], [20]] +2022.01.20.01.14.54=[[0], [2022], [1], [20], [1], [14], [54]] +2022.01.20.01.15.08=[[0], [2022], [1], [20], [1], [15], [8]] +2022.01.20.5.32.47=[[0], [2022], [1], [20], [5], [32], [47]] +2022.01.20.12.50.15=[[0], [2022], [1], [20], [12], [50], [15]] +2022.01.20.21.36.34=[[0], [2022], [1], [20], [21], [36], [34]] +2022.01.21.17.08.34=[[0], [2022], [1], [21], [17], [8], [34]] +2022.01.21.21.03.24=[[0], [2022], [1], [21], [21], [3], [24]] +2022.01.21.21.5.07=[[0], [2022], [1], [21], [21], [5], [7]] +2022.01.21.21.07.32=[[0], [2022], [1], [21], [21], [7], [32]] +2022.01.21.21.21.16=[[0], [2022], [1], [21], [21], [21], [16]] +2022.01.22.07.12.59=[[0], [2022], [1], [22], [7], [12], [59]] +2022.01.22.07.13.04=[[0], [2022], [1], [22], [7], [13], [4]] +2022.01.22.07.13.29=[[0], [2022], [1], [22], [7], [13], [29]] +2022.01.22.07.50.08=[[0], [2022], [1], [22], [7], [50], [8]] +2022.01.22.20.21.55=[[0], [2022], [1], [22], [20], [21], [55]] +2022.01.22.21.00.53=[[0], [2022], [1], [22], [21], [0], [53]] +2022.01.22.21.08.53=[[0], [2022], [1], [22], [21], [8], [53]] +2022.01.24.00=[[0], [2022], [1], [24], [0]] +2022.01.24.17.45.12=[[0], [2022], [1], [24], [17], [45], [12]] +2022.01.25.10.09.46=[[0], [2022], [1], [25], [10], [9], [46]] +2022.01.25.10.58.41=[[0], [2022], [1], [25], [10], [58], [41]] +2022.01.25.13.00.06=[[0], [2022], [1], [25], [13], [0], [6]] +2022.01.26=[[0], [2022], [1], [26]] +2022.01.26.09.22.36=[[0], [2022], [1], [26], [9], [22], [36]] +2022.01.26.20.27.23=[[0], [2022], [1], [26], [20], [27], [23]] +2022.01.27=[[0], [2022], [1], [27]] +2022.01.27.11.49.45=[[0], [2022], [1], [27], [11], [49], [45]] +2022.01.27.16.51.01=[[0], [2022], [1], [27], [16], [51], [1]] +2022.01.28.02.01.47=[[0], [2022], [1], [28], [2], [1], [47]] +2022.01.28.10.00.37=[[0], [2022], [1], [28], [10], [0], [37]] +2022.01.28.10.42.27=[[0], [2022], [1], [28], [10], [42], [27]] +2022.01.28.17.06.23=[[0], [2022], [1], [28], [17], [6], [23]] +2022.01.28.19.47.10=[[0], [2022], [1], [28], [19], [47], [10]] +2022.01.29.15.10.18=[[0], [2022], [1], [29], [15], [10], [18]] +2022.01.31=[[0], [2022], [1], [31]] +2022.01.31.00=[[0], [2022], [1], [31], [0]] +2022.01.31.19.13.54=[[0], [2022], [1], [31], [19], [13], [54]] +2022.01.31.20.15.53=[[0], [2022], [1], [31], [20], [15], [53]] +2022.02=[[0], [2022], [2]] +2022.02.01=[[0], [2022], [2], [1]] +2022.02.01.00.07.31=[[0], [2022], [2], [1], [0], [7], [31]] +2022.02.01.02.45.46=[[0], [2022], [2], [1], [2], [45], [46]] +2022.02.01.07.5.00=[[0], [2022], [2], [1], [7], [5], [0]] +2022.02.01.07.5.27=[[0], [2022], [2], [1], [7], [5], [27]] +2022.02.01.12.09.01=[[0], [2022], [2], [1], [12], [9], [1]] +2022.02.01.13.45.55=[[0], [2022], [2], [1], [13], [45], [55]] +2022.02.01.15.47.50=[[0], [2022], [2], [1], [15], [47], [50]] +2022.02.02=[[0], [2022], [2], [2]] +2022.02.02.01.33.58=[[0], [2022], [2], [2], [1], [33], [58]] +2022.02.02.14.18.16=[[0], [2022], [2], [2], [14], [18], [16]] +2022.02.02.14.34.19=[[0], [2022], [2], [2], [14], [34], [19]] +2022.02.02.gr3.8=[[0], [2022], [2], [2], [0, 'gr', 3], [8]] +2022.02.02.gr3.9=[[0], [2022], [2], [2], [0, 'gr', 3], [9]] +2022.02.03.07.42.55=[[0], [2022], [2], [3], [7], [42], [55]] +2022.02.03.08.02.24=[[0], [2022], [2], [3], [8], [2], [24]] +2022.02.03.08.02.56=[[0], [2022], [2], [3], [8], [2], [56]] +2022.02.03.08.5.34=[[0], [2022], [2], [3], [8], [5], [34]] +2022.02.03.09.37.06=[[0], [2022], [2], [3], [9], [37], [6]] +2022.02.03.14.54.35=[[0], [2022], [2], [3], [14], [54], [35]] +2022.02.03.15.44.48=[[0], [2022], [2], [3], [15], [44], [48]] +2022.02.03.18.02.21=[[0], [2022], [2], [3], [18], [2], [21]] +2022.02.03.19.17.39=[[0], [2022], [2], [3], [19], [17], [39]] +2022.02.04=[[0], [2022], [2], [4]] +2022.02.04.12.07.5=[[0], [2022], [2], [4], [12], [7], [5]] +2022.02.04.12.07.36=[[0], [2022], [2], [4], [12], [7], [36]] +2022.02.5.07.33.31=[[0], [2022], [2], [5], [7], [33], [31]] +2022.02.5.21.28.19=[[0], [2022], [2], [5], [21], [28], [19]] +2022.02.06.08.14.37=[[0], [2022], [2], [6], [8], [14], [37]] +2022.02.06.08.21.47=[[0], [2022], [2], [6], [8], [21], [47]] +2022.02.06.20.08.11=[[0], [2022], [2], [6], [20], [8], [11]] +2022.02.06.21.39.22=[[0], [2022], [2], [6], [21], [39], [22]] +2022.02.06.21.40.56=[[0], [2022], [2], [6], [21], [40], [56]] +2022.02.07.00=[[0], [2022], [2], [7], [0]] +2022.02.07.00.17.20=[[0], [2022], [2], [7], [0], [17], [20]] +2022.02.07.06.12.16=[[0], [2022], [2], [7], [6], [12], [16]] +2022.02.08.09.38.24=[[0], [2022], [2], [8], [9], [38], [24]] +2022.02.10.16.19.14=[[0], [2022], [2], [10], [16], [19], [14]] +2022.02.11=[[0], [2022], [2], [11]] +2022.02.11.06.19.44=[[0], [2022], [2], [11], [6], [19], [44]] +2022.02.11.06.28.12=[[0], [2022], [2], [11], [6], [28], [12]] +2022.02.11.12.54.35=[[0], [2022], [2], [11], [12], [54], [35]] +2022.02.11.13.04.17=[[0], [2022], [2], [11], [13], [4], [17]] +2022.02.11.13.10.37=[[0], [2022], [2], [11], [13], [10], [37]] +2022.02.11.13.56.39=[[0], [2022], [2], [11], [13], [56], [39]] +2022.02.11.15.44.54=[[0], [2022], [2], [11], [15], [44], [54]] +2022.02.11.19.52.51=[[0], [2022], [2], [11], [19], [52], [51]] +2022.02.12=[[0], [2022], [2], [12]] +2022.02.12.07.13.34=[[0], [2022], [2], [12], [7], [13], [34]] +2022.02.12.08.56.54=[[0], [2022], [2], [12], [8], [56], [54]] +2022.02.13.01.5.12=[[0], [2022], [2], [13], [1], [5], [12]] +2022.02.13.04.39.31=[[0], [2022], [2], [13], [4], [39], [31]] +2022.02.13.21.22.14=[[0], [2022], [2], [13], [21], [22], [14]] +2022.02.13.22.17.40=[[0], [2022], [2], [13], [22], [17], [40]] +2022.02.13.22.34.03=[[0], [2022], [2], [13], [22], [34], [3]] +2022.02.13.22.34.12=[[0], [2022], [2], [13], [22], [34], [12]] +2022.02.13.22.45.33=[[0], [2022], [2], [13], [22], [45], [33]] +2022.02.14=[[0], [2022], [2], [14]] +2022.02.14.00=[[0], [2022], [2], [14], [0]] +2022.02.14.00.54.36=[[0], [2022], [2], [14], [0], [54], [36]] +2022.02.14.04.25.21=[[0], [2022], [2], [14], [4], [25], [21]] +2022.02.14.04.40.54=[[0], [2022], [2], [14], [4], [40], [54]] +2022.02.14.12.37.30=[[0], [2022], [2], [14], [12], [37], [30]] +2022.02.14.13.08.13=[[0], [2022], [2], [14], [13], [8], [13]] +2022.02.14.13.20.49=[[0], [2022], [2], [14], [13], [20], [49]] +2022.02.15.09.45.08=[[0], [2022], [2], [15], [9], [45], [8]] +2022.02.15.09.52.15=[[0], [2022], [2], [15], [9], [52], [15]] +2022.02.15.09.56.12=[[0], [2022], [2], [15], [9], [56], [12]] +2022.02.15.10.00.06=[[0], [2022], [2], [15], [10], [0], [6]] +2022.02.15.14.5.09=[[0], [2022], [2], [15], [14], [5], [9]] +2022.02.15.20.00.46=[[0], [2022], [2], [15], [20], [0], [46]] +2022.02.17=[[0], [2022], [2], [17]] +2022.02.17.00.41.37=[[0], [2022], [2], [17], [0], [41], [37]] +2022.02.17.00.42.15=[[0], [2022], [2], [17], [0], [42], [15]] +2022.02.17.06.22.45=[[0], [2022], [2], [17], [6], [22], [45]] +2022.02.17.15.32.38=[[0], [2022], [2], [17], [15], [32], [38]] +2022.02.17.23.50.18=[[0], [2022], [2], [17], [23], [50], [18]] +2022.02.18=[[0], [2022], [2], [18]] +2022.02.18.13.24.38=[[0], [2022], [2], [18], [13], [24], [38]] +2022.02.18.14.45.27=[[0], [2022], [2], [18], [14], [45], [27]] +2022.02.18.15.27.34=[[0], [2022], [2], [18], [15], [27], [34]] +2022.02.18.23.09.53=[[0], [2022], [2], [18], [23], [9], [53]] +2022.02.18.23.56.39=[[0], [2022], [2], [18], [23], [56], [39]] +2022.02.19.23.26.53=[[0], [2022], [2], [19], [23], [26], [53]] +2022.02.2=[[0], [2022], [2], [2]] +2022.02.21.00=[[0], [2022], [2], [21], [0]] +2022.02.21.14.57.59=[[0], [2022], [2], [21], [14], [57], [59]] +2022.02.21.20.20.02=[[0], [2022], [2], [21], [20], [20], [2]] +2022.02.21.21.55.10=[[0], [2022], [2], [21], [21], [55], [10]] +2022.02.22.10.43.58=[[0], [2022], [2], [22], [10], [43], [58]] +2022.02.22.10.45.59=[[0], [2022], [2], [22], [10], [45], [59]] +2022.02.22.12.32.52=[[0], [2022], [2], [22], [12], [32], [52]] +2022.02.22.16.45.10=[[0], [2022], [2], [22], [16], [45], [10]] +2022.02.22.17.02.26=[[0], [2022], [2], [22], [17], [2], [26]] +2022.02.23=[[0], [2022], [2], [23]] +2022.02.23.12.25.49=[[0], [2022], [2], [23], [12], [25], [49]] +2022.02.23.13.44.17=[[0], [2022], [2], [23], [13], [44], [17]] +2022.02.23.17.48.45=[[0], [2022], [2], [23], [17], [48], [45]] +2022.02.24=[[0], [2022], [2], [24]] +2022.02.24.15.28.03=[[0], [2022], [2], [24], [15], [28], [3]] +2022.02.25.03.59.17=[[0], [2022], [2], [25], [3], [59], [17]] +2022.02.25.15.35.46=[[0], [2022], [2], [25], [15], [35], [46]] +2022.02.28.00=[[0], [2022], [2], [28], [0]] +2022.02.28.13.5.22=[[0], [2022], [2], [28], [13], [5], [22]] +2022.02.3=[[0], [2022], [2], [3]] +2022.03=[[0], [2022], [3]] +2022.03.0=[[0], [2022], [3], [0]] +2022.03.01.16.24.47=[[0], [2022], [3], [1], [16], [24], [47]] +2022.03.01.16.41.38=[[0], [2022], [3], [1], [16], [41], [38]] +2022.03.01.17.46.00=[[0], [2022], [3], [1], [17], [46], [0]] +2022.03.01.19.08.06=[[0], [2022], [3], [1], [19], [8], [6]] +2022.03.01.23.33.50=[[0], [2022], [3], [1], [23], [33], [50]] +2022.03.02.15.49.21=[[0], [2022], [3], [2], [15], [49], [21]] +2022.03.02.18.03.40=[[0], [2022], [3], [2], [18], [3], [40]] +2022.03.03=[[0], [2022], [3], [3]] +2022.03.03.08.23.08=[[0], [2022], [3], [3], [8], [23], [8]] +2022.03.03.08.23.49=[[0], [2022], [3], [3], [8], [23], [49]] +2022.03.03.08.24.06=[[0], [2022], [3], [3], [8], [24], [6]] +2022.03.03.08.25.15=[[0], [2022], [3], [3], [8], [25], [15]] +2022.03.03.08.26.51=[[0], [2022], [3], [3], [8], [26], [51]] +2022.03.03.11.30.49=[[0], [2022], [3], [3], [11], [30], [49]] +2022.03.03.19.18.22=[[0], [2022], [3], [3], [19], [18], [22]] +2022.03.03.19.40.07=[[0], [2022], [3], [3], [19], [40], [7]] +2022.03.03.21.25.39=[[0], [2022], [3], [3], [21], [25], [39]] +2022.03.04.01.20.32=[[0], [2022], [3], [4], [1], [20], [32]] +2022.03.04.03.08.50=[[0], [2022], [3], [4], [3], [8], [50]] +2022.03.04.08.01.08=[[0], [2022], [3], [4], [8], [1], [8]] +2022.03.04.08.01.42=[[0], [2022], [3], [4], [8], [1], [42]] +2022.03.04.09.47.34=[[0], [2022], [3], [4], [9], [47], [34]] +2022.03.04.15.23.07=[[0], [2022], [3], [4], [15], [23], [7]] +2022.03.04.17.12.12=[[0], [2022], [3], [4], [17], [12], [12]] +2022.03.04.19.31.39=[[0], [2022], [3], [4], [19], [31], [39]] +2022.03.5.07.13.09=[[0], [2022], [3], [5], [7], [13], [9]] +2022.03.5.13.20.38=[[0], [2022], [3], [5], [13], [20], [38]] +2022.03.06=[[0], [2022], [3], [6]] +2022.03.07=[[0], [2022], [3], [7]] +2022.03.07.00=[[0], [2022], [3], [7], [0]] +2022.03.07.16.58.03=[[0], [2022], [3], [7], [16], [58], [3]] +2022.03.08=[[0], [2022], [3], [8]] +2022.03.08.07.37.14=[[0], [2022], [3], [8], [7], [37], [14]] +2022.03.08.14.5.14=[[0], [2022], [3], [8], [14], [5], [14]] +2022.03.08.16.47.58=[[0], [2022], [3], [8], [16], [47], [58]] +2022.03.08.16.54.15=[[0], [2022], [3], [8], [16], [54], [15]] +2022.03.08.21.07.12=[[0], [2022], [3], [8], [21], [7], [12]] +2022.03.09=[[0], [2022], [3], [9]] +2022.03.09.08.50.50=[[0], [2022], [3], [9], [8], [50], [50]] +2022.03.09.08.54.39=[[0], [2022], [3], [9], [8], [54], [39]] +2022.03.1=[[0], [2022], [3], [1]] +2022.03.10=[[0], [2022], [3], [10]] +2022.03.10.08.54.06=[[0], [2022], [3], [10], [8], [54], [6]] +2022.03.10.14.25.15=[[0], [2022], [3], [10], [14], [25], [15]] +2022.03.10.18.35.59=[[0], [2022], [3], [10], [18], [35], [59]] +2022.03.12.18.14.42=[[0], [2022], [3], [12], [18], [14], [42]] +2022.03.12.18.19.48=[[0], [2022], [3], [12], [18], [19], [48]] +2022.03.13=[[0], [2022], [3], [13]] +2022.03.13.02.29.16=[[0], [2022], [3], [13], [2], [29], [16]] +2022.03.13.06.57.35=[[0], [2022], [3], [13], [6], [57], [35]] +2022.03.13.15.54.52=[[0], [2022], [3], [13], [15], [54], [52]] +2022.03.13.16.57.33=[[0], [2022], [3], [13], [16], [57], [33]] +2022.03.14.00=[[0], [2022], [3], [14], [0]] +2022.03.14.13.26.11=[[0], [2022], [3], [14], [13], [26], [11]] +2022.03.14.13.58.01=[[0], [2022], [3], [14], [13], [58], [1]] +2022.03.15.07.59.01=[[0], [2022], [3], [15], [7], [59], [1]] +2022.03.15.10.12.29=[[0], [2022], [3], [15], [10], [12], [29]] +2022.03.16.03.42.14=[[0], [2022], [3], [16], [3], [42], [14]] +2022.03.16.15.21.47=[[0], [2022], [3], [16], [15], [21], [47]] +2022.03.16.19.59.50=[[0], [2022], [3], [16], [19], [59], [50]] +2022.03.16.23.15.25=[[0], [2022], [3], [16], [23], [15], [25]] +2022.03.17.02.30.57=[[0], [2022], [3], [17], [2], [30], [57]] +2022.03.17.03.37.43=[[0], [2022], [3], [17], [3], [37], [43]] +2022.03.17.11.17.55=[[0], [2022], [3], [17], [11], [17], [55]] +2022.03.17.19.39.04=[[0], [2022], [3], [17], [19], [39], [4]] +2022.03.17.19.40.19=[[0], [2022], [3], [17], [19], [40], [19]] +2022.03.17.19.45.15=[[0], [2022], [3], [17], [19], [45], [15]] +2022.03.18.12.16.01=[[0], [2022], [3], [18], [12], [16], [1]] +2022.03.18.14.08.59=[[0], [2022], [3], [18], [14], [8], [59]] +2022.03.18.16.40.09=[[0], [2022], [3], [18], [16], [40], [9]] +2022.03.18.16.40.38=[[0], [2022], [3], [18], [16], [40], [38]] +2022.03.18.16.41.31=[[0], [2022], [3], [18], [16], [41], [31]] +2022.03.19.12.57.49=[[0], [2022], [3], [19], [12], [57], [49]] +2022.03.19.14.12.41=[[0], [2022], [3], [19], [14], [12], [41]] +2022.03.19.14.15.37=[[0], [2022], [3], [19], [14], [15], [37]] +2022.03.19.14.15.50=[[0], [2022], [3], [19], [14], [15], [50]] +2022.03.19.14.19.35=[[0], [2022], [3], [19], [14], [19], [35]] +2022.03.2=[[0], [2022], [3], [2]] +2022.03.20.11.58.24=[[0], [2022], [3], [20], [11], [58], [24]] +2022.03.20.19.31.27=[[0], [2022], [3], [20], [19], [31], [27]] +2022.03.21.00=[[0], [2022], [3], [21], [0]] +2022.03.21.01.01.44=[[0], [2022], [3], [21], [1], [1], [44]] +2022.03.21.04.26.58=[[0], [2022], [3], [21], [4], [26], [58]] +2022.03.21.21.49.04=[[0], [2022], [3], [21], [21], [49], [4]] +2022.03.22=[[0], [2022], [3], [22]] +2022.03.22.00.01.46=[[0], [2022], [3], [22], [0], [1], [46]] +2022.03.22.12.57.56=[[0], [2022], [3], [22], [12], [57], [56]] +2022.03.22.14.49.54=[[0], [2022], [3], [22], [14], [49], [54]] +2022.03.22.16.50.54=[[0], [2022], [3], [22], [16], [50], [54]] +2022.03.22.19.17.12=[[0], [2022], [3], [22], [19], [17], [12]] +2022.03.23.07.48.24=[[0], [2022], [3], [23], [7], [48], [24]] +2022.03.23.15.32.25=[[0], [2022], [3], [23], [15], [32], [25]] +2022.03.23.16.41.17=[[0], [2022], [3], [23], [16], [41], [17]] +2022.03.23.20.27.24=[[0], [2022], [3], [23], [20], [27], [24]] +2022.03.24=[[0], [2022], [3], [24]] +2022.03.24.20.31.54=[[0], [2022], [3], [24], [20], [31], [54]] +2022.03.24.20.44.18=[[0], [2022], [3], [24], [20], [44], [18]] +2022.03.24.20.51.15=[[0], [2022], [3], [24], [20], [51], [15]] +2022.03.25.5.47.39=[[0], [2022], [3], [25], [5], [47], [39]] +2022.03.25.06.21.54=[[0], [2022], [3], [25], [6], [21], [54]] +2022.03.25.14.56.02=[[0], [2022], [3], [25], [14], [56], [2]] +2022.03.25.19.30.32=[[0], [2022], [3], [25], [19], [30], [32]] +2022.03.25.20.30.42=[[0], [2022], [3], [25], [20], [30], [42]] +2022.03.28.00=[[0], [2022], [3], [28], [0]] +2022.03.28.15.22.23=[[0], [2022], [3], [28], [15], [22], [23]] +2022.03.28.15.31.32=[[0], [2022], [3], [28], [15], [31], [32]] +2022.03.28.19.38.17=[[0], [2022], [3], [28], [19], [38], [17]] +2022.03.28.22.11.58=[[0], [2022], [3], [28], [22], [11], [58]] +2022.03.29.23.54.57=[[0], [2022], [3], [29], [23], [54], [57]] +2022.03.3=[[0], [2022], [3], [3]] +2022.03.30=[[0], [2022], [3], [30]] +2022.03.30.03.10.21=[[0], [2022], [3], [30], [3], [10], [21]] +2022.03.30.08.09.52=[[0], [2022], [3], [30], [8], [9], [52]] +2022.03.30.10.02.27=[[0], [2022], [3], [30], [10], [2], [27]] +2022.03.30.10.5.09=[[0], [2022], [3], [30], [10], [5], [9]] +2022.03.30.10.5.23=[[0], [2022], [3], [30], [10], [5], [23]] +2022.03.30.12.49.41=[[0], [2022], [3], [30], [12], [49], [41]] +2022.03.30.15.14.58=[[0], [2022], [3], [30], [15], [14], [58]] +2022.03.30.18.03.29=[[0], [2022], [3], [30], [18], [3], [29]] +2022.03.31.01.43.29=[[0], [2022], [3], [31], [1], [43], [29]] +2022.03.31.06.39.5=[[0], [2022], [3], [31], [6], [39], [5]] +2022.03.31.07.03.03=[[0], [2022], [3], [31], [7], [3], [3]] +2022.03.31.10.54.08=[[0], [2022], [3], [31], [10], [54], [8]] +2022.03.31.10.54.25=[[0], [2022], [3], [31], [10], [54], [25]] +2022.03.31.11.30.08=[[0], [2022], [3], [31], [11], [30], [8]] +2022.03.31.11.51.51=[[0], [2022], [3], [31], [11], [51], [51]] +2022.03.31.15.11.41=[[0], [2022], [3], [31], [15], [11], [41]] +2022.03.31.16.27.41=[[0], [2022], [3], [31], [16], [27], [41]] +2022.03.31.18.34.20=[[0], [2022], [3], [31], [18], [34], [20]] +2022.03.31.20.32.14=[[0], [2022], [3], [31], [20], [32], [14]] +2022.03.4=[[0], [2022], [3], [4]] +2022.03.5=[[0], [2022], [3], [5]] +2022.04=[[0], [2022], [4]] +2022.04.0=[[0], [2022], [4], [0]] +2022.04.01=[[0], [2022], [4], [1]] +2022.04.01.00.07.17=[[0], [2022], [4], [1], [0], [7], [17]] +2022.04.01.12.17.55=[[0], [2022], [4], [1], [12], [17], [55]] +2022.04.01.12.21.46=[[0], [2022], [4], [1], [12], [21], [46]] +2022.04.01.17.34.01=[[0], [2022], [4], [1], [17], [34], [1]] +2022.04.01.20.5.02=[[0], [2022], [4], [1], [20], [5], [2]] +2022.04.01.23.36.23=[[0], [2022], [4], [1], [23], [36], [23]] +2022.04.02.03.03.45=[[0], [2022], [4], [2], [3], [3], [45]] +2022.04.02.04.11.01=[[0], [2022], [4], [2], [4], [11], [1]] +2022.04.02.19.04.47=[[0], [2022], [4], [2], [19], [4], [47]] +2022.04.03.06.07.57=[[0], [2022], [4], [3], [6], [7], [57]] +2022.04.03.06.15.38=[[0], [2022], [4], [3], [6], [15], [38]] +2022.04.03.06.16.02=[[0], [2022], [4], [3], [6], [16], [2]] +2022.04.03.14.32.43=[[0], [2022], [4], [3], [14], [32], [43]] +2022.04.04.00=[[0], [2022], [4], [4], [0]] +2022.04.04.17.10.15=[[0], [2022], [4], [4], [17], [10], [15]] +2022.04.04.18.29.32=[[0], [2022], [4], [4], [18], [29], [32]] +2022.04.04.20.33.41=[[0], [2022], [4], [4], [20], [33], [41]] +2022.04.04.21.55.16=[[0], [2022], [4], [4], [21], [55], [16]] +2022.04.04.22.18.08=[[0], [2022], [4], [4], [22], [18], [8]] +2022.04.5.07.10.07=[[0], [2022], [4], [5], [7], [10], [7]] +2022.04.5.10.19.5=[[0], [2022], [4], [5], [10], [19], [5]] +2022.04.5.12.13.43=[[0], [2022], [4], [5], [12], [13], [43]] +2022.04.5.18.07.10=[[0], [2022], [4], [5], [18], [7], [10]] +2022.04.06=[[0], [2022], [4], [6]] +2022.04.06.00.23.40=[[0], [2022], [4], [6], [0], [23], [40]] +2022.04.06.00.27.40=[[0], [2022], [4], [6], [0], [27], [40]] +2022.04.06.02.32.01=[[0], [2022], [4], [6], [2], [32], [1]] +2022.04.06.03.27.58=[[0], [2022], [4], [6], [3], [27], [58]] +2022.04.06.11.51.27=[[0], [2022], [4], [6], [11], [51], [27]] +2022.04.06.14.57.25=[[0], [2022], [4], [6], [14], [57], [25]] +2022.04.06.14.58.02=[[0], [2022], [4], [6], [14], [58], [2]] +2022.04.06.15.06.15=[[0], [2022], [4], [6], [15], [6], [15]] +2022.04.06.19.57.51=[[0], [2022], [4], [6], [19], [57], [51]] +2022.04.06.21.38.29=[[0], [2022], [4], [6], [21], [38], [29]] +2022.04.07.02.30.44=[[0], [2022], [4], [7], [2], [30], [44]] +2022.04.07.12.22.25=[[0], [2022], [4], [7], [12], [22], [25]] +2022.04.07.12.27.50=[[0], [2022], [4], [7], [12], [27], [50]] +2022.04.07.15.54.08=[[0], [2022], [4], [7], [15], [54], [8]] +2022.04.07.16.47.44=[[0], [2022], [4], [7], [16], [47], [44]] +2022.04.07.20.54.50=[[0], [2022], [4], [7], [20], [54], [50]] +2022.04.08.02.48.37=[[0], [2022], [4], [8], [2], [48], [37]] +2022.04.08.10.49.38=[[0], [2022], [4], [8], [10], [49], [38]] +2022.04.08.12.39.08=[[0], [2022], [4], [8], [12], [39], [8]] +2022.04.08.13.19.51=[[0], [2022], [4], [8], [13], [19], [51]] +2022.04.08.18.53.04=[[0], [2022], [4], [8], [18], [53], [4]] +2022.04.08.22.00.32=[[0], [2022], [4], [8], [22], [0], [32]] +2022.04.08.23.01.38=[[0], [2022], [4], [8], [23], [1], [38]] +2022.04.09.5.47.49=[[0], [2022], [4], [9], [5], [47], [49]] +2022.04.09.06.33.53=[[0], [2022], [4], [9], [6], [33], [53]] +2022.04.09.06.48.49=[[0], [2022], [4], [9], [6], [48], [49]] +2022.04.09.06.52.04=[[0], [2022], [4], [9], [6], [52], [4]] +2022.04.09.16.11.09=[[0], [2022], [4], [9], [16], [11], [9]] +2022.04.09.19.01.16=[[0], [2022], [4], [9], [19], [1], [16]] +2022.04.1=[[0], [2022], [4], [1]] +2022.04.10.06.46.21=[[0], [2022], [4], [10], [6], [46], [21]] +2022.04.10.07.10.26=[[0], [2022], [4], [10], [7], [10], [26]] +2022.04.10.10.26.59=[[0], [2022], [4], [10], [10], [26], [59]] +2022.04.10.16.18.16=[[0], [2022], [4], [10], [16], [18], [16]] +2022.04.10.22.41.35=[[0], [2022], [4], [10], [22], [41], [35]] +2022.04.11.00=[[0], [2022], [4], [11], [0]] +2022.04.11.11.31.00=[[0], [2022], [4], [11], [11], [31], [0]] +2022.04.11.13.50.18=[[0], [2022], [4], [11], [13], [50], [18]] +2022.04.12=[[0], [2022], [4], [12]] +2022.04.12.10.16.02=[[0], [2022], [4], [12], [10], [16], [2]] +2022.04.12.16.55.22=[[0], [2022], [4], [12], [16], [55], [22]] +2022.04.12.19.15.38=[[0], [2022], [4], [12], [19], [15], [38]] +2022.04.12.19.17.14=[[0], [2022], [4], [12], [19], [17], [14]] +2022.04.12.19.20.34=[[0], [2022], [4], [12], [19], [20], [34]] +2022.04.12.21.56.28=[[0], [2022], [4], [12], [21], [56], [28]] +2022.04.13.5.08.00=[[0], [2022], [4], [13], [5], [8], [0]] +2022.04.13.5.11.22=[[0], [2022], [4], [13], [5], [11], [22]] +2022.04.13.07.17.29=[[0], [2022], [4], [13], [7], [17], [29]] +2022.04.13.11.33.57=[[0], [2022], [4], [13], [11], [33], [57]] +2022.04.13.14.53.36=[[0], [2022], [4], [13], [14], [53], [36]] +2022.04.14.12.5.26=[[0], [2022], [4], [14], [12], [5], [26]] +2022.04.14.12.58.33=[[0], [2022], [4], [14], [12], [58], [33]] +2022.04.14.17.26.44=[[0], [2022], [4], [14], [17], [26], [44]] +2022.04.15.14.15.37=[[0], [2022], [4], [15], [14], [15], [37]] +2022.04.16.04.57.52=[[0], [2022], [4], [16], [4], [57], [52]] +2022.04.16.5.14.45=[[0], [2022], [4], [16], [5], [14], [45]] +2022.04.16.22.19.15=[[0], [2022], [4], [16], [22], [19], [15]] +2022.04.16.22.19.20=[[0], [2022], [4], [16], [22], [19], [20]] +2022.04.16.22.19.42=[[0], [2022], [4], [16], [22], [19], [42]] +2022.04.16.22.20.19=[[0], [2022], [4], [16], [22], [20], [19]] +2022.04.17.06.04.48=[[0], [2022], [4], [17], [6], [4], [48]] +2022.04.17.06.21.01=[[0], [2022], [4], [17], [6], [21], [1]] +2022.04.17.16.40.16=[[0], [2022], [4], [17], [16], [40], [16]] +2022.04.17.23.07.46=[[0], [2022], [4], [17], [23], [7], [46]] +2022.04.18=[[0], [2022], [4], [18]] +2022.04.18.00=[[0], [2022], [4], [18], [0]] +2022.04.18.11.42.44=[[0], [2022], [4], [18], [11], [42], [44]] +2022.04.20.10.57.53=[[0], [2022], [4], [20], [10], [57], [53]] +2022.04.20.14.36.35=[[0], [2022], [4], [20], [14], [36], [35]] +2022.04.20.14.53.59=[[0], [2022], [4], [20], [14], [53], [59]] +2022.04.20.21.24.32=[[0], [2022], [4], [20], [21], [24], [32]] +2022.04.21.13.14.58=[[0], [2022], [4], [21], [13], [14], [58]] +2022.04.21.15.03.25=[[0], [2022], [4], [21], [15], [3], [25]] +2022.04.21.21.03.33=[[0], [2022], [4], [21], [21], [3], [33]] +2022.04.21.23.08.27=[[0], [2022], [4], [21], [23], [8], [27]] +2022.04.23.18.13.34=[[0], [2022], [4], [23], [18], [13], [34]] +2022.04.23.18.15.26=[[0], [2022], [4], [23], [18], [15], [26]] +2022.04.24.01.35.03=[[0], [2022], [4], [24], [1], [35], [3]] +2022.04.24.03.02.13=[[0], [2022], [4], [24], [3], [2], [13]] +2022.04.24.13.06.22=[[0], [2022], [4], [24], [13], [6], [22]] +2022.04.24.15.29.58=[[0], [2022], [4], [24], [15], [29], [58]] +2022.04.24.17.34.15=[[0], [2022], [4], [24], [17], [34], [15]] +2022.04.24.21.17.49=[[0], [2022], [4], [24], [21], [17], [49]] +2022.04.25.00=[[0], [2022], [4], [25], [0]] +2022.04.25.19.26.04=[[0], [2022], [4], [25], [19], [26], [4]] +2022.04.26.12.46.45=[[0], [2022], [4], [26], [12], [46], [45]] +2022.04.26.15.08.43=[[0], [2022], [4], [26], [15], [8], [43]] +2022.04.28.12.57.13=[[0], [2022], [4], [28], [12], [57], [13]] +2022.04.28.22.31.46=[[0], [2022], [4], [28], [22], [31], [46]] +2022.04.29.16.49.17=[[0], [2022], [4], [29], [16], [49], [17]] +2022.04.29.16.50.00=[[0], [2022], [4], [29], [16], [50], [0]] +2022.04.29.16.52.03=[[0], [2022], [4], [29], [16], [52], [3]] +2022.5.0=[[0], [2022], [5], [0]] +2022.5.00=[[0], [2022], [5], [0]] +2022.5.01=[[0], [2022], [5], [1]] +2022.5.01.12.58.40=[[0], [2022], [5], [1], [12], [58], [40]] +2022.5.02.00=[[0], [2022], [5], [2], [0]] +2022.5.02.10.57.49=[[0], [2022], [5], [2], [10], [57], [49]] +2022.5.02.12.53.39=[[0], [2022], [5], [2], [12], [53], [39]] +2022.5.02.14.44.24=[[0], [2022], [5], [2], [14], [44], [24]] +2022.5.02.15.18.36=[[0], [2022], [5], [2], [15], [18], [36]] +2022.5.02.16.32.54=[[0], [2022], [5], [2], [16], [32], [54]] +2022.5.02.16.34.37=[[0], [2022], [5], [2], [16], [34], [37]] +2022.5.02.19.14.43=[[0], [2022], [5], [2], [19], [14], [43]] +2022.5.02.19.15.5=[[0], [2022], [5], [2], [19], [15], [5]] +2022.5.02.19.22.36=[[0], [2022], [5], [2], [19], [22], [36]] +2022.5.02.19.36.47=[[0], [2022], [5], [2], [19], [36], [47]] +2022.5.02.19.41.03=[[0], [2022], [5], [2], [19], [41], [3]] +2022.5.03=[[0], [2022], [5], [3]] +2022.5.03.00.24.50=[[0], [2022], [5], [3], [0], [24], [50]] +2022.5.03.5.37.34=[[0], [2022], [5], [3], [5], [37], [34]] +2022.5.03.11.39.11=[[0], [2022], [5], [3], [11], [39], [11]] +2022.5.04=[[0], [2022], [5], [4]] +2022.5.04.07.00.44=[[0], [2022], [5], [4], [7], [0], [44]] +2022.5.04.16.02.41=[[0], [2022], [5], [4], [16], [2], [41]] +2022.5.04.18.03.34=[[0], [2022], [5], [4], [18], [3], [34]] +2022.5.5=[[0], [2022], [5], [5]] +2022.5.5.16.37.34=[[0], [2022], [5], [5], [16], [37], [34]] +2022.5.5.18.43.04=[[0], [2022], [5], [5], [18], [43], [4]] +2022.5.06=[[0], [2022], [5], [6]] +2022.5.06.13.49.53=[[0], [2022], [5], [6], [13], [49], [53]] +2022.5.06.15.25.04=[[0], [2022], [5], [6], [15], [25], [4]] +2022.5.06.15.28.34=[[0], [2022], [5], [6], [15], [28], [34]] +2022.5.06.15.30.52=[[0], [2022], [5], [6], [15], [30], [52]] +2022.5.06.15.33.36=[[0], [2022], [5], [6], [15], [33], [36]] +2022.5.06.15.33.45=[[0], [2022], [5], [6], [15], [33], [45]] +2022.5.06.15.37.02=[[0], [2022], [5], [6], [15], [37], [2]] +2022.5.06.15.39.26=[[0], [2022], [5], [6], [15], [39], [26]] +2022.5.06.15.39.45=[[0], [2022], [5], [6], [15], [39], [45]] +2022.5.06.15.41.10=[[0], [2022], [5], [6], [15], [41], [10]] +2022.5.08=[[0], [2022], [5], [8]] +2022.5.09.07.01.03=[[0], [2022], [5], [9], [7], [1], [3]] +2022.5.09.07.08.30=[[0], [2022], [5], [9], [7], [8], [30]] +2022.5.1=[[0], [2022], [5], [1]] +2022.5.10=[[0], [2022], [5], [10]] +2022.5.12.00.18.15=[[0], [2022], [5], [12], [0], [18], [15]] +2022.5.12.13.19.50=[[0], [2022], [5], [12], [13], [19], [50]] +2022.5.12.18.5.03=[[0], [2022], [5], [12], [18], [5], [3]] +2022.5.13.08.41.59=[[0], [2022], [5], [13], [8], [41], [59]] +2022.5.13.11.41.30=[[0], [2022], [5], [13], [11], [41], [30]] +2022.5.14=[[0], [2022], [5], [14]] +2022.5.14.22.55.26=[[0], [2022], [5], [14], [22], [55], [26]] +2022.5.15.15.04.08=[[0], [2022], [5], [15], [15], [4], [8]] +2022.5.16.09.20.45=[[0], [2022], [5], [16], [9], [20], [45]] +2022.5.16.12.18.44=[[0], [2022], [5], [16], [12], [18], [44]] +2022.5.17.07.5.47=[[0], [2022], [5], [17], [7], [5], [47]] +2022.5.17.07.07.01=[[0], [2022], [5], [17], [7], [7], [1]] +2022.5.17.07.14.55=[[0], [2022], [5], [17], [7], [14], [55]] +2022.5.17.11.36.49=[[0], [2022], [5], [17], [11], [36], [49]] +2022.5.17.21.59.01=[[0], [2022], [5], [17], [21], [59], [1]] +2022.5.18=[[0], [2022], [5], [18]] +2022.5.18.07.20.58=[[0], [2022], [5], [18], [7], [20], [58]] +2022.5.18.18.43.52=[[0], [2022], [5], [18], [18], [43], [52]] +2022.5.18.23.47.38=[[0], [2022], [5], [18], [23], [47], [38]] +2022.5.19.14.17.20=[[0], [2022], [5], [19], [14], [17], [20]] +2022.5.19.23.06.33=[[0], [2022], [5], [19], [23], [6], [33]] +2022.5.20=[[0], [2022], [5], [20]] +2022.5.20.01.36.03=[[0], [2022], [5], [20], [1], [36], [3]] +2022.5.20.07.13.49=[[0], [2022], [5], [20], [7], [13], [49]] +2022.5.20.08.26.58=[[0], [2022], [5], [20], [8], [26], [58]] +2022.5.20.08.33.30=[[0], [2022], [5], [20], [8], [33], [30]] +2022.5.20.13.10.33=[[0], [2022], [5], [20], [13], [10], [33]] +2022.5.20.15.08.19=[[0], [2022], [5], [20], [15], [8], [19]] +2022.5.20.15.08.39=[[0], [2022], [5], [20], [15], [8], [39]] +2022.5.21.06.26.44=[[0], [2022], [5], [21], [6], [26], [44]] +2022.5.21.06.31.19=[[0], [2022], [5], [21], [6], [31], [19]] +2022.5.21.06.31.58=[[0], [2022], [5], [21], [6], [31], [58]] +2022.5.22.06.13.52=[[0], [2022], [5], [22], [6], [13], [52]] +2022.5.23.11.15.14=[[0], [2022], [5], [23], [11], [15], [14]] +2022.5.23.12.37.52=[[0], [2022], [5], [23], [12], [37], [52]] +2022.5.23.15.49.11=[[0], [2022], [5], [23], [15], [49], [11]] +2022.5.24=[[0], [2022], [5], [24]] +2022.5.24.09.00.5=[[0], [2022], [5], [24], [9], [0], [5]] +2022.5.24.12.49.34=[[0], [2022], [5], [24], [12], [49], [34]] +2022.5.24.12.51.25=[[0], [2022], [5], [24], [12], [51], [25]] +2022.5.24.15.15.50=[[0], [2022], [5], [24], [15], [15], [50]] +2022.5.25.5.16.19=[[0], [2022], [5], [25], [5], [16], [19]] +2022.5.25.14.40.58=[[0], [2022], [5], [25], [14], [40], [58]] +2022.5.25.19.48.06=[[0], [2022], [5], [25], [19], [48], [6]] +2022.5.27=[[0], [2022], [5], [27]] +2022.5.27.12.50.08=[[0], [2022], [5], [27], [12], [50], [8]] +2022.5.27.19.22.16=[[0], [2022], [5], [27], [19], [22], [16]] +2022.5.27.22.09.45=[[0], [2022], [5], [27], [22], [9], [45]] +2022.5.28.12.44.5=[[0], [2022], [5], [28], [12], [44], [5]] +2022.5.28.19.5.45=[[0], [2022], [5], [28], [19], [5], [45]] +2022.5.28.19.06.00=[[0], [2022], [5], [28], [19], [6], [0]] +2022.5.28.20.04.06=[[0], [2022], [5], [28], [20], [4], [6]] +2022.5.30.14.59.12=[[0], [2022], [5], [30], [14], [59], [12]] +2022.5.31.00.48.42=[[0], [2022], [5], [31], [0], [48], [42]] +2022.5.31.13.38.22=[[0], [2022], [5], [31], [13], [38], [22]] +2022.5.31.15.36.22=[[0], [2022], [5], [31], [15], [36], [22]] +2022.06.0=[[0], [2022], [6], [0]] +2022.06.01=[[0], [2022], [6], [1]] +2022.06.01.01.51.44=[[0], [2022], [6], [1], [1], [51], [44]] +2022.06.01.21.06.06=[[0], [2022], [6], [1], [21], [6], [6]] +2022.06.02.02.16.30=[[0], [2022], [6], [2], [2], [16], [30]] +2022.06.02.02.17.23=[[0], [2022], [6], [2], [2], [17], [23]] +2022.06.02.10.52.40=[[0], [2022], [6], [2], [10], [52], [40]] +2022.06.02.15.09.01=[[0], [2022], [6], [2], [15], [9], [1]] +2022.06.02.23.44.30=[[0], [2022], [6], [2], [23], [44], [30]] +2022.06.03.11.00.48=[[0], [2022], [6], [3], [11], [0], [48]] +2022.06.03.22.56.00=[[0], [2022], [6], [3], [22], [56], [0]] +2022.06.04.14.39.47=[[0], [2022], [6], [4], [14], [39], [47]] +2022.06.04.16.15.42=[[0], [2022], [6], [4], [16], [15], [42]] +2022.06.04.16.36.40=[[0], [2022], [6], [4], [16], [36], [40]] +2022.06.04.16.36.45=[[0], [2022], [6], [4], [16], [36], [45]] +2022.06.04.16.37.37=[[0], [2022], [6], [4], [16], [37], [37]] +2022.06.04.16.38.34=[[0], [2022], [6], [4], [16], [38], [34]] +2022.06.04.16.39.23=[[0], [2022], [6], [4], [16], [39], [23]] +2022.06.04.16.42.04=[[0], [2022], [6], [4], [16], [42], [4]] +2022.06.04.16.44.48=[[0], [2022], [6], [4], [16], [44], [48]] +2022.06.04.19.02.46=[[0], [2022], [6], [4], [19], [2], [46]] +2022.06.04.21.26.03=[[0], [2022], [6], [4], [21], [26], [3]] +2022.06.5=[[0], [2022], [6], [5]] +2022.06.5.00.07.29=[[0], [2022], [6], [5], [0], [7], [29]] +2022.06.5.11.06.00=[[0], [2022], [6], [5], [11], [6], [0]] +2022.06.5.11.48.06=[[0], [2022], [6], [5], [11], [48], [6]] +2022.06.5.21.47.29=[[0], [2022], [6], [5], [21], [47], [29]] +2022.06.06=[[0], [2022], [6], [6]] +2022.06.06.01.01.46=[[0], [2022], [6], [6], [1], [1], [46]] +2022.06.06.01.5.55=[[0], [2022], [6], [6], [1], [5], [55]] +2022.06.07.19.41.06=[[0], [2022], [6], [7], [19], [41], [6]] +2022.06.08=[[0], [2022], [6], [8]] +2022.06.08.00.21.30=[[0], [2022], [6], [8], [0], [21], [30]] +2022.06.08.14.40.10=[[0], [2022], [6], [8], [14], [40], [10]] +2022.06.08.23.30.54=[[0], [2022], [6], [8], [23], [30], [54]] +2022.06.09.17.24.24=[[0], [2022], [6], [9], [17], [24], [24]] +2022.06.09.17.26.41=[[0], [2022], [6], [9], [17], [26], [41]] +2022.06.09.18.09.12=[[0], [2022], [6], [9], [18], [9], [12]] +2022.06.10.06.38.26=[[0], [2022], [6], [10], [6], [38], [26]] +2022.06.10.16.38.37=[[0], [2022], [6], [10], [16], [38], [37]] +2022.06.10.18.09.10=[[0], [2022], [6], [10], [18], [9], [10]] +2022.06.11.12.31.12=[[0], [2022], [6], [11], [12], [31], [12]] +2022.06.11.19.09.35=[[0], [2022], [6], [11], [19], [9], [35]] +2022.06.12.00.53.04=[[0], [2022], [6], [12], [0], [53], [4]] +2022.06.12.04.15.50=[[0], [2022], [6], [12], [4], [15], [50]] +2022.06.12.5.34.29=[[0], [2022], [6], [12], [5], [34], [29]] +2022.06.12.5.44.17=[[0], [2022], [6], [12], [5], [44], [17]] +2022.06.12.5.44.19=[[0], [2022], [6], [12], [5], [44], [19]] +2022.06.12.5.44.25=[[0], [2022], [6], [12], [5], [44], [25]] +2022.06.12.5.44.46=[[0], [2022], [6], [12], [5], [44], [46]] +2022.06.13=[[0], [2022], [6], [13]] +2022.06.13.06.53.20=[[0], [2022], [6], [13], [6], [53], [20]] +2022.06.13.08.34.03=[[0], [2022], [6], [13], [8], [34], [3]] +2022.06.13.22.29.59=[[0], [2022], [6], [13], [22], [29], [59]] +2022.06.14.14.10.02=[[0], [2022], [6], [14], [14], [10], [2]] +2022.06.14.22.54.02=[[0], [2022], [6], [14], [22], [54], [2]] +2022.06.15=[[0], [2022], [6], [15]] +2022.06.15.15.40.35=[[0], [2022], [6], [15], [15], [40], [35]] +2022.06.15.16.25.59=[[0], [2022], [6], [15], [16], [25], [59]] +2022.06.16=[[0], [2022], [6], [16]] +2022.06.16.11.22.22=[[0], [2022], [6], [16], [11], [22], [22]] +2022.06.16.11.22.40=[[0], [2022], [6], [16], [11], [22], [40]] +2022.06.16.11.23.39=[[0], [2022], [6], [16], [11], [23], [39]] +2022.06.16.11.24.12=[[0], [2022], [6], [16], [11], [24], [12]] +2022.06.16.14.11.35=[[0], [2022], [6], [16], [14], [11], [35]] +2022.06.16.16.45.41=[[0], [2022], [6], [16], [16], [45], [41]] +2022.06.16.19.5.09=[[0], [2022], [6], [16], [19], [5], [9]] +2022.06.16.23.47.53=[[0], [2022], [6], [16], [23], [47], [53]] +2022.06.17=[[0], [2022], [6], [17]] +2022.06.17.10.28.32=[[0], [2022], [6], [17], [10], [28], [32]] +2022.06.18.07.29.11=[[0], [2022], [6], [18], [7], [29], [11]] +2022.06.18.07.34.24=[[0], [2022], [6], [18], [7], [34], [24]] +2022.06.18.22.23.19=[[0], [2022], [6], [18], [22], [23], [19]] +2022.06.19=[[0], [2022], [6], [19]] +2022.06.19.10.58.48=[[0], [2022], [6], [19], [10], [58], [48]] +2022.06.19.10.59.28=[[0], [2022], [6], [19], [10], [59], [28]] +2022.06.19.10.59.30=[[0], [2022], [6], [19], [10], [59], [30]] +2022.06.19.12.27.42=[[0], [2022], [6], [19], [12], [27], [42]] +2022.06.19.12.27.44=[[0], [2022], [6], [19], [12], [27], [44]] +2022.06.19.18.22.02=[[0], [2022], [6], [19], [18], [22], [2]] +2022.06.19.19.19.32=[[0], [2022], [6], [19], [19], [19], [32]] +2022.06.19.19.20.07=[[0], [2022], [6], [19], [19], [20], [7]] +2022.06.20.5.5.43=[[0], [2022], [6], [20], [5], [5], [43]] +2022.06.20.08.17.39=[[0], [2022], [6], [20], [8], [17], [39]] +2022.06.20.09.10.23=[[0], [2022], [6], [20], [9], [10], [23]] +2022.06.20.09.10.33=[[0], [2022], [6], [20], [9], [10], [33]] +2022.06.20.13.39.20=[[0], [2022], [6], [20], [13], [39], [20]] +2022.06.20.13.43.21=[[0], [2022], [6], [20], [13], [43], [21]] +2022.06.20.13.43.49=[[0], [2022], [6], [20], [13], [43], [49]] +2022.06.20.13.55.54=[[0], [2022], [6], [20], [13], [55], [54]] +2022.06.20.20.00.31=[[0], [2022], [6], [20], [20], [0], [31]] +2022.06.21.09.02.52=[[0], [2022], [6], [21], [9], [2], [52]] +2022.06.21.18.5.41=[[0], [2022], [6], [21], [18], [5], [41]] +2022.06.22.5.59.41=[[0], [2022], [6], [22], [5], [59], [41]] +2022.06.22.08.29.15=[[0], [2022], [6], [22], [8], [29], [15]] +2022.06.22.11.09.47=[[0], [2022], [6], [22], [11], [9], [47]] +2022.06.23=[[0], [2022], [6], [23]] +2022.06.23.15.48.40=[[0], [2022], [6], [23], [15], [48], [40]] +2022.06.23.15.55.08=[[0], [2022], [6], [23], [15], [55], [8]] +2022.06.23.17.21.28=[[0], [2022], [6], [23], [17], [21], [28]] +2022.06.24.18.5.18=[[0], [2022], [6], [24], [18], [5], [18]] +2022.06.24.18.35.54=[[0], [2022], [6], [24], [18], [35], [54]] +2022.06.25.09.06.17=[[0], [2022], [6], [25], [9], [6], [17]] +2022.06.25.15.29.46=[[0], [2022], [6], [25], [15], [29], [46]] +2022.06.25.17.42.13=[[0], [2022], [6], [25], [17], [42], [13]] +2022.06.25.17.47.56=[[0], [2022], [6], [25], [17], [47], [56]] +2022.06.26.11.17.33=[[0], [2022], [6], [26], [11], [17], [33]] +2022.06.26.21.10.23=[[0], [2022], [6], [26], [21], [10], [23]] +2022.06.27=[[0], [2022], [6], [27]] +2022.06.27.13.19.38=[[0], [2022], [6], [27], [13], [19], [38]] +2022.06.27.14.5.07=[[0], [2022], [6], [27], [14], [5], [7]] +2022.06.27.18.29.50=[[0], [2022], [6], [27], [18], [29], [50]] +2022.06.27.18.30.08=[[0], [2022], [6], [27], [18], [30], [8]] +2022.06.28.10.11.26=[[0], [2022], [6], [28], [10], [11], [26]] +2022.06.28.16.51.04=[[0], [2022], [6], [28], [16], [51], [4]] +2022.06.29.00.57.15=[[0], [2022], [6], [29], [0], [57], [15]] +2022.06.29.18.34.42=[[0], [2022], [6], [29], [18], [34], [42]] +2022.06.30.11.45.20=[[0], [2022], [6], [30], [11], [45], [20]] +2022.07.0=[[0], [2022], [7], [0]] +2022.07.01.12.17.33=[[0], [2022], [7], [1], [12], [17], [33]] +2022.07.01.13.48.55=[[0], [2022], [7], [1], [13], [48], [55]] +2022.07.02.13.27.43=[[0], [2022], [7], [2], [13], [27], [43]] +2022.07.02.21.02.52=[[0], [2022], [7], [2], [21], [2], [52]] +2022.07.03.20.57.18=[[0], [2022], [7], [3], [20], [57], [18]] +2022.07.04.22.21.22=[[0], [2022], [7], [4], [22], [21], [22]] +2022.07.5.08.26.14=[[0], [2022], [7], [5], [8], [26], [14]] +2022.07.5.18.27.24=[[0], [2022], [7], [5], [18], [27], [24]] +2022.07.06.01.52.02=[[0], [2022], [7], [6], [1], [52], [2]] +2022.07.08.00.03.22=[[0], [2022], [7], [8], [0], [3], [22]] +2022.07.08.00.07.26=[[0], [2022], [7], [8], [0], [7], [26]] +2022.07.08.02.15.19=[[0], [2022], [7], [8], [2], [15], [19]] +2022.07.09.12.23.27=[[0], [2022], [7], [9], [12], [23], [27]] +2022.07.09.14.16.43=[[0], [2022], [7], [9], [14], [16], [43]] +2022.07.09.19.21.06=[[0], [2022], [7], [9], [19], [21], [6]] +2022.07.1=[[0], [2022], [7], [1]] +2022.07.10.02.43.28=[[0], [2022], [7], [10], [2], [43], [28]] +2022.07.11=[[0], [2022], [7], [11]] +2022.07.11.00.47.13=[[0], [2022], [7], [11], [0], [47], [13]] +2022.07.11.12.35.27=[[0], [2022], [7], [11], [12], [35], [27]] +2022.07.11.13.37.43=[[0], [2022], [7], [11], [13], [37], [43]] +2022.07.11.23.02.51=[[0], [2022], [7], [11], [23], [2], [51]] +2022.07.12=[[0], [2022], [7], [12]] +2022.07.12.00.49.24=[[0], [2022], [7], [12], [0], [49], [24]] +2022.07.12.02.03.03=[[0], [2022], [7], [12], [2], [3], [3]] +2022.07.12.16.49.31=[[0], [2022], [7], [12], [16], [49], [31]] +2022.07.12.18.44.47=[[0], [2022], [7], [12], [18], [44], [47]] +2022.07.13.19.35.11=[[0], [2022], [7], [13], [19], [35], [11]] +2022.07.13.19.56.34=[[0], [2022], [7], [13], [19], [56], [34]] +2022.07.14=[[0], [2022], [7], [14]] +2022.07.14.19.44.54=[[0], [2022], [7], [14], [19], [44], [54]] +2022.07.15.01.49.26=[[0], [2022], [7], [15], [1], [49], [26]] +2022.07.15.23.29.22=[[0], [2022], [7], [15], [23], [29], [22]] +2022.07.16.03.13.38=[[0], [2022], [7], [16], [3], [13], [38]] +2022.07.16.15.13.24=[[0], [2022], [7], [16], [15], [13], [24]] +2022.07.16.15.13.56=[[0], [2022], [7], [16], [15], [13], [56]] +2022.07.16.15.49.25=[[0], [2022], [7], [16], [15], [49], [25]] +2022.07.16.21.43.24=[[0], [2022], [7], [16], [21], [43], [24]] +2022.07.16.21.44.50=[[0], [2022], [7], [16], [21], [44], [50]] +2022.07.18.11.18.34=[[0], [2022], [7], [18], [11], [18], [34]] +2022.07.19.11.33.02=[[0], [2022], [7], [19], [11], [33], [2]] +2022.07.2=[[0], [2022], [7], [2]] +2022.07.20=[[0], [2022], [7], [20]] +2022.07.20.11.32.46=[[0], [2022], [7], [20], [11], [32], [46]] +2022.07.20.21.54.10=[[0], [2022], [7], [20], [21], [54], [10]] +2022.07.21=[[0], [2022], [7], [21]] +2022.07.21.11.35.29=[[0], [2022], [7], [21], [11], [35], [29]] +2022.07.21.20.07.5=[[0], [2022], [7], [21], [20], [7], [5]] +2022.07.22.12.54.13=[[0], [2022], [7], [22], [12], [54], [13]] +2022.07.22.15.28.03=[[0], [2022], [7], [22], [15], [28], [3]] +2022.07.22.22.24.34=[[0], [2022], [7], [22], [22], [24], [34]] +2022.07.22.23.35.10=[[0], [2022], [7], [22], [23], [35], [10]] +2022.07.24.12.20.52=[[0], [2022], [7], [24], [12], [20], [52]] +2022.07.24.16.45.38=[[0], [2022], [7], [24], [16], [45], [38]] +2022.07.24.16.48.29=[[0], [2022], [7], [24], [16], [48], [29]] +2022.07.25=[[0], [2022], [7], [25]] +2022.07.25.00=[[0], [2022], [7], [25], [0]] +2022.07.25.00.42.24=[[0], [2022], [7], [25], [0], [42], [24]] +2022.07.25.01.07.01=[[0], [2022], [7], [25], [1], [7], [1]] +2022.07.25.08.01.08=[[0], [2022], [7], [25], [8], [1], [8]] +2022.07.25.18.25.33=[[0], [2022], [7], [25], [18], [25], [33]] +2022.07.25.20.17.58=[[0], [2022], [7], [25], [20], [17], [58]] +2022.07.25.22.44.11=[[0], [2022], [7], [25], [22], [44], [11]] +2022.07.26.13.5.19=[[0], [2022], [7], [26], [13], [5], [19]] +2022.07.26.13.54.43=[[0], [2022], [7], [26], [13], [54], [43]] +2022.07.26.20.23.31=[[0], [2022], [7], [26], [20], [23], [31]] +2022.07.27.15.36.49=[[0], [2022], [7], [27], [15], [36], [49]] +2022.07.27.17.51.24=[[0], [2022], [7], [27], [17], [51], [24]] +2022.07.27.17.58.24=[[0], [2022], [7], [27], [17], [58], [24]] +2022.07.27.20.15.04=[[0], [2022], [7], [27], [20], [15], [4]] +2022.07.28.00.27.46=[[0], [2022], [7], [28], [0], [27], [46]] +2022.07.28.08.22.44=[[0], [2022], [7], [28], [8], [22], [44]] +2022.07.28.08.23.03=[[0], [2022], [7], [28], [8], [23], [3]] +2022.07.28.19.34.36=[[0], [2022], [7], [28], [19], [34], [36]] +2022.07.29.06.29.02=[[0], [2022], [7], [29], [6], [29], [2]] +2022.07.29.09.27.39=[[0], [2022], [7], [29], [9], [27], [39]] +2022.07.29.13.58.26=[[0], [2022], [7], [29], [13], [58], [26]] +2022.07.29.15.08.20=[[0], [2022], [7], [29], [15], [8], [20]] +2022.07.29.16.12.45=[[0], [2022], [7], [29], [16], [12], [45]] +2022.07.31.08.11.5=[[0], [2022], [7], [31], [8], [11], [5]] +2022.08.0=[[0], [2022], [8], [0]] +2022.08.01=[[0], [2022], [8], [1]] +2022.08.01.00=[[0], [2022], [8], [1], [0]] +2022.08.01.07.10.19=[[0], [2022], [8], [1], [7], [10], [19]] +2022.08.01.09.16.26=[[0], [2022], [8], [1], [9], [16], [26]] +2022.08.01.12.11.42=[[0], [2022], [8], [1], [12], [11], [42]] +2022.08.03.11.04.37=[[0], [2022], [8], [3], [11], [4], [37]] +2022.08.03.11.08.53=[[0], [2022], [8], [3], [11], [8], [53]] +2022.08.03.21.47.28=[[0], [2022], [8], [3], [21], [47], [28]] +2022.08.04.07.32.40=[[0], [2022], [8], [4], [7], [32], [40]] +2022.08.5.23.22.55=[[0], [2022], [8], [5], [23], [22], [55]] +2022.08.06.09.49.16=[[0], [2022], [8], [6], [9], [49], [16]] +2022.08.06.11.18.30=[[0], [2022], [8], [6], [11], [18], [30]] +2022.08.07.13.04.47=[[0], [2022], [8], [7], [13], [4], [47]] +2022.08.08=[[0], [2022], [8], [8]] +2022.08.08.00=[[0], [2022], [8], [8], [0]] +2022.08.08.03.34.54=[[0], [2022], [8], [8], [3], [34], [54]] +2022.08.08.11.16.33=[[0], [2022], [8], [8], [11], [16], [33]] +2022.08.08.12.20.02=[[0], [2022], [8], [8], [12], [20], [2]] +2022.08.08.12.37.47=[[0], [2022], [8], [8], [12], [37], [47]] +2022.08.08.13.43.09=[[0], [2022], [8], [8], [13], [43], [9]] +2022.08.08.17.5.41=[[0], [2022], [8], [8], [17], [5], [41]] +2022.08.08.19.07.35=[[0], [2022], [8], [8], [19], [7], [35]] +2022.08.09=[[0], [2022], [8], [9]] +2022.08.09.07.02.38=[[0], [2022], [8], [9], [7], [2], [38]] +2022.08.09.07.02.39=[[0], [2022], [8], [9], [7], [2], [39]] +2022.08.09.15.26.55=[[0], [2022], [8], [9], [15], [26], [55]] +2022.08.09.17.28.58=[[0], [2022], [8], [9], [17], [28], [58]] +2022.08.10.13.48.17=[[0], [2022], [8], [10], [13], [48], [17]] +2022.08.10.16.37.26=[[0], [2022], [8], [10], [16], [37], [26]] +2022.08.10.16.38.32=[[0], [2022], [8], [10], [16], [38], [32]] +2022.08.10.18.5.48=[[0], [2022], [8], [10], [18], [5], [48]] +2022.08.10.18.48.38=[[0], [2022], [8], [10], [18], [48], [38]] +2022.08.10.20.5.43=[[0], [2022], [8], [10], [20], [5], [43]] +2022.08.11=[[0], [2022], [8], [11]] +2022.08.11.00.12.17=[[0], [2022], [8], [11], [0], [12], [17]] +2022.08.11.11.15.53=[[0], [2022], [8], [11], [11], [15], [53]] +2022.08.11.15.16.27=[[0], [2022], [8], [11], [15], [16], [27]] +2022.08.11.23.31.29=[[0], [2022], [8], [11], [23], [31], [29]] +2022.08.11.23.35.06=[[0], [2022], [8], [11], [23], [35], [6]] +2022.08.12.20.13.33=[[0], [2022], [8], [12], [20], [13], [33]] +2022.08.12.21.14.57=[[0], [2022], [8], [12], [21], [14], [57]] +2022.08.12.21.43.37=[[0], [2022], [8], [12], [21], [43], [37]] +2022.08.12.22.29.55=[[0], [2022], [8], [12], [22], [29], [55]] +2022.08.12.23.25.47=[[0], [2022], [8], [12], [23], [25], [47]] +2022.08.13.16.03.46=[[0], [2022], [8], [13], [16], [3], [46]] +2022.08.14.15.51.06=[[0], [2022], [8], [14], [15], [51], [6]] +2022.08.14.21.53.55=[[0], [2022], [8], [14], [21], [53], [55]] +2022.08.15=[[0], [2022], [8], [15]] +2022.08.15.00=[[0], [2022], [8], [15], [0]] +2022.08.15.02.11.21=[[0], [2022], [8], [15], [2], [11], [21]] +2022.08.15.10.08.14=[[0], [2022], [8], [15], [10], [8], [14]] +2022.08.15.11.50.42=[[0], [2022], [8], [15], [11], [50], [42]] +2022.08.15.12.55.29=[[0], [2022], [8], [15], [12], [55], [29]] +2022.08.15.17.17.32=[[0], [2022], [8], [15], [17], [17], [32]] +2022.08.15.17.58.52=[[0], [2022], [8], [15], [17], [58], [52]] +2022.08.16.09.27.01=[[0], [2022], [8], [16], [9], [27], [1]] +2022.08.16.15.03.11=[[0], [2022], [8], [16], [15], [3], [11]] +2022.08.17.04.11.20=[[0], [2022], [8], [17], [4], [11], [20]] +2022.08.17.04.16.34=[[0], [2022], [8], [17], [4], [16], [34]] +2022.08.17.04.19.03=[[0], [2022], [8], [17], [4], [19], [3]] +2022.08.17.04.22.48=[[0], [2022], [8], [17], [4], [22], [48]] +2022.08.17.04.24.13=[[0], [2022], [8], [17], [4], [24], [13]] +2022.08.17.5.39.09=[[0], [2022], [8], [17], [5], [39], [9]] +2022.08.17.5.43.44=[[0], [2022], [8], [17], [5], [43], [44]] +2022.08.17.5.43.45=[[0], [2022], [8], [17], [5], [43], [45]] +2022.08.17.5.43.55=[[0], [2022], [8], [17], [5], [43], [55]] +2022.08.17.5.44.01=[[0], [2022], [8], [17], [5], [44], [1]] +2022.08.17.5.44.29=[[0], [2022], [8], [17], [5], [44], [29]] +2022.08.17.5.44.30=[[0], [2022], [8], [17], [5], [44], [30]] +2022.08.17.5.44.45=[[0], [2022], [8], [17], [5], [44], [45]] +2022.08.17.5.44.46=[[0], [2022], [8], [17], [5], [44], [46]] +2022.08.17.08.04.28=[[0], [2022], [8], [17], [8], [4], [28]] +2022.08.17.15.27.00=[[0], [2022], [8], [17], [15], [27], [0]] +2022.08.17.15.27.08=[[0], [2022], [8], [17], [15], [27], [8]] +2022.08.18.10.04.32=[[0], [2022], [8], [18], [10], [4], [32]] +2022.08.18.10.5.07=[[0], [2022], [8], [18], [10], [5], [7]] +2022.08.18.10.16.51=[[0], [2022], [8], [18], [10], [16], [51]] +2022.08.18.10.17.30=[[0], [2022], [8], [18], [10], [17], [30]] +2022.08.18.11.35.40=[[0], [2022], [8], [18], [11], [35], [40]] +2022.08.18.12.48.09=[[0], [2022], [8], [18], [12], [48], [9]] +2022.08.18.12.48.10=[[0], [2022], [8], [18], [12], [48], [10]] +2022.08.18.14.00.07=[[0], [2022], [8], [18], [14], [0], [7]] +2022.08.18.16.23.26=[[0], [2022], [8], [18], [16], [23], [26]] +2022.08.18.17.24.14=[[0], [2022], [8], [18], [17], [24], [14]] +2022.08.19.12.00.37=[[0], [2022], [8], [19], [12], [0], [37]] +2022.08.19.12.01.27=[[0], [2022], [8], [19], [12], [1], [27]] +2022.08.19.14.19.32=[[0], [2022], [8], [19], [14], [19], [32]] +2022.08.19.17.16.54=[[0], [2022], [8], [19], [17], [16], [54]] +2022.08.19.17.16.56=[[0], [2022], [8], [19], [17], [16], [56]] +2022.08.19.17.59.09=[[0], [2022], [8], [19], [17], [59], [9]] +2022.08.19.19.19.04=[[0], [2022], [8], [19], [19], [19], [4]] +2022.08.20.09.22.15=[[0], [2022], [8], [20], [9], [22], [15]] +2022.08.21.18.34.5=[[0], [2022], [8], [21], [18], [34], [5]] +2022.08.22.00=[[0], [2022], [8], [22], [0]] +2022.08.22.07.35.10=[[0], [2022], [8], [22], [7], [35], [10]] +2022.08.22.07.35.18=[[0], [2022], [8], [22], [7], [35], [18]] +2022.08.22.08.34.13=[[0], [2022], [8], [22], [8], [34], [13]] +2022.08.22.11.57.44=[[0], [2022], [8], [22], [11], [57], [44]] +2022.08.22.18.18.57=[[0], [2022], [8], [22], [18], [18], [57]] +2022.08.22.19.11.22=[[0], [2022], [8], [22], [19], [11], [22]] +2022.08.22.19.42.11=[[0], [2022], [8], [22], [19], [42], [11]] +2022.08.23=[[0], [2022], [8], [23]] +2022.08.23.01.02.25=[[0], [2022], [8], [23], [1], [2], [25]] +2022.08.23.01.5.47=[[0], [2022], [8], [23], [1], [5], [47]] +2022.08.23.12.33.00=[[0], [2022], [8], [23], [12], [33], [0]] +2022.08.23.13.46.03=[[0], [2022], [8], [23], [13], [46], [3]] +2022.08.24.10.10.27=[[0], [2022], [8], [24], [10], [10], [27]] +2022.08.24.10.11.46=[[0], [2022], [8], [24], [10], [11], [46]] +2022.08.24.10.12.37=[[0], [2022], [8], [24], [10], [12], [37]] +2022.08.24.10.15.47=[[0], [2022], [8], [24], [10], [15], [47]] +2022.08.24.12.13.53=[[0], [2022], [8], [24], [12], [13], [53]] +2022.08.24.17.10.33=[[0], [2022], [8], [24], [17], [10], [33]] +2022.08.24.17.24.27=[[0], [2022], [8], [24], [17], [24], [27]] +2022.08.24.18.03.48=[[0], [2022], [8], [24], [18], [3], [48]] +2022.08.24.23.58.03=[[0], [2022], [8], [24], [23], [58], [3]] +2022.08.25.00.04.55=[[0], [2022], [8], [25], [0], [4], [55]] +2022.08.25.01.17.35=[[0], [2022], [8], [25], [1], [17], [35]] +2022.08.25.07.31.30=[[0], [2022], [8], [25], [7], [31], [30]] +2022.08.25.07.31.47=[[0], [2022], [8], [25], [7], [31], [47]] +2022.08.25.07.31.57=[[0], [2022], [8], [25], [7], [31], [57]] +2022.08.25.07.31.59=[[0], [2022], [8], [25], [7], [31], [59]] +2022.08.25.07.32.5=[[0], [2022], [8], [25], [7], [32], [5]] +2022.08.25.07.32.09=[[0], [2022], [8], [25], [7], [32], [9]] +2022.08.25.07.32.54=[[0], [2022], [8], [25], [7], [32], [54]] +2022.08.25.07.46.5=[[0], [2022], [8], [25], [7], [46], [5]] +2022.08.25.07.46.09=[[0], [2022], [8], [25], [7], [46], [9]] +2022.08.25.11.48.54=[[0], [2022], [8], [25], [11], [48], [54]] +2022.08.25.12.06.07=[[0], [2022], [8], [25], [12], [6], [7]] +2022.08.25.15.20.42=[[0], [2022], [8], [25], [15], [20], [42]] +2022.08.25.16.47.48=[[0], [2022], [8], [25], [16], [47], [48]] +2022.08.25.18.48.53=[[0], [2022], [8], [25], [18], [48], [53]] +2022.08.25.18.48.57=[[0], [2022], [8], [25], [18], [48], [57]] +2022.08.25.22.39.31=[[0], [2022], [8], [25], [22], [39], [31]] +2022.08.26.08.14.11=[[0], [2022], [8], [26], [8], [14], [11]] +2022.08.26.08.26.19=[[0], [2022], [8], [26], [8], [26], [19]] +2022.08.26.08.26.25=[[0], [2022], [8], [26], [8], [26], [25]] +2022.08.26.11.30.01=[[0], [2022], [8], [26], [11], [30], [1]] +2022.08.26.11.30.5=[[0], [2022], [8], [26], [11], [30], [5]] +2022.08.26.14.45.22=[[0], [2022], [8], [26], [14], [45], [22]] +2022.08.26.15.40.48=[[0], [2022], [8], [26], [15], [40], [48]] +2022.08.26.18.27.48=[[0], [2022], [8], [26], [18], [27], [48]] +2022.08.27.13.34.34=[[0], [2022], [8], [27], [13], [34], [34]] +2022.08.29.00=[[0], [2022], [8], [29], [0]] +2022.08.29.04.41.42=[[0], [2022], [8], [29], [4], [41], [42]] +2022.08.29.08.20.16=[[0], [2022], [8], [29], [8], [20], [16]] +2022.08.29.11.49.07=[[0], [2022], [8], [29], [11], [49], [7]] +2022.08.29.12.15.34=[[0], [2022], [8], [29], [12], [15], [34]] +2022.08.29.12.22.51=[[0], [2022], [8], [29], [12], [22], [51]] +2022.08.29.13.16.26=[[0], [2022], [8], [29], [13], [16], [26]] +2022.08.29.15.07.42=[[0], [2022], [8], [29], [15], [7], [42]] +2022.08.29.15.07.45=[[0], [2022], [8], [29], [15], [7], [45]] +2022.08.29.19.12.47=[[0], [2022], [8], [29], [19], [12], [47]] +2022.08.29.23.37.24=[[0], [2022], [8], [29], [23], [37], [24]] +2022.08.30.22.14.57=[[0], [2022], [8], [30], [22], [14], [57]] +2022.08.31.13.07.5=[[0], [2022], [8], [31], [13], [7], [5]] +2022.08.31.15.30.59=[[0], [2022], [8], [31], [15], [30], [59]] +2022.08.31.16.57.19=[[0], [2022], [8], [31], [16], [57], [19]] +2022.09.0=[[0], [2022], [9], [0]] +2022.09.02.01.33.59=[[0], [2022], [9], [2], [1], [33], [59]] +2022.09.02.10.01.46=[[0], [2022], [9], [2], [10], [1], [46]] +2022.09.03.12.13.43=[[0], [2022], [9], [3], [12], [13], [43]] +2022.09.03.13.37.27=[[0], [2022], [9], [3], [13], [37], [27]] +2022.09.03.13.40.36=[[0], [2022], [9], [3], [13], [40], [36]] +2022.09.03.13.42.42=[[0], [2022], [9], [3], [13], [42], [42]] +2022.09.03.14.39.53=[[0], [2022], [9], [3], [14], [39], [53]] +2022.09.03.14.40.23=[[0], [2022], [9], [3], [14], [40], [23]] +2022.09.03.14.41.12=[[0], [2022], [9], [3], [14], [41], [12]] +2022.09.03.14.45.14=[[0], [2022], [9], [3], [14], [45], [14]] +2022.09.03.14.48.41=[[0], [2022], [9], [3], [14], [48], [41]] +2022.09.03.14.49.38=[[0], [2022], [9], [3], [14], [49], [38]] +2022.09.03.14.53.26=[[0], [2022], [9], [3], [14], [53], [26]] +2022.09.03.15.06.47=[[0], [2022], [9], [3], [15], [6], [47]] +2022.09.03.21.29.09=[[0], [2022], [9], [3], [21], [29], [9]] +2022.09.03.21.29.17=[[0], [2022], [9], [3], [21], [29], [17]] +2022.09.04.11.55.37=[[0], [2022], [9], [4], [11], [55], [37]] +2022.09.04.15.41.14=[[0], [2022], [9], [4], [15], [41], [14]] +2022.09.5=[[0], [2022], [9], [5]] +2022.09.5.00=[[0], [2022], [9], [5], [0]] +2022.09.06=[[0], [2022], [9], [6]] +2022.09.06.01.18.53=[[0], [2022], [9], [6], [1], [18], [53]] +2022.09.06.12.54.07=[[0], [2022], [9], [6], [12], [54], [7]] +2022.09.06.13.02.25=[[0], [2022], [9], [6], [13], [2], [25]] +2022.09.06.18.44.04=[[0], [2022], [9], [6], [18], [44], [4]] +2022.09.07.10.16.08=[[0], [2022], [9], [7], [10], [16], [8]] +2022.09.07.10.20.36=[[0], [2022], [9], [7], [10], [20], [36]] +2022.09.08=[[0], [2022], [9], [8]] +2022.09.08.12.51.58=[[0], [2022], [9], [8], [12], [51], [58]] +2022.09.08.12.52.13=[[0], [2022], [9], [8], [12], [52], [13]] +2022.09.08.12.52.26=[[0], [2022], [9], [8], [12], [52], [26]] +2022.09.08.13.58.00=[[0], [2022], [9], [8], [13], [58], [0]] +2022.09.08.21.51.09=[[0], [2022], [9], [8], [21], [51], [9]] +2022.09.08.22.23.30=[[0], [2022], [9], [8], [22], [23], [30]] +2022.09.09.07.11.44=[[0], [2022], [9], [9], [7], [11], [44]] +2022.09.09.15.51.16=[[0], [2022], [9], [9], [15], [51], [16]] +2022.09.09.16.57.07=[[0], [2022], [9], [9], [16], [57], [7]] +2022.09.09.20.09.02=[[0], [2022], [9], [9], [20], [9], [2]] +2022.09.09.20.44.53=[[0], [2022], [9], [9], [20], [44], [53]] +2022.09.09.21.52.25=[[0], [2022], [9], [9], [21], [52], [25]] +2022.09.09.23.02.54=[[0], [2022], [9], [9], [23], [2], [54]] +2022.09.1=[[0], [2022], [9], [1]] +2022.09.10.01.12.28=[[0], [2022], [9], [10], [1], [12], [28]] +2022.09.10.01.14.25=[[0], [2022], [9], [10], [1], [14], [25]] +2022.09.10.01.15.47=[[0], [2022], [9], [10], [1], [15], [47]] +2022.09.10.02.18.18=[[0], [2022], [9], [10], [2], [18], [18]] +2022.09.10.02.18.42=[[0], [2022], [9], [10], [2], [18], [42]] +2022.09.10.02.27.40=[[0], [2022], [9], [10], [2], [27], [40]] +2022.09.10.02.28.29=[[0], [2022], [9], [10], [2], [28], [29]] +2022.09.10.12.23.22=[[0], [2022], [9], [10], [12], [23], [22]] +2022.09.10.12.33.16=[[0], [2022], [9], [10], [12], [33], [16]] +2022.09.10.13.43.21=[[0], [2022], [9], [10], [13], [43], [21]] +2022.09.10.16.02.5=[[0], [2022], [9], [10], [16], [2], [5]] +2022.09.10.16.12.32=[[0], [2022], [9], [10], [16], [12], [32]] +2022.09.10.16.28.22=[[0], [2022], [9], [10], [16], [28], [22]] +2022.09.10.19.24.40=[[0], [2022], [9], [10], [19], [24], [40]] +2022.09.10.23.16.39=[[0], [2022], [9], [10], [23], [16], [39]] +2022.09.11.02.04.12=[[0], [2022], [9], [11], [2], [4], [12]] +2022.09.11.02.24.47=[[0], [2022], [9], [11], [2], [24], [47]] +2022.09.11.13.02.53=[[0], [2022], [9], [11], [13], [2], [53]] +2022.09.11.20.19.58=[[0], [2022], [9], [11], [20], [19], [58]] +2022.09.12.00=[[0], [2022], [9], [12], [0]] +2022.09.12.01.30.37=[[0], [2022], [9], [12], [1], [30], [37]] +2022.09.12.04.26.16=[[0], [2022], [9], [12], [4], [26], [16]] +2022.09.12.22.24.22=[[0], [2022], [9], [12], [22], [24], [22]] +2022.09.13=[[0], [2022], [9], [13]] +2022.09.13.13.36.40=[[0], [2022], [9], [13], [13], [36], [40]] +2022.09.13.14.40.25=[[0], [2022], [9], [13], [14], [40], [25]] +2022.09.13.16.23.17=[[0], [2022], [9], [13], [16], [23], [17]] +2022.09.13.17.57.49=[[0], [2022], [9], [13], [17], [57], [49]] +2022.09.13.19.09.01=[[0], [2022], [9], [13], [19], [9], [1]] +2022.09.13.20.27.40=[[0], [2022], [9], [13], [20], [27], [40]] +2022.09.14=[[0], [2022], [9], [14]] +2022.09.19=[[0], [2022], [9], [19]] +2022.09.19.00=[[0], [2022], [9], [19], [0]] +2022.09.19.03.54.54=[[0], [2022], [9], [19], [3], [54], [54]] +2022.09.19.16.49.46=[[0], [2022], [9], [19], [16], [49], [46]] +2022.09.20.14.36.51=[[0], [2022], [9], [20], [14], [36], [51]] +2022.09.20.14.48.32=[[0], [2022], [9], [20], [14], [48], [32]] +2022.09.21=[[0], [2022], [9], [21]] +2022.09.21.00.03.13=[[0], [2022], [9], [21], [0], [3], [13]] +2022.09.21.08.37.08=[[0], [2022], [9], [21], [8], [37], [8]] +2022.09.21.08.37.32=[[0], [2022], [9], [21], [8], [37], [32]] +2022.09.21.08.37.33=[[0], [2022], [9], [21], [8], [37], [33]] +2022.09.21.18.22.03=[[0], [2022], [9], [21], [18], [22], [3]] +2022.09.23=[[0], [2022], [9], [23]] +2022.09.23.15.53.14=[[0], [2022], [9], [23], [15], [53], [14]] +2022.09.24.21.21.07=[[0], [2022], [9], [24], [21], [21], [7]] +2022.09.24.23.00.28=[[0], [2022], [9], [24], [23], [0], [28]] +2022.09.25.01.17.39=[[0], [2022], [9], [25], [1], [17], [39]] +2022.09.25.11.40.52=[[0], [2022], [9], [25], [11], [40], [52]] +2022.09.25.18.08.47=[[0], [2022], [9], [25], [18], [8], [47]] +2022.09.26.00=[[0], [2022], [9], [26], [0]] +2022.09.26.12.40.38=[[0], [2022], [9], [26], [12], [40], [38]] +2022.09.26.16.20.5=[[0], [2022], [9], [26], [16], [20], [5]] +2022.09.27.00.22.21=[[0], [2022], [9], [27], [0], [22], [21]] +2022.09.27.00.22.29=[[0], [2022], [9], [27], [0], [22], [29]] +2022.09.27.08.36.12=[[0], [2022], [9], [27], [8], [36], [12]] +2022.09.28.12.59.58=[[0], [2022], [9], [28], [12], [59], [58]] +2022.09.28.13.21.13=[[0], [2022], [9], [28], [13], [21], [13]] +2022.09.28.13.36.14=[[0], [2022], [9], [28], [13], [36], [14]] +2022.09.28.16.00.31=[[0], [2022], [9], [28], [16], [0], [31]] +2022.09.29=[[0], [2022], [9], [29]] +2022.09.3=[[0], [2022], [9], [3]] +2022.09.30=[[0], [2022], [9], [30]] +2022.09.30.16.02.29=[[0], [2022], [9], [30], [16], [2], [29]] +2022.09.30.16.14.22=[[0], [2022], [9], [30], [16], [14], [22]] +2022.09.30.17.55.19=[[0], [2022], [9], [30], [17], [55], [19]] +2022.09.4=[[0], [2022], [9], [4]] +2022.09.5=[[0], [2022], [9], [5]] +2022.1=[[0], [2022], [1]] +2022.1.0=[[0], [2022], [1], [0]] +2022.1.1=[[0], [2022], [1], [1]] +2022.1.10=[[0], [2022], [1], [10]] +2022.1.11=[[0], [2022], [1], [11]] +2022.1.12=[[0], [2022], [1], [12]] +2022.1.12.1=[[0], [2022], [1], [12], [1]] +2022.1.12.post1=[[0], [2022], [1], [12], [0, inf, 1]] +2022.1.13=[[0], [2022], [1], [13]] +2022.1.14=[[0], [2022], [1], [14]] +2022.1.15=[[0], [2022], [1], [15]] +2022.1.16=[[0], [2022], [1], [16]] +2022.1.17=[[0], [2022], [1], [17]] +2022.1.18=[[0], [2022], [1], [18]] +2022.1.19=[[0], [2022], [1], [19]] +2022.1.2=[[0], [2022], [1], [2]] +2022.1.20=[[0], [2022], [1], [20]] +2022.1.21=[[0], [2022], [1], [21]] +2022.1.22=[[0], [2022], [1], [22]] +2022.1.23=[[0], [2022], [1], [23]] +2022.1.24=[[0], [2022], [1], [24]] +2022.1.26=[[0], [2022], [1], [26]] +2022.1.28=[[0], [2022], [1], [28]] +2022.1.29=[[0], [2022], [1], [29]] +2022.1.2b11=[[0], [2022], [1], [2, 'b', 11]] +2022.1.3=[[0], [2022], [1], [3]] +2022.1.4=[[0], [2022], [1], [4]] +2022.1.5=[[0], [2022], [1], [5]] +2022.1.5.0=[[0], [2022], [1], [5], [0]] +2022.1.6=[[0], [2022], [1], [6]] +2022.1.7=[[0], [2022], [1], [7]] +2022.1.8=[[0], [2022], [1], [8]] +2022.1.9=[[0], [2022], [1], [9]] +2022.10=[[0], [2022], [10]] +2022.10.0=[[0], [2022], [10], [0]] +2022.10.01.09.51.36=[[0], [2022], [10], [1], [9], [51], [36]] +2022.10.01.09.52.16=[[0], [2022], [10], [1], [9], [52], [16]] +2022.10.01.09.52.25=[[0], [2022], [10], [1], [9], [52], [25]] +2022.10.01.09.53.15=[[0], [2022], [10], [1], [9], [53], [15]] +2022.10.01.09.53.32=[[0], [2022], [10], [1], [9], [53], [32]] +2022.10.01.21.03.50=[[0], [2022], [10], [1], [21], [3], [50]] +2022.10.01.21.04.14=[[0], [2022], [10], [1], [21], [4], [14]] +2022.10.02=[[0], [2022], [10], [2]] +2022.10.02.10.42.57=[[0], [2022], [10], [2], [10], [42], [57]] +2022.10.03.00=[[0], [2022], [10], [3], [0]] +2022.10.03.09.31.48=[[0], [2022], [10], [3], [9], [31], [48]] +2022.10.04.09.02.31=[[0], [2022], [10], [4], [9], [2], [31]] +2022.10.04.09.03.00=[[0], [2022], [10], [4], [9], [3], [0]] +2022.10.04.09.22.14=[[0], [2022], [10], [4], [9], [22], [14]] +2022.10.04.09.22.15=[[0], [2022], [10], [4], [9], [22], [15]] +2022.10.04.12.34.07=[[0], [2022], [10], [4], [12], [34], [7]] +2022.10.04.15.24.20=[[0], [2022], [10], [4], [15], [24], [20]] +2022.10.04.15.44.33=[[0], [2022], [10], [4], [15], [44], [33]] +2022.10.04.21.31.52=[[0], [2022], [10], [4], [21], [31], [52]] +2022.10.5.09.22.23=[[0], [2022], [10], [5], [9], [22], [23]] +2022.10.5.09.22.42=[[0], [2022], [10], [5], [9], [22], [42]] +2022.10.5.11.58.53=[[0], [2022], [10], [5], [11], [58], [53]] +2022.10.5.18.13.37=[[0], [2022], [10], [5], [18], [13], [37]] +2022.10.5.18.50.28=[[0], [2022], [10], [5], [18], [50], [28]] +2022.10.06.21.48.30=[[0], [2022], [10], [6], [21], [48], [30]] +2022.10.07=[[0], [2022], [10], [7]] +2022.10.07.16.24.39=[[0], [2022], [10], [7], [16], [24], [39]] +2022.10.07.16.50.25=[[0], [2022], [10], [7], [16], [50], [25]] +2022.10.07.18.54.47=[[0], [2022], [10], [7], [18], [54], [47]] +2022.10.07.20.39.23=[[0], [2022], [10], [7], [20], [39], [23]] +2022.10.09.22.13.28=[[0], [2022], [10], [9], [22], [13], [28]] +2022.10.1=[[0], [2022], [10], [1]] +2022.10.10=[[0], [2022], [10], [10]] +2022.10.10.00=[[0], [2022], [10], [10], [0]] +2022.10.10.08.39.56=[[0], [2022], [10], [10], [8], [39], [56]] +2022.10.10.09.21.20=[[0], [2022], [10], [10], [9], [21], [20]] +2022.10.10.17.37.23=[[0], [2022], [10], [10], [17], [37], [23]] +2022.10.10.17.52.17=[[0], [2022], [10], [10], [17], [52], [17]] +2022.10.11=[[0], [2022], [10], [11]] +2022.10.11.03.04.53=[[0], [2022], [10], [11], [3], [4], [53]] +2022.10.11.20.35.31=[[0], [2022], [10], [11], [20], [35], [31]] +2022.10.12=[[0], [2022], [10], [12]] +2022.10.12.08.08.42=[[0], [2022], [10], [12], [8], [8], [42]] +2022.10.12.08.17.18=[[0], [2022], [10], [12], [8], [17], [18]] +2022.10.12.23.16.12=[[0], [2022], [10], [12], [23], [16], [12]] +2022.10.14.07.49.52=[[0], [2022], [10], [14], [7], [49], [52]] +2022.10.14.15.41.02=[[0], [2022], [10], [14], [15], [41], [2]] +2022.10.14.15.41.33=[[0], [2022], [10], [14], [15], [41], [33]] +2022.10.15.11.07.55=[[0], [2022], [10], [15], [11], [7], [55]] +2022.10.15.22.25.24=[[0], [2022], [10], [15], [22], [25], [24]] +2022.10.16.19.58.59=[[0], [2022], [10], [16], [19], [58], [59]] +2022.10.16.19.59.50=[[0], [2022], [10], [16], [19], [59], [50]] +2022.10.17=[[0], [2022], [10], [17]] +2022.10.17.00=[[0], [2022], [10], [17], [0]] +2022.10.17.13.34.40=[[0], [2022], [10], [17], [13], [34], [40]] +2022.10.17.17.07.36=[[0], [2022], [10], [17], [17], [7], [36]] +2022.10.18=[[0], [2022], [10], [18]] +2022.10.18.08.35.57=[[0], [2022], [10], [18], [8], [35], [57]] +2022.10.18.09.43.36=[[0], [2022], [10], [18], [9], [43], [36]] +2022.10.18.20.25.22=[[0], [2022], [10], [18], [20], [25], [22]] +2022.10.19=[[0], [2022], [10], [19]] +2022.10.19.09.52.52=[[0], [2022], [10], [19], [9], [52], [52]] +2022.10.19.09.53.59=[[0], [2022], [10], [19], [9], [53], [59]] +2022.10.19.15.52.28=[[0], [2022], [10], [19], [15], [52], [28]] +2022.10.19.16.58.22=[[0], [2022], [10], [19], [16], [58], [22]] +2022.10.19.20.54.55=[[0], [2022], [10], [19], [20], [54], [55]] +2022.10.19.21.07.44=[[0], [2022], [10], [19], [21], [7], [44]] +2022.10.19.23.15.01=[[0], [2022], [10], [19], [23], [15], [1]] +2022.10.2=[[0], [2022], [10], [2]] +2022.10.20=[[0], [2022], [10], [20]] +2022.10.20.18.36.53=[[0], [2022], [10], [20], [18], [36], [53]] +2022.10.20.19.20.00=[[0], [2022], [10], [20], [19], [20], [0]] +2022.10.21.03.28.44=[[0], [2022], [10], [21], [3], [28], [44]] +2022.10.21.11.57.06=[[0], [2022], [10], [21], [11], [57], [6]] +2022.10.21.12.10.43=[[0], [2022], [10], [21], [12], [10], [43]] +2022.10.21.13.17.40=[[0], [2022], [10], [21], [13], [17], [40]] +2022.10.21.14.30.20=[[0], [2022], [10], [21], [14], [30], [20]] +2022.10.21.14.35.08=[[0], [2022], [10], [21], [14], [35], [8]] +2022.10.21.15.17.15=[[0], [2022], [10], [21], [15], [17], [15]] +2022.10.21.19.23.07=[[0], [2022], [10], [21], [19], [23], [7]] +2022.10.21.19.23.23=[[0], [2022], [10], [21], [19], [23], [23]] +2022.10.22=[[0], [2022], [10], [22]] +2022.10.22.12.31.00=[[0], [2022], [10], [22], [12], [31], [0]] +2022.10.22.12.31.15=[[0], [2022], [10], [22], [12], [31], [15]] +2022.10.22.12.31.44=[[0], [2022], [10], [22], [12], [31], [44]] +2022.10.22.14.31.27=[[0], [2022], [10], [22], [14], [31], [27]] +2022.10.22.15.55.08=[[0], [2022], [10], [22], [15], [55], [8]] +2022.10.22.16.02.23=[[0], [2022], [10], [22], [16], [2], [23]] +2022.10.22.17.09.49=[[0], [2022], [10], [22], [17], [9], [49]] +2022.10.22.18.03.18=[[0], [2022], [10], [22], [18], [3], [18]] +2022.10.23=[[0], [2022], [10], [23]] +2022.10.23.00.15.36=[[0], [2022], [10], [23], [0], [15], [36]] +2022.10.23.09.56.15=[[0], [2022], [10], [23], [9], [56], [15]] +2022.10.23.10.16.33=[[0], [2022], [10], [23], [10], [16], [33]] +2022.10.24=[[0], [2022], [10], [24]] +2022.10.24.00=[[0], [2022], [10], [24], [0]] +2022.10.24.01.16.58=[[0], [2022], [10], [24], [1], [16], [58]] +2022.10.24.04.43.29=[[0], [2022], [10], [24], [4], [43], [29]] +2022.10.24.11.13.37=[[0], [2022], [10], [24], [11], [13], [37]] +2022.10.24.12.55.15=[[0], [2022], [10], [24], [12], [55], [15]] +2022.10.24.19.29.39=[[0], [2022], [10], [24], [19], [29], [39]] +2022.10.24.19.50.07=[[0], [2022], [10], [24], [19], [50], [7]] +2022.10.25=[[0], [2022], [10], [25]] +2022.10.25.08.18.02=[[0], [2022], [10], [25], [8], [18], [2]] +2022.10.25.15.13.01=[[0], [2022], [10], [25], [15], [13], [1]] +2022.10.25.16.20.36=[[0], [2022], [10], [25], [16], [20], [36]] +2022.10.25.17.48.27=[[0], [2022], [10], [25], [17], [48], [27]] +2022.10.25.18.58.27=[[0], [2022], [10], [25], [18], [58], [27]] +2022.10.25.19.19.58=[[0], [2022], [10], [25], [19], [19], [58]] +2022.10.25.19.19.59=[[0], [2022], [10], [25], [19], [19], [59]] +2022.10.25.20.49.44=[[0], [2022], [10], [25], [20], [49], [44]] +2022.10.25.20.58.40=[[0], [2022], [10], [25], [20], [58], [40]] +2022.10.25.22.17.19=[[0], [2022], [10], [25], [22], [17], [19]] +2022.10.25.22.21.17=[[0], [2022], [10], [25], [22], [21], [17]] +2022.10.25.23.5.27=[[0], [2022], [10], [25], [23], [5], [27]] +2022.10.26=[[0], [2022], [10], [26]] +2022.10.26.08.10.58=[[0], [2022], [10], [26], [8], [10], [58]] +2022.10.26.09.23.38=[[0], [2022], [10], [26], [9], [23], [38]] +2022.10.26.13.53.24=[[0], [2022], [10], [26], [13], [53], [24]] +2022.10.26.15.31.17=[[0], [2022], [10], [26], [15], [31], [17]] +2022.10.26.19.07.37=[[0], [2022], [10], [26], [19], [7], [37]] +2022.10.26.22.14.46=[[0], [2022], [10], [26], [22], [14], [46]] +2022.10.26.22.36.06=[[0], [2022], [10], [26], [22], [36], [6]] +2022.10.27=[[0], [2022], [10], [27]] +2022.10.27.01.17.41=[[0], [2022], [10], [27], [1], [17], [41]] +2022.10.27.02.26.04=[[0], [2022], [10], [27], [2], [26], [4]] +2022.10.27.03.11.11=[[0], [2022], [10], [27], [3], [11], [11]] +2022.10.27.07.15.59=[[0], [2022], [10], [27], [7], [15], [59]] +2022.10.27.07.22.06=[[0], [2022], [10], [27], [7], [22], [6]] +2022.10.27.09.17.03=[[0], [2022], [10], [27], [9], [17], [3]] +2022.10.27.15.23.5=[[0], [2022], [10], [27], [15], [23], [5]] +2022.10.27.19.11.26=[[0], [2022], [10], [27], [19], [11], [26]] +2022.10.28=[[0], [2022], [10], [28]] +2022.10.28.00.55.45=[[0], [2022], [10], [28], [0], [55], [45]] +2022.10.28.07.39.27=[[0], [2022], [10], [28], [7], [39], [27]] +2022.10.28.07.39.35=[[0], [2022], [10], [28], [7], [39], [35]] +2022.10.28.08.56.52=[[0], [2022], [10], [28], [8], [56], [52]] +2022.10.28.09.31.03=[[0], [2022], [10], [28], [9], [31], [3]] +2022.10.28.11.26.40=[[0], [2022], [10], [28], [11], [26], [40]] +2022.10.28.16.47.40=[[0], [2022], [10], [28], [16], [47], [40]] +2022.10.28.21.38.53=[[0], [2022], [10], [28], [21], [38], [53]] +2022.10.28.22.34.20=[[0], [2022], [10], [28], [22], [34], [20]] +2022.10.29.07.48.33=[[0], [2022], [10], [29], [7], [48], [33]] +2022.10.29.15.17.39=[[0], [2022], [10], [29], [15], [17], [39]] +2022.10.29.17.19.28=[[0], [2022], [10], [29], [17], [19], [28]] +2022.10.3=[[0], [2022], [10], [3]] +2022.10.30.22.56.52=[[0], [2022], [10], [30], [22], [56], [52]] +2022.10.31=[[0], [2022], [10], [31]] +2022.10.31.00=[[0], [2022], [10], [31], [0]] +2022.10.31.09.44.47=[[0], [2022], [10], [31], [9], [44], [47]] +2022.10.31.11.03.16=[[0], [2022], [10], [31], [11], [3], [16]] +2022.10.31.14.01.31=[[0], [2022], [10], [31], [14], [1], [31]] +2022.10.31.14.40.35=[[0], [2022], [10], [31], [14], [40], [35]] +2022.10.4=[[0], [2022], [10], [4]] +2022.10.5=[[0], [2022], [10], [5]] +2022.10.7=[[0], [2022], [10], [7]] +2022.10.9=[[0], [2022], [10], [9]] +2022.10_2=[[0], [2022], [10], [2]] +2022.10a0=[[0], [2022], [10, 'a', 0]] +2022.11=[[0], [2022], [11]] +2022.11.0=[[0], [2022], [11], [0]] +2022.11.01=[[0], [2022], [11], [1]] +2022.11.01.00.02.24=[[0], [2022], [11], [1], [0], [2], [24]] +2022.11.01.06.59.37=[[0], [2022], [11], [1], [6], [59], [37]] +2022.11.01.08.17.30=[[0], [2022], [11], [1], [8], [17], [30]] +2022.11.01.11.46.43=[[0], [2022], [11], [1], [11], [46], [43]] +2022.11.01.12.20.19=[[0], [2022], [11], [1], [12], [20], [19]] +2022.11.01.14.25.43=[[0], [2022], [11], [1], [14], [25], [43]] +2022.11.01.16.00.02=[[0], [2022], [11], [1], [16], [0], [2]] +2022.11.01.16.03.11=[[0], [2022], [11], [1], [16], [3], [11]] +2022.11.01.17.37.31=[[0], [2022], [11], [1], [17], [37], [31]] +2022.11.01.19.35.10=[[0], [2022], [11], [1], [19], [35], [10]] +2022.11.01.21.11.09=[[0], [2022], [11], [1], [21], [11], [9]] +2022.11.01.22.10.41=[[0], [2022], [11], [1], [22], [10], [41]] +2022.11.02=[[0], [2022], [11], [2]] +2022.11.02.09.53.14=[[0], [2022], [11], [2], [9], [53], [14]] +2022.11.02.11.17.17=[[0], [2022], [11], [2], [11], [17], [17]] +2022.11.02.12.22.38=[[0], [2022], [11], [2], [12], [22], [38]] +2022.11.02.12.28.22=[[0], [2022], [11], [2], [12], [28], [22]] +2022.11.02.14.22.55=[[0], [2022], [11], [2], [14], [22], [55]] +2022.11.02.16.11.00=[[0], [2022], [11], [2], [16], [11], [0]] +2022.11.02.18.55.19=[[0], [2022], [11], [2], [18], [55], [19]] +2022.11.03.07.22.44=[[0], [2022], [11], [3], [7], [22], [44]] +2022.11.03.08.14.18=[[0], [2022], [11], [3], [8], [14], [18]] +2022.11.03.09.46.56=[[0], [2022], [11], [3], [9], [46], [56]] +2022.11.03.12.46.38=[[0], [2022], [11], [3], [12], [46], [38]] +2022.11.03.12.54.01=[[0], [2022], [11], [3], [12], [54], [1]] +2022.11.03.18.10.43=[[0], [2022], [11], [3], [18], [10], [43]] +2022.11.03.18.25.45=[[0], [2022], [11], [3], [18], [25], [45]] +2022.11.03.19.49.26=[[0], [2022], [11], [3], [19], [49], [26]] +2022.11.03.19.49.57=[[0], [2022], [11], [3], [19], [49], [57]] +2022.11.04.03.22.42=[[0], [2022], [11], [4], [3], [22], [42]] +2022.11.04.10.18.53=[[0], [2022], [11], [4], [10], [18], [53]] +2022.11.04.15.44.27=[[0], [2022], [11], [4], [15], [44], [27]] +2022.11.04.17.07.21=[[0], [2022], [11], [4], [17], [7], [21]] +2022.11.04.17.37.23=[[0], [2022], [11], [4], [17], [37], [23]] +2022.11.5.07.19.24=[[0], [2022], [11], [5], [7], [19], [24]] +2022.11.5.07.19.31=[[0], [2022], [11], [5], [7], [19], [31]] +2022.11.5.07.31.22=[[0], [2022], [11], [5], [7], [31], [22]] +2022.11.5.07.36.04=[[0], [2022], [11], [5], [7], [36], [4]] +2022.11.5.07.47.31=[[0], [2022], [11], [5], [7], [47], [31]] +2022.11.5.10.16.40=[[0], [2022], [11], [5], [10], [16], [40]] +2022.11.5.14.39.53=[[0], [2022], [11], [5], [14], [39], [53]] +2022.11.5.16.13.5=[[0], [2022], [11], [5], [16], [13], [5]] +2022.11.5.21.08.08=[[0], [2022], [11], [5], [21], [8], [8]] +2022.11.06.17.49.44=[[0], [2022], [11], [6], [17], [49], [44]] +2022.11.06.17.49.56=[[0], [2022], [11], [6], [17], [49], [56]] +2022.11.06.17.50.12=[[0], [2022], [11], [6], [17], [50], [12]] +2022.11.06.17.50.32=[[0], [2022], [11], [6], [17], [50], [32]] +2022.11.07.00=[[0], [2022], [11], [7], [0]] +2022.11.07.13.22.21=[[0], [2022], [11], [7], [13], [22], [21]] +2022.11.07.14.51.32=[[0], [2022], [11], [7], [14], [51], [32]] +2022.11.07.15.09.20=[[0], [2022], [11], [7], [15], [9], [20]] +2022.11.07.16.21.19=[[0], [2022], [11], [7], [16], [21], [19]] +2022.11.08.02.51.09=[[0], [2022], [11], [8], [2], [51], [9]] +2022.11.08.02.58.38=[[0], [2022], [11], [8], [2], [58], [38]] +2022.11.08.03.00.11=[[0], [2022], [11], [8], [3], [0], [11]] +2022.11.08.08.25.39=[[0], [2022], [11], [8], [8], [25], [39]] +2022.11.08.09.18.47=[[0], [2022], [11], [8], [9], [18], [47]] +2022.11.08.09.28.13=[[0], [2022], [11], [8], [9], [28], [13]] +2022.11.08.10.32.09=[[0], [2022], [11], [8], [10], [32], [9]] +2022.11.08.15.37.06=[[0], [2022], [11], [8], [15], [37], [6]] +2022.11.08.15.44.59=[[0], [2022], [11], [8], [15], [44], [59]] +2022.11.08.22.20.06=[[0], [2022], [11], [8], [22], [20], [6]] +2022.11.08.23.18.36=[[0], [2022], [11], [8], [23], [18], [36]] +2022.11.09.08.34.10=[[0], [2022], [11], [9], [8], [34], [10]] +2022.11.09.12.27.21=[[0], [2022], [11], [9], [12], [27], [21]] +2022.11.09.16.08.53=[[0], [2022], [11], [9], [16], [8], [53]] +2022.11.09.16.09.32=[[0], [2022], [11], [9], [16], [9], [32]] +2022.11.09.16.17.31=[[0], [2022], [11], [9], [16], [17], [31]] +2022.11.09.16.17.33=[[0], [2022], [11], [9], [16], [17], [33]] +2022.11.1=[[0], [2022], [11], [1]] +2022.11.10.07.35.21=[[0], [2022], [11], [10], [7], [35], [21]] +2022.11.10.07.40.53=[[0], [2022], [11], [10], [7], [40], [53]] +2022.11.10.08.14.51=[[0], [2022], [11], [10], [8], [14], [51]] +2022.11.10.11.01.18=[[0], [2022], [11], [10], [11], [1], [18]] +2022.11.10.11.44.43=[[0], [2022], [11], [10], [11], [44], [43]] +2022.11.10.22.07.33=[[0], [2022], [11], [10], [22], [7], [33]] +2022.11.11=[[0], [2022], [11], [11]] +2022.11.11.09.27.49=[[0], [2022], [11], [11], [9], [27], [49]] +2022.11.11.09.27.52=[[0], [2022], [11], [11], [9], [27], [52]] +2022.11.11.09.28.38=[[0], [2022], [11], [11], [9], [28], [38]] +2022.11.11.15.42.04=[[0], [2022], [11], [11], [15], [42], [4]] +2022.11.11.17.16.57=[[0], [2022], [11], [11], [17], [16], [57]] +2022.11.13.03.29.29=[[0], [2022], [11], [13], [3], [29], [29]] +2022.11.14=[[0], [2022], [11], [14]] +2022.11.14.00=[[0], [2022], [11], [14], [0]] +2022.11.14.18.36.06=[[0], [2022], [11], [14], [18], [36], [6]] +2022.11.14.18.36.28=[[0], [2022], [11], [14], [18], [36], [28]] +2022.11.14.21.30.17=[[0], [2022], [11], [14], [21], [30], [17]] +2022.11.15=[[0], [2022], [11], [15]] +2022.11.15.10.48.28=[[0], [2022], [11], [15], [10], [48], [28]] +2022.11.15.11.53.06=[[0], [2022], [11], [15], [11], [53], [6]] +2022.11.15.17.15.22=[[0], [2022], [11], [15], [17], [15], [22]] +2022.11.15.22.41.08=[[0], [2022], [11], [15], [22], [41], [8]] +2022.11.16=[[0], [2022], [11], [16]] +2022.11.16.03.53.15=[[0], [2022], [11], [16], [3], [53], [15]] +2022.11.16.14.37.19=[[0], [2022], [11], [16], [14], [37], [19]] +2022.11.16.14.55.21=[[0], [2022], [11], [16], [14], [55], [21]] +2022.11.16.16.13.51=[[0], [2022], [11], [16], [16], [13], [51]] +2022.11.16.23.01.02=[[0], [2022], [11], [16], [23], [1], [2]] +2022.11.17.00.49.36=[[0], [2022], [11], [17], [0], [49], [36]] +2022.11.17.07.48.06=[[0], [2022], [11], [17], [7], [48], [6]] +2022.11.17.07.56.56=[[0], [2022], [11], [17], [7], [56], [56]] +2022.11.17.07.58.08=[[0], [2022], [11], [17], [7], [58], [8]] +2022.11.17.18.02.58=[[0], [2022], [11], [17], [18], [2], [58]] +2022.11.17.21.5.33=[[0], [2022], [11], [17], [21], [5], [33]] +2022.11.17.21.14.25=[[0], [2022], [11], [17], [21], [14], [25]] +2022.11.18.5.47.36=[[0], [2022], [11], [18], [5], [47], [36]] +2022.11.18.5.48.19=[[0], [2022], [11], [18], [5], [48], [19]] +2022.11.18.09.07.56=[[0], [2022], [11], [18], [9], [7], [56]] +2022.11.18.09.26.27=[[0], [2022], [11], [18], [9], [26], [27]] +2022.11.18.09.29.52=[[0], [2022], [11], [18], [9], [29], [52]] +2022.11.18.11.49.04=[[0], [2022], [11], [18], [11], [49], [4]] +2022.11.18.13.40.02=[[0], [2022], [11], [18], [13], [40], [2]] +2022.11.18.16.18.34=[[0], [2022], [11], [18], [16], [18], [34]] +2022.11.18.17.56.12=[[0], [2022], [11], [18], [17], [56], [12]] +2022.11.19.13.25.46=[[0], [2022], [11], [19], [13], [25], [46]] +2022.11.19.19.07.08=[[0], [2022], [11], [19], [19], [7], [8]] +2022.11.2=[[0], [2022], [11], [2]] +2022.11.20.09.27.35=[[0], [2022], [11], [20], [9], [27], [35]] +2022.11.20.19.08.47=[[0], [2022], [11], [20], [19], [8], [47]] +2022.11.20.19.09.47=[[0], [2022], [11], [20], [19], [9], [47]] +2022.11.20.19.10.04=[[0], [2022], [11], [20], [19], [10], [4]] +2022.11.21=[[0], [2022], [11], [21]] +2022.11.21.0=[[0], [2022], [11], [21], [0]] +2022.11.21.08.53.37=[[0], [2022], [11], [21], [8], [53], [37]] +2022.11.21.08.56.08=[[0], [2022], [11], [21], [8], [56], [8]] +2022.11.21.19.57.06=[[0], [2022], [11], [21], [19], [57], [6]] +2022.11.22.08.31.53=[[0], [2022], [11], [22], [8], [31], [53]] +2022.11.22.12.08.38=[[0], [2022], [11], [22], [12], [8], [38]] +2022.11.22.20.22.19=[[0], [2022], [11], [22], [20], [22], [19]] +2022.11.23=[[0], [2022], [11], [23]] +2022.11.23.04.40.55=[[0], [2022], [11], [23], [4], [40], [55]] +2022.11.23.09.34.39=[[0], [2022], [11], [23], [9], [34], [39]] +2022.11.23.19.37.15=[[0], [2022], [11], [23], [19], [37], [15]] +2022.11.24=[[0], [2022], [11], [24]] +2022.11.25=[[0], [2022], [11], [25]] +2022.11.26.23.51.31=[[0], [2022], [11], [26], [23], [51], [31]] +2022.11.27.00.26.12=[[0], [2022], [11], [27], [0], [26], [12]] +2022.11.27.00.26.45=[[0], [2022], [11], [27], [0], [26], [45]] +2022.11.27.00.27.57=[[0], [2022], [11], [27], [0], [27], [57]] +2022.11.27.15.56.36=[[0], [2022], [11], [27], [15], [56], [36]] +2022.11.28=[[0], [2022], [11], [28]] +2022.11.28.00=[[0], [2022], [11], [28], [0]] +2022.11.29=[[0], [2022], [11], [29]] +2022.11.29.18.43.18=[[0], [2022], [11], [29], [18], [43], [18]] +2022.11.29.22.58.17=[[0], [2022], [11], [29], [22], [58], [17]] +2022.11.3=[[0], [2022], [11], [3]] +2022.11.30=[[0], [2022], [11], [30]] +2022.11.30.02.29.38=[[0], [2022], [11], [30], [2], [29], [38]] +2022.11.30.09.25.24=[[0], [2022], [11], [30], [9], [25], [24]] +2022.11.30.10.38.55=[[0], [2022], [11], [30], [10], [38], [55]] +2022.11.4=[[0], [2022], [11], [4]] +2022.11.5=[[0], [2022], [11], [5]] +2022.11.7=[[0], [2022], [11], [7]] +2022.1115=[[0], [2022], [1115]] +2022.1116=[[0], [2022], [1116]] +2022.1118=[[0], [2022], [1118]] +2022.1119=[[0], [2022], [1119]] +2022.1120=[[0], [2022], [1120]] +2022.11_16=[[0], [2022], [11], [16]] +2022.12=[[0], [2022], [12]] +2022.12.0=[[0], [2022], [12], [0]] +2022.12.01.03.23.43=[[0], [2022], [12], [1], [3], [23], [43]] +2022.12.01.06.44.48=[[0], [2022], [12], [1], [6], [44], [48]] +2022.12.02.10.47.43=[[0], [2022], [12], [2], [10], [47], [43]] +2022.12.02.15.22.41=[[0], [2022], [12], [2], [15], [22], [41]] +2022.12.03=[[0], [2022], [12], [3]] +2022.12.04.12.58.46=[[0], [2022], [12], [4], [12], [58], [46]] +2022.12.04.13.24.59=[[0], [2022], [12], [4], [13], [24], [59]] +2022.12.04.16.50.45=[[0], [2022], [12], [4], [16], [50], [45]] +2022.12.04.16.52.04=[[0], [2022], [12], [4], [16], [52], [4]] +2022.12.04.16.52.34=[[0], [2022], [12], [4], [16], [52], [34]] +2022.12.04.16.52.51=[[0], [2022], [12], [4], [16], [52], [51]] +2022.12.04.16.55.25=[[0], [2022], [12], [4], [16], [55], [25]] +2022.12.04.17.28.58=[[0], [2022], [12], [4], [17], [28], [58]] +2022.12.04.18.56.23=[[0], [2022], [12], [4], [18], [56], [23]] +2022.12.04.19.22.35=[[0], [2022], [12], [4], [19], [22], [35]] +2022.12.5.00=[[0], [2022], [12], [5], [0]] +2022.12.5.17.50.45=[[0], [2022], [12], [5], [17], [50], [45]] +2022.12.06=[[0], [2022], [12], [6]] +2022.12.06.01.07.15=[[0], [2022], [12], [6], [1], [7], [15]] +2022.12.06.02.30.06=[[0], [2022], [12], [6], [2], [30], [6]] +2022.12.06.12.06.55=[[0], [2022], [12], [6], [12], [6], [55]] +2022.12.06.13.13.30=[[0], [2022], [12], [6], [13], [13], [30]] +2022.12.06.13.31.23=[[0], [2022], [12], [6], [13], [31], [23]] +2022.12.06.20.36.46=[[0], [2022], [12], [6], [20], [36], [46]] +2022.12.07=[[0], [2022], [12], [7]] +2022.12.07.02.23.49=[[0], [2022], [12], [7], [2], [23], [49]] +2022.12.07.11.35.54=[[0], [2022], [12], [7], [11], [35], [54]] +2022.12.07.15.37.06=[[0], [2022], [12], [7], [15], [37], [6]] +2022.12.07.15.37.51=[[0], [2022], [12], [7], [15], [37], [51]] +2022.12.07.18.34.25=[[0], [2022], [12], [7], [18], [34], [25]] +2022.12.08.13.14.06=[[0], [2022], [12], [8], [13], [14], [6]] +2022.12.08.16.56.34=[[0], [2022], [12], [8], [16], [56], [34]] +2022.12.09.08.14.11=[[0], [2022], [12], [9], [8], [14], [11]] +2022.12.09.17.44.31=[[0], [2022], [12], [9], [17], [44], [31]] +2022.12.09.20.17.28=[[0], [2022], [12], [9], [20], [17], [28]] +2022.12.1=[[0], [2022], [12], [1]] +2022.12.10.15.23.58=[[0], [2022], [12], [10], [15], [23], [58]] +2022.12.10.16.12.13=[[0], [2022], [12], [10], [16], [12], [13]] +2022.12.10.19.42.52=[[0], [2022], [12], [10], [19], [42], [52]] +2022.12.10.21.07.48=[[0], [2022], [12], [10], [21], [7], [48]] +2022.12.10.21.24.59=[[0], [2022], [12], [10], [21], [24], [59]] +2022.12.11=[[0], [2022], [12], [11]] +2022.12.11.00.42.28=[[0], [2022], [12], [11], [0], [42], [28]] +2022.12.11.21.21.5=[[0], [2022], [12], [11], [21], [21], [5]] +2022.12.12.00=[[0], [2022], [12], [12], [0]] +2022.12.12.09.01.12=[[0], [2022], [12], [12], [9], [1], [12]] +2022.12.12.09.03.28=[[0], [2022], [12], [12], [9], [3], [28]] +2022.12.12.09.03.37=[[0], [2022], [12], [12], [9], [3], [37]] +2022.12.12.15.21.25=[[0], [2022], [12], [12], [15], [21], [25]] +2022.12.12.22.47.46=[[0], [2022], [12], [12], [22], [47], [46]] +2022.12.13=[[0], [2022], [12], [13]] +2022.12.13.09.45.07=[[0], [2022], [12], [13], [9], [45], [7]] +2022.12.13.12.57.26=[[0], [2022], [12], [13], [12], [57], [26]] +2022.12.13.13.01.22=[[0], [2022], [12], [13], [13], [1], [22]] +2022.12.13.15.42.53=[[0], [2022], [12], [13], [15], [42], [53]] +2022.12.13.15.49.28=[[0], [2022], [12], [13], [15], [49], [28]] +2022.12.13.15.56.10=[[0], [2022], [12], [13], [15], [56], [10]] +2022.12.13.17.03.13=[[0], [2022], [12], [13], [17], [3], [13]] +2022.12.13.21.25.24=[[0], [2022], [12], [13], [21], [25], [24]] +2022.12.14=[[0], [2022], [12], [14]] +2022.12.14.13.10.49=[[0], [2022], [12], [14], [13], [10], [49]] +2022.12.14.21.36.18=[[0], [2022], [12], [14], [21], [36], [18]] +2022.12.15=[[0], [2022], [12], [15]] +2022.12.15.08.47.10=[[0], [2022], [12], [15], [8], [47], [10]] +2022.12.15.12.25.12=[[0], [2022], [12], [15], [12], [25], [12]] +2022.12.15.19.46.12=[[0], [2022], [12], [15], [19], [46], [12]] +2022.12.16=[[0], [2022], [12], [16]] +2022.12.16.14.20.18=[[0], [2022], [12], [16], [14], [20], [18]] +2022.12.17=[[0], [2022], [12], [17]] +2022.12.17.19.22.51=[[0], [2022], [12], [17], [19], [22], [51]] +2022.12.18.15.20.06=[[0], [2022], [12], [18], [15], [20], [6]] +2022.12.18.16.04.29=[[0], [2022], [12], [18], [16], [4], [29]] +2022.12.18.22.53.56=[[0], [2022], [12], [18], [22], [53], [56]] +2022.12.19=[[0], [2022], [12], [19]] +2022.12.19.00=[[0], [2022], [12], [19], [0]] +2022.12.19.12.44.52=[[0], [2022], [12], [19], [12], [44], [52]] +2022.12.19.14.36.50=[[0], [2022], [12], [19], [14], [36], [50]] +2022.12.19.20.52.42=[[0], [2022], [12], [19], [20], [52], [42]] +2022.12.2=[[0], [2022], [12], [2]] +2022.12.20=[[0], [2022], [12], [20]] +2022.12.20.01.36.46=[[0], [2022], [12], [20], [1], [36], [46]] +2022.12.20.16.10.14=[[0], [2022], [12], [20], [16], [10], [14]] +2022.12.20.16.27.48=[[0], [2022], [12], [20], [16], [27], [48]] +2022.12.20.16.44.56=[[0], [2022], [12], [20], [16], [44], [56]] +2022.12.20.17.30.40=[[0], [2022], [12], [20], [17], [30], [40]] +2022.12.20.19.40.49=[[0], [2022], [12], [20], [19], [40], [49]] +2022.12.20.22.03.26=[[0], [2022], [12], [20], [22], [3], [26]] +2022.12.21=[[0], [2022], [12], [21]] +2022.12.21.04.43.24=[[0], [2022], [12], [21], [4], [43], [24]] +2022.12.21.04.51.23=[[0], [2022], [12], [21], [4], [51], [23]] +2022.12.21.5.25.31=[[0], [2022], [12], [21], [5], [25], [31]] +2022.12.21.11.24.57=[[0], [2022], [12], [21], [11], [24], [57]] +2022.12.21.16.48.02=[[0], [2022], [12], [21], [16], [48], [2]] +2022.12.21.17.00.57=[[0], [2022], [12], [21], [17], [0], [57]] +2022.12.21.17.06.39=[[0], [2022], [12], [21], [17], [6], [39]] +2022.12.21.17.38.36=[[0], [2022], [12], [21], [17], [38], [36]] +2022.12.22=[[0], [2022], [12], [22]] +2022.12.22.13.58.53=[[0], [2022], [12], [22], [13], [58], [53]] +2022.12.22.907=[[0], [2022], [12], [22], [907]] +2022.12.24=[[0], [2022], [12], [24]] +2022.12.25=[[0], [2022], [12], [25]] +2022.12.26=[[0], [2022], [12], [26]] +2022.12.26.00=[[0], [2022], [12], [26], [0]] +2022.12.27=[[0], [2022], [12], [27]] +2022.12.27.12.28.39=[[0], [2022], [12], [27], [12], [28], [39]] +2022.12.27.19.59.10=[[0], [2022], [12], [27], [19], [59], [10]] +2022.12.29.18.48.19=[[0], [2022], [12], [29], [18], [48], [19]] +2022.12.29.18.59.25=[[0], [2022], [12], [29], [18], [59], [25]] +2022.12.29.19.5.49=[[0], [2022], [12], [29], [19], [5], [49]] +2022.12.4=[[0], [2022], [12], [4]] +2022.12.6=[[0], [2022], [12], [6]] +2022.12.6.post2=[[0], [2022], [12], [6], [0, inf, 2]] +2022.12.7=[[0], [2022], [12], [7]] +2022.12.9=[[0], [2022], [12], [9]] +2022.13=[[0], [2022], [13]] +2022.14=[[0], [2022], [14]] +2022.15=[[0], [2022], [15]] +2022.16.0=[[0], [2022], [16], [0]] +2022.16.1=[[0], [2022], [16], [1]] +2022.2=[[0], [2022], [2]] +2022.2.0=[[0], [2022], [2], [0]] +2022.2.1=[[0], [2022], [2], [1]] +2022.2.1.0=[[0], [2022], [2], [1], [0]] +2022.2.10=[[0], [2022], [2], [10]] +2022.2.10.14.20.39=[[0], [2022], [2], [10], [14], [20], [39]] +2022.2.11=[[0], [2022], [2], [11]] +2022.2.12=[[0], [2022], [2], [12]] +2022.2.13=[[0], [2022], [2], [13]] +2022.2.2=[[0], [2022], [2], [2]] +2022.2.21=[[0], [2022], [2], [21]] +2022.2.22=[[0], [2022], [2], [22]] +2022.2.22.1=[[0], [2022], [2], [22], [1]] +2022.2.23=[[0], [2022], [2], [23]] +2022.2.24=[[0], [2022], [2], [24]] +2022.2.24.1=[[0], [2022], [2], [24], [1]] +2022.2.24.535=[[0], [2022], [2], [24], [535]] +2022.2.25=[[0], [2022], [2], [25]] +2022.2.27=[[0], [2022], [2], [27]] +2022.2.3=[[0], [2022], [2], [3]] +2022.2.4=[[0], [2022], [2], [4]] +2022.2.5=[[0], [2022], [2], [5]] +2022.2.6=[[0], [2022], [2], [6]] +2022.2.7=[[0], [2022], [2], [7]] +2022.2.8=[[0], [2022], [2], [8]] +2022.2.9=[[0], [2022], [2], [9]] +2022.20.2=[[0], [2022], [20], [2]] +2022.3=[[0], [2022], [3]] +2022.3.0=[[0], [2022], [3], [0]] +2022.3.1=[[0], [2022], [3], [1]] +2022.3.12=[[0], [2022], [3], [12]] +2022.3.13=[[0], [2022], [3], [13]] +2022.3.14=[[0], [2022], [3], [14]] +2022.3.15=[[0], [2022], [3], [15]] +2022.3.16=[[0], [2022], [3], [16]] +2022.3.17=[[0], [2022], [3], [17]] +2022.3.18=[[0], [2022], [3], [18]] +2022.3.2=[[0], [2022], [3], [2]] +2022.3.22=[[0], [2022], [3], [22]] +2022.3.23=[[0], [2022], [3], [23]] +2022.3.24=[[0], [2022], [3], [24]] +2022.3.25=[[0], [2022], [3], [25]] +2022.3.26=[[0], [2022], [3], [26]] +2022.3.27=[[0], [2022], [3], [27]] +2022.3.28=[[0], [2022], [3], [28]] +2022.3.29=[[0], [2022], [3], [29]] +2022.3.29.873=[[0], [2022], [3], [29], [873]] +2022.3.3=[[0], [2022], [3], [3]] +2022.3.30=[[0], [2022], [3], [30]] +2022.3.4=[[0], [2022], [3], [4]] +2022.3.5=[[0], [2022], [3], [5]] +2022.3.6=[[0], [2022], [3], [6]] +2022.3.7=[[0], [2022], [3], [7]] +2022.3.8=[[0], [2022], [3], [8]] +2022.3.8.2=[[0], [2022], [3], [8], [2]] +2022.4=[[0], [2022], [4]] +2022.4.0=[[0], [2022], [4], [0]] +2022.4.0.0=[[0], [2022], [4], [0], [0]] +2022.4.1=[[0], [2022], [4], [1]] +2022.4.10=[[0], [2022], [4], [10]] +2022.4.19=[[0], [2022], [4], [19]] +2022.4.2=[[0], [2022], [4], [2]] +2022.4.21=[[0], [2022], [4], [21]] +2022.4.22=[[0], [2022], [4], [22]] +2022.4.24=[[0], [2022], [4], [24]] +2022.4.26=[[0], [2022], [4], [26]] +2022.4.28=[[0], [2022], [4], [28]] +2022.4.3=[[0], [2022], [4], [3]] +2022.4.30=[[0], [2022], [4], [30]] +2022.4.4=[[0], [2022], [4], [4]] +2022.4.5=[[0], [2022], [4], [5]] +2022.4.6=[[0], [2022], [4], [6]] +2022.4.7=[[0], [2022], [4], [7]] +2022.4.8=[[0], [2022], [4], [8]] +2022.4_1=[[0], [2022], [4], [1]] +2022.5=[[0], [2022], [5]] +2022.5.0=[[0], [2022], [5], [0]] +2022.5.0.0=[[0], [2022], [5], [0], [0]] +2022.5.1=[[0], [2022], [5], [1]] +2022.5.17=[[0], [2022], [5], [17]] +2022.5.18=[[0], [2022], [5], [18]] +2022.5.18.1=[[0], [2022], [5], [18], [1]] +2022.5.19=[[0], [2022], [5], [19]] +2022.5.19.406=[[0], [2022], [5], [19], [406]] +2022.5.2=[[0], [2022], [5], [2]] +2022.5.20=[[0], [2022], [5], [20]] +2022.5.23=[[0], [2022], [5], [23]] +2022.5.26=[[0], [2022], [5], [26]] +2022.5.27=[[0], [2022], [5], [27]] +2022.5.29=[[0], [2022], [5], [29]] +2022.5.3=[[0], [2022], [5], [3]] +2022.5.30=[[0], [2022], [5], [30]] +2022.5.4=[[0], [2022], [5], [4]] +2022.5.5=[[0], [2022], [5], [5]] +2022.5.7=[[0], [2022], [5], [7]] +2022.6=[[0], [2022], [6]] +2022.6.0=[[0], [2022], [6], [0]] +2022.6.0.1=[[0], [2022], [6], [0], [1]] +2022.6.1=[[0], [2022], [6], [1]] +2022.6.10=[[0], [2022], [6], [10]] +2022.6.11=[[0], [2022], [6], [11]] +2022.6.14=[[0], [2022], [6], [14]] +2022.6.15=[[0], [2022], [6], [15]] +2022.6.15.1=[[0], [2022], [6], [15], [1]] +2022.6.15.2=[[0], [2022], [6], [15], [2]] +2022.6.2=[[0], [2022], [6], [2]] +2022.6.21=[[0], [2022], [6], [21]] +2022.6.22=[[0], [2022], [6], [22]] +2022.6.22.1=[[0], [2022], [6], [22], [1]] +2022.6.25=[[0], [2022], [6], [25]] +2022.6.26=[[0], [2022], [6], [26]] +2022.6.28=[[0], [2022], [6], [28]] +2022.6.28.2=[[0], [2022], [6], [28], [2]] +2022.6.29=[[0], [2022], [6], [29]] +2022.6.29.552=[[0], [2022], [6], [29], [552]] +2022.6.3=[[0], [2022], [6], [3]] +2022.6.3.0=[[0], [2022], [6], [3], [0]] +2022.6.30=[[0], [2022], [6], [30]] +2022.6.4.1=[[0], [2022], [6], [4], [1]] +2022.6.6=[[0], [2022], [6], [6]] +2022.6.7=[[0], [2022], [6], [7]] +2022.6.9=[[0], [2022], [6], [9]] +2022.7=[[0], [2022], [7]] +2022.7.0=[[0], [2022], [7], [0]] +2022.7.0.0=[[0], [2022], [7], [0], [0]] +2022.7.1=[[0], [2022], [7], [1]] +2022.7.1.0=[[0], [2022], [7], [1], [0]] +2022.7.1.1=[[0], [2022], [7], [1], [1]] +2022.7.1.2=[[0], [2022], [7], [1], [2]] +2022.7.10=[[0], [2022], [7], [10]] +2022.7.14=[[0], [2022], [7], [14]] +2022.7.17=[[0], [2022], [7], [17]] +2022.7.18=[[0], [2022], [7], [18]] +2022.7.19=[[0], [2022], [7], [19]] +2022.7.21=[[0], [2022], [7], [21]] +2022.7.24=[[0], [2022], [7], [24]] +2022.7.24.1=[[0], [2022], [7], [24], [1]] +2022.7.25=[[0], [2022], [7], [25]] +2022.7.25.0=[[0], [2022], [7], [25], [0]] +2022.7.27=[[0], [2022], [7], [27]] +2022.7.28=[[0], [2022], [7], [28]] +2022.7.29=[[0], [2022], [7], [29]] +2022.7.29.1=[[0], [2022], [7], [29], [1]] +2022.7.30.0=[[0], [2022], [7], [30], [0]] +2022.7.31=[[0], [2022], [7], [31]] +2022.7.4=[[0], [2022], [7], [4]] +2022.7.5=[[0], [2022], [7], [5]] +2022.7.6=[[0], [2022], [7], [6]] +2022.7.7=[[0], [2022], [7], [7]] +2022.7.8=[[0], [2022], [7], [8]] +2022.7.9=[[0], [2022], [7], [9]] +2022.8=[[0], [2022], [8]] +2022.8.0=[[0], [2022], [8], [0]] +2022.8.1=[[0], [2022], [8], [1]] +2022.8.12=[[0], [2022], [8], [12]] +2022.8.13=[[0], [2022], [8], [13]] +2022.8.14=[[0], [2022], [8], [14]] +2022.8.15=[[0], [2022], [8], [15]] +2022.8.17=[[0], [2022], [8], [17]] +2022.8.19=[[0], [2022], [8], [19]] +2022.8.2=[[0], [2022], [8], [2]] +2022.8.22=[[0], [2022], [8], [22]] +2022.8.23=[[0], [2022], [8], [23]] +2022.8.24=[[0], [2022], [8], [24]] +2022.8.24a1=[[0], [2022], [8], [24, 'a', 1]] +2022.8.26=[[0], [2022], [8], [26]] +2022.8.27=[[0], [2022], [8], [27]] +2022.8.3=[[0], [2022], [8], [3]] +2022.8.30=[[0], [2022], [8], [30]] +2022.8.31=[[0], [2022], [8], [31]] +2022.8.4=[[0], [2022], [8], [4]] +2022.8.5=[[0], [2022], [8], [5]] +2022.8.7=[[0], [2022], [8], [7]] +2022.8.8=[[0], [2022], [8], [8]] +2022.9=[[0], [2022], [9]] +2022.9.0=[[0], [2022], [9], [0]] +2022.9.0.post1=[[0], [2022], [9], [0], [0, inf, 1]] +2022.9.1=[[0], [2022], [9], [1]] +2022.9.10=[[0], [2022], [9], [10]] +2022.9.11=[[0], [2022], [9], [11]] +2022.9.12=[[0], [2022], [9], [12]] +2022.9.13=[[0], [2022], [9], [13]] +2022.9.14=[[0], [2022], [9], [14]] +2022.9.16=[[0], [2022], [9], [16]] +2022.9.18=[[0], [2022], [9], [18]] +2022.9.19=[[0], [2022], [9], [19]] +2022.9.2=[[0], [2022], [9], [2]] +2022.9.20=[[0], [2022], [9], [20]] +2022.9.21=[[0], [2022], [9], [21]] +2022.9.22=[[0], [2022], [9], [22]] +2022.9.24=[[0], [2022], [9], [24]] +2022.9.26=[[0], [2022], [9], [26]] +2022.9.27=[[0], [2022], [9], [27]] +2022.9.28=[[0], [2022], [9], [28]] +2022.9.29=[[0], [2022], [9], [29]] +2022.9.4=[[0], [2022], [9], [4]] +2022.9.5=[[0], [2022], [9], [5]] +2022.9.8=[[0], [2022], [9], [8]] +2022.9.9=[[0], [2022], [9], [9]] +2022.9a1=[[0], [2022], [9, 'a', 1]] +20220000.0=[[0], [20220000], [0]] +20220000.1=[[0], [20220000], [1]] +20220000.2=[[0], [20220000], [2]] +20220000.3=[[0], [20220000], [3]] +20220000.4=[[0], [20220000], [4]] +20220000.5=[[0], [20220000], [5]] +20220102.00.06.34=[[0], [20220102], [0], [6], [34]] +20220103=[[0], [20220103]] +20220103.0=[[0], [20220103], [0]] +20220104=[[0], [20220104]] +20220104.16.11.01=[[0], [20220104], [16], [11], [1]] +20220104.22.39.10=[[0], [20220104], [22], [39], [10]] +20220105=[[0], [20220105]] +20220105.0=[[0], [20220105], [0]] +20220106=[[0], [20220106]] +20220106.12.03.31=[[0], [20220106], [12], [3], [31]] +20220107=[[0], [20220107]] +20220108=[[0], [20220108]] +20220109=[[0], [20220109]] +20220109.00.06.58=[[0], [20220109], [0], [6], [58]] +20220109.04.01.27=[[0], [20220109], [4], [1], [27]] +20220110=[[0], [20220110]] +20220110.02.5.02=[[0], [20220110], [2], [5], [2]] +20220110.20.09.55=[[0], [20220110], [20], [9], [55]] +20220111=[[0], [20220111]] +20220111.0=[[0], [20220111], [0]] +20220112=[[0], [20220112]] +20220113=[[0], [20220113]] +20220114=[[0], [20220114]] +20220114.15.38.02=[[0], [20220114], [15], [38], [2]] +20220114.15.40.11=[[0], [20220114], [15], [40], [11]] +20220115=[[0], [20220115]] +20220115.02.56.19=[[0], [20220115], [2], [56], [19]] +20220116=[[0], [20220116]] +20220116.00.5.51=[[0], [20220116], [0], [5], [51]] +20220117=[[0], [20220117]] +20220117.0=[[0], [20220117], [0]] +20220118=[[0], [20220118]] +20220118.0=[[0], [20220118], [0]] +20220119=[[0], [20220119]] +20220119.17.53.52=[[0], [20220119], [17], [53], [52]] +20220120=[[0], [20220120]] +20220120.0=[[0], [20220120], [0]] +20220121=[[0], [20220121]] +20220121.06.42.38=[[0], [20220121], [6], [42], [38]] +20220122=[[0], [20220122]] +20220123=[[0], [20220123]] +20220123.00.07.5=[[0], [20220123], [0], [7], [5]] +20220124=[[0], [20220124]] +20220124.0=[[0], [20220124], [0]] +20220124.02.18.51=[[0], [20220124], [2], [18], [51]] +20220124.16.57.25=[[0], [20220124], [16], [57], [25]] +20220124.17.04.54=[[0], [20220124], [17], [4], [54]] +20220124.22.38.37=[[0], [20220124], [22], [38], [37]] +20220125=[[0], [20220125]] +20220125.0=[[0], [20220125], [0]] +20220125.00.18.00=[[0], [20220125], [0], [18], [0]] +20220125.16.11.59=[[0], [20220125], [16], [11], [59]] +20220125.18.39.47=[[0], [20220125], [18], [39], [47]] +20220126=[[0], [20220126]] +20220126.11.37.33=[[0], [20220126], [11], [37], [33]] +20220126.11.39.10=[[0], [20220126], [11], [39], [10]] +20220126.22.29.26=[[0], [20220126], [22], [29], [26]] +20220127=[[0], [20220127]] +20220127.18.42.07=[[0], [20220127], [18], [42], [7]] +20220128=[[0], [20220128]] +20220128.13.08.52=[[0], [20220128], [13], [8], [52]] +20220129=[[0], [20220129]] +20220129.0=[[0], [20220129], [0]] +20220129.16.06.28=[[0], [20220129], [16], [6], [28]] +20220129.16.08.13=[[0], [20220129], [16], [8], [13]] +20220130=[[0], [20220130]] +20220131=[[0], [20220131]] +20220131.0=[[0], [20220131], [0]] +20220201=[[0], [20220201]] +20220201.0=[[0], [20220201], [0]] +20220201.07.45.27=[[0], [20220201], [7], [45], [27]] +20220202=[[0], [20220202]] +20220202.11.37.47=[[0], [20220202], [11], [37], [47]] +20220202.12.12.12=[[0], [20220202], [12], [12], [12]] +20220202.18.59.32=[[0], [20220202], [18], [59], [32]] +20220203=[[0], [20220203]] +20220203.20.38.08=[[0], [20220203], [20], [38], [8]] +20220204=[[0], [20220204]] +20220205=[[0], [20220205]] +20220206=[[0], [20220206]] +20220206.00.52.58=[[0], [20220206], [0], [52], [58]] +20220208.0=[[0], [20220208], [0]] +20220211.07.10.24=[[0], [20220211], [7], [10], [24]] +20220213.00.06.57=[[0], [20220213], [0], [6], [57]] +20220213.04.43.34=[[0], [20220213], [4], [43], [34]] +20220214.0=[[0], [20220214], [0]] +20220215.02.23.33=[[0], [20220215], [2], [23], [33]] +20220216.1=[[0], [20220216], [1]] +20220220.00.07.42=[[0], [20220220], [0], [7], [42]] +20220222=[[0], [20220222]] +20220222.23.28.23=[[0], [20220222], [23], [28], [23]] +20220223.0=[[0], [20220223], [0]] +20220223.22.41.27=[[0], [20220223], [22], [41], [27]] +20220224.0=[[0], [20220224], [0]] +20220224.17.44.39=[[0], [20220224], [17], [44], [39]] +20220225.03.31.47=[[0], [20220225], [3], [31], [47]] +20220225.15.45.55=[[0], [20220225], [15], [45], [55]] +20220228.0=[[0], [20220228], [0]] +20220301.0=[[0], [20220301], [0]] +20220301.10.14.41=[[0], [20220301], [10], [14], [41]] +20220301.23.37.56=[[0], [20220301], [23], [37], [56]] +20220303.17.55.44=[[0], [20220303], [17], [55], [44]] +20220304.15.26.29=[[0], [20220304], [15], [26], [29]] +20220307.12.18.46=[[0], [20220307], [12], [18], [46]] +20220307.15.03.47=[[0], [20220307], [15], [3], [47]] +20220307.19.49.09=[[0], [20220307], [19], [49], [9]] +20220307.19.52.29=[[0], [20220307], [19], [52], [29]] +20220308.0=[[0], [20220308], [0]] +20220308.03.14.22=[[0], [20220308], [3], [14], [22]] +20220309.0=[[0], [20220309], [0]] +20220309.10.15.51=[[0], [20220309], [10], [15], [51]] +20220309.10.26.13=[[0], [20220309], [10], [26], [13]] +20220309.10.38.21=[[0], [20220309], [10], [38], [21]] +20220310.08.22.06=[[0], [20220310], [8], [22], [6]] +20220310.1=[[0], [20220310], [1]] +20220311.18.55.28=[[0], [20220311], [18], [55], [28]] +20220311.3=[[0], [20220311], [3]] +20220312.0=[[0], [20220312], [0]] +20220313.00.07.29=[[0], [20220313], [0], [7], [29]] +20220315.0=[[0], [20220315], [0]] +20220316.15.24.44=[[0], [20220316], [15], [24], [44]] +20220316.15.37.36=[[0], [20220316], [15], [37], [36]] +20220316.15.47.58=[[0], [20220316], [15], [47], [58]] +20220317.07.11.18=[[0], [20220317], [7], [11], [18]] +20220317.1=[[0], [20220317], [1]] +20220317.2=[[0], [20220317], [2]] +20220318.0=[[0], [20220318], [0]] +20220318.14.19.44=[[0], [20220318], [14], [19], [44]] +20220319=[[0], [20220319]] +20220320=[[0], [20220320]] +20220322.0=[[0], [20220322], [0]] +20220323.0=[[0], [20220323], [0]] +20220323.06.13.42=[[0], [20220323], [6], [13], [42]] +20220323.15.51.04=[[0], [20220323], [15], [51], [4]] +20220324.0=[[0], [20220324], [0]] +20220324.06.56.10=[[0], [20220324], [6], [56], [10]] +20220324.11.24.29=[[0], [20220324], [11], [24], [29]] +20220324.11.36.5=[[0], [20220324], [11], [36], [5]] +20220324.21.40.27=[[0], [20220324], [21], [40], [27]] +20220324.21.51.49=[[0], [20220324], [21], [51], [49]] +20220325.0=[[0], [20220325], [0]] +20220327.00.07.28=[[0], [20220327], [0], [7], [28]] +20220328.23.18.47=[[0], [20220328], [23], [18], [47]] +20220329.0=[[0], [20220329], [0]] +20220329.2=[[0], [20220329], [2]] +20220330.12.52.52=[[0], [20220330], [12], [52], [52]] +20220401.0=[[0], [20220401], [0]] +20220401.17.51.01=[[0], [20220401], [17], [51], [1]] +20220403.00.06.57=[[0], [20220403], [0], [6], [57]] +20220403.18.48.30=[[0], [20220403], [18], [48], [30]] +20220404.0=[[0], [20220404], [0]] +20220406.0=[[0], [20220406], [0]] +20220407.15.44.43=[[0], [20220407], [15], [44], [43]] +20220407.15.47.58=[[0], [20220407], [15], [47], [58]] +20220407.18.26.17=[[0], [20220407], [18], [26], [17]] +20220408.19.26.42=[[0], [20220408], [19], [26], [42]] +20220409.12.18.21=[[0], [20220409], [12], [18], [21]] +20220410.21.44.04=[[0], [20220410], [21], [44], [4]] +20220412.0=[[0], [20220412], [0]] +20220414.0=[[0], [20220414], [0]] +20220417.00.06.20=[[0], [20220417], [0], [6], [20]] +20220418.00.10.10=[[0], [20220418], [0], [10], [10]] +20220418.00.18.51=[[0], [20220418], [0], [18], [51]] +20220419.0=[[0], [20220419], [0]] +20220421.17.47.53=[[0], [20220421], [17], [47], [53]] +20220421.23.09.34=[[0], [20220421], [23], [9], [34]] +20220422.0=[[0], [20220422], [0]] +20220422.18.54.11=[[0], [20220422], [18], [54], [11]] +20220425.13.26.07=[[0], [20220425], [13], [26], [7]] +20220426.1=[[0], [20220426], [1]] +20220426.18.04.03=[[0], [20220426], [18], [4], [3]] +20220426.21.35.21=[[0], [20220426], [21], [35], [21]] +20220427.0=[[0], [20220427], [0]] +20220427.06.16.58=[[0], [20220427], [6], [16], [58]] +20220427.1=[[0], [20220427], [1]] +20220427.13.49.53=[[0], [20220427], [13], [49], [53]] +20220429.11.38.10=[[0], [20220429], [11], [38], [10]] +20220429.11.52.03=[[0], [20220429], [11], [52], [3]] +20220429.12.13.02=[[0], [20220429], [12], [13], [2]] +20220430.13.00.46=[[0], [20220430], [13], [0], [46]] +20220501.00.07.10=[[0], [20220501], [0], [7], [10]] +20220503.0=[[0], [20220503], [0]] +20220503.17.00.27=[[0], [20220503], [17], [0], [27]] +20220504.21.20.49=[[0], [20220504], [21], [20], [49]] +20220506=[[0], [20220506]] +20220508.00.07.02=[[0], [20220508], [0], [7], [2]] +20220509.0=[[0], [20220509], [0]] +20220510.11.54.14=[[0], [20220510], [11], [54], [14]] +20220512.0=[[0], [20220512], [0]] +20220515.00.07.59=[[0], [20220515], [0], [7], [59]] +20220517.0=[[0], [20220517], [0]] +20220518.23.07.36=[[0], [20220518], [23], [7], [36]] +20220519.19.15.23=[[0], [20220519], [19], [15], [23]] +20220520.00.30.12=[[0], [20220520], [0], [30], [12]] +20220521.09.08.45=[[0], [20220521], [9], [8], [45]] +20220521.17.02.30=[[0], [20220521], [17], [2], [30]] +20220522=[[0], [20220522]] +20220524=[[0], [20220524]] +20220524.0=[[0], [20220524], [0]] +20220524.22.16.02=[[0], [20220524], [22], [16], [2]] +20220525.1=[[0], [20220525], [1]] +20220526.12.30.52=[[0], [20220526], [12], [30], [52]] +20220526.13.29.44=[[0], [20220526], [13], [29], [44]] +20220526.14.42.14=[[0], [20220526], [14], [42], [14]] +20220527.0=[[0], [20220527], [0]] +20220527.17.5.57=[[0], [20220527], [17], [5], [57]] +20220530.12.10.09=[[0], [20220530], [12], [10], [9]] +20220530.14.54.33=[[0], [20220530], [14], [54], [33]] +20220530.14.55.53=[[0], [20220530], [14], [55], [53]] +20220530.15.09.33=[[0], [20220530], [15], [9], [33]] +20220531.0=[[0], [20220531], [0]] +20220531.07.10.11=[[0], [20220531], [7], [10], [11]] +20220601.00.04.48=[[0], [20220601], [0], [4], [48]] +20220601.21.09.53=[[0], [20220601], [21], [9], [53]] +20220602.10.15.07=[[0], [20220602], [10], [15], [7]] +20220604.17.07.58=[[0], [20220604], [17], [7], [58]] +20220607.0=[[0], [20220607], [0]] +20220607.14.09.28=[[0], [20220607], [14], [9], [28]] +20220608.16.03.47=[[0], [20220608], [16], [3], [47]] +20220609.16.02.26=[[0], [20220609], [16], [2], [26]] +20220610.12.40.28=[[0], [20220610], [12], [40], [28]] +20220612.00.07.30=[[0], [20220612], [0], [7], [30]] +20220615.13.25.23=[[0], [20220615], [13], [25], [23]] +20220616.17.31.23=[[0], [20220616], [17], [31], [23]] +20220621=[[0], [20220621]] +20220623.0=[[0], [20220623], [0]] +20220626.00.07.50=[[0], [20220626], [0], [7], [50]] +20220627.11.46.09=[[0], [20220627], [11], [46], [9]] +20220627.12.22.56=[[0], [20220627], [12], [22], [56]] +20220627.12.57.43=[[0], [20220627], [12], [57], [43]] +20220628.10.01.57=[[0], [20220628], [10], [1], [57]] +20220629.11.13.56=[[0], [20220629], [11], [13], [56]] +20220629.11.19.17=[[0], [20220629], [11], [19], [17]] +20220703.00.07.21=[[0], [20220703], [0], [7], [21]] +20220704.12.29.21=[[0], [20220704], [12], [29], [21]] +20220705.13.13.13=[[0], [20220705], [13], [13], [13]] +20220706.08.19.08=[[0], [20220706], [8], [19], [8]] +20220708=[[0], [20220708]] +20220708.12.52.59=[[0], [20220708], [12], [52], [59]] +20220710.00.07.03=[[0], [20220710], [0], [7], [3]] +20220711.13.41.26=[[0], [20220711], [13], [41], [26]] +20220713.12.44.52=[[0], [20220713], [12], [44], [52]] +20220713.13.46.37=[[0], [20220713], [13], [46], [37]] +20220713.19.29.38=[[0], [20220713], [19], [29], [38]] +20220716.22.20.30=[[0], [20220716], [22], [20], [30]] +20220719.01.41.20=[[0], [20220719], [1], [41], [20]] +20220721.23.03.23=[[0], [20220721], [23], [3], [23]] +20220722=[[0], [20220722]] +20220722.11.22.37=[[0], [20220722], [11], [22], [37]] +20220724.00.08.59=[[0], [20220724], [0], [8], [59]] +20220726.0=[[0], [20220726], [0]] +20220726.04.03.24=[[0], [20220726], [4], [3], [24]] +20220728.11.26.04=[[0], [20220728], [11], [26], [4]] +20220730.21.57.48=[[0], [20220730], [21], [57], [48]] +20220731.21.48.41=[[0], [20220731], [21], [48], [41]] +20220801.0=[[0], [20220801], [0]] +20220801.08.34.53=[[0], [20220801], [8], [34], [53]] +20220802.0=[[0], [20220802], [0]] +20220803=[[0], [20220803]] +20220803.22.56.22=[[0], [20220803], [22], [56], [22]] +20220803.23.08.07=[[0], [20220803], [23], [8], [7]] +20220803.23.26.13=[[0], [20220803], [23], [26], [13]] +20220804.0=[[0], [20220804], [0]] +20220805.15.26.52=[[0], [20220805], [15], [26], [52]] +20220809.0=[[0], [20220809], [0]] +20220810.19.22.04=[[0], [20220810], [19], [22], [4]] +20220810.19.24.46=[[0], [20220810], [19], [24], [46]] +20220810.19.37.04=[[0], [20220810], [19], [37], [4]] +20220810.19.51.33=[[0], [20220810], [19], [51], [33]] +20220811.5.39.04=[[0], [20220811], [5], [39], [4]] +20220812.00.22.59=[[0], [20220812], [0], [22], [59]] +20220812.00.36.49=[[0], [20220812], [0], [36], [49]] +20220812.23.22.47=[[0], [20220812], [23], [22], [47]] +20220814.0=[[0], [20220814], [0]] +20220816.0=[[0], [20220816], [0]] +20220816.15.5.34=[[0], [20220816], [15], [5], [34]] +20220816.15.09.16=[[0], [20220816], [15], [9], [16]] +20220818.22.08.12=[[0], [20220818], [22], [8], [12]] +20220819.01.34.22=[[0], [20220819], [1], [34], [22]] +20220820.0=[[0], [20220820], [0]] +20220821.00.08.52=[[0], [20220821], [0], [8], [52]] +20220822.15.18.02=[[0], [20220822], [15], [18], [2]] +20220824.08.32.31=[[0], [20220824], [8], [32], [31]] +20220825.0=[[0], [20220825], [0]] +20220825.21.52.11=[[0], [20220825], [21], [52], [11]] +20220826.07.58.56=[[0], [20220826], [7], [58], [56]] +20220830.0=[[0], [20220830], [0]] +20220830.16.24.23=[[0], [20220830], [16], [24], [23]] +20220831.16.15.28=[[0], [20220831], [16], [15], [28]] +202209=[[0], [202209]] +20220902.01.04.57=[[0], [20220902], [1], [4], [57]] +20220902.08.41.22=[[0], [20220902], [8], [41], [22]] +20220903.08.19.28=[[0], [20220903], [8], [19], [28]] +20220906.0=[[0], [20220906], [0]] +20220907.0=[[0], [20220907], [0]] +20220907.06.48.33=[[0], [20220907], [6], [48], [33]] +20220908.12.52.03=[[0], [20220908], [12], [52], [3]] +20220909.0=[[0], [20220909], [0]] +20220910.17.50.06=[[0], [20220910], [17], [50], [6]] +20220912.09.5.00=[[0], [20220912], [9], [5], [0]] +20220913.0=[[0], [20220913], [0]] +20220913.17.52.32=[[0], [20220913], [17], [52], [32]] +20220915.0=[[0], [20220915], [0]] +20220915.11.44.35=[[0], [20220915], [11], [44], [35]] +20220915.15.57.47=[[0], [20220915], [15], [57], [47]] +20220916.0=[[0], [20220916], [0]] +20220916.15.06.57=[[0], [20220916], [15], [6], [57]] +20220916.15.27.5=[[0], [20220916], [15], [27], [5]] +20220920.0=[[0], [20220920], [0]] +20220921=[[0], [20220921]] +20220922=[[0], [20220922]] +20220922.0=[[0], [20220922], [0]] +20220923.03.58.38=[[0], [20220923], [3], [58], [38]] +20220923.04.30.37=[[0], [20220923], [4], [30], [37]] +20220924.20.17.28=[[0], [20220924], [20], [17], [28]] +20220924.23.00.31=[[0], [20220924], [23], [0], [31]] +20220925.16.19.55=[[0], [20220925], [16], [19], [55]] +20220927.0=[[0], [20220927], [0]] +20220928.0=[[0], [20220928], [0]] +20220928.04.37.13=[[0], [20220928], [4], [37], [13]] +20220928.09.28.09=[[0], [20220928], [9], [28], [9]] +20220928.11.32.11=[[0], [20220928], [11], [32], [11]] +20220928.17.59.51=[[0], [20220928], [17], [59], [51]] +20220929.0=[[0], [20220929], [0]] +20220930.19.37.53=[[0], [20220930], [19], [37], [53]] +20220930.19.40.12=[[0], [20220930], [19], [40], [12]] +20221003.07.54.59=[[0], [20221003], [7], [54], [59]] +20221004.0=[[0], [20221004], [0]] +20221009.0=[[0], [20221009], [0]] +20221009.00.10.46=[[0], [20221009], [0], [10], [46]] +20221011.0=[[0], [20221011], [0]] +20221011.00.58.24=[[0], [20221011], [0], [58], [24]] +20221011.07.34.50=[[0], [20221011], [7], [34], [50]] +20221011.20.20.26=[[0], [20221011], [20], [20], [26]] +20221012=[[0], [20221012]] +20221012.16.48.19=[[0], [20221012], [16], [48], [19]] +20221012.20.11.42=[[0], [20221012], [20], [11], [42]] +20221013.0=[[0], [20221013], [0]] +20221013.13.36.52=[[0], [20221013], [13], [36], [52]] +20221013.13.52.49=[[0], [20221013], [13], [52], [49]] +20221013.14.15.47=[[0], [20221013], [14], [15], [47]] +20221013.14.30.5=[[0], [20221013], [14], [30], [5]] +20221013.14.45.08=[[0], [20221013], [14], [45], [8]] +20221013.14.56.25=[[0], [20221013], [14], [56], [25]] +20221013.15.09.17=[[0], [20221013], [15], [9], [17]] +20221013.15.27.31=[[0], [20221013], [15], [27], [31]] +20221013.15.57.33=[[0], [20221013], [15], [57], [33]] +20221013.16.10.27=[[0], [20221013], [16], [10], [27]] +20221013.16.28.49=[[0], [20221013], [16], [28], [49]] +20221013.16.31.45=[[0], [20221013], [16], [31], [45]] +20221013.16.49.30=[[0], [20221013], [16], [49], [30]] +20221013.17.09.48=[[0], [20221013], [17], [9], [48]] +20221013.17.31.53=[[0], [20221013], [17], [31], [53]] +20221013.17.52.03=[[0], [20221013], [17], [52], [3]] +20221013.18.14.08=[[0], [20221013], [18], [14], [8]] +20221013.18.29.44=[[0], [20221013], [18], [29], [44]] +20221013.18.47.54=[[0], [20221013], [18], [47], [54]] +20221013.19.03.08=[[0], [20221013], [19], [3], [8]] +20221013.19.16.10=[[0], [20221013], [19], [16], [10]] +20221013.19.30.25=[[0], [20221013], [19], [30], [25]] +20221013.19.42.26=[[0], [20221013], [19], [42], [26]] +20221013.19.53.38=[[0], [20221013], [19], [53], [38]] +20221013.20.08.00=[[0], [20221013], [20], [8], [0]] +20221013.20.28.00=[[0], [20221013], [20], [28], [0]] +20221013.20.42.54=[[0], [20221013], [20], [42], [54]] +20221013.20.55.29=[[0], [20221013], [20], [55], [29]] +20221013.21.09.18=[[0], [20221013], [21], [9], [18]] +20221013.21.27.07=[[0], [20221013], [21], [27], [7]] +20221013.21.41.14=[[0], [20221013], [21], [41], [14]] +20221013.21.54.36=[[0], [20221013], [21], [54], [36]] +20221013.22.08.28=[[0], [20221013], [22], [8], [28]] +20221013.22.27.30=[[0], [20221013], [22], [27], [30]] +20221013.22.43.22=[[0], [20221013], [22], [43], [22]] +20221013.22.55.42=[[0], [20221013], [22], [55], [42]] +20221013.23.08.06=[[0], [20221013], [23], [8], [6]] +20221013.23.27.33=[[0], [20221013], [23], [27], [33]] +20221013.23.45.13=[[0], [20221013], [23], [45], [13]] +20221013.23.57.32=[[0], [20221013], [23], [57], [32]] +20221014.00.28.29=[[0], [20221014], [0], [28], [29]] +20221014.00.54.06=[[0], [20221014], [0], [54], [6]] +20221014.01.39.28=[[0], [20221014], [1], [39], [28]] +20221014.02.42.37=[[0], [20221014], [2], [42], [37]] +20221014.03.45.24=[[0], [20221014], [3], [45], [24]] +20221014.04.35.13=[[0], [20221014], [4], [35], [13]] +20221014.5.16.26=[[0], [20221014], [5], [16], [26]] +20221014.5.51.22=[[0], [20221014], [5], [51], [22]] +20221014.06.28.48=[[0], [20221014], [6], [28], [48]] +20221014.06.51.21=[[0], [20221014], [6], [51], [21]] +20221014.07.19.07=[[0], [20221014], [7], [19], [7]] +20221014.07.36.43=[[0], [20221014], [7], [36], [43]] +20221014.07.57.55=[[0], [20221014], [7], [57], [55]] +20221014.08.10.25=[[0], [20221014], [8], [10], [25]] +20221014.08.27.51=[[0], [20221014], [8], [27], [51]] +20221014.08.46.29=[[0], [20221014], [8], [46], [29]] +20221014.08.59.58=[[0], [20221014], [8], [59], [58]] +20221014.09.12.23=[[0], [20221014], [9], [12], [23]] +20221014.09.27.29=[[0], [20221014], [9], [27], [29]] +20221014.09.43.04=[[0], [20221014], [9], [43], [4]] +20221014.09.56.5=[[0], [20221014], [9], [56], [5]] +20221014.10.08.24=[[0], [20221014], [10], [8], [24]] +20221014.10.27.36=[[0], [20221014], [10], [27], [36]] +20221014.10.43.52=[[0], [20221014], [10], [43], [52]] +20221014.10.56.27=[[0], [20221014], [10], [56], [27]] +20221014.11.08.55=[[0], [20221014], [11], [8], [55]] +20221014.11.26.59=[[0], [20221014], [11], [26], [59]] +20221014.11.40.37=[[0], [20221014], [11], [40], [37]] +20221014.11.53.40=[[0], [20221014], [11], [53], [40]] +20221014.12.10.09=[[0], [20221014], [12], [10], [9]] +20221014.12.29.11=[[0], [20221014], [12], [29], [11]] +20221014.12.50.42=[[0], [20221014], [12], [50], [42]] +20221014.13.26.5=[[0], [20221014], [13], [26], [5]] +20221014.13.53.04=[[0], [20221014], [13], [53], [4]] +20221014.14.21.57=[[0], [20221014], [14], [21], [57]] +20221014.14.46.18=[[0], [20221014], [14], [46], [18]] +20221014.14.59.49=[[0], [20221014], [14], [59], [49]] +20221014.15.11.15=[[0], [20221014], [15], [11], [15]] +20221014.15.27.51=[[0], [20221014], [15], [27], [51]] +20221014.15.44.59=[[0], [20221014], [15], [44], [59]] +20221014.15.57.28=[[0], [20221014], [15], [57], [28]] +20221014.16.10.16=[[0], [20221014], [16], [10], [16]] +20221014.16.28.15=[[0], [20221014], [16], [28], [15]] +20221014.16.48.31=[[0], [20221014], [16], [48], [31]] +20221014.17.06.45=[[0], [20221014], [17], [6], [45]] +20221014.17.29.03=[[0], [20221014], [17], [29], [3]] +20221014.17.45.34=[[0], [20221014], [17], [45], [34]] +20221014.17.59.47=[[0], [20221014], [17], [59], [47]] +20221014.18.10.09=[[0], [20221014], [18], [10], [9]] +20221014.18.28.04=[[0], [20221014], [18], [28], [4]] +20221014.18.45.41=[[0], [20221014], [18], [45], [41]] +20221014.18.59.42=[[0], [20221014], [18], [59], [42]] +20221014.19.27.02=[[0], [20221014], [19], [27], [2]] +20221014.19.39.52=[[0], [20221014], [19], [39], [52]] +20221014.19.52.27=[[0], [20221014], [19], [52], [27]] +20221014.20.07.55=[[0], [20221014], [20], [7], [55]] +20221014.20.28.29=[[0], [20221014], [20], [28], [29]] +20221014.20.44.38=[[0], [20221014], [20], [44], [38]] +20221014.20.56.18=[[0], [20221014], [20], [56], [18]] +20221014.21.08.43=[[0], [20221014], [21], [8], [43]] +20221014.21.27.26=[[0], [20221014], [21], [27], [26]] +20221014.21.41.32=[[0], [20221014], [21], [41], [32]] +20221014.21.56.19=[[0], [20221014], [21], [56], [19]] +20221014.22.08.03=[[0], [20221014], [22], [8], [3]] +20221014.22.27.53=[[0], [20221014], [22], [27], [53]] +20221014.22.42.39=[[0], [20221014], [22], [42], [39]] +20221014.22.54.53=[[0], [20221014], [22], [54], [53]] +20221014.23.07.51=[[0], [20221014], [23], [7], [51]] +20221014.23.27.11=[[0], [20221014], [23], [27], [11]] +20221014.23.43.29=[[0], [20221014], [23], [43], [29]] +20221014.23.55.50=[[0], [20221014], [23], [55], [50]] +20221015.00.26.45=[[0], [20221015], [0], [26], [45]] +20221015.00.52.32=[[0], [20221015], [0], [52], [32]] +20221015.01.38.29=[[0], [20221015], [1], [38], [29]] +20221015.02.41.43=[[0], [20221015], [2], [41], [43]] +20221015.03.42.24=[[0], [20221015], [3], [42], [24]] +20221015.04.27.22=[[0], [20221015], [4], [27], [22]] +20221015.5.03.35=[[0], [20221015], [5], [3], [35]] +20221015.5.32.43=[[0], [20221015], [5], [32], [43]] +20221015.5.54.01=[[0], [20221015], [5], [54], [1]] +20221015.06.15.14=[[0], [20221015], [6], [15], [14]] +20221015.06.29.23=[[0], [20221015], [6], [29], [23]] +20221015.06.48.04=[[0], [20221015], [6], [48], [4]] +20221015.07.03.09=[[0], [20221015], [7], [3], [9]] +20221015.07.15.48=[[0], [20221015], [7], [15], [48]] +20221015.07.29.38=[[0], [20221015], [7], [29], [38]] +20221015.07.42.25=[[0], [20221015], [7], [42], [25]] +20221015.07.53.42=[[0], [20221015], [7], [53], [42]] +20221015.08.09.10=[[0], [20221015], [8], [9], [10]] +20221015.08.45.14=[[0], [20221015], [8], [45], [14]] +20221015.08.59.13=[[0], [20221015], [8], [59], [13]] +20221015.09.09.57=[[0], [20221015], [9], [9], [57]] +20221015.09.27.53=[[0], [20221015], [9], [27], [53]] +20221015.09.42.10=[[0], [20221015], [9], [42], [10]] +20221015.09.55.00=[[0], [20221015], [9], [55], [0]] +20221015.10.07.47=[[0], [20221015], [10], [7], [47]] +20221015.10.27.12=[[0], [20221015], [10], [27], [12]] +20221015.10.43.07=[[0], [20221015], [10], [43], [7]] +20221015.10.55.02=[[0], [20221015], [10], [55], [2]] +20221015.11.07.33=[[0], [20221015], [11], [7], [33]] +20221015.11.26.46=[[0], [20221015], [11], [26], [46]] +20221015.11.38.54=[[0], [20221015], [11], [38], [54]] +20221015.11.52.20=[[0], [20221015], [11], [52], [20]] +20221015.12.09.44=[[0], [20221015], [12], [9], [44]] +20221015.12.28.36=[[0], [20221015], [12], [28], [36]] +20221015.12.49.09=[[0], [20221015], [12], [49], [9]] +20221015.13.20.11=[[0], [20221015], [13], [20], [11]] +20221015.13.48.49=[[0], [20221015], [13], [48], [49]] +20221015.14.03.06=[[0], [20221015], [14], [3], [6]] +20221015.14.13.28=[[0], [20221015], [14], [13], [28]] +20221015.14.26.58=[[0], [20221015], [14], [26], [58]] +20221015.14.41.36=[[0], [20221015], [14], [41], [36]] +20221015.14.53.36=[[0], [20221015], [14], [53], [36]] +20221015.15.07.38=[[0], [20221015], [15], [7], [38]] +20221015.15.27.15=[[0], [20221015], [15], [27], [15]] +20221015.15.42.09=[[0], [20221015], [15], [42], [9]] +20221015.15.55.27=[[0], [20221015], [15], [55], [27]] +20221015.16.08.22=[[0], [20221015], [16], [8], [22]] +20221015.16.27.37=[[0], [20221015], [16], [27], [37]] +20221015.16.47.11=[[0], [20221015], [16], [47], [11]] +20221015.17.04.04=[[0], [20221015], [17], [4], [4]] +20221015.17.17.58=[[0], [20221015], [17], [17], [58]] +20221015.17.33.22=[[0], [20221015], [17], [33], [22]] +20221015.17.47.54=[[0], [20221015], [17], [47], [54]] +20221015.17.58.26=[[0], [20221015], [17], [58], [26]] +20221015.18.08.12=[[0], [20221015], [18], [8], [12]] +20221015.18.27.41=[[0], [20221015], [18], [27], [41]] +20221015.18.44.26=[[0], [20221015], [18], [44], [26]] +20221015.18.58.04=[[0], [20221015], [18], [58], [4]] +20221015.19.08.50=[[0], [20221015], [19], [8], [50]] +20221015.19.26.24=[[0], [20221015], [19], [26], [24]] +20221015.19.38.03=[[0], [20221015], [19], [38], [3]] +20221015.19.52.13=[[0], [20221015], [19], [52], [13]] +20221015.20.08.13=[[0], [20221015], [20], [8], [13]] +20221015.20.27.30=[[0], [20221015], [20], [27], [30]] +20221015.20.42.06=[[0], [20221015], [20], [42], [6]] +20221015.20.55.10=[[0], [20221015], [20], [55], [10]] +20221015.21.07.52=[[0], [20221015], [21], [7], [52]] +20221015.21.26.24=[[0], [20221015], [21], [26], [24]] +20221015.21.40.41=[[0], [20221015], [21], [40], [41]] +20221015.21.53.45=[[0], [20221015], [21], [53], [45]] +20221015.22.07.45=[[0], [20221015], [22], [7], [45]] +20221015.22.27.32=[[0], [20221015], [22], [27], [32]] +20221015.22.42.33=[[0], [20221015], [22], [42], [33]] +20221015.22.54.59=[[0], [20221015], [22], [54], [59]] +20221015.23.07.34=[[0], [20221015], [23], [7], [34]] +20221015.23.27.26=[[0], [20221015], [23], [27], [26]] +20221015.23.43.38=[[0], [20221015], [23], [43], [38]] +20221015.23.55.56=[[0], [20221015], [23], [55], [56]] +20221016.00.27.19=[[0], [20221016], [0], [27], [19]] +20221016.00.52.40=[[0], [20221016], [0], [52], [40]] +20221016.01.36.31=[[0], [20221016], [1], [36], [31]] +20221016.02.42.32=[[0], [20221016], [2], [42], [32]] +20221016.03.45.02=[[0], [20221016], [3], [45], [2]] +20221016.04.28.07=[[0], [20221016], [4], [28], [7]] +20221016.5.01.20=[[0], [20221016], [5], [1], [20]] +20221016.5.28.38=[[0], [20221016], [5], [28], [38]] +20221016.5.49.49=[[0], [20221016], [5], [49], [49]] +20221016.06.13.5=[[0], [20221016], [6], [13], [5]] +20221016.06.28.12=[[0], [20221016], [6], [28], [12]] +20221016.06.46.06=[[0], [20221016], [6], [46], [6]] +20221016.07.01.21=[[0], [20221016], [7], [1], [21]] +20221016.07.14.00=[[0], [20221016], [7], [14], [0]] +20221016.07.27.06=[[0], [20221016], [7], [27], [6]] +20221016.07.41.46=[[0], [20221016], [7], [41], [46]] +20221016.07.53.38=[[0], [20221016], [7], [53], [38]] +20221016.08.09.07=[[0], [20221016], [8], [9], [7]] +20221016.08.28.00=[[0], [20221016], [8], [28], [0]] +20221016.08.44.18=[[0], [20221016], [8], [44], [18]] +20221016.08.57.49=[[0], [20221016], [8], [57], [49]] +20221016.09.09.54=[[0], [20221016], [9], [9], [54]] +20221016.09.26.50=[[0], [20221016], [9], [26], [50]] +20221016.09.41.58=[[0], [20221016], [9], [41], [58]] +20221016.09.54.50=[[0], [20221016], [9], [54], [50]] +20221016.10.07.37=[[0], [20221016], [10], [7], [37]] +20221016.10.27.04=[[0], [20221016], [10], [27], [4]] +20221016.10.42.39=[[0], [20221016], [10], [42], [39]] +20221016.10.56.17=[[0], [20221016], [10], [56], [17]] +20221016.11.07.23=[[0], [20221016], [11], [7], [23]] +20221016.11.26.12=[[0], [20221016], [11], [26], [12]] +20221016.11.39.18=[[0], [20221016], [11], [39], [18]] +20221016.11.52.09=[[0], [20221016], [11], [52], [9]] +20221016.12.10.12=[[0], [20221016], [12], [10], [12]] +20221016.12.28.57=[[0], [20221016], [12], [28], [57]] +20221016.12.49.34=[[0], [20221016], [12], [49], [34]] +20221016.13.20.45=[[0], [20221016], [13], [20], [45]] +20221016.13.48.31=[[0], [20221016], [13], [48], [31]] +20221016.14.04.17=[[0], [20221016], [14], [4], [17]] +20221016.14.13.17=[[0], [20221016], [14], [13], [17]] +20221016.14.26.42=[[0], [20221016], [14], [26], [42]] +20221016.14.41.41=[[0], [20221016], [14], [41], [41]] +20221016.14.53.46=[[0], [20221016], [14], [53], [46]] +20221016.15.08.11=[[0], [20221016], [15], [8], [11]] +20221016.15.26.49=[[0], [20221016], [15], [26], [49]] +20221016.15.42.43=[[0], [20221016], [15], [42], [43]] +20221016.15.56.02=[[0], [20221016], [15], [56], [2]] +20221016.16.08.31=[[0], [20221016], [16], [8], [31]] +20221016.16.28.30=[[0], [20221016], [16], [28], [30]] +20221016.16.47.11=[[0], [20221016], [16], [47], [11]] +20221016.17.04.08=[[0], [20221016], [17], [4], [8]] +20221016.17.18.07=[[0], [20221016], [17], [18], [7]] +20221016.17.33.32=[[0], [20221016], [17], [33], [32]] +20221016.17.48.27=[[0], [20221016], [17], [48], [27]] +20221016.17.59.13=[[0], [20221016], [17], [59], [13]] +20221016.18.08.10=[[0], [20221016], [18], [8], [10]] +20221016.18.27.33=[[0], [20221016], [18], [27], [33]] +20221016.18.44.45=[[0], [20221016], [18], [44], [45]] +20221016.18.57.21=[[0], [20221016], [18], [57], [21]] +20221016.19.09.19=[[0], [20221016], [19], [9], [19]] +20221016.19.26.24=[[0], [20221016], [19], [26], [24]] +20221016.19.38.26=[[0], [20221016], [19], [38], [26]] +20221016.19.52.19=[[0], [20221016], [19], [52], [19]] +20221016.20.09.5=[[0], [20221016], [20], [9], [5]] +20221016.20.27.15=[[0], [20221016], [20], [27], [15]] +20221016.20.42.32=[[0], [20221016], [20], [42], [32]] +20221016.20.54.48=[[0], [20221016], [20], [54], [48]] +20221016.21.07.13=[[0], [20221016], [21], [7], [13]] +20221016.21.26.23=[[0], [20221016], [21], [26], [23]] +20221016.21.40.08=[[0], [20221016], [21], [40], [8]] +20221016.21.53.31=[[0], [20221016], [21], [53], [31]] +20221016.22.07.56=[[0], [20221016], [22], [7], [56]] +20221016.22.26.53=[[0], [20221016], [22], [26], [53]] +20221016.22.42.09=[[0], [20221016], [22], [42], [9]] +20221016.22.55.24=[[0], [20221016], [22], [55], [24]] +20221016.23.07.57=[[0], [20221016], [23], [7], [57]] +20221016.23.27.13=[[0], [20221016], [23], [27], [13]] +20221016.23.43.32=[[0], [20221016], [23], [43], [32]] +20221016.23.56.20=[[0], [20221016], [23], [56], [20]] +20221017.0=[[0], [20221017], [0]] +20221017.00.27.06=[[0], [20221017], [0], [27], [6]] +20221017.00.53.21=[[0], [20221017], [0], [53], [21]] +20221017.01.39.28=[[0], [20221017], [1], [39], [28]] +20221017.02.41.44=[[0], [20221017], [2], [41], [44]] +20221017.03.47.42=[[0], [20221017], [3], [47], [42]] +20221017.04.41.07=[[0], [20221017], [4], [41], [7]] +20221017.5.19.53=[[0], [20221017], [5], [19], [53]] +20221017.06.04.23=[[0], [20221017], [6], [4], [23]] +20221017.06.42.25=[[0], [20221017], [6], [42], [25]] +20221017.07.08.36=[[0], [20221017], [7], [8], [36]] +20221017.07.36.14=[[0], [20221017], [7], [36], [14]] +20221017.08.03.12=[[0], [20221017], [8], [3], [12]] +20221017.08.49.28=[[0], [20221017], [8], [49], [28]] +20221017.09.5.36=[[0], [20221017], [9], [5], [36]] +20221017.09.29.02=[[0], [20221017], [9], [29], [2]] +20221017.09.49.01=[[0], [20221017], [9], [49], [1]] +20221017.10.04.12=[[0], [20221017], [10], [4], [12]] +20221017.10.17.17=[[0], [20221017], [10], [17], [17]] +20221017.10.30.22=[[0], [20221017], [10], [30], [22]] +20221017.10.47.08=[[0], [20221017], [10], [47], [8]] +20221017.11.01.38=[[0], [20221017], [11], [1], [38]] +20221017.11.12.17=[[0], [20221017], [11], [12], [17]] +20221017.11.26.54=[[0], [20221017], [11], [26], [54]] +20221017.11.41.38=[[0], [20221017], [11], [41], [38]] +20221017.11.53.47=[[0], [20221017], [11], [53], [47]] +20221017.11.57.41=[[0], [20221017], [11], [57], [41]] +20221017.12.10.20=[[0], [20221017], [12], [10], [20]] +20221017.12.29.44=[[0], [20221017], [12], [29], [44]] +20221017.12.51.02=[[0], [20221017], [12], [51], [2]] +20221017.13.26.13=[[0], [20221017], [13], [26], [13]] +20221017.13.53.00=[[0], [20221017], [13], [53], [0]] +20221017.14.21.16=[[0], [20221017], [14], [21], [16]] +20221017.14.46.30=[[0], [20221017], [14], [46], [30]] +20221017.15.01.07=[[0], [20221017], [15], [1], [7]] +20221017.15.12.19=[[0], [20221017], [15], [12], [19]] +20221017.15.28.24=[[0], [20221017], [15], [28], [24]] +20221017.15.45.41=[[0], [20221017], [15], [45], [41]] +20221017.16.00.28=[[0], [20221017], [16], [0], [28]] +20221017.16.14.44=[[0], [20221017], [16], [14], [44]] +20221017.16.29.52=[[0], [20221017], [16], [29], [52]] +20221017.16.50.48=[[0], [20221017], [16], [50], [48]] +20221017.17.22.11=[[0], [20221017], [17], [22], [11]] +20221017.17.49.42=[[0], [20221017], [17], [49], [42]] +20221017.18.17.57=[[0], [20221017], [18], [17], [57]] +20221017.18.34.58=[[0], [20221017], [18], [34], [58]] +20221017.19.04.19=[[0], [20221017], [19], [4], [19]] +20221017.19.29.10=[[0], [20221017], [19], [29], [10]] +20221017.19.44.36=[[0], [20221017], [19], [44], [36]] +20221017.19.56.5=[[0], [20221017], [19], [56], [5]] +20221017.20.08.06=[[0], [20221017], [20], [8], [6]] +20221017.20.27.36=[[0], [20221017], [20], [27], [36]] +20221017.20.43.22=[[0], [20221017], [20], [43], [22]] +20221017.20.55.19=[[0], [20221017], [20], [55], [19]] +20221017.21.06.12=[[0], [20221017], [21], [6], [12]] +20221017.21.08.04=[[0], [20221017], [21], [8], [4]] +20221017.21.26.34=[[0], [20221017], [21], [26], [34]] +20221017.21.40.54=[[0], [20221017], [21], [40], [54]] +20221017.21.54.26=[[0], [20221017], [21], [54], [26]] +20221017.22.07.33=[[0], [20221017], [22], [7], [33]] +20221017.22.27.48=[[0], [20221017], [22], [27], [48]] +20221017.22.44.28=[[0], [20221017], [22], [44], [28]] +20221017.22.55.35=[[0], [20221017], [22], [55], [35]] +20221017.23.07.43=[[0], [20221017], [23], [7], [43]] +20221017.23.27.44=[[0], [20221017], [23], [27], [44]] +20221017.23.44.38=[[0], [20221017], [23], [44], [38]] +20221017.23.56.53=[[0], [20221017], [23], [56], [53]] +20221018=[[0], [20221018]] +20221018.0=[[0], [20221018], [0]] +20221018.00.28.46=[[0], [20221018], [0], [28], [46]] +20221018.00.52.55=[[0], [20221018], [0], [52], [55]] +20221018.01.38.32=[[0], [20221018], [1], [38], [32]] +20221018.02.42.17=[[0], [20221018], [2], [42], [17]] +20221018.03.43.32=[[0], [20221018], [3], [43], [32]] +20221018.04.32.37=[[0], [20221018], [4], [32], [37]] +20221018.5.13.34=[[0], [20221018], [5], [13], [34]] +20221018.5.50.39=[[0], [20221018], [5], [50], [39]] +20221018.06.32.12=[[0], [20221018], [6], [32], [12]] +20221018.06.55.10=[[0], [20221018], [6], [55], [10]] +20221018.07.21.13=[[0], [20221018], [7], [21], [13]] +20221018.07.49.02=[[0], [20221018], [7], [49], [2]] +20221018.08.03.37=[[0], [20221018], [8], [3], [37]] +20221018.08.16.02=[[0], [20221018], [8], [16], [2]] +20221018.08.32.5=[[0], [20221018], [8], [32], [5]] +20221018.08.51.22=[[0], [20221018], [8], [51], [22]] +20221018.09.13.39=[[0], [20221018], [9], [13], [39]] +20221018.09.28.11=[[0], [20221018], [9], [28], [11]] +20221018.09.45.43=[[0], [20221018], [9], [45], [43]] +20221018.09.59.25=[[0], [20221018], [9], [59], [25]] +20221018.10.10.07=[[0], [20221018], [10], [10], [7]] +20221018.10.27.36=[[0], [20221018], [10], [27], [36]] +20221018.10.46.22=[[0], [20221018], [10], [46], [22]] +20221018.10.59.47=[[0], [20221018], [10], [59], [47]] +20221018.11.09.29=[[0], [20221018], [11], [9], [29]] +20221018.11.26.51=[[0], [20221018], [11], [26], [51]] +20221018.11.40.25=[[0], [20221018], [11], [40], [25]] +20221018.11.53.19=[[0], [20221018], [11], [53], [19]] +20221018.12.10.49=[[0], [20221018], [12], [10], [49]] +20221018.12.29.22=[[0], [20221018], [12], [29], [22]] +20221018.12.50.27=[[0], [20221018], [12], [50], [27]] +20221018.13.25.53=[[0], [20221018], [13], [25], [53]] +20221018.13.52.11=[[0], [20221018], [13], [52], [11]] +20221018.14.21.04=[[0], [20221018], [14], [21], [4]] +20221018.15.09.07=[[0], [20221018], [15], [9], [7]] +20221018.15.28.5=[[0], [20221018], [15], [28], [5]] +20221018.15.46.27=[[0], [20221018], [15], [46], [27]] +20221018.16.00.10=[[0], [20221018], [16], [0], [10]] +20221018.16.13.25=[[0], [20221018], [16], [13], [25]] +20221018.16.29.33=[[0], [20221018], [16], [29], [33]] +20221018.16.40.36=[[0], [20221018], [16], [40], [36]] +20221018.16.49.23=[[0], [20221018], [16], [49], [23]] +20221018.17.20.00=[[0], [20221018], [17], [20], [0]] +20221018.17.48.57=[[0], [20221018], [17], [48], [57]] +20221018.18.04.56=[[0], [20221018], [18], [4], [56]] +20221018.18.29.11=[[0], [20221018], [18], [29], [11]] +20221018.18.49.20=[[0], [20221018], [18], [49], [20]] +20221018.19.06.03=[[0], [20221018], [19], [6], [3]] +20221018.19.28.02=[[0], [20221018], [19], [28], [2]] +20221018.19.41.47=[[0], [20221018], [19], [41], [47]] +20221018.19.53.43=[[0], [20221018], [19], [53], [43]] +20221018.2=[[0], [20221018], [2]] +20221018.20.08.36=[[0], [20221018], [20], [8], [36]] +20221018.20.28.07=[[0], [20221018], [20], [28], [7]] +20221018.20.43.39=[[0], [20221018], [20], [43], [39]] +20221018.20.56.07=[[0], [20221018], [20], [56], [7]] +20221018.21.08.07=[[0], [20221018], [21], [8], [7]] +20221018.21.27.15=[[0], [20221018], [21], [27], [15]] +20221018.21.41.39=[[0], [20221018], [21], [41], [39]] +20221018.21.54.10=[[0], [20221018], [21], [54], [10]] +20221018.22.07.42=[[0], [20221018], [22], [7], [42]] +20221018.22.42.48=[[0], [20221018], [22], [42], [48]] +20221018.22.55.15=[[0], [20221018], [22], [55], [15]] +20221018.23.08.28=[[0], [20221018], [23], [8], [28]] +20221018.23.27.50=[[0], [20221018], [23], [27], [50]] +20221018.23.44.58=[[0], [20221018], [23], [44], [58]] +20221018.23.57.21=[[0], [20221018], [23], [57], [21]] +20221019.00.52.40=[[0], [20221019], [0], [52], [40]] +20221019.01.36.55=[[0], [20221019], [1], [36], [55]] +20221019.02.42.24=[[0], [20221019], [2], [42], [24]] +20221019.03.43.20=[[0], [20221019], [3], [43], [20]] +20221019.04.33.25=[[0], [20221019], [4], [33], [25]] +20221019.5.14.36=[[0], [20221019], [5], [14], [36]] +20221019.5.51.07=[[0], [20221019], [5], [51], [7]] +20221019.06.34.26=[[0], [20221019], [6], [34], [26]] +20221019.07.11.34=[[0], [20221019], [7], [11], [34]] +20221019.07.34.38=[[0], [20221019], [7], [34], [38]] +20221019.08.02.27=[[0], [20221019], [8], [2], [27]] +20221019.08.17.27=[[0], [20221019], [8], [17], [27]] +20221019.08.34.23=[[0], [20221019], [8], [34], [23]] +20221019.08.53.55=[[0], [20221019], [8], [53], [55]] +20221019.09.14.04=[[0], [20221019], [9], [14], [4]] +20221019.09.29.47=[[0], [20221019], [9], [29], [47]] +20221019.09.45.57=[[0], [20221019], [9], [45], [57]] +20221019.09.59.40=[[0], [20221019], [9], [59], [40]] +20221019.10.12.28=[[0], [20221019], [10], [12], [28]] +20221019.10.28.31=[[0], [20221019], [10], [28], [31]] +20221019.10.46.34=[[0], [20221019], [10], [46], [34]] +20221019.10.59.59=[[0], [20221019], [10], [59], [59]] +20221019.11.04.28=[[0], [20221019], [11], [4], [28]] +20221019.2=[[0], [20221019], [2]] +20221020.0=[[0], [20221020], [0]] +20221020.17.09.04=[[0], [20221020], [17], [9], [4]] +20221021.09.06.10=[[0], [20221021], [9], [6], [10]] +20221021.20.04.37=[[0], [20221021], [20], [4], [37]] +20221022.17.33.44=[[0], [20221022], [17], [33], [44]] +20221022.18.04.19=[[0], [20221022], [18], [4], [19]] +20221023.0=[[0], [20221023], [0]] +20221023.11.37.23=[[0], [20221023], [11], [37], [23]] +20221025.0=[[0], [20221025], [0]] +20221025.10.08.06=[[0], [20221025], [10], [8], [6]] +20221026.11.29.52=[[0], [20221026], [11], [29], [52]] +20221026.15.33.22=[[0], [20221026], [15], [33], [22]] +20221027=[[0], [20221027]] +20221027.18.03.38=[[0], [20221027], [18], [3], [38]] +20221030.00.08.56=[[0], [20221030], [0], [8], [56]] +20221031.08.03.19=[[0], [20221031], [8], [3], [19]] +20221031.08.08.24=[[0], [20221031], [8], [8], [24]] +20221031.08.26.20=[[0], [20221031], [8], [26], [20]] +20221031.12.08.43=[[0], [20221031], [12], [8], [43]] +20221031.20.14.25=[[0], [20221031], [20], [14], [25]] +20221101=[[0], [20221101]] +20221101.10.11.00=[[0], [20221101], [10], [11], [0]] +20221101.20.40.11=[[0], [20221101], [20], [40], [11]] +20221102.08.37.53=[[0], [20221102], [8], [37], [53]] +20221102.12.22.14=[[0], [20221102], [12], [22], [14]] +20221102.17.17.55=[[0], [20221102], [17], [17], [55]] +20221103=[[0], [20221103]] +20221104=[[0], [20221104]] +20221104.12.22.08=[[0], [20221104], [12], [22], [8]] +20221104.2=[[0], [20221104], [2]] +20221105=[[0], [20221105]] +20221106=[[0], [20221106]] +20221106.00.09.13=[[0], [20221106], [0], [9], [13]] +20221107=[[0], [20221107]] +20221107.0=[[0], [20221107], [0]] +20221107.12.5.40=[[0], [20221107], [12], [5], [40]] +20221107.13.39.48=[[0], [20221107], [13], [39], [48]] +20221108=[[0], [20221108]] +20221108.20.03.35=[[0], [20221108], [20], [3], [35]] +20221108.20.07.56=[[0], [20221108], [20], [7], [56]] +20221108.20.27.37=[[0], [20221108], [20], [27], [37]] +20221109=[[0], [20221109]] +20221109.0=[[0], [20221109], [0]] +20221110=[[0], [20221110]] +20221111=[[0], [20221111]] +20221111.0=[[0], [20221111], [0]] +20221112=[[0], [20221112]] +20221113.00.09.28=[[0], [20221113], [0], [9], [28]] +20221114=[[0], [20221114]] +20221114.19.27.45=[[0], [20221114], [19], [27], [45]] +20221114.22.01.57=[[0], [20221114], [22], [1], [57]] +20221114.22.55.15=[[0], [20221114], [22], [55], [15]] +20221115=[[0], [20221115]] +20221115.0=[[0], [20221115], [0]] +20221115.10.17.43=[[0], [20221115], [10], [17], [43]] +20221115.12.07.17=[[0], [20221115], [12], [7], [17]] +20221118.13.54.01=[[0], [20221118], [13], [54], [1]] +20221118.13.54.40=[[0], [20221118], [13], [54], [40]] +20221118.16.49.21=[[0], [20221118], [16], [49], [21]] +20221122=[[0], [20221122]] +20221122.0=[[0], [20221122], [0]] +20221122.18.30.18=[[0], [20221122], [18], [30], [18]] +20221123.0=[[0], [20221123], [0]] +20221124.23.58.32=[[0], [20221124], [23], [58], [32]] +20221125.14.46.28=[[0], [20221125], [14], [46], [28]] +20221128.0=[[0], [20221128], [0]] +20221128.20.35.46=[[0], [20221128], [20], [35], [46]] +20221129.12.25.01=[[0], [20221129], [12], [25], [1]] +20221129.12.30.04=[[0], [20221129], [12], [30], [4]] +20221129.15.49.30=[[0], [20221129], [15], [49], [30]] +20221129.16.08.02=[[0], [20221129], [16], [8], [2]] +20221130.11.37.5=[[0], [20221130], [11], [37], [5]] +20221130.11.46.47=[[0], [20221130], [11], [46], [47]] +20221130.11.51.51=[[0], [20221130], [11], [51], [51]] +20221130.2=[[0], [20221130], [2]] +20221130.21.02.34=[[0], [20221130], [21], [2], [34]] +20221201.0=[[0], [20221201], [0]] +20221201.12.02.37=[[0], [20221201], [12], [2], [37]] +20221201.12.57.39=[[0], [20221201], [12], [57], [39]] +20221202.16.54.36=[[0], [20221202], [16], [54], [36]] +20221202.19.48.02=[[0], [20221202], [19], [48], [2]] +20221204.00.20.50=[[0], [20221204], [0], [20], [50]] +20221205.0=[[0], [20221205], [0]] +20221205.1=[[0], [20221205], [1]] +20221205.13.32.09=[[0], [20221205], [13], [32], [9]] +20221206.0=[[0], [20221206], [0]] +20221207.10.34.51=[[0], [20221207], [10], [34], [51]] +20221207.12.36.57=[[0], [20221207], [12], [36], [57]] +20221207.23.06.56=[[0], [20221207], [23], [6], [56]] +20221208.17.13.33=[[0], [20221208], [17], [13], [33]] +20221208.18.39.03=[[0], [20221208], [18], [39], [3]] +20221209.00.25.43=[[0], [20221209], [0], [25], [43]] +20221209.00.51.36=[[0], [20221209], [0], [51], [36]] +20221210.16.41.10=[[0], [20221210], [16], [41], [10]] +20221211.22.37.33=[[0], [20221211], [22], [37], [33]] +20221212.18.5.15=[[0], [20221212], [18], [5], [15]] +20221212.18.07.41=[[0], [20221212], [18], [7], [41]] +20221212.22.43.33=[[0], [20221212], [22], [43], [33]] +20221213.0=[[0], [20221213], [0]] +20221213.03.22.32=[[0], [20221213], [3], [22], [32]] +20221213.18.33.29=[[0], [20221213], [18], [33], [29]] +20221214.10.15.24=[[0], [20221214], [10], [15], [24]] +20221214.10.17.59=[[0], [20221214], [10], [17], [59]] +20221215.15.40.39=[[0], [20221215], [15], [40], [39]] +20221216.0=[[0], [20221216], [0]] +20221217.19.13.38=[[0], [20221217], [19], [13], [38]] +20221218.0=[[0], [20221218], [0]] +20221221.12.50.28=[[0], [20221221], [12], [50], [28]] +20221231.01.35.48=[[0], [20221231], [1], [35], [48]] +2022_4.30=[[0], [2022], [4], [30]] +2022a=[[0], [2022, 'a']] +2022b=[[0], [2022, 'b']] +2022c=[[0], [2022, 'c']] +2022d=[[0], [2022, 'd']] +2022e=[[0], [2022, 'e']] +2022f=[[0], [2022, 'f']] +2022g=[[0], [2022, 'g']] +2023.0=[[0], [2023], [0]] +2023.0.0=[[0], [2023], [0], [0]] +2023.0.0a1=[[0], [2023], [0], [0, 'a', 1]] +2023.0.1=[[0], [2023], [0], [1]] +2023.0.2=[[0], [2023], [0], [2]] +2023.01.01=[[0], [2023], [1], [1]] +2023.01.02.00=[[0], [2023], [1], [2], [0]] +2023.01.02.15.58.49=[[0], [2023], [1], [2], [15], [58], [49]] +2023.01.02.15.58.50=[[0], [2023], [1], [2], [15], [58], [50]] +2023.01.02.22.00.51=[[0], [2023], [1], [2], [22], [0], [51]] +2023.01.03.13.13.01=[[0], [2023], [1], [3], [13], [13], [1]] +2023.01.04=[[0], [2023], [1], [4]] +2023.01.04.12.23.09=[[0], [2023], [1], [4], [12], [23], [9]] +2023.01.04.12.54.07=[[0], [2023], [1], [4], [12], [54], [7]] +2023.01.04.13.03.46=[[0], [2023], [1], [4], [13], [3], [46]] +2023.01.07.12.45.19=[[0], [2023], [1], [7], [12], [45], [19]] +2023.01.09=[[0], [2023], [1], [9]] +2023.01.1=[[0], [2023], [1], [1]] +2023.01.11=[[0], [2023], [1], [11]] +2023.01.12.02.23.43=[[0], [2023], [1], [12], [2], [23], [43]] +2023.01.12.02.48.16=[[0], [2023], [1], [12], [2], [48], [16]] +2023.01.12.03.06.02=[[0], [2023], [1], [12], [3], [6], [2]] +2023.01.12.11.18.58=[[0], [2023], [1], [12], [11], [18], [58]] +2023.01.12.13.22.45=[[0], [2023], [1], [12], [13], [22], [45]] +2023.01.12.13.25.31=[[0], [2023], [1], [12], [13], [25], [31]] +2023.01.1202=[[0], [2023], [1], [1202]] +2023.01.13=[[0], [2023], [1], [13]] +2023.01.13.20.5.16=[[0], [2023], [1], [13], [20], [5], [16]] +2023.01.13.20.5.23=[[0], [2023], [1], [13], [20], [5], [23]] +2023.01.13.20.5.48=[[0], [2023], [1], [13], [20], [5], [48]] +2023.01.13.20.08.24=[[0], [2023], [1], [13], [20], [8], [24]] +2023.01.14.14.08.20=[[0], [2023], [1], [14], [14], [8], [20]] +2023.01.14.17.24.24=[[0], [2023], [1], [14], [17], [24], [24]] +2023.01.14.23.54.30=[[0], [2023], [1], [14], [23], [54], [30]] +2023.01.15.02.58.09=[[0], [2023], [1], [15], [2], [58], [9]] +2023.01.15.15.00.49=[[0], [2023], [1], [15], [15], [0], [49]] +2023.01.15.15.56.23=[[0], [2023], [1], [15], [15], [56], [23]] +2023.01.15.15.59.52=[[0], [2023], [1], [15], [15], [59], [52]] +2023.01.15.16.23.03=[[0], [2023], [1], [15], [16], [23], [3]] +2023.01.15.17.04.45=[[0], [2023], [1], [15], [17], [4], [45]] +2023.01.16.00=[[0], [2023], [1], [16], [0]] +2023.01.16.02.45.13=[[0], [2023], [1], [16], [2], [45], [13]] +2023.01.16.09.03.45=[[0], [2023], [1], [16], [9], [3], [45]] +2023.01.16.10.03.29=[[0], [2023], [1], [16], [10], [3], [29]] +2023.01.16.18.52.45=[[0], [2023], [1], [16], [18], [52], [45]] +2023.01.16.20.28.38=[[0], [2023], [1], [16], [20], [28], [38]] +2023.01.17=[[0], [2023], [1], [17]] +2023.01.17.12.20.49=[[0], [2023], [1], [17], [12], [20], [49]] +2023.01.17.14.17.22=[[0], [2023], [1], [17], [14], [17], [22]] +2023.01.18.12.01.58=[[0], [2023], [1], [18], [12], [1], [58]] +2023.01.18.19.16.13=[[0], [2023], [1], [18], [19], [16], [13]] +2023.01.20.5.27.27=[[0], [2023], [1], [20], [5], [27], [27]] +2023.01.22.14.31.33=[[0], [2023], [1], [22], [14], [31], [33]] +2023.01.22.14.39.28=[[0], [2023], [1], [22], [14], [39], [28]] +2023.01.22.23.15.20=[[0], [2023], [1], [22], [23], [15], [20]] +2023.01.23.00=[[0], [2023], [1], [23], [0]] +2023.01.23.01.26.33=[[0], [2023], [1], [23], [1], [26], [33]] +2023.01.23.20.28.41=[[0], [2023], [1], [23], [20], [28], [41]] +2023.01.24=[[0], [2023], [1], [24]] +2023.01.24.14.49.06=[[0], [2023], [1], [24], [14], [49], [6]] +2023.01.25=[[0], [2023], [1], [25]] +2023.01.25.04.58.41=[[0], [2023], [1], [25], [4], [58], [41]] +2023.01.25.09.04.33=[[0], [2023], [1], [25], [9], [4], [33]] +2023.01.25.09.30.06=[[0], [2023], [1], [25], [9], [30], [6]] +2023.01.25.21.47.14=[[0], [2023], [1], [25], [21], [47], [14]] +2023.01.26.00.00.57=[[0], [2023], [1], [26], [0], [0], [57]] +2023.01.26.03.13.59=[[0], [2023], [1], [26], [3], [13], [59]] +2023.01.26.09.04.24=[[0], [2023], [1], [26], [9], [4], [24]] +2023.01.26.09.23.31=[[0], [2023], [1], [26], [9], [23], [31]] +2023.01.26.12.13.20=[[0], [2023], [1], [26], [12], [13], [20]] +2023.01.26.12.34.18=[[0], [2023], [1], [26], [12], [34], [18]] +2023.01.26.16.59.55=[[0], [2023], [1], [26], [16], [59], [55]] +2023.01.27=[[0], [2023], [1], [27]] +2023.01.27.16.18.18=[[0], [2023], [1], [27], [16], [18], [18]] +2023.01.27.20.38.35=[[0], [2023], [1], [27], [20], [38], [35]] +2023.01.28=[[0], [2023], [1], [28]] +2023.01.28.02.34.29=[[0], [2023], [1], [28], [2], [34], [29]] +2023.01.28.03.27.41=[[0], [2023], [1], [28], [3], [27], [41]] +2023.01.28.16.04.00=[[0], [2023], [1], [28], [16], [4], [0]] +2023.01.28.17.33.52=[[0], [2023], [1], [28], [17], [33], [52]] +2023.01.29.18.28.15=[[0], [2023], [1], [29], [18], [28], [15]] +2023.01.29.23.43.37=[[0], [2023], [1], [29], [23], [43], [37]] +2023.01.30=[[0], [2023], [1], [30]] +2023.01.30.00=[[0], [2023], [1], [30], [0]] +2023.01.30.13.41.09=[[0], [2023], [1], [30], [13], [41], [9]] +2023.01.31.03.10.11=[[0], [2023], [1], [31], [3], [10], [11]] +2023.02=[[0], [2023], [2]] +2023.02.0=[[0], [2023], [2], [0]] +2023.02.01=[[0], [2023], [2], [1]] +2023.02.01.15.56.57=[[0], [2023], [2], [1], [15], [56], [57]] +2023.02.01.16.07.08=[[0], [2023], [2], [1], [16], [7], [8]] +2023.02.01.17.44.36=[[0], [2023], [2], [1], [17], [44], [36]] +2023.02.01.17.44.57=[[0], [2023], [2], [1], [17], [44], [57]] +2023.02.01.19.46.10=[[0], [2023], [2], [1], [19], [46], [10]] +2023.02.01.20.20.08=[[0], [2023], [2], [1], [20], [20], [8]] +2023.02.01.20.25.27=[[0], [2023], [2], [1], [20], [25], [27]] +2023.02.01.21.25.17=[[0], [2023], [2], [1], [21], [25], [17]] +2023.02.01.21.26.02=[[0], [2023], [2], [1], [21], [26], [2]] +2023.02.02=[[0], [2023], [2], [2]] +2023.02.02.06.21.42=[[0], [2023], [2], [2], [6], [21], [42]] +2023.02.02.06.30.53=[[0], [2023], [2], [2], [6], [30], [53]] +2023.02.02.07.34.49=[[0], [2023], [2], [2], [7], [34], [49]] +2023.02.02.08.33.21=[[0], [2023], [2], [2], [8], [33], [21]] +2023.02.02.08.33.36=[[0], [2023], [2], [2], [8], [33], [36]] +2023.02.02.08.49.57=[[0], [2023], [2], [2], [8], [49], [57]] +2023.02.02.08.57.52=[[0], [2023], [2], [2], [8], [57], [52]] +2023.02.02.09.24.31=[[0], [2023], [2], [2], [9], [24], [31]] +2023.02.02.09.25.07=[[0], [2023], [2], [2], [9], [25], [7]] +2023.02.02.10.20.52=[[0], [2023], [2], [2], [10], [20], [52]] +2023.02.02.10.21.23=[[0], [2023], [2], [2], [10], [21], [23]] +2023.02.02.14.06.17=[[0], [2023], [2], [2], [14], [6], [17]] +2023.02.02.17.24.02=[[0], [2023], [2], [2], [17], [24], [2]] +2023.02.02.19.14.40=[[0], [2023], [2], [2], [19], [14], [40]] +2023.02.03.15.35.07=[[0], [2023], [2], [3], [15], [35], [7]] +2023.02.03.15.35.28=[[0], [2023], [2], [3], [15], [35], [28]] +2023.02.03.20.59.28=[[0], [2023], [2], [3], [20], [59], [28]] +2023.02.03.21.00.5=[[0], [2023], [2], [3], [21], [0], [5]] +2023.02.03.23.27.09=[[0], [2023], [2], [3], [23], [27], [9]] +2023.02.04.03.16.13=[[0], [2023], [2], [4], [3], [16], [13]] +2023.02.04.12.26.59=[[0], [2023], [2], [4], [12], [26], [59]] +2023.02.5.22.35.38=[[0], [2023], [2], [5], [22], [35], [38]] +2023.02.06=[[0], [2023], [2], [6]] +2023.02.06.00=[[0], [2023], [2], [6], [0]] +2023.02.06.13.29.07=[[0], [2023], [2], [6], [13], [29], [7]] +2023.02.06.13.55.07=[[0], [2023], [2], [6], [13], [55], [7]] +2023.02.07.10.12.15=[[0], [2023], [2], [7], [10], [12], [15]] +2023.02.07.10.17.00=[[0], [2023], [2], [7], [10], [17], [0]] +2023.02.07.10.20.08=[[0], [2023], [2], [7], [10], [20], [8]] +2023.02.07.10.21.38=[[0], [2023], [2], [7], [10], [21], [38]] +2023.02.07.16.29.18=[[0], [2023], [2], [7], [16], [29], [18]] +2023.02.07.17.16.20=[[0], [2023], [2], [7], [17], [16], [20]] +2023.02.07.17.29.45=[[0], [2023], [2], [7], [17], [29], [45]] +2023.02.07.21.02.21=[[0], [2023], [2], [7], [21], [2], [21]] +2023.02.07.21.54.18=[[0], [2023], [2], [7], [21], [54], [18]] +2023.02.08=[[0], [2023], [2], [8]] +2023.02.08.00.26.03=[[0], [2023], [2], [8], [0], [26], [3]] +2023.02.08.16.11.02=[[0], [2023], [2], [8], [16], [11], [2]] +2023.02.08.17.58.10=[[0], [2023], [2], [8], [17], [58], [10]] +2023.02.08.20.12.13=[[0], [2023], [2], [8], [20], [12], [13]] +2023.02.09.13.31.53=[[0], [2023], [2], [9], [13], [31], [53]] +2023.02.09.17.40.48=[[0], [2023], [2], [9], [17], [40], [48]] +2023.02.1=[[0], [2023], [2], [1]] +2023.02.10=[[0], [2023], [2], [10]] +2023.02.10.21.46.00=[[0], [2023], [2], [10], [21], [46], [0]] +2023.02.11=[[0], [2023], [2], [11]] +2023.02.11.23.25.27=[[0], [2023], [2], [11], [23], [25], [27]] +2023.02.12.08.25.45=[[0], [2023], [2], [12], [8], [25], [45]] +2023.02.12.11.51.20=[[0], [2023], [2], [12], [11], [51], [20]] +2023.02.13.00=[[0], [2023], [2], [13], [0]] +2023.02.13.04.13.59=[[0], [2023], [2], [13], [4], [13], [59]] +2023.02.13.12.45.21=[[0], [2023], [2], [13], [12], [45], [21]] +2023.02.13.17.41.30=[[0], [2023], [2], [13], [17], [41], [30]] +2023.02.14.01.17.40=[[0], [2023], [2], [14], [1], [17], [40]] +2023.02.14.04.57.01=[[0], [2023], [2], [14], [4], [57], [1]] +2023.02.14.17.15.36=[[0], [2023], [2], [14], [17], [15], [36]] +2023.02.14.20.03.14=[[0], [2023], [2], [14], [20], [3], [14]] +2023.02.14.20.33.56=[[0], [2023], [2], [14], [20], [33], [56]] +2023.02.15=[[0], [2023], [2], [15]] +2023.02.15.5.17.45=[[0], [2023], [2], [15], [5], [17], [45]] +2023.02.15.19.55.44=[[0], [2023], [2], [15], [19], [55], [44]] +2023.02.15.19.59.39=[[0], [2023], [2], [15], [19], [59], [39]] +2023.02.16=[[0], [2023], [2], [16]] +2023.02.16.11.03.50=[[0], [2023], [2], [16], [11], [3], [50]] +2023.02.16.11.04.46=[[0], [2023], [2], [16], [11], [4], [46]] +2023.02.16.16.03.52=[[0], [2023], [2], [16], [16], [3], [52]] +2023.02.16.16.37.04=[[0], [2023], [2], [16], [16], [37], [4]] +2023.02.16.17.12.18=[[0], [2023], [2], [16], [17], [12], [18]] +2023.02.16.23.42.32=[[0], [2023], [2], [16], [23], [42], [32]] +2023.02.17=[[0], [2023], [2], [17]] +2023.02.17.13.34.26=[[0], [2023], [2], [17], [13], [34], [26]] +2023.02.17.18.17.27=[[0], [2023], [2], [17], [18], [17], [27]] +2023.02.18.11.03.35=[[0], [2023], [2], [18], [11], [3], [35]] +2023.02.19.10.16.26=[[0], [2023], [2], [19], [10], [16], [26]] +2023.02.19.10.17.35=[[0], [2023], [2], [19], [10], [17], [35]] +2023.02.19.20.30.33=[[0], [2023], [2], [19], [20], [30], [33]] +2023.02.20.00=[[0], [2023], [2], [20], [0]] +2023.02.20.15.57.59=[[0], [2023], [2], [20], [15], [57], [59]] +2023.02.20.16.09.03=[[0], [2023], [2], [20], [16], [9], [3]] +2023.02.22.13.06.18=[[0], [2023], [2], [22], [13], [6], [18]] +2023.02.22.13.44.02=[[0], [2023], [2], [22], [13], [44], [2]] +2023.02.22.13.48.04=[[0], [2023], [2], [22], [13], [48], [4]] +2023.02.22.17.01.31=[[0], [2023], [2], [22], [17], [1], [31]] +2023.02.22.21.5.40=[[0], [2023], [2], [22], [21], [5], [40]] +2023.02.22.21.06.20=[[0], [2023], [2], [22], [21], [6], [20]] +2023.02.22.21.07.53=[[0], [2023], [2], [22], [21], [7], [53]] +2023.02.22.21.13.16=[[0], [2023], [2], [22], [21], [13], [16]] +2023.02.22.21.13.28=[[0], [2023], [2], [22], [21], [13], [28]] +2023.02.23.00.38.09=[[0], [2023], [2], [23], [0], [38], [9]] +2023.02.23.04.43.58=[[0], [2023], [2], [23], [4], [43], [58]] +2023.02.23.10.32.16=[[0], [2023], [2], [23], [10], [32], [16]] +2023.02.23.15.29.15=[[0], [2023], [2], [23], [15], [29], [15]] +2023.02.23.20.23.31=[[0], [2023], [2], [23], [20], [23], [31]] +2023.02.24=[[0], [2023], [2], [24]] +2023.02.24.11.03.39=[[0], [2023], [2], [24], [11], [3], [39]] +2023.02.24.11.04.5=[[0], [2023], [2], [24], [11], [4], [5]] +2023.02.24.22.31.19=[[0], [2023], [2], [24], [22], [31], [19]] +2023.02.25.20.27.20=[[0], [2023], [2], [25], [20], [27], [20]] +2023.02.26=[[0], [2023], [2], [26]] +2023.02.27=[[0], [2023], [2], [27]] +2023.02.27.00=[[0], [2023], [2], [27], [0]] +2023.02.27.06.53.56=[[0], [2023], [2], [27], [6], [53], [56]] +2023.02.28.00.25.39=[[0], [2023], [2], [28], [0], [25], [39]] +2023.03.0=[[0], [2023], [3], [0]] +2023.03.01=[[0], [2023], [3], [1]] +2023.03.02=[[0], [2023], [3], [2]] +2023.03.02.03.20.38=[[0], [2023], [3], [2], [3], [20], [38]] +2023.03.02.10.11.47=[[0], [2023], [3], [2], [10], [11], [47]] +2023.03.02.10.25.20=[[0], [2023], [3], [2], [10], [25], [20]] +2023.03.02.17.17.57=[[0], [2023], [3], [2], [17], [17], [57]] +2023.03.02.19.21.59=[[0], [2023], [3], [2], [19], [21], [59]] +2023.03.03.08.17.39=[[0], [2023], [3], [3], [8], [17], [39]] +2023.03.03.08.17.52=[[0], [2023], [3], [3], [8], [17], [52]] +2023.03.03.08.25.28=[[0], [2023], [3], [3], [8], [25], [28]] +2023.03.03.08.25.34=[[0], [2023], [3], [3], [8], [25], [34]] +2023.03.03.08.25.57=[[0], [2023], [3], [3], [8], [25], [57]] +2023.03.03.08.26.07=[[0], [2023], [3], [3], [8], [26], [7]] +2023.03.03.08.26.13=[[0], [2023], [3], [3], [8], [26], [13]] +2023.03.03.08.26.22=[[0], [2023], [3], [3], [8], [26], [22]] +2023.03.03.08.27.01=[[0], [2023], [3], [3], [8], [27], [1]] +2023.03.03.08.27.23=[[0], [2023], [3], [3], [8], [27], [23]] +2023.03.03.08.27.24=[[0], [2023], [3], [3], [8], [27], [24]] +2023.03.03.08.27.46=[[0], [2023], [3], [3], [8], [27], [46]] +2023.03.03.14.22.24=[[0], [2023], [3], [3], [14], [22], [24]] +2023.03.03.14.47.34=[[0], [2023], [3], [3], [14], [47], [34]] +2023.03.03.18.50.53=[[0], [2023], [3], [3], [18], [50], [53]] +2023.03.04=[[0], [2023], [3], [4]] +2023.03.04.06.15.04=[[0], [2023], [3], [4], [6], [15], [4]] +2023.03.04.06.15.24=[[0], [2023], [3], [4], [6], [15], [24]] +2023.03.04.06.16.04=[[0], [2023], [3], [4], [6], [16], [4]] +2023.03.04.06.16.51=[[0], [2023], [3], [4], [6], [16], [51]] +2023.03.04.15.25.23=[[0], [2023], [3], [4], [15], [25], [23]] +2023.03.06.00=[[0], [2023], [3], [6], [0]] +2023.03.1=[[0], [2023], [3], [1]] +2023.03.13=[[0], [2023], [3], [13]] +2023.03.13.00=[[0], [2023], [3], [13], [0]] +2023.03.14=[[0], [2023], [3], [14]] +2023.03.20=[[0], [2023], [3], [20]] +2023.03.20.00=[[0], [2023], [3], [20], [0]] +2023.03.22=[[0], [2023], [3], [22]] +2023.03.26=[[0], [2023], [3], [26]] +2023.03.27.00=[[0], [2023], [3], [27], [0]] +2023.03.28=[[0], [2023], [3], [28]] +2023.03.31=[[0], [2023], [3], [31]] +2023.04.03.00=[[0], [2023], [4], [3], [0]] +2023.04.09=[[0], [2023], [4], [9]] +2023.04.10.00=[[0], [2023], [4], [10], [0]] +2023.04.11=[[0], [2023], [4], [11]] +2023.04.12=[[0], [2023], [4], [12]] +2023.04.15=[[0], [2023], [4], [15]] +2023.04.16=[[0], [2023], [4], [16]] +2023.04.17=[[0], [2023], [4], [17]] +2023.04.18=[[0], [2023], [4], [18]] +2023.04.23=[[0], [2023], [4], [23]] +2023.04.27=[[0], [2023], [4], [27]] +2023.04.30=[[0], [2023], [4], [30]] +2023.5.07=[[0], [2023], [5], [7]] +2023.5.08=[[0], [2023], [5], [8]] +2023.5.22.00=[[0], [2023], [5], [22], [0]] +2023.5.31=[[0], [2023], [5], [31]] +2023.06.08.00=[[0], [2023], [6], [8], [0]] +2023.06.12.00=[[0], [2023], [6], [12], [0]] +2023.1=[[0], [2023], [1]] +2023.1.0=[[0], [2023], [1], [0]] +2023.1.1=[[0], [2023], [1], [1]] +2023.1.12=[[0], [2023], [1], [12]] +2023.1.13=[[0], [2023], [1], [13]] +2023.1.2=[[0], [2023], [1], [2]] +2023.1.20=[[0], [2023], [1], [20]] +2023.1.23=[[0], [2023], [1], [23]] +2023.1.23.0=[[0], [2023], [1], [23], [0]] +2023.1.23.1=[[0], [2023], [1], [23], [1]] +2023.1.26=[[0], [2023], [1], [26]] +2023.1.27=[[0], [2023], [1], [27]] +2023.1.30=[[0], [2023], [1], [30]] +2023.1.4=[[0], [2023], [1], [4]] +2023.1.6=[[0], [2023], [1], [6]] +2023.1.7=[[0], [2023], [1], [7]] +2023.1.8=[[0], [2023], [1], [8]] +2023.1.9=[[0], [2023], [1], [9]] +2023.2=[[0], [2023], [2]] +2023.2.0=[[0], [2023], [2], [0]] +2023.2.1=[[0], [2023], [2], [1]] +2023.2.12=[[0], [2023], [2], [12]] +2023.2.13=[[0], [2023], [2], [13]] +2023.2.15=[[0], [2023], [2], [15]] +2023.2.16=[[0], [2023], [2], [16]] +2023.2.17=[[0], [2023], [2], [17]] +2023.2.18=[[0], [2023], [2], [18]] +2023.2.19=[[0], [2023], [2], [19]] +2023.2.2=[[0], [2023], [2], [2]] +2023.2.20=[[0], [2023], [2], [20]] +2023.2.22=[[0], [2023], [2], [22]] +2023.2.23=[[0], [2023], [2], [23]] +2023.2.27=[[0], [2023], [2], [27]] +2023.2.28=[[0], [2023], [2], [28]] +2023.2.3=[[0], [2023], [2], [3]] +2023.2.4=[[0], [2023], [2], [4]] +2023.2.6=[[0], [2023], [2], [6]] +2023.2.7=[[0], [2023], [2], [7]] +2023.2.8=[[0], [2023], [2], [8]] +2023.3=[[0], [2023], [3]] +2023.3.0=[[0], [2023], [3], [0]] +2023.3.1=[[0], [2023], [3], [1]] +2023.3.10=[[0], [2023], [3], [10]] +2023.3.22=[[0], [2023], [3], [22]] +2023.3.23=[[0], [2023], [3], [23]] +2023.3.3=[[0], [2023], [3], [3]] +2023.4=[[0], [2023], [4]] +2023.4.0=[[0], [2023], [4], [0]] +2023.4.1=[[0], [2023], [4], [1]] +2023.4.13=[[0], [2023], [4], [13]] +2023.4.2=[[0], [2023], [4], [2]] +2023.4.22=[[0], [2023], [4], [22]] +2023.4.3=[[0], [2023], [4], [3]] +2023.5=[[0], [2023], [5]] +2023.5.0=[[0], [2023], [5], [0]] +2023.5.10=[[0], [2023], [5], [10]] +2023.5.4=[[0], [2023], [5], [4]] +2023.5.5=[[0], [2023], [5], [5]] +2023.5.7=[[0], [2023], [5], [7]] +2023.6.0=[[0], [2023], [6], [0]] +2023.6.3=[[0], [2023], [6], [3]] +20230000.0=[[0], [20230000], [0]] +20230103.0=[[0], [20230103], [0]] +20230104.0=[[0], [20230104], [0]] +20230104.20.22.07=[[0], [20230104], [20], [22], [7]] +20230105=[[0], [20230105]] +20230105.11.22.24=[[0], [20230105], [11], [22], [24]] +20230107.0=[[0], [20230107], [0]] +20230107.00.58.43=[[0], [20230107], [0], [58], [43]] +20230110.0=[[0], [20230110], [0]] +20230110.02.32.08=[[0], [20230110], [2], [32], [8]] +20230111.01.21.32=[[0], [20230111], [1], [21], [32]] +20230111.01.47.5=[[0], [20230111], [1], [47], [5]] +20230112.11.17.31=[[0], [20230112], [11], [17], [31]] +20230112.14.36.41=[[0], [20230112], [14], [36], [41]] +20230112.14.58.24=[[0], [20230112], [14], [58], [24]] +20230114.00.43.58=[[0], [20230114], [0], [43], [58]] +20230115=[[0], [20230115]] +20230115.23.09.51=[[0], [20230115], [23], [9], [51]] +20230117.18.11.44=[[0], [20230117], [18], [11], [44]] +20230119.17.34.49=[[0], [20230119], [17], [34], [49]] +20230122=[[0], [20230122]] +20230122.00.08.30=[[0], [20230122], [0], [8], [30]] +20230123.14.50.44=[[0], [20230123], [14], [50], [44]] +20230123.20.35.32=[[0], [20230123], [20], [35], [32]] +20230124.0=[[0], [20230124], [0]] +20230125.0=[[0], [20230125], [0]] +20230125.09.11.37=[[0], [20230125], [9], [11], [37]] +20230125.14.04.35=[[0], [20230125], [14], [4], [35]] +20230125.18.20.15=[[0], [20230125], [18], [20], [15]] +20230125.2=[[0], [20230125], [2]] +20230126.14.36.19=[[0], [20230126], [14], [36], [19]] +20230127.19.28.03=[[0], [20230127], [19], [28], [3]] +20230131.0=[[0], [20230131], [0]] +20230131.21.02.59=[[0], [20230131], [21], [2], [59]] +20230131.21.18.28=[[0], [20230131], [21], [18], [28]] +20230131.22.17.46=[[0], [20230131], [22], [17], [46]] +20230202=[[0], [20230202]] +20230203.03.49.03=[[0], [20230203], [3], [49], [3]] +20230203.04.20.22=[[0], [20230203], [4], [20], [22]] +20230204.13.44.51=[[0], [20230204], [13], [44], [51]] +20230205.0=[[0], [20230205], [0]] +20230207.0=[[0], [20230207], [0]] +20230207.02.57.09=[[0], [20230207], [2], [57], [9]] +20230209.0=[[0], [20230209], [0]] +20230209.1=[[0], [20230209], [1]] +20230210.19.32.53=[[0], [20230210], [19], [32], [53]] +20230210.19.34.47=[[0], [20230210], [19], [34], [47]] +20230211.15.5.31=[[0], [20230211], [15], [5], [31]] +20230214.0=[[0], [20230214], [0]] +20230214.13.59.03=[[0], [20230214], [13], [59], [3]] +20230214.16.5.46=[[0], [20230214], [16], [5], [46]] +20230214.23.55.53=[[0], [20230214], [23], [55], [53]] +20230219.18.53.59=[[0], [20230219], [18], [53], [59]] +20230221.0=[[0], [20230221], [0]] +20230221.21.30.25=[[0], [20230221], [21], [30], [25]] +20230222.13.51.41=[[0], [20230222], [13], [51], [41]] +20230223.14.46.04=[[0], [20230223], [14], [46], [4]] +20230225.21.08.29=[[0], [20230225], [21], [8], [29]] +20230227.11.55.15=[[0], [20230227], [11], [55], [15]] +20230227.20.19.56=[[0], [20230227], [20], [19], [56]] +20230301.0=[[0], [20230301], [0]] +20230302.0=[[0], [20230302], [0]] +20230302.17.23.45=[[0], [20230302], [17], [23], [45]] +20230303.0=[[0], [20230303], [0]] +20230304.0=[[0], [20230304], [0]] +20230306.0=[[0], [20230306], [0]] +20230307.0=[[0], [20230307], [0]] +20230311.0=[[0], [20230311], [0]] +20230313=[[0], [20230313]] +20230314.0=[[0], [20230314], [0]] +20230315.0=[[0], [20230315], [0]] +20230317.0=[[0], [20230317], [0]] +20230319.1=[[0], [20230319], [1]] +20230322=[[0], [20230322]] +20230329.0=[[0], [20230329], [0]] +20230404.0=[[0], [20230404], [0]] +20230410.0=[[0], [20230410], [0]] +20230411.0=[[0], [20230411], [0]] +20230414.0=[[0], [20230414], [0]] +20230414.1=[[0], [20230414], [1]] +20230415.0=[[0], [20230415], [0]] +20230417.0=[[0], [20230417], [0]] +20230418.1=[[0], [20230418], [1]] +20230422.0=[[0], [20230422], [0]] +20230424=[[0], [20230424]] +20230425.0=[[0], [20230425], [0]] +20230428.0=[[0], [20230428], [0]] +20230430.0=[[0], [20230430], [0]] +20230502.0=[[0], [20230502], [0]] +20230516.0=[[0], [20230516], [0]] +2023a=[[0], [2023, 'a']] +2023b=[[0], [2023, 'b']] +2023c=[[0], [2023, 'c']] +203=[[0], [203]] +204=[[0], [204]] +205=[[0], [205]] +205.0.0=[[0], [205], [0], [0]] +206=[[0], [206]] +206.0.0=[[0], [206], [0], [0]] +207=[[0], [207]] +207.0.0=[[0], [207], [0], [0]] +208=[[0], [208]] +208.0.0=[[0], [208], [0], [0]] +208.0.1=[[0], [208], [0], [1]] +208.0.2=[[0], [208], [0], [2]] +209=[[0], [209]] +209.0.0=[[0], [209], [0], [0]] +21.0=[[0], [21], [0]] +21.0.0=[[0], [21], [0], [0]] +21.0.1=[[0], [21], [0], [1]] +21.0.2=[[0], [21], [0], [2]] +21.0.3=[[0], [21], [0], [3]] +21.01=[[0], [21], [1]] +21.01.0=[[0], [21], [1], [0]] +21.02=[[0], [21], [2]] +21.02.0=[[0], [21], [2], [0]] +21.03=[[0], [21], [3]] +21.03.0=[[0], [21], [3], [0]] +21.03.12=[[0], [21], [3], [12]] +21.03.16=[[0], [21], [3], [16]] +21.04=[[0], [21], [4]] +21.04.0=[[0], [21], [4], [0]] +21.5=[[0], [21], [5]] +21.06=[[0], [21], [6]] +21.06.00=[[0], [21], [6], [0]] +21.07=[[0], [21], [7]] +21.08=[[0], [21], [8]] +21.08.0=[[0], [21], [8], [0]] +21.08.00=[[0], [21], [8], [0]] +21.08.01=[[0], [21], [8], [1]] +21.08.02=[[0], [21], [8], [2]] +21.09=[[0], [21], [9]] +21.09.0=[[0], [21], [9], [0]] +21.1=[[0], [21], [1]] +21.1.0=[[0], [21], [1], [0]] +21.1.0.0.0=[[0], [21], [1], [0], [0], [0]] +21.1.1=[[0], [21], [1], [1]] +21.1.13.1=[[0], [21], [1], [13], [1]] +21.1.2=[[0], [21], [1], [2]] +21.1.3=[[0], [21], [1], [3]] +21.1.7=[[0], [21], [1], [7]] +21.10=[[0], [21], [10]] +21.10.0=[[0], [21], [10], [0]] +21.10.00=[[0], [21], [10], [0]] +21.10.01=[[0], [21], [10], [1]] +21.10.1=[[0], [21], [10], [1]] +21.10.31=[[0], [21], [10], [31]] +21.10.6=[[0], [21], [10], [6]] +21.10b0=[[0], [21], [10, 'b', 0]] +21.11=[[0], [21], [11]] +21.11.0=[[0], [21], [11], [0]] +21.11.1=[[0], [21], [11], [1]] +21.11.13=[[0], [21], [11], [13]] +21.11.28=[[0], [21], [11], [28]] +21.11.29=[[0], [21], [11], [29]] +21.11b0=[[0], [21], [11, 'b', 0]] +21.11b1=[[0], [21], [11, 'b', 1]] +21.12=[[0], [21], [12]] +21.12.0=[[0], [21], [12], [0]] +21.12.00=[[0], [21], [12], [0]] +21.12.1=[[0], [21], [12], [1]] +21.12.19358=[[0], [21], [12], [19358]] +21.12b0=[[0], [21], [12, 'b', 0]] +21.13.19438=[[0], [21], [13], [19438]] +21.15.19533=[[0], [21], [15], [19533]] +21.16.19610=[[0], [21], [16], [19610]] +21.17.19709=[[0], [21], [17], [19709]] +21.18.19737=[[0], [21], [18], [19737]] +21.19.19792=[[0], [21], [19], [19792]] +21.2=[[0], [21], [2]] +21.2.0=[[0], [21], [2], [0]] +21.2.1=[[0], [21], [2], [1]] +21.2.2=[[0], [21], [2], [2]] +21.2.3=[[0], [21], [2], [3]] +21.2.4=[[0], [21], [2], [4]] +21.2.5=[[0], [21], [2], [5]] +21.20.19883=[[0], [21], [20], [19883]] +21.21.19914=[[0], [21], [21], [19914]] +21.22.19967=[[0], [21], [22], [19967]] +21.23.20043=[[0], [21], [23], [20043]] +21.24.20098=[[0], [21], [24], [20098]] +21.26.20194=[[0], [21], [26], [20194]] +21.3=[[0], [21], [3]] +21.3.0=[[0], [21], [3], [0]] +21.3.1=[[0], [21], [3], [1]] +21.3.2=[[0], [21], [3], [2]] +21.3.4=[[0], [21], [3], [4]] +21.3.4.2=[[0], [21], [3], [4], [2]] +21.4=[[0], [21], [4]] +21.4.0=[[0], [21], [4], [0]] +21.4.1=[[0], [21], [4], [1]] +21.4.3=[[0], [21], [4], [3]] +21.4b0=[[0], [21], [4, 'b', 0]] +21.4b2=[[0], [21], [4, 'b', 2]] +21.5=[[0], [21], [5]] +21.5.0=[[0], [21], [5], [0]] +21.5b0=[[0], [21], [5, 'b', 0]] +21.5b1=[[0], [21], [5, 'b', 1]] +21.5b2=[[0], [21], [5, 'b', 2]] +21.6=[[0], [21], [6]] +21.6.0=[[0], [21], [6], [0]] +21.6.0.0.0=[[0], [21], [6], [0], [0], [0]] +21.6.1=[[0], [21], [6], [1]] +21.6.10=[[0], [21], [6], [10]] +21.6.2=[[0], [21], [6], [2]] +21.6.3=[[0], [21], [6], [3]] +21.6.6=[[0], [21], [6], [6]] +21.7=[[0], [21], [7]] +21.7.0=[[0], [21], [7], [0]] +21.7.1=[[0], [21], [7], [1]] +21.7.22=[[0], [21], [7], [22]] +21.7b0=[[0], [21], [7, 'b', 0]] +21.8=[[0], [21], [8]] +21.8.0=[[0], [21], [8], [0]] +21.8.1=[[0], [21], [8], [1]] +21.8.22=[[0], [21], [8], [22]] +21.8b0=[[0], [21], [8, 'b', 0]] +21.9=[[0], [21], [9]] +21.9.0=[[0], [21], [9], [0]] +21.9.1=[[0], [21], [9], [1]] +21.9.2=[[0], [21], [9], [2]] +21.9.3=[[0], [21], [9], [3]] +21.9b0=[[0], [21], [9, 'b', 0]] +210=[[0], [210]] +210.0.0=[[0], [210], [0], [0]] +211=[[0], [211]] +211.0.0=[[0], [211], [0], [0]] +212=[[0], [212]] +212.0.0=[[0], [212], [0], [0]] +213=[[0], [213]] +213.0.0=[[0], [213], [0], [0]] +214=[[0], [214]] +214.0.0=[[0], [214], [0], [0]] +215=[[0], [215]] +215.0.0=[[0], [215], [0], [0]] +216=[[0], [216]] +216.0.0=[[0], [216], [0], [0]] +217=[[0], [217]] +217.0.0=[[0], [217], [0], [0]] +218=[[0], [218]] +218.0.0=[[0], [218], [0], [0]] +219=[[0], [219]] +22.0=[[0], [22], [0]] +22.0.0=[[0], [22], [0], [0]] +22.0.1=[[0], [22], [0], [1]] +22.0.10=[[0], [22], [0], [10]] +22.0.2=[[0], [22], [0], [2]] +22.0.3=[[0], [22], [0], [3]] +22.0.4=[[0], [22], [0], [4]] +22.0.5=[[0], [22], [0], [5]] +22.0.6=[[0], [22], [0], [6]] +22.0.7=[[0], [22], [0], [7]] +22.0.8=[[0], [22], [0], [8]] +22.0.9=[[0], [22], [0], [9]] +22.01=[[0], [22], [1]] +22.01.0=[[0], [22], [1], [0]] +22.02=[[0], [22], [2]] +22.02.00=[[0], [22], [2], [0]] +22.03=[[0], [22], [3]] +22.03.0=[[0], [22], [3], [0]] +22.03.0.40=[[0], [22], [3], [0], [40]] +22.04=[[0], [22], [4]] +22.04.0=[[0], [22], [4], [0]] +22.04.00=[[0], [22], [4], [0]] +22.04.01=[[0], [22], [4], [1]] +22.04.1=[[0], [22], [4], [1]] +22.04.5=[[0], [22], [4], [5]] +22.5=[[0], [22], [5]] +22.5.0=[[0], [22], [5], [0]] +22.5.0.41=[[0], [22], [5], [0], [41]] +22.5.4=[[0], [22], [5], [4]] +22.06=[[0], [22], [6]] +22.06.00=[[0], [22], [6], [0]] +22.06.01=[[0], [22], [6], [1]] +22.07=[[0], [22], [7]] +22.07.0=[[0], [22], [7], [0]] +22.07.0.11=[[0], [22], [7], [0], [11]] +22.07.1=[[0], [22], [7], [1]] +22.07.1.14=[[0], [22], [7], [1], [14]] +22.08=[[0], [22], [8]] +22.08.00=[[0], [22], [8], [0]] +22.09=[[0], [22], [9]] +22.09.0=[[0], [22], [9], [0]] +22.09.1=[[0], [22], [9], [1]] +22.1=[[0], [22], [1]] +22.1.0=[[0], [22], [1], [0]] +22.1.0.0=[[0], [22], [1], [0], [0]] +22.1.0.1=[[0], [22], [1], [0], [1]] +22.1.0.2=[[0], [22], [1], [0], [2]] +22.1.0.3=[[0], [22], [1], [0], [3]] +22.1.0.4=[[0], [22], [1], [0], [4]] +22.1.0.6=[[0], [22], [1], [0], [6]] +22.1.0.7=[[0], [22], [1], [0], [7]] +22.1.0.8=[[0], [22], [1], [0], [8]] +22.1.0.9=[[0], [22], [1], [0], [9]] +22.1.1=[[0], [22], [1], [1]] +22.1.11=[[0], [22], [1], [11]] +22.1.2=[[0], [22], [1], [2]] +22.1.4=[[0], [22], [1], [4]] +22.1.5=[[0], [22], [1], [5]] +22.10=[[0], [22], [10]] +22.10.0=[[0], [22], [10], [0]] +22.10.01=[[0], [22], [10], [1]] +22.10.1=[[0], [22], [10], [1]] +22.10.13=[[0], [22], [10], [13]] +22.10.2=[[0], [22], [10], [2]] +22.10.25=[[0], [22], [10], [25]] +22.10.27=[[0], [22], [10], [27]] +22.10.4=[[0], [22], [10], [4]] +22.10.6=[[0], [22], [10], [6]] +22.10.post1=[[0], [22], [10], [0, inf, 1]] +22.11=[[0], [22], [11]] +22.11.0=[[0], [22], [11], [0]] +22.11.0.1=[[0], [22], [11], [0], [1]] +22.11.0.13=[[0], [22], [11], [0], [13]] +22.11.1=[[0], [22], [11], [1]] +22.11.17=[[0], [22], [11], [17]] +22.12=[[0], [22], [12]] +22.12.0=[[0], [22], [12], [0]] +22.12.00=[[0], [22], [12], [0]] +22.12.06=[[0], [22], [12], [6]] +22.12.1=[[0], [22], [12], [1]] +22.12.2=[[0], [22], [12], [2]] +22.12.6=[[0], [22], [12], [6]] +22.14.0=[[0], [22], [14], [0]] +22.16.0=[[0], [22], [16], [0]] +22.18.0=[[0], [22], [18], [0]] +22.2=[[0], [22], [2]] +22.2.0=[[0], [22], [2], [0]] +22.2.1=[[0], [22], [2], [1]] +22.2.2=[[0], [22], [2], [2]] +22.2.3=[[0], [22], [2], [3]] +22.2.4=[[0], [22], [2], [4]] +22.2.5=[[0], [22], [2], [5]] +22.2.6=[[0], [22], [2], [6]] +22.2.7=[[0], [22], [2], [7]] +22.2.8=[[0], [22], [2], [8]] +22.20.0=[[0], [22], [20], [0]] +22.3=[[0], [22], [3]] +22.3.0=[[0], [22], [3], [0]] +22.3.1=[[0], [22], [3], [1]] +22.3.17=[[0], [22], [3], [17]] +22.3.2=[[0], [22], [3], [2]] +22.3.20=[[0], [22], [3], [20]] +22.3.23=[[0], [22], [3], [23]] +22.3.3=[[0], [22], [3], [3]] +22.3.4=[[0], [22], [3], [4]] +22.3.5=[[0], [22], [3], [5]] +22.4=[[0], [22], [4]] +22.4.0=[[0], [22], [4], [0]] +22.4.1=[[0], [22], [4], [1]] +22.4.2=[[0], [22], [4], [2]] +22.4.25=[[0], [22], [4], [25]] +22.5=[[0], [22], [5]] +22.5.0=[[0], [22], [5], [0]] +22.5.1=[[0], [22], [5], [1]] +22.5.2=[[0], [22], [5], [2]] +22.6=[[0], [22], [6]] +22.6.0=[[0], [22], [6], [0]] +22.6.1=[[0], [22], [6], [1]] +22.6.2=[[0], [22], [6], [2]] +22.6.22=[[0], [22], [6], [22]] +22.6.3=[[0], [22], [6], [3]] +22.6.4=[[0], [22], [6], [4]] +22.6.5=[[0], [22], [6], [5]] +22.7=[[0], [22], [7]] +22.7.0=[[0], [22], [7], [0]] +22.7.1=[[0], [22], [7], [1]] +22.8=[[0], [22], [8]] +22.8.0=[[0], [22], [8], [0]] +22.8.1=[[0], [22], [8], [1]] +22.8.1.0=[[0], [22], [8], [1], [0]] +22.8.10=[[0], [22], [8], [10]] +22.8.10.1=[[0], [22], [8], [10], [1]] +22.8.2=[[0], [22], [8], [2]] +22.8.20=[[0], [22], [8], [20]] +22.8.22=[[0], [22], [8], [22]] +22.8.23=[[0], [22], [8], [23]] +22.8.25=[[0], [22], [8], [25]] +22.9=[[0], [22], [9]] +22.9.0=[[0], [22], [9], [0]] +22.9.1=[[0], [22], [9], [1]] +22.9.11=[[0], [22], [9], [11]] +22.9.23=[[0], [22], [9], [23]] +22.9.24=[[0], [22], [9], [24]] +22.9.29=[[0], [22], [9], [29]] +220=[[0], [220]] +2206=[[0], [2206]] +2206.0.10=[[0], [2206], [0], [10]] +2208.0.1=[[0], [2208], [0], [1]] +2208.1.0=[[0], [2208], [1], [0]] +2208.1.1=[[0], [2208], [1], [1]] +221=[[0], [221]] +222=[[0], [222]] +223=[[0], [223]] +224=[[0], [224]] +225=[[0], [225]] +226=[[0], [226]] +227=[[0], [227]] +228=[[0], [228]] +228.0.0=[[0], [228], [0], [0]] +229=[[0], [229]] +23.0=[[0], [23], [0]] +23.0.0=[[0], [23], [0], [0]] +23.0.0.0=[[0], [23], [0], [0], [0]] +23.0.0.1=[[0], [23], [0], [0], [1]] +23.0.0.2=[[0], [23], [0], [0], [2]] +23.0.0.3=[[0], [23], [0], [0], [3]] +23.0.0.4=[[0], [23], [0], [0], [4]] +23.0.1=[[0], [23], [0], [1]] +23.0.2=[[0], [23], [0], [2]] +23.0.3=[[0], [23], [0], [3]] +23.0.4=[[0], [23], [0], [4]] +23.01=[[0], [23], [1]] +23.01.0=[[0], [23], [1], [0]] +23.02=[[0], [23], [2]] +23.03=[[0], [23], [3]] +23.03.0=[[0], [23], [3], [0]] +23.03.0.20=[[0], [23], [3], [0], [20]] +23.04=[[0], [23], [4]] +23.04.0=[[0], [23], [4], [0]] +23.5=[[0], [23], [5]] +23.5.0=[[0], [23], [5], [0]] +23.1=[[0], [23], [1]] +23.1.0=[[0], [23], [1], [0]] +23.1.1=[[0], [23], [1], [1]] +23.1.14=[[0], [23], [1], [14]] +23.1.17=[[0], [23], [1], [17]] +23.1.2=[[0], [23], [1], [2]] +23.1.20=[[0], [23], [1], [20]] +23.1.21=[[0], [23], [1], [21]] +23.1.3=[[0], [23], [1], [3]] +23.1.4=[[0], [23], [1], [4]] +23.1.5=[[0], [23], [1], [5]] +23.1.7=[[0], [23], [1], [7]] +23.11.0=[[0], [23], [11], [0]] +23.13.1=[[0], [23], [13], [1]] +23.2=[[0], [23], [2]] +23.2.0=[[0], [23], [2], [0]] +23.2.1=[[0], [23], [2], [1]] +23.2.13=[[0], [23], [2], [13]] +23.2.3=[[0], [23], [2], [3]] +23.2.4=[[0], [23], [2], [4]] +23.2.5=[[0], [23], [2], [5]] +23.2.6=[[0], [23], [2], [6]] +23.2.7=[[0], [23], [2], [7]] +23.3=[[0], [23], [3]] +23.3.0=[[0], [23], [3], [0]] +23.3.1=[[0], [23], [3], [1]] +23.3.2=[[0], [23], [3], [2]] +23.3.3=[[0], [23], [3], [3]] +23.3.4=[[0], [23], [3], [4]] +23.3.4.1=[[0], [23], [3], [4], [1]] +23.3.4.10=[[0], [23], [3], [4], [10]] +23.3.4.4=[[0], [23], [3], [4], [4]] +23.3.4.6=[[0], [23], [3], [4], [6]] +23.4.0=[[0], [23], [4], [0]] +23.4.1=[[0], [23], [4], [1]] +23.5=[[0], [23], [5]] +23.5.0=[[0], [23], [5], [0]] +23.5.1=[[0], [23], [5], [1]] +23.5.26=[[0], [23], [5], [26]] +23.6.0=[[0], [23], [6], [0]] +23.7.0=[[0], [23], [7], [0]] +23.8.2=[[0], [23], [8], [2]] +23.9.0=[[0], [23], [9], [0]] +23.9.1=[[0], [23], [9], [1]] +23.9.3=[[0], [23], [9], [3]] +230=[[0], [230]] +231=[[0], [231]] +231.0.0=[[0], [231], [0], [0]] +232=[[0], [232]] +232.0.0=[[0], [232], [0], [0]] +233=[[0], [233]] +233.0.0=[[0], [233], [0], [0]] +234=[[0], [234]] +234.0.0=[[0], [234], [0], [0]] +235=[[0], [235]] +235.0.0=[[0], [235], [0], [0]] +236=[[0], [236]] +236.0.0=[[0], [236], [0], [0]] +237=[[0], [237]] +237.0.0=[[0], [237], [0], [0]] +238=[[0], [238]] +238.0.0=[[0], [238], [0], [0]] +239.0.0=[[0], [239], [0], [0]] +24.0=[[0], [24], [0]] +24.0.0=[[0], [24], [0], [0]] +24.0.1=[[0], [24], [0], [1]] +24.0.2=[[0], [24], [0], [2]] +24.0.3=[[0], [24], [0], [3]] +24.0.4=[[0], [24], [0], [4]] +24.0.5=[[0], [24], [0], [5]] +24.0.6=[[0], [24], [0], [6]] +24.1=[[0], [24], [1]] +24.1.1=[[0], [24], [1], [1]] +24.1.2=[[0], [24], [1], [2]] +24.1.3=[[0], [24], [1], [3]] +24.1.4=[[0], [24], [1], [4]] +24.1.5=[[0], [24], [1], [5]] +24.1.6=[[0], [24], [1], [6]] +24.1.7=[[0], [24], [1], [7]] +24.2=[[0], [24], [2]] +24.2.0=[[0], [24], [2], [0]] +24.2.1=[[0], [24], [2], [1]] +24.2.2=[[0], [24], [2], [2]] +24.3=[[0], [24], [3]] +24.3.1=[[0], [24], [3], [1]] +24.3.2=[[0], [24], [3], [2]] +24.3.3=[[0], [24], [3], [3]] +24.3.4=[[0], [24], [3], [4]] +243.0.0=[[0], [243], [0], [0]] +244.0.0=[[0], [244], [0], [0]] +245.0.0=[[0], [245], [0], [0]] +246.0.0=[[0], [246], [0], [0]] +247.0.0=[[0], [247], [0], [0]] +248.0.0=[[0], [248], [0], [0]] +249=[[0], [249]] +249.0.0=[[0], [249], [0], [0]] +25.0=[[0], [25], [0]] +25.0.0=[[0], [25], [0], [0]] +25.0.1=[[0], [25], [0], [1]] +25.0.2=[[0], [25], [0], [2]] +25.0.3=[[0], [25], [0], [3]] +25.0.4=[[0], [25], [0], [4]] +25.1=[[0], [25], [1]] +25.1.0=[[0], [25], [1], [0]] +25.1.1=[[0], [25], [1], [1]] +25.1.2=[[0], [25], [1], [2]] +25.1.3=[[0], [25], [1], [3]] +25.1.4=[[0], [25], [1], [4]] +25.1.5=[[0], [25], [1], [5]] +25.1.6=[[0], [25], [1], [6]] +25.2=[[0], [25], [2]] +25.2.0=[[0], [25], [2], [0]] +25.2.1=[[0], [25], [2], [1]] +25.2.2=[[0], [25], [2], [2]] +25.2.3=[[0], [25], [2], [3]] +25.3=[[0], [25], [3]] +25.3.0=[[0], [25], [3], [0]] +25.3.1=[[0], [25], [3], [1]] +25.3.2=[[0], [25], [3], [2]] +25.4.0=[[0], [25], [4], [0]] +250.0.0=[[0], [250], [0], [0]] +251=[[0], [251]] +251.0.0=[[0], [251], [0], [0]] +252=[[0], [252]] +252.0.0=[[0], [252], [0], [0]] +253=[[0], [253]] +253.0.0=[[0], [253], [0], [0]] +254.0.0=[[0], [254], [0], [0]] +255.0.0=[[0], [255], [0], [0]] +256.0.0=[[0], [256], [0], [0]] +257.0.0=[[0], [257], [0], [0]] +258.0.0=[[0], [258], [0], [0]] +259.0.0=[[0], [259], [0], [0]] +26.0=[[0], [26], [0]] +26.0.0=[[0], [26], [0], [0]] +26.0.1=[[0], [26], [0], [1]] +26.1=[[0], [26], [1]] +26.1.0=[[0], [26], [1], [0]] +26.1.1=[[0], [26], [1], [1]] +26.2=[[0], [26], [2]] +26.3=[[0], [26], [3]] +260.0.0=[[0], [260], [0], [0]] +261.0.0=[[0], [261], [0], [0]] +262.0.0=[[0], [262], [0], [0]] +263.0.0=[[0], [263], [0], [0]] +264.0.0=[[0], [264], [0], [0]] +265.0.0=[[0], [265], [0], [0]] +266.0.0=[[0], [266], [0], [0]] +267.0.0=[[0], [267], [0], [0]] +268.0.0=[[0], [268], [0], [0]] +269.0.0=[[0], [269], [0], [0]] +27.0=[[0], [27], [0]] +27.0.0=[[0], [27], [0], [0]] +27.1=[[0], [27], [1]] +27.1.0=[[0], [27], [1], [0]] +27.1.2=[[0], [27], [1], [2]] +27.2=[[0], [27], [2]] +27.2.0=[[0], [27], [2], [0]] +27.3.0=[[0], [27], [3], [0]] +27.3.1=[[0], [27], [3], [1]] +270.0.0=[[0], [270], [0], [0]] +27093=[[0], [27093]] +271.0.0=[[0], [271], [0], [0]] +272.0.0=[[0], [272], [0], [0]] +273=[[0], [273]] +273.0.0=[[0], [273], [0], [0]] +274.0.0=[[0], [274], [0], [0]] +274.0.1=[[0], [274], [0], [1]] +274.2=[[0], [274], [2]] +276.0.0=[[0], [276], [0], [0]] +277.0.0=[[0], [277], [0], [0]] +278.0.0=[[0], [278], [0], [0]] +279.0.0=[[0], [279], [0], [0]] +28.0.0=[[0], [28], [0], [0]] +28.1=[[0], [28], [1]] +28.2=[[0], [28], [2]] +28.3.0=[[0], [28], [3], [0]] +28.4.0=[[0], [28], [4], [0]] +28.5.0=[[0], [28], [5], [0]] +28.6.0=[[0], [28], [6], [0]] +28.6.1=[[0], [28], [6], [1]] +28.7.0=[[0], [28], [7], [0]] +28.7.1=[[0], [28], [7], [1]] +28.8.0=[[0], [28], [8], [0]] +280.0.0=[[0], [280], [0], [0]] +281=[[0], [281]] +281.0.0=[[0], [281], [0], [0]] +287.0.0=[[0], [287], [0], [0]] +288.0.0=[[0], [288], [0], [0]] +289.0.0=[[0], [289], [0], [0]] +29.0.0=[[0], [29], [0], [0]] +29.0.1=[[0], [29], [0], [1]] +29.1.0=[[0], [29], [1], [0]] +290.0.0=[[0], [290], [0], [0]] +290.0.1=[[0], [290], [0], [1]] +291.0.0=[[0], [291], [0], [0]] +292.0.0=[[0], [292], [0], [0]] +293.0.0=[[0], [293], [0], [0]] +294.0.0=[[0], [294], [0], [0]] +295.0.0=[[0], [295], [0], [0]] +296.0.0=[[0], [296], [0], [0]] +296.0.1=[[0], [296], [0], [1]] +297.0.0=[[0], [297], [0], [0]] +297.0.1=[[0], [297], [0], [1]] +298.0.0=[[0], [298], [0], [0]] +299.0.0=[[0], [299], [0], [0]] +3=[[0], [3]] +3.0=[[0], [3], [0]] +3.0.0=[[0], [3], [0], [0]] +3.0.0.0=[[0], [3], [0], [0], [0]] +3.0.0.1=[[0], [3], [0], [0], [1]] +3.0.0.2=[[0], [3], [0], [0], [2]] +3.0.0.3=[[0], [3], [0], [0], [3]] +3.0.0.4=[[0], [3], [0], [0], [4]] +3.0.0.5=[[0], [3], [0], [0], [5]] +3.0.0.89=[[0], [3], [0], [0], [89]] +3.0.0.alpha=[[0], [3], [0], [0], [0, 'alpha']] +3.0.0.post1=[[0], [3], [0], [0], [0, inf, 1]] +3.0.0.post2=[[0], [3], [0], [0], [0, inf, 2]] +3.0.0.post3=[[0], [3], [0], [0], [0, inf, 3]] +3.0.0a3=[[0], [3], [0], [0, 'a', 3]] +3.0.0a4=[[0], [3], [0], [0, 'a', 4]] +3.0.0a5=[[0], [3], [0], [0, 'a', 5]] +3.0.0a6=[[0], [3], [0], [0, 'a', 6]] +3.0.0a7=[[0], [3], [0], [0, 'a', 7]] +3.0.0b1=[[0], [3], [0], [0, 'b', 1]] +3.0.0b2=[[0], [3], [0], [0, 'b', 2]] +3.0.0b2.post2=[[0], [3], [0], [0, 'b', 2], [0, inf, 2]] +3.0.0b3=[[0], [3], [0], [0, 'b', 3]] +3.0.0dev=[[0], [3], [0], [0, 'DEV']] +3.0.0rc1=[[0], [3], [0], [0, 'rc', 1]] +3.0.0rc2=[[0], [3], [0], [0, 'rc', 2]] +3.0.1=[[0], [3], [0], [1]] +3.0.1.1=[[0], [3], [0], [1], [1]] +3.0.1.2=[[0], [3], [0], [1], [2]] +3.0.1.dev2=[[0], [3], [0], [1], [0, 'DEV', 2]] +3.0.10=[[0], [3], [0], [10]] +3.0.11=[[0], [3], [0], [11]] +3.0.11.23=[[0], [3], [0], [11], [23]] +3.0.12=[[0], [3], [0], [12]] +3.0.13=[[0], [3], [0], [13]] +3.0.14=[[0], [3], [0], [14]] +3.0.15=[[0], [3], [0], [15]] +3.0.16=[[0], [3], [0], [16]] +3.0.1658662267=[[0], [3], [0], [1658662267]] +3.0.1663074851=[[0], [3], [0], [1663074851]] +3.0.1663481299=[[0], [3], [0], [1663481299]] +3.0.17=[[0], [3], [0], [17]] +3.0.18=[[0], [3], [0], [18]] +3.0.19=[[0], [3], [0], [19]] +3.0.2=[[0], [3], [0], [2]] +3.0.20=[[0], [3], [0], [20]] +3.0.20181206233650=[[0], [3], [0], [20181206233650]] +3.0.20200317203547=[[0], [3], [0], [20200317203547]] +3.0.20200530110633=[[0], [3], [0], [20200530110633]] +3.0.20200706173533=[[0], [3], [0], [20200706173533]] +3.0.20200710214758=[[0], [3], [0], [20200710214758]] +3.0.20200720165847=[[0], [3], [0], [20200720165847]] +3.0.20200724003302=[[0], [3], [0], [20200724003302]] +3.0.20200807132242=[[0], [3], [0], [20200807132242]] +3.0.20201017180608=[[0], [3], [0], [20201017180608]] +3.0.20201020111341=[[0], [3], [0], [20201020111341]] +3.0.20201026152241=[[0], [3], [0], [20201026152241]] +3.0.20201113183607=[[0], [3], [0], [20201113183607]] +3.0.20201116114821=[[0], [3], [0], [20201116114821]] +3.0.20201117141248=[[0], [3], [0], [20201117141248]] +3.0.20201121085451=[[0], [3], [0], [20201121085451]] +3.0.20201203173111=[[0], [3], [0], [20201203173111]] +3.0.20210124104916=[[0], [3], [0], [20210124104916]] +3.0.20210319143721=[[0], [3], [0], [20210319143721]] +3.0.21=[[0], [3], [0], [21]] +3.0.21.02.21=[[0], [3], [0], [21], [2], [21]] +3.0.22=[[0], [3], [0], [22]] +3.0.23=[[0], [3], [0], [23]] +3.0.24=[[0], [3], [0], [24]] +3.0.25=[[0], [3], [0], [25]] +3.0.26=[[0], [3], [0], [26]] +3.0.27=[[0], [3], [0], [27]] +3.0.28=[[0], [3], [0], [28]] +3.0.29=[[0], [3], [0], [29]] +3.0.3=[[0], [3], [0], [3]] +3.0.3.3=[[0], [3], [0], [3], [3]] +3.0.30=[[0], [3], [0], [30]] +3.0.31=[[0], [3], [0], [31]] +3.0.32=[[0], [3], [0], [32]] +3.0.33=[[0], [3], [0], [33]] +3.0.34=[[0], [3], [0], [34]] +3.0.35=[[0], [3], [0], [35]] +3.0.36=[[0], [3], [0], [36]] +3.0.37=[[0], [3], [0], [37]] +3.0.38=[[0], [3], [0], [38]] +3.0.39=[[0], [3], [0], [39]] +3.0.4=[[0], [3], [0], [4]] +3.0.4.322=[[0], [3], [0], [4], [322]] +3.0.4.5=[[0], [3], [0], [4], [5]] +3.0.4.6=[[0], [3], [0], [4], [6]] +3.0.4.7=[[0], [3], [0], [4], [7]] +3.0.40=[[0], [3], [0], [40]] +3.0.41=[[0], [3], [0], [41]] +3.0.44=[[0], [3], [0], [44]] +3.0.45=[[0], [3], [0], [45]] +3.0.46=[[0], [3], [0], [46]] +3.0.47=[[0], [3], [0], [47]] +3.0.4b=[[0], [3], [0], [4, 'b']] +3.0.5=[[0], [3], [0], [5]] +3.0.5.1=[[0], [3], [0], [5], [1]] +3.0.5.2=[[0], [3], [0], [5], [2]] +3.0.6=[[0], [3], [0], [6]] +3.0.66=[[0], [3], [0], [66]] +3.0.7=[[0], [3], [0], [7]] +3.0.8=[[0], [3], [0], [8]] +3.0.9=[[0], [3], [0], [9]] +3.0.9.1=[[0], [3], [0], [9], [1]] +3.0.a3=[[0], [3], [0], [0, 'a', 3]] +3.0.alpha=[[0], [3], [0], [0, 'alpha']] +3.0.b127=[[0], [3], [0], [0, 'b', 127]] +3.00=[[0], [3], [0]] +3.000=[[0], [3], [0]] +3.004=[[0], [3], [4]] +3.007=[[0], [3], [7]] +3.01=[[0], [3], [1]] +3.02=[[0], [3], [2]] +3.030=[[0], [3], [30]] +3.04=[[0], [3], [4]] +3.5=[[0], [3], [5]] +3.5.01=[[0], [3], [5], [1]] +3.5.02=[[0], [3], [5], [2]] +3.06=[[0], [3], [6]] +3.06.1=[[0], [3], [6], [1]] +3.0609=[[0], [3], [609]] +3.07=[[0], [3], [7]] +3.0702=[[0], [3], [702]] +3.08=[[0], [3], [8]] +3.0800=[[0], [3], [800]] +3.09=[[0], [3], [9]] +3.0_0=[[0], [3], [0], [0]] +3.0_1=[[0], [3], [0], [1]] +3.0_10=[[0], [3], [0], [10]] +3.0_11=[[0], [3], [0], [11]] +3.0_12=[[0], [3], [0], [12]] +3.0_13=[[0], [3], [0], [13]] +3.0_2=[[0], [3], [0], [2]] +3.0_3=[[0], [3], [0], [3]] +3.0_4=[[0], [3], [0], [4]] +3.0_5=[[0], [3], [0], [5]] +3.0_6=[[0], [3], [0], [6]] +3.0_7=[[0], [3], [0], [7]] +3.0_8=[[0], [3], [0], [8]] +3.0_9=[[0], [3], [0], [9]] +3.0a1=[[0], [3], [0, 'a', 1]] +3.0a2=[[0], [3], [0, 'a', 2]] +3.0a3=[[0], [3], [0, 'a', 3]] +3.0a8=[[0], [3], [0, 'a', 8]] +3.0b1.post3=[[0], [3], [0, 'b', 1], [0, inf, 3]] +3.0b1.post7=[[0], [3], [0, 'b', 1], [0, inf, 7]] +3.0b1.post8=[[0], [3], [0, 'b', 1], [0, inf, 8]] +3.0b2=[[0], [3], [0, 'b', 2]] +3.0b4=[[0], [3], [0, 'b', 4]] +3.0rc2=[[0], [3], [0, 'rc', 2]] +3.0rc4=[[0], [3], [0, 'rc', 4]] +3.0rc6=[[0], [3], [0, 'rc', 6]] +3.1=[[0], [3], [1]] +3.1.0=[[0], [3], [1], [0]] +3.1.0.post1=[[0], [3], [1], [0], [0, inf, 1]] +3.1.0rc1=[[0], [3], [1], [0, 'rc', 1]] +3.1.1=[[0], [3], [1], [1]] +3.1.1.3=[[0], [3], [1], [1], [3]] +3.1.1.5=[[0], [3], [1], [1], [5]] +3.1.1.a0=[[0], [3], [1], [1], [0, 'a', 0]] +3.1.10=[[0], [3], [1], [10]] +3.1.11=[[0], [3], [1], [11]] +3.1.12=[[0], [3], [1], [12]] +3.1.13=[[0], [3], [1], [13]] +3.1.14=[[0], [3], [1], [14]] +3.1.14.post0=[[0], [3], [1], [14], [0, inf, 0]] +3.1.15=[[0], [3], [1], [15]] +3.1.16=[[0], [3], [1], [16]] +3.1.1658648837=[[0], [3], [1], [1658648837]] +3.1.1663062229=[[0], [3], [1], [1663062229]] +3.1.1663587362=[[0], [3], [1], [1663587362]] +3.1.17=[[0], [3], [1], [17]] +3.1.18=[[0], [3], [1], [18]] +3.1.19=[[0], [3], [1], [19]] +3.1.19316=[[0], [3], [1], [19316]] +3.1.1a1=[[0], [3], [1], [1, 'a', 1]] +3.1.2=[[0], [3], [1], [2]] +3.1.2.2=[[0], [3], [1], [2], [2]] +3.1.2.3=[[0], [3], [1], [2], [3]] +3.1.2.4=[[0], [3], [1], [2], [4]] +3.1.2.post0=[[0], [3], [1], [2], [0, inf, 0]] +3.1.20=[[0], [3], [1], [20]] +3.1.20170329=[[0], [3], [1], [20170329]] +3.1.20190125161400=[[0], [3], [1], [20190125161400]] +3.1.20191231=[[0], [3], [1], [20191231]] +3.1.20210616134059=[[0], [3], [1], [20210616134059]] +3.1.20210628163208=[[0], [3], [1], [20210628163208]] +3.1.20210816212154=[[0], [3], [1], [20210816212154]] +3.1.20210922130607=[[0], [3], [1], [20210922130607]] +3.1.20210922203925=[[0], [3], [1], [20210922203925]] +3.1.20211001174446=[[0], [3], [1], [20211001174446]] +3.1.20211004060744=[[0], [3], [1], [20211004060744]] +3.1.20211014180718=[[0], [3], [1], [20211014180718]] +3.1.20211019185001=[[0], [3], [1], [20211019185001]] +3.1.20211020155521=[[0], [3], [1], [20211020155521]] +3.1.20211104071347=[[0], [3], [1], [20211104071347]] +3.1.20211107152837=[[0], [3], [1], [20211107152837]] +3.1.20220119140128=[[0], [3], [1], [20220119140128]] +3.1.20220124184855=[[0], [3], [1], [20220124184855]] +3.1.20220202173120=[[0], [3], [1], [20220202173120]] +3.1.20220204090313=[[0], [3], [1], [20220204090313]] +3.1.20220210171524=[[0], [3], [1], [20220210171524]] +3.1.20220217190813=[[0], [3], [1], [20220217190813]] +3.1.20220217222804=[[0], [3], [1], [20220217222804]] +3.1.20220221074232=[[0], [3], [1], [20220221074232]] +3.1.20220224085855=[[0], [3], [1], [20220224085855]] +3.1.20220406080846=[[0], [3], [1], [20220406080846]] +3.1.20220502060230=[[0], [3], [1], [20220502060230]] +3.1.20220607081835=[[0], [3], [1], [20220607081835]] +3.1.20220623174452=[[0], [3], [1], [20220623174452]] +3.1.20220628170238=[[0], [3], [1], [20220628170238]] +3.1.20220801180230=[[0], [3], [1], [20220801180230]] +3.1.20220802125926=[[0], [3], [1], [20220802125926]] +3.1.20220913185150=[[0], [3], [1], [20220913185150]] +3.1.20221008225030=[[0], [3], [1], [20221008225030]] +3.1.20221018083734=[[0], [3], [1], [20221018083734]] +3.1.20221108205138=[[0], [3], [1], [20221108205138]] +3.1.20221109155812=[[0], [3], [1], [20221109155812]] +3.1.20221201130942=[[0], [3], [1], [20221201130942]] +3.1.20230127121939=[[0], [3], [1], [20230127121939]] +3.1.20230201224320=[[0], [3], [1], [20230201224320]] +3.1.20230209161050=[[0], [3], [1], [20230209161050]] +3.1.20230213100550=[[0], [3], [1], [20230213100550]] +3.1.20230302145532=[[0], [3], [1], [20230302145532]] +3.1.20230325110543=[[0], [3], [1], [20230325110543]] +3.1.20230425144158=[[0], [3], [1], [20230425144158]] +3.1.21=[[0], [3], [1], [21]] +3.1.22=[[0], [3], [1], [22]] +3.1.23=[[0], [3], [1], [23]] +3.1.24=[[0], [3], [1], [24]] +3.1.25=[[0], [3], [1], [25]] +3.1.26=[[0], [3], [1], [26]] +3.1.27=[[0], [3], [1], [27]] +3.1.28=[[0], [3], [1], [28]] +3.1.29=[[0], [3], [1], [29]] +3.1.3=[[0], [3], [1], [3]] +3.1.30=[[0], [3], [1], [30]] +3.1.31=[[0], [3], [1], [31]] +3.1.32=[[0], [3], [1], [32]] +3.1.33=[[0], [3], [1], [33]] +3.1.34=[[0], [3], [1], [34]] +3.1.35=[[0], [3], [1], [35]] +3.1.36=[[0], [3], [1], [36]] +3.1.38=[[0], [3], [1], [38]] +3.1.3b2=[[0], [3], [1], [3, 'b', 2]] +3.1.4=[[0], [3], [1], [4]] +3.1.4.1=[[0], [3], [1], [4], [1]] +3.1.4.2=[[0], [3], [1], [4], [2]] +3.1.403=[[0], [3], [1], [403]] +3.1.408=[[0], [3], [1], [408]] +3.1.409=[[0], [3], [1], [409]] +3.1.41=[[0], [3], [1], [41]] +3.1.410=[[0], [3], [1], [410]] +3.1.412=[[0], [3], [1], [412]] +3.1.413=[[0], [3], [1], [413]] +3.1.415=[[0], [3], [1], [415]] +3.1.416=[[0], [3], [1], [416]] +3.1.417=[[0], [3], [1], [417]] +3.1.418=[[0], [3], [1], [418]] +3.1.419=[[0], [3], [1], [419]] +3.1.420=[[0], [3], [1], [420]] +3.1.423=[[0], [3], [1], [423]] +3.1.425=[[0], [3], [1], [425]] +3.1.426=[[0], [3], [1], [426]] +3.1.5=[[0], [3], [1], [5]] +3.1.5.dev10=[[0], [3], [1], [5], [0, 'DEV', 10]] +3.1.5.dev11=[[0], [3], [1], [5], [0, 'DEV', 11]] +3.1.5.dev12=[[0], [3], [1], [5], [0, 'DEV', 12]] +3.1.5.dev13=[[0], [3], [1], [5], [0, 'DEV', 13]] +3.1.5.dev3=[[0], [3], [1], [5], [0, 'DEV', 3]] +3.1.5.dev4=[[0], [3], [1], [5], [0, 'DEV', 4]] +3.1.5.dev5=[[0], [3], [1], [5], [0, 'DEV', 5]] +3.1.5.dev8=[[0], [3], [1], [5], [0, 'DEV', 8]] +3.1.5.dev9=[[0], [3], [1], [5], [0, 'DEV', 9]] +3.1.50=[[0], [3], [1], [50]] +3.1.6=[[0], [3], [1], [6]] +3.1.6.1=[[0], [3], [1], [6], [1]] +3.1.6.2=[[0], [3], [1], [6], [2]] +3.1.7=[[0], [3], [1], [7]] +3.1.7.1=[[0], [3], [1], [7], [1]] +3.1.7.2=[[0], [3], [1], [7], [2]] +3.1.7.post0=[[0], [3], [1], [7], [0, inf, 0]] +3.1.8=[[0], [3], [1], [8]] +3.1.9=[[0], [3], [1], [9]] +3.1.dev1=[[0], [3], [1], [0, 'DEV', 1]] +3.1.post0=[[0], [3], [1], [0, inf, 0]] +3.10=[[0], [3], [10]] +3.10.0=[[0], [3], [10], [0]] +3.10.0.0=[[0], [3], [10], [0], [0]] +3.10.0.1=[[0], [3], [10], [0], [1]] +3.10.0.2=[[0], [3], [10], [0], [2]] +3.10.1=[[0], [3], [10], [1]] +3.10.1.0=[[0], [3], [10], [1], [0]] +3.10.1.1=[[0], [3], [10], [1], [1]] +3.10.10=[[0], [3], [10], [10]] +3.10.11=[[0], [3], [10], [11]] +3.10.12=[[0], [3], [10], [12]] +3.10.13=[[0], [3], [10], [13]] +3.10.14=[[0], [3], [10], [14]] +3.10.2=[[0], [3], [10], [2]] +3.10.2.0=[[0], [3], [10], [2], [0]] +3.10.3=[[0], [3], [10], [3]] +3.10.3.0=[[0], [3], [10], [3], [0]] +3.10.4=[[0], [3], [10], [4]] +3.10.4.0=[[0], [3], [10], [4], [0]] +3.10.5=[[0], [3], [10], [5]] +3.10.5.0=[[0], [3], [10], [5], [0]] +3.10.5.1=[[0], [3], [10], [5], [1]] +3.10.6=[[0], [3], [10], [6]] +3.10.6.0=[[0], [3], [10], [6], [0]] +3.10.7=[[0], [3], [10], [7]] +3.10.8=[[0], [3], [10], [8]] +3.10.9=[[0], [3], [10], [9]] +3.10.dev1=[[0], [3], [10], [0, 'DEV', 1]] +3.100=[[0], [3], [100]] +3.11=[[0], [3], [11]] +3.11.0=[[0], [3], [11], [0]] +3.11.1=[[0], [3], [11], [1]] +3.11.10=[[0], [3], [11], [10]] +3.11.11=[[0], [3], [11], [11]] +3.11.12=[[0], [3], [11], [12]] +3.11.13=[[0], [3], [11], [13]] +3.11.14=[[0], [3], [11], [14]] +3.11.16=[[0], [3], [11], [16]] +3.11.2=[[0], [3], [11], [2]] +3.11.3=[[0], [3], [11], [3]] +3.11.4=[[0], [3], [11], [4]] +3.11.5=[[0], [3], [11], [5]] +3.11.6=[[0], [3], [11], [6]] +3.11.7=[[0], [3], [11], [7]] +3.11.8=[[0], [3], [11], [8]] +3.118.20293=[[0], [3], [118], [20293]] +3.11_6=[[0], [3], [11], [6]] +3.12=[[0], [3], [12]] +3.12.0=[[0], [3], [12], [0]] +3.12.1=[[0], [3], [12], [1]] +3.12.10=[[0], [3], [12], [10]] +3.12.11=[[0], [3], [12], [11]] +3.12.12=[[0], [3], [12], [12]] +3.12.13=[[0], [3], [12], [13]] +3.12.2=[[0], [3], [12], [2]] +3.12.3=[[0], [3], [12], [3]] +3.12.4=[[0], [3], [12], [4]] +3.12.5=[[0], [3], [12], [5]] +3.12.6=[[0], [3], [12], [6]] +3.12.7=[[0], [3], [12], [7]] +3.12.8=[[0], [3], [12], [8]] +3.12.9=[[0], [3], [12], [9]] +3.125.20293=[[0], [3], [125], [20293]] +3.12_26=[[0], [3], [12], [26]] +3.13=[[0], [3], [13]] +3.13.0=[[0], [3], [13], [0]] +3.13.0.1=[[0], [3], [13], [0], [1]] +3.13.1=[[0], [3], [13], [1]] +3.13.10=[[0], [3], [13], [10]] +3.13.2=[[0], [3], [13], [2]] +3.13.3=[[0], [3], [13], [3]] +3.13.4=[[0], [3], [13], [4]] +3.13.5=[[0], [3], [13], [5]] +3.13.6=[[0], [3], [13], [6]] +3.13.7=[[0], [3], [13], [7]] +3.13.8=[[0], [3], [13], [8]] +3.13.9=[[0], [3], [13], [9]] +3.130.20302=[[0], [3], [130], [20302]] +3.135.20303=[[0], [3], [135], [20303]] +3.136.20306=[[0], [3], [136], [20306]] +3.13_12=[[0], [3], [13], [12]] +3.14=[[0], [3], [14]] +3.14.0=[[0], [3], [14], [0]] +3.14.1=[[0], [3], [14], [1]] +3.14.1.1=[[0], [3], [14], [1], [1]] +3.14.10=[[0], [3], [14], [10]] +3.14.11=[[0], [3], [14], [11]] +3.14.12=[[0], [3], [14], [12]] +3.14.12.8=[[0], [3], [14], [12], [8]] +3.14.15=[[0], [3], [14], [15]] +3.14.16=[[0], [3], [14], [16]] +3.14.2=[[0], [3], [14], [2]] +3.14.3=[[0], [3], [14], [3]] +3.14.4=[[0], [3], [14], [4]] +3.14.5=[[0], [3], [14], [5]] +3.14.6=[[0], [3], [14], [6]] +3.14.7=[[0], [3], [14], [7]] +3.14.8=[[0], [3], [14], [8]] +3.14.9=[[0], [3], [14], [9]] +3.141.0=[[0], [3], [141], [0]] +3.147.20327=[[0], [3], [147], [20327]] +3.149.20327=[[0], [3], [149], [20327]] +3.14_3=[[0], [3], [14], [3]] +3.15=[[0], [3], [15]] +3.15.0=[[0], [3], [15], [0]] +3.15.0.0=[[0], [3], [15], [0], [0]] +3.15.0.0+boost170=[[0], [3], [15], [0], [0]] +3.15.1=[[0], [3], [15], [1]] +3.15.2=[[0], [3], [15], [2]] +3.15.3=[[0], [3], [15], [3]] +3.15.4=[[0], [3], [15], [4]] +3.15.5=[[0], [3], [15], [5]] +3.15.6=[[0], [3], [15], [6]] +3.15.7=[[0], [3], [15], [7]] +3.15.8=[[0], [3], [15], [8]] +3.151.20327=[[0], [3], [151], [20327]] +3.15_21=[[0], [3], [15], [21]] +3.16=[[0], [3], [16]] +3.16.0=[[0], [3], [16], [0]] +3.16.1=[[0], [3], [16], [1]] +3.16.10=[[0], [3], [16], [10]] +3.16.11=[[0], [3], [16], [11]] +3.16.12=[[0], [3], [16], [12]] +3.16.14=[[0], [3], [16], [14]] +3.16.16=[[0], [3], [16], [16]] +3.16.2=[[0], [3], [16], [2]] +3.16.2.r1=[[0], [3], [16], [2], [0, 'r', 1]] +3.16.3=[[0], [3], [16], [3]] +3.16.4=[[0], [3], [16], [4]] +3.16.5=[[0], [3], [16], [5]] +3.16.6=[[0], [3], [16], [6]] +3.16.7=[[0], [3], [16], [7]] +3.16.8=[[0], [3], [16], [8]] +3.16_18=[[0], [3], [16], [18]] +3.17=[[0], [3], [17]] +3.17.0=[[0], [3], [17], [0]] +3.17.1=[[0], [3], [17], [1]] +3.17.19324=[[0], [3], [17], [19324]] +3.17.2=[[0], [3], [17], [2]] +3.17.3=[[0], [3], [17], [3]] +3.17.4=[[0], [3], [17], [4]] +3.17.5=[[0], [3], [17], [5]] +3.17.6=[[0], [3], [17], [6]] +3.17.7=[[0], [3], [17], [7]] +3.17.7.1=[[0], [3], [17], [7], [1]] +3.17.7.2=[[0], [3], [17], [7], [2]] +3.17.8=[[0], [3], [17], [8]] +3.18=[[0], [3], [18]] +3.18.0=[[0], [3], [18], [0]] +3.18.0.0=[[0], [3], [18], [0], [0]] +3.18.0.1=[[0], [3], [18], [0], [1]] +3.18.1=[[0], [3], [18], [1]] +3.18.10=[[0], [3], [18], [10]] +3.18.11=[[0], [3], [18], [11]] +3.18.12=[[0], [3], [18], [12]] +3.18.13=[[0], [3], [18], [13]] +3.18.14=[[0], [3], [18], [14]] +3.18.15=[[0], [3], [18], [15]] +3.18.17=[[0], [3], [18], [17]] +3.18.19324=[[0], [3], [18], [19324]] +3.18.2=[[0], [3], [18], [2]] +3.18.3=[[0], [3], [18], [3]] +3.18.4=[[0], [3], [18], [4]] +3.18.5=[[0], [3], [18], [5]] +3.18.7=[[0], [3], [18], [7]] +3.18.8=[[0], [3], [18], [8]] +3.18.9=[[0], [3], [18], [9]] +3.19=[[0], [3], [19]] +3.19.0=[[0], [3], [19], [0]] +3.19.1=[[0], [3], [19], [1]] +3.19.10=[[0], [3], [19], [10]] +3.19.11=[[0], [3], [19], [11]] +3.19.12=[[0], [3], [19], [12]] +3.19.13=[[0], [3], [19], [13]] +3.19.14=[[0], [3], [19], [14]] +3.19.15=[[0], [3], [19], [15]] +3.19.16=[[0], [3], [19], [16]] +3.19.17=[[0], [3], [19], [17]] +3.19.18=[[0], [3], [19], [18]] +3.19.19=[[0], [3], [19], [19]] +3.19.2=[[0], [3], [19], [2]] +3.19.20=[[0], [3], [19], [20]] +3.19.21=[[0], [3], [19], [21]] +3.19.22=[[0], [3], [19], [22]] +3.19.3=[[0], [3], [19], [3]] +3.19.4=[[0], [3], [19], [4]] +3.19.5=[[0], [3], [19], [5]] +3.19.6=[[0], [3], [19], [6]] +3.19.7=[[0], [3], [19], [7]] +3.19.8=[[0], [3], [19], [8]] +3.19.9=[[0], [3], [19], [9]] +3.1_0=[[0], [3], [1], [0]] +3.1_0.1=[[0], [3], [1], [0], [1]] +3.1_1=[[0], [3], [1], [1]] +3.1_11=[[0], [3], [1], [11]] +3.1_12=[[0], [3], [1], [12]] +3.1_13=[[0], [3], [1], [13]] +3.1_131=[[0], [3], [1], [131]] +3.1_137=[[0], [3], [1], [137]] +3.1_138=[[0], [3], [1], [138]] +3.1_139=[[0], [3], [1], [139]] +3.1_14=[[0], [3], [1], [14]] +3.1_140=[[0], [3], [1], [140]] +3.1_141=[[0], [3], [1], [141]] +3.1_143=[[0], [3], [1], [143]] +3.1_144=[[0], [3], [1], [144]] +3.1_145=[[0], [3], [1], [145]] +3.1_147=[[0], [3], [1], [147]] +3.1_148=[[0], [3], [1], [148]] +3.1_149=[[0], [3], [1], [149]] +3.1_15=[[0], [3], [1], [15]] +3.1_150=[[0], [3], [1], [150]] +3.1_151=[[0], [3], [1], [151]] +3.1_152=[[0], [3], [1], [152]] +3.1_153=[[0], [3], [1], [153]] +3.1_155=[[0], [3], [1], [155]] +3.1_157=[[0], [3], [1], [157]] +3.1_158=[[0], [3], [1], [158]] +3.1_159=[[0], [3], [1], [159]] +3.1_160=[[0], [3], [1], [160]] +3.1_161=[[0], [3], [1], [161]] +3.1_162=[[0], [3], [1], [162]] +3.1_2=[[0], [3], [1], [2]] +3.1_3=[[0], [3], [1], [3]] +3.1_35=[[0], [3], [1], [35]] +3.1_37=[[0], [3], [1], [37]] +3.1_39=[[0], [3], [1], [39]] +3.1_4=[[0], [3], [1], [4]] +3.1_40=[[0], [3], [1], [40]] +3.1_42=[[0], [3], [1], [42]] +3.1_43=[[0], [3], [1], [43]] +3.1_47=[[0], [3], [1], [47]] +3.1_49=[[0], [3], [1], [49]] +3.1_5=[[0], [3], [1], [5]] +3.1_6=[[0], [3], [1], [6]] +3.1_7=[[0], [3], [1], [7]] +3.1_8=[[0], [3], [1], [8]] +3.1_9=[[0], [3], [1], [9]] +3.2=[[0], [3], [2]] +3.2.0=[[0], [3], [2], [0]] +3.2.0.91=[[0], [3], [2], [0], [91]] +3.2.0.post0=[[0], [3], [2], [0], [0, inf, 0]] +3.2.0rc2=[[0], [3], [2], [0, 'rc', 2]] +3.2.1=[[0], [3], [2], [1]] +3.2.1.93=[[0], [3], [2], [1], [93]] +3.2.1.post0=[[0], [3], [2], [1], [0, inf, 0]] +3.2.10=[[0], [3], [2], [10]] +3.2.11=[[0], [3], [2], [11]] +3.2.12=[[0], [3], [2], [12]] +3.2.13=[[0], [3], [2], [13]] +3.2.14=[[0], [3], [2], [14]] +3.2.15=[[0], [3], [2], [15]] +3.2.16=[[0], [3], [2], [16]] +3.2.17=[[0], [3], [2], [17]] +3.2.2=[[0], [3], [2], [2]] +3.2.2.1=[[0], [3], [2], [2], [1]] +3.2.2.94=[[0], [3], [2], [2], [94]] +3.2.2.post1=[[0], [3], [2], [2], [0, inf, 1]] +3.2.20=[[0], [3], [2], [20]] +3.2.21=[[0], [3], [2], [21]] +3.2.25=[[0], [3], [2], [25]] +3.2.28=[[0], [3], [2], [28]] +3.2.3=[[0], [3], [2], [3]] +3.2.3.1=[[0], [3], [2], [3], [1]] +3.2.3.2=[[0], [3], [2], [3], [2]] +3.2.3.post0=[[0], [3], [2], [3], [0, inf, 0]] +3.2.34=[[0], [3], [2], [34]] +3.2.36=[[0], [3], [2], [36]] +3.2.39=[[0], [3], [2], [39]] +3.2.4=[[0], [3], [2], [4]] +3.2.5=[[0], [3], [2], [5]] +3.2.6=[[0], [3], [2], [6]] +3.2.6.2=[[0], [3], [2], [6], [2]] +3.2.6.4=[[0], [3], [2], [6], [4]] +3.2.6.post2=[[0], [3], [2], [6], [0, inf, 2]] +3.2.6a=[[0], [3], [2], [6, 'a']] +3.2.7=[[0], [3], [2], [7]] +3.2.8=[[0], [3], [2], [8]] +3.2.9=[[0], [3], [2], [9]] +3.2.post2=[[0], [3], [2], [0, inf, 2]] +3.2.post3=[[0], [3], [2], [0, inf, 3]] +3.2.post4=[[0], [3], [2], [0, inf, 4]] +3.2.post5=[[0], [3], [2], [0, inf, 5]] +3.2.post6=[[0], [3], [2], [0, inf, 6]] +3.2.post7=[[0], [3], [2], [0, inf, 7]] +3.2.post8=[[0], [3], [2], [0, inf, 8]] +3.2.post9=[[0], [3], [2], [0, inf, 9]] +3.20=[[0], [3], [20]] +3.20.0=[[0], [3], [20], [0]] +3.20.1=[[0], [3], [20], [1]] +3.20.1.r1=[[0], [3], [20], [1], [0, 'r', 1]] +3.20.2=[[0], [3], [20], [2]] +3.20.3=[[0], [3], [20], [3]] +3.20.4=[[0], [3], [20], [4]] +3.20.4.1=[[0], [3], [20], [4], [1]] +3.20.4.2=[[0], [3], [20], [4], [2]] +3.20.4.3=[[0], [3], [20], [4], [3]] +3.20.4.4=[[0], [3], [20], [4], [4]] +3.20.4.5=[[0], [3], [20], [4], [5]] +3.20.4.6=[[0], [3], [20], [4], [6]] +3.20.5=[[0], [3], [20], [5]] +3.20.6=[[0], [3], [20], [6]] +3.2021.12.2=[[0], [3], [2021], [12], [2]] +3.2021.15.2=[[0], [3], [2021], [15], [2]] +3.2021.16.2=[[0], [3], [2021], [16], [2]] +3.2021.18.2=[[0], [3], [2021], [18], [2]] +3.2021.22.2=[[0], [3], [2021], [22], [2]] +3.2021.24.2=[[0], [3], [2021], [24], [2]] +3.2021.25.2=[[0], [3], [2021], [25], [2]] +3.2021.26.2=[[0], [3], [2021], [26], [2]] +3.2021.30.2=[[0], [3], [2021], [30], [2]] +3.2021.31.2=[[0], [3], [2021], [31], [2]] +3.2021.32.2=[[0], [3], [2021], [32], [2]] +3.2021.33.2=[[0], [3], [2021], [33], [2]] +3.2021.34.2=[[0], [3], [2021], [34], [2]] +3.2021.37.2=[[0], [3], [2021], [37], [2]] +3.2021.40.2=[[0], [3], [2021], [40], [2]] +3.2021.41.2=[[0], [3], [2021], [41], [2]] +3.2021.42.2=[[0], [3], [2021], [42], [2]] +3.2021.43.2=[[0], [3], [2021], [43], [2]] +3.2021.45.2=[[0], [3], [2021], [45], [2]] +3.2021.46.2=[[0], [3], [2021], [46], [2]] +3.2021.47.2=[[0], [3], [2021], [47], [2]] +3.2021.49.2=[[0], [3], [2021], [49], [2]] +3.2021.52.2=[[0], [3], [2021], [52], [2]] +3.2022.11.2=[[0], [3], [2022], [11], [2]] +3.2022.12.2=[[0], [3], [2022], [12], [2]] +3.2022.13.2=[[0], [3], [2022], [13], [2]] +3.2022.14.2=[[0], [3], [2022], [14], [2]] +3.2022.15.2=[[0], [3], [2022], [15], [2]] +3.2022.16.2=[[0], [3], [2022], [16], [2]] +3.2022.17.2=[[0], [3], [2022], [17], [2]] +3.2022.19.2=[[0], [3], [2022], [19], [2]] +3.2022.25.2=[[0], [3], [2022], [25], [2]] +3.2022.3.2=[[0], [3], [2022], [3], [2]] +3.2022.30.2=[[0], [3], [2022], [30], [2]] +3.2022.31.2=[[0], [3], [2022], [31], [2]] +3.2022.32.2=[[0], [3], [2022], [32], [2]] +3.2022.33.2=[[0], [3], [2022], [33], [2]] +3.2022.34.2=[[0], [3], [2022], [34], [2]] +3.2022.4.2=[[0], [3], [2022], [4], [2]] +3.2022.40.2=[[0], [3], [2022], [40], [2]] +3.2022.41.2=[[0], [3], [2022], [41], [2]] +3.2022.42.2=[[0], [3], [2022], [42], [2]] +3.2022.44.2=[[0], [3], [2022], [44], [2]] +3.2022.45.2=[[0], [3], [2022], [45], [2]] +3.2022.47.2=[[0], [3], [2022], [47], [2]] +3.2022.50.2=[[0], [3], [2022], [50], [2]] +3.2022.8.2=[[0], [3], [2022], [8], [2]] +3.2022.9.2=[[0], [3], [2022], [9], [2]] +3.2023.1.2=[[0], [3], [2023], [1], [2]] +3.2023.2.2=[[0], [3], [2023], [2], [2]] +3.2023.4.2=[[0], [3], [2023], [4], [2]] +3.2023.5.2=[[0], [3], [2023], [5], [2]] +3.2023.7.2=[[0], [3], [2023], [7], [2]] +3.21=[[0], [3], [21]] +3.21.0=[[0], [3], [21], [0]] +3.21.1=[[0], [3], [21], [1]] +3.21.10=[[0], [3], [21], [10]] +3.21.11=[[0], [3], [21], [11]] +3.21.12=[[0], [3], [21], [12]] +3.21.2=[[0], [3], [21], [2]] +3.21.3=[[0], [3], [21], [3]] +3.21.4=[[0], [3], [21], [4]] +3.21.5=[[0], [3], [21], [5]] +3.21.6=[[0], [3], [21], [6]] +3.21.7=[[0], [3], [21], [7]] +3.21.8=[[0], [3], [21], [8]] +3.21.9=[[0], [3], [21], [9]] +3.22=[[0], [3], [22]] +3.22.0=[[0], [3], [22], [0]] +3.22.0.r1=[[0], [3], [22], [0], [0, 'r', 1]] +3.22.1=[[0], [3], [22], [1]] +3.22.11=[[0], [3], [22], [11]] +3.22.14=[[0], [3], [22], [14]] +3.22.15=[[0], [3], [22], [15]] +3.22.16=[[0], [3], [22], [16]] +3.22.2=[[0], [3], [22], [2]] +3.22.3=[[0], [3], [22], [3]] +3.22.4=[[0], [3], [22], [4]] +3.22.5=[[0], [3], [22], [5]] +3.22.6=[[0], [3], [22], [6]] +3.23=[[0], [3], [23]] +3.23.0=[[0], [3], [23], [0]] +3.23.0.4=[[0], [3], [23], [0], [4]] +3.23.1=[[0], [3], [23], [1]] +3.23.1.r1=[[0], [3], [23], [1], [0, 'r', 1]] +3.23.2=[[0], [3], [23], [2]] +3.23.3=[[0], [3], [23], [3]] +3.23.4=[[0], [3], [23], [4]] +3.23.5=[[0], [3], [23], [5]] +3.23.6=[[0], [3], [23], [6]] +3.24=[[0], [3], [24]] +3.24.0=[[0], [3], [24], [0]] +3.24.0.r1=[[0], [3], [24], [0], [0, 'r', 1]] +3.24.1=[[0], [3], [24], [1]] +3.24.14=[[0], [3], [24], [14]] +3.24.18=[[0], [3], [24], [18]] +3.24.2=[[0], [3], [24], [2]] +3.24.20=[[0], [3], [24], [20]] +3.24.21=[[0], [3], [24], [21]] +3.24.22=[[0], [3], [24], [22]] +3.24.23=[[0], [3], [24], [23]] +3.24.24=[[0], [3], [24], [24]] +3.24.25=[[0], [3], [24], [25]] +3.24.26=[[0], [3], [24], [26]] +3.24.27=[[0], [3], [24], [27]] +3.24.28=[[0], [3], [24], [28]] +3.24.29=[[0], [3], [24], [29]] +3.24.3=[[0], [3], [24], [3]] +3.24.31=[[0], [3], [24], [31]] +3.24.32=[[0], [3], [24], [32]] +3.24.33=[[0], [3], [24], [33]] +3.24.34=[[0], [3], [24], [34]] +3.24.35=[[0], [3], [24], [35]] +3.24.36=[[0], [3], [24], [36]] +3.24.37=[[0], [3], [24], [37]] +3.24.38=[[0], [3], [24], [38]] +3.24.4=[[0], [3], [24], [4]] +3.24.5=[[0], [3], [24], [5]] +3.24.6=[[0], [3], [24], [6]] +3.24.7=[[0], [3], [24], [7]] +3.24.8=[[0], [3], [24], [8]] +3.25=[[0], [3], [25]] +3.25.0=[[0], [3], [25], [0]] +3.25.1=[[0], [3], [25], [1]] +3.25.2=[[0], [3], [25], [2]] +3.25.2.r1=[[0], [3], [25], [2], [0, 'r', 1]] +3.25.3=[[0], [3], [25], [3]] +3.26=[[0], [3], [26]] +3.26.0=[[0], [3], [26], [0]] +3.26.1=[[0], [3], [26], [1]] +3.26.2=[[0], [3], [26], [2]] +3.26.3=[[0], [3], [26], [3]] +3.26.4=[[0], [3], [26], [4]] +3.27=[[0], [3], [27]] +3.27.0=[[0], [3], [27], [0]] +3.27.1=[[0], [3], [27], [1]] +3.28=[[0], [3], [28]] +3.28.0=[[0], [3], [28], [0]] +3.28.0.r1=[[0], [3], [28], [0], [0, 'r', 1]] +3.28.1=[[0], [3], [28], [1]] +3.28.2=[[0], [3], [28], [2]] +3.28.3=[[0], [3], [28], [3]] +3.28.4=[[0], [3], [28], [4]] +3.28.5=[[0], [3], [28], [5]] +3.28.6=[[0], [3], [28], [6]] +3.28.7=[[0], [3], [28], [7]] +3.29=[[0], [3], [29]] +3.29.0=[[0], [3], [29], [0]] +3.29.0.r1=[[0], [3], [29], [0], [0, 'r', 1]] +3.29.1=[[0], [3], [29], [1]] +3.29.2=[[0], [3], [29], [2]] +3.29.3=[[0], [3], [29], [3]] +3.2_0=[[0], [3], [2], [0]] +3.2_1=[[0], [3], [2], [1]] +3.2_10=[[0], [3], [2], [10]] +3.2_11=[[0], [3], [2], [11]] +3.2_12=[[0], [3], [2], [12]] +3.2_13=[[0], [3], [2], [13]] +3.2_2=[[0], [3], [2], [2]] +3.2_3=[[0], [3], [2], [3]] +3.2_4=[[0], [3], [2], [4]] +3.2_7=[[0], [3], [2], [7]] +3.2_8=[[0], [3], [2], [8]] +3.2_9=[[0], [3], [2], [9]] +3.2a=[[0], [3], [2, 'a']] +3.2rc1=[[0], [3], [2, 'rc', 1]] +3.3=[[0], [3], [3]] +3.3.0=[[0], [3], [3], [0]] +3.3.0.1=[[0], [3], [3], [0], [1]] +3.3.0.2=[[0], [3], [3], [0], [2]] +3.3.0.23=[[0], [3], [3], [0], [23]] +3.3.0.4=[[0], [3], [3], [0], [4]] +3.3.0a69=[[0], [3], [3], [0, 'a', 69]] +3.3.0a70=[[0], [3], [3], [0, 'a', 70]] +3.3.1=[[0], [3], [3], [1]] +3.3.1.1=[[0], [3], [3], [1], [1]] +3.3.10=[[0], [3], [3], [10]] +3.3.108=[[0], [3], [3], [108]] +3.3.11=[[0], [3], [3], [11]] +3.3.111=[[0], [3], [3], [111]] +3.3.112=[[0], [3], [3], [112]] +3.3.113=[[0], [3], [3], [113]] +3.3.115=[[0], [3], [3], [115]] +3.3.12=[[0], [3], [3], [12]] +3.3.13=[[0], [3], [3], [13]] +3.3.14=[[0], [3], [3], [14]] +3.3.15=[[0], [3], [3], [15]] +3.3.16=[[0], [3], [3], [16]] +3.3.17=[[0], [3], [3], [17]] +3.3.18=[[0], [3], [3], [18]] +3.3.19=[[0], [3], [3], [19]] +3.3.2=[[0], [3], [3], [2]] +3.3.2.post1=[[0], [3], [3], [2], [0, inf, 1]] +3.3.20=[[0], [3], [3], [20]] +3.3.21=[[0], [3], [3], [21]] +3.3.22=[[0], [3], [3], [22]] +3.3.23=[[0], [3], [3], [23]] +3.3.23.1=[[0], [3], [3], [23], [1]] +3.3.23.2=[[0], [3], [3], [23], [2]] +3.3.24=[[0], [3], [3], [24]] +3.3.25=[[0], [3], [3], [25]] +3.3.26=[[0], [3], [3], [26]] +3.3.27=[[0], [3], [3], [27]] +3.3.28=[[0], [3], [3], [28]] +3.3.29=[[0], [3], [3], [29]] +3.3.3=[[0], [3], [3], [3]] +3.3.3.1=[[0], [3], [3], [3], [1]] +3.3.3.2=[[0], [3], [3], [3], [2]] +3.3.30=[[0], [3], [3], [30]] +3.3.31=[[0], [3], [3], [31]] +3.3.3333=[[0], [3], [3], [3333]] +3.3.4=[[0], [3], [3], [4]] +3.3.4000=[[0], [3], [3], [4000]] +3.3.5=[[0], [3], [3], [5]] +3.3.5.1=[[0], [3], [3], [5], [1]] +3.3.6=[[0], [3], [3], [6]] +3.3.7=[[0], [3], [3], [7]] +3.3.7.1=[[0], [3], [3], [7], [1]] +3.3.8=[[0], [3], [3], [8]] +3.3.9=[[0], [3], [3], [9]] +3.3.90.1=[[0], [3], [3], [90], [1]] +3.3.90.2=[[0], [3], [3], [90], [2]] +3.3.90.3=[[0], [3], [3], [90], [3]] +3.3.90.4=[[0], [3], [3], [90], [4]] +3.3.904=[[0], [3], [3], [904]] +3.3.dev2=[[0], [3], [3], [0, 'DEV', 2]] +3.3.post0=[[0], [3], [3], [0, inf, 0]] +3.3.post2=[[0], [3], [3], [0, inf, 2]] +3.3.post3=[[0], [3], [3], [0, inf, 3]] +3.30=[[0], [3], [30]] +3.30.0=[[0], [3], [30], [0]] +3.30.0.4=[[0], [3], [30], [0], [4]] +3.30.0.5=[[0], [3], [30], [0], [5]] +3.30.0.6=[[0], [3], [30], [0], [6]] +3.30.0.7=[[0], [3], [30], [0], [7]] +3.30.1=[[0], [3], [30], [1]] +3.30.1.1=[[0], [3], [30], [1], [1]] +3.30.1.2=[[0], [3], [30], [1], [2]] +3.30.1.3=[[0], [3], [30], [1], [3]] +3.30.1.r1=[[0], [3], [30], [1], [0, 'r', 1]] +3.30.2=[[0], [3], [30], [2]] +3.30.3=[[0], [3], [30], [3]] +3.30.4=[[0], [3], [30], [4]] +3.30.5=[[0], [3], [30], [5]] +3.300=[[0], [3], [300]] +3.31=[[0], [3], [31]] +3.31.0=[[0], [3], [31], [0]] +3.31.1=[[0], [3], [31], [1]] +3.31.20024=[[0], [3], [31], [20024]] +3.32.0=[[0], [3], [32], [0]] +3.32.0.1=[[0], [3], [32], [0], [1]] +3.32.0.2=[[0], [3], [32], [0], [2]] +3.32.0.3=[[0], [3], [32], [0], [3]] +3.32.0.4=[[0], [3], [32], [0], [4]] +3.32.0.5=[[0], [3], [32], [0], [5]] +3.32.1=[[0], [3], [32], [1]] +3.32.1.1=[[0], [3], [32], [1], [1]] +3.32.1.2=[[0], [3], [32], [1], [2]] +3.32.1.3=[[0], [3], [32], [1], [3]] +3.32.1.4=[[0], [3], [32], [1], [4]] +3.32.1.5=[[0], [3], [32], [1], [5]] +3.32.1.6=[[0], [3], [32], [1], [6]] +3.32.1.7=[[0], [3], [32], [1], [7]] +3.32.2=[[0], [3], [32], [2]] +3.32.2.r1=[[0], [3], [32], [2], [0, 'r', 1]] +3.32.20026=[[0], [3], [32], [20026]] +3.32.20028=[[0], [3], [32], [20028]] +3.32.3=[[0], [3], [32], [3]] +3.32_1=[[0], [3], [32], [1]] +3.33.0=[[0], [3], [33], [0]] +3.33.0.r1=[[0], [3], [33], [0], [0, 'r', 1]] +3.33.1=[[0], [3], [33], [1]] +3.34=[[0], [3], [34]] +3.34.0=[[0], [3], [34], [0]] +3.34.0.1=[[0], [3], [34], [0], [1]] +3.34.0.3=[[0], [3], [34], [0], [3]] +3.34.0.6=[[0], [3], [34], [0], [6]] +3.34.0.r1=[[0], [3], [34], [0], [0, 'r', 1]] +3.34.1=[[0], [3], [34], [1]] +3.34.2=[[0], [3], [34], [2]] +3.34.3=[[0], [3], [34], [3]] +3.35=[[0], [3], [35]] +3.35.0=[[0], [3], [35], [0]] +3.35.0.2=[[0], [3], [35], [0], [2]] +3.35.2=[[0], [3], [35], [2]] +3.35.3=[[0], [3], [35], [3]] +3.35.4=[[0], [3], [35], [4]] +3.35.5=[[0], [3], [35], [5]] +3.35_1=[[0], [3], [35], [1]] +3.36=[[0], [3], [36]] +3.36.0=[[0], [3], [36], [0]] +3.36.0.1=[[0], [3], [36], [0], [1]] +3.36.0.2=[[0], [3], [36], [0], [2]] +3.36.0.3=[[0], [3], [36], [0], [3]] +3.36.0.4=[[0], [3], [36], [0], [4]] +3.36.0.r1=[[0], [3], [36], [0], [0, 'r', 1]] +3.36.1=[[0], [3], [36], [1]] +3.36.1.1=[[0], [3], [36], [1], [1]] +3.36.1.2=[[0], [3], [36], [1], [2]] +3.36.1.3=[[0], [3], [36], [1], [3]] +3.36.1.4=[[0], [3], [36], [1], [4]] +3.36.1.5=[[0], [3], [36], [1], [5]] +3.36.2=[[0], [3], [36], [2]] +3.36.3=[[0], [3], [36], [3]] +3.37=[[0], [3], [37]] +3.37.0=[[0], [3], [37], [0]] +3.37.0.r1=[[0], [3], [37], [0], [0, 'r', 1]] +3.37.1=[[0], [3], [37], [1]] +3.37.3=[[0], [3], [37], [3]] +3.38.0=[[0], [3], [38], [0]] +3.38.0.1=[[0], [3], [38], [0], [1]] +3.38.0.2=[[0], [3], [38], [0], [2]] +3.38.0.3=[[0], [3], [38], [0], [3]] +3.38.0.4=[[0], [3], [38], [0], [4]] +3.38.1=[[0], [3], [38], [1]] +3.38.2=[[0], [3], [38], [2]] +3.38.3=[[0], [3], [38], [3]] +3.38.4=[[0], [3], [38], [4]] +3.38.5=[[0], [3], [38], [5]] +3.38.9=[[0], [3], [38], [9]] +3.39=[[0], [3], [39]] +3.39.0=[[0], [3], [39], [0]] +3.39.1=[[0], [3], [39], [1]] +3.39.2=[[0], [3], [39], [2]] +3.39.2.0=[[0], [3], [39], [2], [0]] +3.39.2.1=[[0], [3], [39], [2], [1]] +3.39.3=[[0], [3], [39], [3]] +3.39.4=[[0], [3], [39], [4]] +3.39.4.0=[[0], [3], [39], [4], [0]] +3.3_0=[[0], [3], [3], [0]] +3.3_1=[[0], [3], [3], [1]] +3.3_13=[[0], [3], [3], [13]] +3.3_2=[[0], [3], [3], [2]] +3.3_3=[[0], [3], [3], [3]] +3.3_6=[[0], [3], [3], [6]] +3.3_7=[[0], [3], [3], [7]] +3.3a=[[0], [3], [3, 'a']] +3.3b1=[[0], [3], [3, 'b', 1]] +3.3b2=[[0], [3], [3, 'b', 2]] +3.3b3=[[0], [3], [3, 'b', 3]] +3.3b4=[[0], [3], [3, 'b', 4]] +3.3rc2=[[0], [3], [3, 'rc', 2]] +3.4=[[0], [3], [4]] +3.4.0=[[0], [3], [4], [0]] +3.4.0.0=[[0], [3], [4], [0], [0]] +3.4.0.3=[[0], [3], [4], [0], [3]] +3.4.0.95=[[0], [3], [4], [0], [95]] +3.4.1=[[0], [3], [4], [1]] +3.4.1.0=[[0], [3], [4], [1], [0]] +3.4.10=[[0], [3], [4], [10]] +3.4.11=[[0], [3], [4], [11]] +3.4.12=[[0], [3], [4], [12]] +3.4.13=[[0], [3], [4], [13]] +3.4.14=[[0], [3], [4], [14]] +3.4.15=[[0], [3], [4], [15]] +3.4.16=[[0], [3], [4], [16]] +3.4.17=[[0], [3], [4], [17]] +3.4.18=[[0], [3], [4], [18]] +3.4.19=[[0], [3], [4], [19]] +3.4.2=[[0], [3], [4], [2]] +3.4.2.1=[[0], [3], [4], [2], [1]] +3.4.2.2=[[0], [3], [4], [2], [2]] +3.4.2.3=[[0], [3], [4], [2], [3]] +3.4.2.4=[[0], [3], [4], [2], [4]] +3.4.2.5=[[0], [3], [4], [2], [5]] +3.4.3=[[0], [3], [4], [3]] +3.4.4=[[0], [3], [4], [4]] +3.4.5=[[0], [3], [4], [5]] +3.4.6=[[0], [3], [4], [6]] +3.4.7=[[0], [3], [4], [7]] +3.4.7.1=[[0], [3], [4], [7], [1]] +3.4.7.2=[[0], [3], [4], [7], [2]] +3.4.8=[[0], [3], [4], [8]] +3.4.9=[[0], [3], [4], [9]] +3.4.post0=[[0], [3], [4], [0, inf, 0]] +3.4.post1=[[0], [3], [4], [0, inf, 1]] +3.4.post2=[[0], [3], [4], [0, inf, 2]] +3.4.post3=[[0], [3], [4], [0, inf, 3]] +3.4.post4=[[0], [3], [4], [0, inf, 4]] +3.4.post5=[[0], [3], [4], [0, inf, 5]] +3.4.post6=[[0], [3], [4], [0, inf, 6]] +3.4.rc2=[[0], [3], [4], [0, 'rc', 2]] +3.40.0=[[0], [3], [40], [0]] +3.40.0.1=[[0], [3], [40], [0], [1]] +3.40.1=[[0], [3], [40], [1]] +3.40.2=[[0], [3], [40], [2]] +3.40.3=[[0], [3], [40], [3]] +3.41.0=[[0], [3], [41], [0]] +3.41.2=[[0], [3], [41], [2]] +3.410=[[0], [3], [410]] +3.42=[[0], [3], [42]] +3.42.0=[[0], [3], [42], [0]] +3.42.1=[[0], [3], [42], [1]] +3.42.2=[[0], [3], [42], [2]] +3.420=[[0], [3], [420]] +3.43=[[0], [3], [43]] +3.43.0=[[0], [3], [43], [0]] +3.43.1=[[0], [3], [43], [1]] +3.43.2=[[0], [3], [43], [2]] +3.430=[[0], [3], [430]] +3.44=[[0], [3], [44]] +3.44.0=[[0], [3], [44], [0]] +3.44.1=[[0], [3], [44], [1]] +3.44.23=[[0], [3], [44], [23]] +3.44.24=[[0], [3], [44], [24]] +3.44.26=[[0], [3], [44], [26]] +3.44.3=[[0], [3], [44], [3]] +3.44.4=[[0], [3], [44], [4]] +3.45=[[0], [3], [45]] +3.45.0=[[0], [3], [45], [0]] +3.45.1=[[0], [3], [45], [1]] +3.45.2=[[0], [3], [45], [2]] +3.45.20031=[[0], [3], [45], [20031]] +3.45.3=[[0], [3], [45], [3]] +3.45.5=[[0], [3], [45], [5]] +3.46=[[0], [3], [46]] +3.46.0=[[0], [3], [46], [0]] +3.46.1=[[0], [3], [46], [1]] +3.47=[[0], [3], [47]] +3.47.0=[[0], [3], [47], [0]] +3.47.1=[[0], [3], [47], [1]] +3.47.2=[[0], [3], [47], [2]] +3.47.20042=[[0], [3], [47], [20042]] +3.47.3=[[0], [3], [47], [3]] +3.470=[[0], [3], [470]] +3.48.0=[[0], [3], [48], [0]] +3.48.1=[[0], [3], [48], [1]] +3.48_01=[[0], [3], [48], [1]] +3.49.0=[[0], [3], [49], [0]] +3.49.1=[[0], [3], [49], [1]] +3.4_0=[[0], [3], [4], [0]] +3.4_10=[[0], [3], [4], [10]] +3.4_13=[[0], [3], [4], [13]] +3.4_3=[[0], [3], [4], [3]] +3.4_5=[[0], [3], [4], [5]] +3.4_6=[[0], [3], [4], [6]] +3.4_8=[[0], [3], [4], [8]] +3.5=[[0], [3], [5]] +3.5.0=[[0], [3], [5], [0]] +3.5.0.0=[[0], [3], [5], [0], [0]] +3.5.0.1=[[0], [3], [5], [0], [1]] +3.5.0.2=[[0], [3], [5], [0], [2]] +3.5.0.3=[[0], [3], [5], [0], [3]] +3.5.0.4=[[0], [3], [5], [0], [4]] +3.5.0b2=[[0], [3], [5], [0, 'b', 2]] +3.5.0rc2=[[0], [3], [5], [0, 'rc', 2]] +3.5.1=[[0], [3], [5], [1]] +3.5.1.1=[[0], [3], [5], [1], [1]] +3.5.10=[[0], [3], [5], [10]] +3.5.11=[[0], [3], [5], [11]] +3.5.12=[[0], [3], [5], [12]] +3.5.13=[[0], [3], [5], [13]] +3.5.14=[[0], [3], [5], [14]] +3.5.15=[[0], [3], [5], [15]] +3.5.16=[[0], [3], [5], [16]] +3.5.17=[[0], [3], [5], [17]] +3.5.18=[[0], [3], [5], [18]] +3.5.19=[[0], [3], [5], [19]] +3.5.2=[[0], [3], [5], [2]] +3.5.20=[[0], [3], [5], [20]] +3.5.21=[[0], [3], [5], [21]] +3.5.22=[[0], [3], [5], [22]] +3.5.23=[[0], [3], [5], [23]] +3.5.24=[[0], [3], [5], [24]] +3.5.25=[[0], [3], [5], [25]] +3.5.26=[[0], [3], [5], [26]] +3.5.28=[[0], [3], [5], [28]] +3.5.3=[[0], [3], [5], [3]] +3.5.3.0=[[0], [3], [5], [3], [0]] +3.5.31=[[0], [3], [5], [31]] +3.5.32=[[0], [3], [5], [32]] +3.5.4=[[0], [3], [5], [4]] +3.5.42=[[0], [3], [5], [42]] +3.5.44=[[0], [3], [5], [44]] +3.5.45=[[0], [3], [5], [45]] +3.5.46=[[0], [3], [5], [46]] +3.5.47=[[0], [3], [5], [47]] +3.5.49=[[0], [3], [5], [49]] +3.5.5=[[0], [3], [5], [5]] +3.5.50=[[0], [3], [5], [50]] +3.5.51=[[0], [3], [5], [51]] +3.5.52=[[0], [3], [5], [52]] +3.5.53=[[0], [3], [5], [53]] +3.5.54=[[0], [3], [5], [54]] +3.5.55=[[0], [3], [5], [55]] +3.5.56=[[0], [3], [5], [56]] +3.5.57=[[0], [3], [5], [57]] +3.5.58=[[0], [3], [5], [58]] +3.5.59=[[0], [3], [5], [59]] +3.5.6=[[0], [3], [5], [6]] +3.5.60=[[0], [3], [5], [60]] +3.5.63=[[0], [3], [5], [63]] +3.5.65=[[0], [3], [5], [65]] +3.5.66=[[0], [3], [5], [66]] +3.5.67=[[0], [3], [5], [67]] +3.5.68=[[0], [3], [5], [68]] +3.5.7=[[0], [3], [5], [7]] +3.5.8=[[0], [3], [5], [8]] +3.5.9=[[0], [3], [5], [9]] +3.5.post0=[[0], [3], [5], [0, inf, 0]] +3.5.post1=[[0], [3], [5], [0, inf, 1]] +3.5.post2=[[0], [3], [5], [0, inf, 2]] +3.5.rc1=[[0], [3], [5], [0, 'rc', 1]] +3.50.0=[[0], [3], [50], [0]] +3.50.1=[[0], [3], [50], [1]] +3.50.2=[[0], [3], [50], [2]] +3.51.0=[[0], [3], [51], [0]] +3.51.1=[[0], [3], [51], [1]] +3.51.2=[[0], [3], [51], [2]] +3.51.20059=[[0], [3], [51], [20059]] +3.51.3=[[0], [3], [51], [3]] +3.51.4=[[0], [3], [51], [4]] +3.52=[[0], [3], [52]] +3.52.0=[[0], [3], [52], [0]] +3.52.1=[[0], [3], [52], [1]] +3.53.0=[[0], [3], [53], [0]] +3.53.1=[[0], [3], [53], [1]] +3.54.0=[[0], [3], [54], [0]] +3.55=[[0], [3], [55]] +3.55.0=[[0], [3], [55], [0]] +3.55.1=[[0], [3], [55], [1]] +3.55.2=[[0], [3], [55], [2]] +3.55.3=[[0], [3], [55], [3]] +3.55.4=[[0], [3], [55], [4]] +3.55.6=[[0], [3], [55], [6]] +3.56=[[0], [3], [56]] +3.56.0=[[0], [3], [56], [0]] +3.56.3=[[0], [3], [56], [3]] +3.56.5=[[0], [3], [56], [5]] +3.56.6=[[0], [3], [56], [6]] +3.56.7=[[0], [3], [56], [7]] +3.56.8=[[0], [3], [56], [8]] +3.56.9=[[0], [3], [56], [9]] +3.57=[[0], [3], [57]] +3.57.0=[[0], [3], [57], [0]] +3.58=[[0], [3], [58]] +3.58.0=[[0], [3], [58], [0]] +3.59=[[0], [3], [59]] +3.59.0=[[0], [3], [59], [0]] +3.59.1=[[0], [3], [59], [1]] +3.5_0=[[0], [3], [5], [0]] +3.5_11=[[0], [3], [5], [11]] +3.5_15=[[0], [3], [5], [15]] +3.5_2=[[0], [3], [5], [2]] +3.5_21=[[0], [3], [5], [21]] +3.5_3=[[0], [3], [5], [3]] +3.5_5=[[0], [3], [5], [5]] +3.6=[[0], [3], [6]] +3.6.0=[[0], [3], [6], [0]] +3.6.0.0=[[0], [3], [6], [0], [0]] +3.6.01=[[0], [3], [6], [1]] +3.6.0a3=[[0], [3], [6], [0, 'a', 3]] +3.6.0a4=[[0], [3], [6], [0, 'a', 4]] +3.6.0b1=[[0], [3], [6], [0, 'b', 1]] +3.6.0b2=[[0], [3], [6], [0, 'b', 2]] +3.6.0b3=[[0], [3], [6], [0, 'b', 3]] +3.6.0b4=[[0], [3], [6], [0, 'b', 4]] +3.6.0rc1=[[0], [3], [6], [0, 'rc', 1]] +3.6.1=[[0], [3], [6], [1]] +3.6.10=[[0], [3], [6], [10]] +3.6.11=[[0], [3], [6], [11]] +3.6.12=[[0], [3], [6], [12]] +3.6.13=[[0], [3], [6], [13]] +3.6.14=[[0], [3], [6], [14]] +3.6.15=[[0], [3], [6], [15]] +3.6.16=[[0], [3], [6], [16]] +3.6.17=[[0], [3], [6], [17]] +3.6.18=[[0], [3], [6], [18]] +3.6.19=[[0], [3], [6], [19]] +3.6.2=[[0], [3], [6], [2]] +3.6.2.0=[[0], [3], [6], [2], [0]] +3.6.2.1=[[0], [3], [6], [2], [1]] +3.6.2.2=[[0], [3], [6], [2], [2]] +3.6.20=[[0], [3], [6], [20]] +3.6.23=[[0], [3], [6], [23]] +3.6.24=[[0], [3], [6], [24]] +3.6.29=[[0], [3], [6], [29]] +3.6.3=[[0], [3], [6], [3]] +3.6.3.0=[[0], [3], [6], [3], [0]] +3.6.30=[[0], [3], [6], [30]] +3.6.32=[[0], [3], [6], [32]] +3.6.33=[[0], [3], [6], [33]] +3.6.34=[[0], [3], [6], [34]] +3.6.35=[[0], [3], [6], [35]] +3.6.36=[[0], [3], [6], [36]] +3.6.37=[[0], [3], [6], [37]] +3.6.38=[[0], [3], [6], [38]] +3.6.39=[[0], [3], [6], [39]] +3.6.4=[[0], [3], [6], [4]] +3.6.4.0=[[0], [3], [6], [4], [0]] +3.6.41=[[0], [3], [6], [41]] +3.6.42=[[0], [3], [6], [42]] +3.6.43=[[0], [3], [6], [43]] +3.6.5=[[0], [3], [6], [5]] +3.6.6=[[0], [3], [6], [6]] +3.6.7=[[0], [3], [6], [7]] +3.6.8=[[0], [3], [6], [8]] +3.6.9=[[0], [3], [6], [9]] +3.60=[[0], [3], [60]] +3.60.0=[[0], [3], [60], [0]] +3.60.1=[[0], [3], [60], [1]] +3.61=[[0], [3], [61]] +3.61.0=[[0], [3], [61], [0]] +3.62=[[0], [3], [62]] +3.62.0=[[0], [3], [62], [0]] +3.63=[[0], [3], [63]] +3.63.0=[[0], [3], [63], [0]] +3.64=[[0], [3], [64]] +3.64.0=[[0], [3], [64], [0]] +3.64.1=[[0], [3], [64], [1]] +3.64.2=[[0], [3], [64], [2]] +3.65=[[0], [3], [65]] +3.65.0=[[0], [3], [65], [0]] +3.66=[[0], [3], [66]] +3.66.0=[[0], [3], [66], [0]] +3.66.1=[[0], [3], [66], [1]] +3.66.11=[[0], [3], [66], [11]] +3.66.12=[[0], [3], [66], [12]] +3.66.14=[[0], [3], [66], [14]] +3.66.2=[[0], [3], [66], [2]] +3.66.24=[[0], [3], [66], [24]] +3.66.29=[[0], [3], [66], [29]] +3.66.31=[[0], [3], [66], [31]] +3.66.32=[[0], [3], [66], [32]] +3.66.4=[[0], [3], [66], [4]] +3.66.5=[[0], [3], [66], [5]] +3.66.6=[[0], [3], [66], [6]] +3.66.8=[[0], [3], [66], [8]] +3.66.9=[[0], [3], [66], [9]] +3.67=[[0], [3], [67]] +3.67.0=[[0], [3], [67], [0]] +3.67.1=[[0], [3], [67], [1]] +3.68.0=[[0], [3], [68], [0]] +3.68.1=[[0], [3], [68], [1]] +3.68.2=[[0], [3], [68], [2]] +3.69=[[0], [3], [69]] +3.69.0=[[0], [3], [69], [0]] +3.69.1=[[0], [3], [69], [1]] +3.69.11=[[0], [3], [69], [11]] +3.69.12=[[0], [3], [69], [12]] +3.69.2=[[0], [3], [69], [2]] +3.6_1=[[0], [3], [6], [1]] +3.6_13=[[0], [3], [6], [13]] +3.6_14=[[0], [3], [6], [14]] +3.6_20=[[0], [3], [6], [20]] +3.6_6=[[0], [3], [6], [6]] +3.7=[[0], [3], [7]] +3.7.0=[[0], [3], [7], [0]] +3.7.0.1=[[0], [3], [7], [0], [1]] +3.7.0.8=[[0], [3], [7], [0], [8]] +3.7.00=[[0], [3], [7], [0]] +3.7.01=[[0], [3], [7], [1]] +3.7.1=[[0], [3], [7], [1]] +3.7.10=[[0], [3], [7], [10]] +3.7.11=[[0], [3], [7], [11]] +3.7.12=[[0], [3], [7], [12]] +3.7.13=[[0], [3], [7], [13]] +3.7.14=[[0], [3], [7], [14]] +3.7.15=[[0], [3], [7], [15]] +3.7.16=[[0], [3], [7], [16]] +3.7.17=[[0], [3], [7], [17]] +3.7.19=[[0], [3], [7], [19]] +3.7.2=[[0], [3], [7], [2]] +3.7.20=[[0], [3], [7], [20]] +3.7.22=[[0], [3], [7], [22]] +3.7.28=[[0], [3], [7], [28]] +3.7.3=[[0], [3], [7], [3]] +3.7.4=[[0], [3], [7], [4]] +3.7.4.1=[[0], [3], [7], [4], [1]] +3.7.4.2=[[0], [3], [7], [4], [2]] +3.7.4.3=[[0], [3], [7], [4], [3]] +3.7.4.post0=[[0], [3], [7], [4], [0, inf, 0]] +3.7.5=[[0], [3], [7], [5]] +3.7.5.1=[[0], [3], [7], [5], [1]] +3.7.6=[[0], [3], [7], [6]] +3.7.6.0=[[0], [3], [7], [6], [0]] +3.7.7=[[0], [3], [7], [7]] +3.7.7.0=[[0], [3], [7], [7], [0]] +3.7.7.1=[[0], [3], [7], [7], [1]] +3.7.8=[[0], [3], [7], [8]] +3.7.8.2=[[0], [3], [7], [8], [2]] +3.7.9=[[0], [3], [7], [9]] +3.70.0=[[0], [3], [70], [0]] +3.70.20151=[[0], [3], [70], [20151]] +3.70.3=[[0], [3], [70], [3]] +3.70.4=[[0], [3], [70], [4]] +3.71=[[0], [3], [71]] +3.71.0=[[0], [3], [71], [0]] +3.71.1=[[0], [3], [71], [1]] +3.71.10=[[0], [3], [71], [10]] +3.71.20168=[[0], [3], [71], [20168]] +3.71.3=[[0], [3], [71], [3]] +3.71.6=[[0], [3], [71], [6]] +3.71.7=[[0], [3], [71], [7]] +3.71.8=[[0], [3], [71], [8]] +3.71.9=[[0], [3], [71], [9]] +3.72=[[0], [3], [72]] +3.72.0=[[0], [3], [72], [0]] +3.73=[[0], [3], [73]] +3.73.0=[[0], [3], [73], [0]] +3.73.1=[[0], [3], [73], [1]] +3.73.2=[[0], [3], [73], [2]] +3.73.3=[[0], [3], [73], [3]] +3.73.4=[[0], [3], [73], [4]] +3.74=[[0], [3], [74]] +3.74.0=[[0], [3], [74], [0]] +3.74.1=[[0], [3], [74], [1]] +3.74.2=[[0], [3], [74], [2]] +3.74.3=[[0], [3], [74], [3]] +3.75=[[0], [3], [75]] +3.75.0=[[0], [3], [75], [0]] +3.75.3=[[0], [3], [75], [3]] +3.75.4=[[0], [3], [75], [4]] +3.76=[[0], [3], [76]] +3.76.0=[[0], [3], [76], [0]] +3.77=[[0], [3], [77]] +3.77.0=[[0], [3], [77], [0]] +3.78=[[0], [3], [78]] +3.78.0=[[0], [3], [78], [0]] +3.79.0=[[0], [3], [79], [0]] +3.79.2=[[0], [3], [79], [2]] +3.79.3=[[0], [3], [79], [3]] +3.7_3=[[0], [3], [7], [3]] +3.7_4=[[0], [3], [7], [4]] +3.7_5=[[0], [3], [7], [5]] +3.7_6=[[0], [3], [7], [6]] +3.7_7=[[0], [3], [7], [7]] +3.7_8=[[0], [3], [7], [8]] +3.8=[[0], [3], [8]] +3.8.0=[[0], [3], [8], [0]] +3.8.0.0=[[0], [3], [8], [0], [0]] +3.8.1=[[0], [3], [8], [1]] +3.8.1.0=[[0], [3], [8], [1], [0]] +3.8.1.0+boost170=[[0], [3], [8], [1], [0]] +3.8.1.post1=[[0], [3], [8], [1], [0, inf, 1]] +3.8.10=[[0], [3], [8], [10]] +3.8.11=[[0], [3], [8], [11]] +3.8.12=[[0], [3], [8], [12]] +3.8.13=[[0], [3], [8], [13]] +3.8.14=[[0], [3], [8], [14]] +3.8.15=[[0], [3], [8], [15]] +3.8.16=[[0], [3], [8], [16]] +3.8.17=[[0], [3], [8], [17]] +3.8.18=[[0], [3], [8], [18]] +3.8.19=[[0], [3], [8], [19]] +3.8.2=[[0], [3], [8], [2]] +3.8.2.0=[[0], [3], [8], [2], [0]] +3.8.3=[[0], [3], [8], [3]] +3.8.3.0=[[0], [3], [8], [3], [0]] +3.8.3.1=[[0], [3], [8], [3], [1]] +3.8.4=[[0], [3], [8], [4]] +3.8.4.0=[[0], [3], [8], [4], [0]] +3.8.5=[[0], [3], [8], [5]] +3.8.5.0=[[0], [3], [8], [5], [0]] +3.8.6=[[0], [3], [8], [6]] +3.8.7=[[0], [3], [8], [7]] +3.8.8=[[0], [3], [8], [8]] +3.8.9=[[0], [3], [8], [9]] +3.80=[[0], [3], [80]] +3.80.0=[[0], [3], [80], [0]] +3.81=[[0], [3], [81]] +3.81.0=[[0], [3], [81], [0]] +3.82=[[0], [3], [82]] +3.82.0=[[0], [3], [82], [0]] +3.82.1=[[0], [3], [82], [1]] +3.82.3=[[0], [3], [82], [3]] +3.82.4=[[0], [3], [82], [4]] +3.82.5=[[0], [3], [82], [5]] +3.82.6=[[0], [3], [82], [6]] +3.83=[[0], [3], [83]] +3.83.0=[[0], [3], [83], [0]] +3.83.1=[[0], [3], [83], [1]] +3.83.2=[[0], [3], [83], [2]] +3.84.0=[[0], [3], [84], [0]] +3.84.1=[[0], [3], [84], [1]] +3.84.2=[[0], [3], [84], [2]] +3.84.3=[[0], [3], [84], [3]] +3.84.4=[[0], [3], [84], [4]] +3.84.5=[[0], [3], [84], [5]] +3.84.6=[[0], [3], [84], [6]] +3.85.0=[[0], [3], [85], [0]] +3.85.1=[[0], [3], [85], [1]] +3.85.2=[[0], [3], [85], [2]] +3.85.3=[[0], [3], [85], [3]] +3.86.0=[[0], [3], [86], [0]] +3.86.3=[[0], [3], [86], [3]] +3.86.4=[[0], [3], [86], [4]] +3.86.5=[[0], [3], [86], [5]] +3.86.7=[[0], [3], [86], [7]] +3.86.8=[[0], [3], [86], [8]] +3.86.9=[[0], [3], [86], [9]] +3.87.0=[[0], [3], [87], [0]] +3.87.20218=[[0], [3], [87], [20218]] +3.88=[[0], [3], [88]] +3.88.0=[[0], [3], [88], [0]] +3.88.1=[[0], [3], [88], [1]] +3.88.2=[[0], [3], [88], [2]] +3.88.3=[[0], [3], [88], [3]] +3.89=[[0], [3], [89]] +3.89.0=[[0], [3], [89], [0]] +3.89.20246=[[0], [3], [89], [20246]] +3.8_1=[[0], [3], [8], [1]] +3.8_2=[[0], [3], [8], [2]] +3.8_3=[[0], [3], [8], [3]] +3.9=[[0], [3], [9]] +3.9.0=[[0], [3], [9], [0]] +3.9.0.0=[[0], [3], [9], [0], [0]] +3.9.0.post1=[[0], [3], [9], [0], [0, inf, 1]] +3.9.1=[[0], [3], [9], [1]] +3.9.1.0=[[0], [3], [9], [1], [0]] +3.9.1.1=[[0], [3], [9], [1], [1]] +3.9.1.post1=[[0], [3], [9], [1], [0, inf, 1]] +3.9.10=[[0], [3], [9], [10]] +3.9.11=[[0], [3], [9], [11]] +3.9.12=[[0], [3], [9], [12]] +3.9.13=[[0], [3], [9], [13]] +3.9.14=[[0], [3], [9], [14]] +3.9.15=[[0], [3], [9], [15]] +3.9.16=[[0], [3], [9], [16]] +3.9.18=[[0], [3], [9], [18]] +3.9.19=[[0], [3], [9], [19]] +3.9.2=[[0], [3], [9], [2]] +3.9.2.0=[[0], [3], [9], [2], [0]] +3.9.2.1=[[0], [3], [9], [2], [1]] +3.9.2.2=[[0], [3], [9], [2], [2]] +3.9.20=[[0], [3], [9], [20]] +3.9.21=[[0], [3], [9], [21]] +3.9.23=[[0], [3], [9], [23]] +3.9.24=[[0], [3], [9], [24]] +3.9.25=[[0], [3], [9], [25]] +3.9.26=[[0], [3], [9], [26]] +3.9.27=[[0], [3], [9], [27]] +3.9.29=[[0], [3], [9], [29]] +3.9.3=[[0], [3], [9], [3]] +3.9.3.0=[[0], [3], [9], [3], [0]] +3.9.30=[[0], [3], [9], [30]] +3.9.33=[[0], [3], [9], [33]] +3.9.34=[[0], [3], [9], [34]] +3.9.35=[[0], [3], [9], [35]] +3.9.36=[[0], [3], [9], [36]] +3.9.39=[[0], [3], [9], [39]] +3.9.3_1=[[0], [3], [9], [3], [1]] +3.9.3_2=[[0], [3], [9], [3], [2]] +3.9.4=[[0], [3], [9], [4]] +3.9.4.0=[[0], [3], [9], [4], [0]] +3.9.43=[[0], [3], [9], [43]] +3.9.5=[[0], [3], [9], [5]] +3.9.5.0=[[0], [3], [9], [5], [0]] +3.9.6=[[0], [3], [9], [6]] +3.9.6.0=[[0], [3], [9], [6], [0]] +3.9.7=[[0], [3], [9], [7]] +3.9.7.0=[[0], [3], [9], [7], [0]] +3.9.8=[[0], [3], [9], [8]] +3.9.8.0=[[0], [3], [9], [8], [0]] +3.9.9=[[0], [3], [9], [9]] +3.90=[[0], [3], [90]] +3.90.0=[[0], [3], [90], [0]] +3.901=[[0], [3], [901]] +3.93.20259=[[0], [3], [93], [20259]] +3.98_1.11=[[0], [3], [98], [1], [11]] +3.98_1.16=[[0], [3], [98], [1], [16]] +3.98_1.19=[[0], [3], [98], [1], [19]] +3.98_1.20=[[0], [3], [98], [1], [20]] +3.98_1.6=[[0], [3], [98], [1], [6]] +3.99_0.10=[[0], [3], [99], [0], [10]] +3.99_0.11=[[0], [3], [99], [0], [11]] +3.99_0.12=[[0], [3], [99], [0], [12]] +3.99_0.13=[[0], [3], [99], [0], [13]] +3.99_0.14=[[0], [3], [99], [0], [14]] +3.99_0.3=[[0], [3], [99], [0], [3]] +3.99_0.5=[[0], [3], [99], [0], [5]] +3.99_0.6=[[0], [3], [99], [0], [6]] +3.99_0.7=[[0], [3], [99], [0], [7]] +3.99_0.8=[[0], [3], [99], [0], [8]] +3.99_0.9=[[0], [3], [99], [0], [9]] +3.9_0=[[0], [3], [9], [0]] +3.9_3=[[0], [3], [9], [3]] +30=[[0], [30]] +30.1.2=[[0], [30], [1], [2]] +30.2.0=[[0], [30], [2], [0]] +30.3.0=[[0], [30], [3], [0]] +30.3.1=[[0], [30], [3], [1]] +300=[[0], [300]] +301=[[0], [301]] +3012.100=[[0], [3012], [100]] +302=[[0], [302]] +302.0.0=[[0], [302], [0], [0]] +303=[[0], [303]] +303.0.0=[[0], [303], [0], [0]] +304=[[0], [304]] +304.0.0=[[0], [304], [0], [0]] +3042.102=[[0], [3042], [102]] +3042.80.1=[[0], [3042], [80], [1]] +3042.80.2=[[0], [3042], [80], [2]] +3042.83.2=[[0], [3042], [83], [2]] +3042.89=[[0], [3042], [89]] +3042.89.1=[[0], [3042], [89], [1]] +3042.89.2=[[0], [3042], [89], [2]] +3043.102=[[0], [3043], [102]] +305.0.0=[[0], [305], [0], [0]] +306.0.0=[[0], [306], [0], [0]] +3062.100=[[0], [3062], [100]] +307.0.0=[[0], [307], [0], [0]] +308.0.0=[[0], [308], [0], [0]] +309.0.0=[[0], [309], [0], [0]] +31=[[0], [31]] +31.0.0=[[0], [31], [0], [0]] +31.0.1=[[0], [31], [0], [1]] +31.2.0=[[0], [31], [2], [0]] +310.0.0=[[0], [310], [0], [0]] +311.0.0=[[0], [311], [0], [0]] +312.0.0=[[0], [312], [0], [0]] +313.0.0=[[0], [313], [0], [0]] +313.0.1=[[0], [313], [0], [1]] +314.0.0=[[0], [314], [0], [0]] +315.0.0=[[0], [315], [0], [0]] +316.0.0=[[0], [316], [0], [0]] +317.0.0=[[0], [317], [0], [0]] +318.0.0=[[0], [318], [0], [0]] +319.0.0=[[0], [319], [0], [0]] +32=[[0], [32]] +32.0.0=[[0], [32], [0], [0]] +32.0.1=[[0], [32], [0], [1]] +32.1.0=[[0], [32], [1], [0]] +32.3.0=[[0], [32], [3], [0]] +32.3.1=[[0], [32], [3], [1]] +320.0.0=[[0], [320], [0], [0]] +321.0.0=[[0], [321], [0], [0]] +322.0.0=[[0], [322], [0], [0]] +323=[[0], [323]] +323.0.0=[[0], [323], [0], [0]] +324=[[0], [324]] +324.0.0=[[0], [324], [0], [0]] +325=[[0], [325]] +325.0.0=[[0], [325], [0], [0]] +326.0.0=[[0], [326], [0], [0]] +327.0.0=[[0], [327], [0], [0]] +328.0.0=[[0], [328], [0], [0]] +329.0.0=[[0], [329], [0], [0]] +33.1.0=[[0], [33], [1], [0]] +33.1.1=[[0], [33], [1], [1]] +33.4.0=[[0], [33], [4], [0]] +330=[[0], [330]] +330.0.0=[[0], [330], [0], [0]] +331=[[0], [331]] +331.0.0=[[0], [331], [0], [0]] +332.0.0=[[0], [332], [0], [0]] +333.0.0=[[0], [333], [0], [0]] +334.0.0=[[0], [334], [0], [0]] +335.0.0=[[0], [335], [0], [0]] +336.0.0=[[0], [336], [0], [0]] +337.0.0=[[0], [337], [0], [0]] +338.0.0=[[0], [338], [0], [0]] +339.0.0=[[0], [339], [0], [0]] +34.0=[[0], [34], [0]] +340.0.0=[[0], [340], [0], [0]] +341.0.0=[[0], [341], [0], [0]] +342.0.0=[[0], [342], [0], [0]] +343.0.0=[[0], [343], [0], [0]] +344.0.0=[[0], [344], [0], [0]] +346.0.0=[[0], [346], [0], [0]] +347.0.0=[[0], [347], [0], [0]] +348.0.0=[[0], [348], [0], [0]] +349.0.0=[[0], [349], [0], [0]] +35.0=[[0], [35], [0]] +35.0.0=[[0], [35], [0], [0]] +35.7.6=[[0], [35], [7], [6]] +35.7.7=[[0], [35], [7], [7]] +35.7.8=[[0], [35], [7], [8]] +35.8.0=[[0], [35], [8], [0]] +35.8.1=[[0], [35], [8], [1]] +35.8.3=[[0], [35], [8], [3]] +35.8.4=[[0], [35], [8], [4]] +35.9.0=[[0], [35], [9], [0]] +350.0.0=[[0], [350], [0], [0]] +351.0.0=[[0], [351], [0], [0]] +352.0.0=[[0], [352], [0], [0]] +353.0.0=[[0], [353], [0], [0]] +354.0.0=[[0], [354], [0], [0]] +355.0.0=[[0], [355], [0], [0]] +356.0.0=[[0], [356], [0], [0]] +357.0.0=[[0], [357], [0], [0]] +358.0.0=[[0], [358], [0], [0]] +359.0.0=[[0], [359], [0], [0]] +36=[[0], [36]] +36.0=[[0], [36], [0]] +36.0.0=[[0], [36], [0], [0]] +36.0.1=[[0], [36], [0], [1]] +36.0.2=[[0], [36], [0], [2]] +36.2.0=[[0], [36], [2], [0]] +36.2.2=[[0], [36], [2], [2]] +36.3.0=[[0], [36], [3], [0]] +36.6.0=[[0], [36], [6], [0]] +36.7.2=[[0], [36], [7], [2]] +360.0.0=[[0], [360], [0], [0]] +361.0.0=[[0], [361], [0], [0]] +362.0.0=[[0], [362], [0], [0]] +363.0.0=[[0], [363], [0], [0]] +364.0.0=[[0], [364], [0], [0]] +365.0.0=[[0], [365], [0], [0]] +365.0.1=[[0], [365], [0], [1]] +366.0.0=[[0], [366], [0], [0]] +367.0.0=[[0], [367], [0], [0]] +368.0.0=[[0], [368], [0], [0]] +369.0.0=[[0], [369], [0], [0]] +37=[[0], [37]] +37.0=[[0], [37], [0]] +37.0.0=[[0], [37], [0], [0]] +37.0.1=[[0], [37], [0], [1]] +37.0.2=[[0], [37], [0], [2]] +37.0.3=[[0], [37], [0], [3]] +37.0.4=[[0], [37], [0], [4]] +37.1=[[0], [37], [1]] +37.10=[[0], [37], [10]] +37.17=[[0], [37], [17]] +37.2=[[0], [37], [2]] +37.3=[[0], [37], [3]] +37.52=[[0], [37], [52]] +37.62=[[0], [37], [62]] +370.0.0=[[0], [370], [0], [0]] +371.0.0=[[0], [371], [0], [0]] +372.0.0=[[0], [372], [0], [0]] +374.0.0=[[0], [374], [0], [0]] +375.0.0=[[0], [375], [0], [0]] +376.0.0=[[0], [376], [0], [0]] +377.0.0=[[0], [377], [0], [0]] +378.0.0=[[0], [378], [0], [0]] +379.0.0=[[0], [379], [0], [0]] +38=[[0], [38]] +38.0.0=[[0], [38], [0], [0]] +38.0.1=[[0], [38], [0], [1]] +38.0.2=[[0], [38], [0], [2]] +38.0.3=[[0], [38], [0], [3]] +38.0.4=[[0], [38], [0], [4]] +38.06=[[0], [38], [6]] +38.16=[[0], [38], [16]] +38.18=[[0], [38], [18]] +38.2.3=[[0], [38], [2], [3]] +38.2.4=[[0], [38], [2], [4]] +38.4.0=[[0], [38], [4], [0]] +38.5.1=[[0], [38], [5], [1]] +38.5.2=[[0], [38], [5], [2]] +38.6.0=[[0], [38], [6], [0]] +380.0.0=[[0], [380], [0], [0]] +381.0.0=[[0], [381], [0], [0]] +382.0.0=[[0], [382], [0], [0]] +383.0.0=[[0], [383], [0], [0]] +383.0.1=[[0], [383], [0], [1]] +384.0.0=[[0], [384], [0], [0]] +384.0.1=[[0], [384], [0], [1]] +385.0.0=[[0], [385], [0], [0]] +386.0.0=[[0], [386], [0], [0]] +387.0.0=[[0], [387], [0], [0]] +388.0.0=[[0], [388], [0], [0]] +389.0.0=[[0], [389], [0], [0]] +39.0.0=[[0], [39], [0], [0]] +39.0.1=[[0], [39], [0], [1]] +39.0.2=[[0], [39], [0], [2]] +39.1.0=[[0], [39], [1], [0]] +39.2.0=[[0], [39], [2], [0]] +390.0.0=[[0], [390], [0], [0]] +391.0.0=[[0], [391], [0], [0]] +392.0.0=[[0], [392], [0], [0]] +393.0.0=[[0], [393], [0], [0]] +394.0.0=[[0], [394], [0], [0]] +395.0.0=[[0], [395], [0], [0]] +396.0.0=[[0], [396], [0], [0]] +397.0.0=[[0], [397], [0], [0]] +398.0.0=[[0], [398], [0], [0]] +399.0.0=[[0], [399], [0], [0]] +3_6=[[0], [3], [6]] +4=[[0], [4]] +4.0=[[0], [4], [0]] +4.0.0=[[0], [4], [0], [0]] +4.0.0.0=[[0], [4], [0], [0], [0]] +4.0.0.1=[[0], [4], [0], [0], [1]] +4.0.0.2=[[0], [4], [0], [0], [2]] +4.0.0.99=[[0], [4], [0], [0], [99]] +4.0.0.post0=[[0], [4], [0], [0], [0, inf, 0]] +4.0.0.post1=[[0], [4], [0], [0], [0, inf, 1]] +4.0.0.post2=[[0], [4], [0], [0], [0, inf, 2]] +4.0.00=[[0], [4], [0], [0]] +4.0.01=[[0], [4], [0], [1]] +4.0.0a0=[[0], [4], [0], [0, 'a', 0]] +4.0.0b1=[[0], [4], [0], [0, 'b', 1]] +4.0.0b2=[[0], [4], [0], [0, 'b', 2]] +4.0.0b3=[[0], [4], [0], [0, 'b', 3]] +4.0.0b4=[[0], [4], [0], [0, 'b', 4]] +4.0.0b5=[[0], [4], [0], [0, 'b', 5]] +4.0.0b6=[[0], [4], [0], [0, 'b', 6]] +4.0.1=[[0], [4], [0], [1]] +4.0.1.2=[[0], [4], [0], [1], [2]] +4.0.1.post1=[[0], [4], [0], [1], [0, inf, 1]] +4.0.10=[[0], [4], [0], [10]] +4.0.10.0=[[0], [4], [0], [10], [0]] +4.0.11=[[0], [4], [0], [11]] +4.0.11.0=[[0], [4], [0], [11], [0]] +4.0.12=[[0], [4], [0], [12]] +4.0.12.0=[[0], [4], [0], [12], [0]] +4.0.13=[[0], [4], [0], [13]] +4.0.14=[[0], [4], [0], [14]] +4.0.15=[[0], [4], [0], [15]] +4.0.15.1=[[0], [4], [0], [15], [1]] +4.0.15.2=[[0], [4], [0], [15], [2]] +4.0.16=[[0], [4], [0], [16]] +4.0.17=[[0], [4], [0], [17]] +4.0.18=[[0], [4], [0], [18]] +4.0.19=[[0], [4], [0], [19]] +4.0.2=[[0], [4], [0], [2]] +4.0.20=[[0], [4], [0], [20]] +4.0.20190130225346=[[0], [4], [0], [20190130225346]] +4.0.21=[[0], [4], [0], [21]] +4.0.23=[[0], [4], [0], [23]] +4.0.24=[[0], [4], [0], [24]] +4.0.25=[[0], [4], [0], [25]] +4.0.26=[[0], [4], [0], [26]] +4.0.27=[[0], [4], [0], [27]] +4.0.28=[[0], [4], [0], [28]] +4.0.29.7=[[0], [4], [0], [29], [7]] +4.0.3=[[0], [4], [0], [3]] +4.0.3.0=[[0], [4], [0], [3], [0]] +4.0.30=[[0], [4], [0], [30]] +4.0.30.25=[[0], [4], [0], [30], [25]] +4.0.30.43=[[0], [4], [0], [30], [43]] +4.0.30.44=[[0], [4], [0], [30], [44]] +4.0.30.45=[[0], [4], [0], [30], [45]] +4.0.31=[[0], [4], [0], [31]] +4.0.32=[[0], [4], [0], [32]] +4.0.34=[[0], [4], [0], [34]] +4.0.35=[[0], [4], [0], [35]] +4.0.38=[[0], [4], [0], [38]] +4.0.39=[[0], [4], [0], [39]] +4.0.4=[[0], [4], [0], [4]] +4.0.5=[[0], [4], [0], [5]] +4.0.5.2=[[0], [4], [0], [5], [2]] +4.0.6=[[0], [4], [0], [6]] +4.0.6.0=[[0], [4], [0], [6], [0]] +4.0.7=[[0], [4], [0], [7]] +4.0.7.0=[[0], [4], [0], [7], [0]] +4.0.7.post2=[[0], [4], [0], [7], [0, inf, 2]] +4.0.8=[[0], [4], [0], [8]] +4.0.8.1=[[0], [4], [0], [8], [1]] +4.0.9=[[0], [4], [0], [9]] +4.0.9.0=[[0], [4], [0], [9], [0]] +4.0.beta1=[[0], [4], [0], [0, 'beta', 1]] +4.007=[[0], [4], [7]] +4.019=[[0], [4], [19]] +4.02=[[0], [4], [2]] +4.028=[[0], [4], [28]] +4.03=[[0], [4], [3]] +4.034=[[0], [4], [34]] +4.04=[[0], [4], [4]] +4.5=[[0], [4], [5]] +4.06=[[0], [4], [6]] +4.06.1=[[0], [4], [6], [1]] +4.07=[[0], [4], [7]] +4.08=[[0], [4], [8]] +4.09=[[0], [4], [9]] +4.0_0=[[0], [4], [0], [0]] +4.0_06Jun17=[[0], [4], [0], [6, 'jun', 17]] +4.0_1=[[0], [4], [0], [1]] +4.0_2=[[0], [4], [0], [2]] +4.0_3=[[0], [4], [0], [3]] +4.0rc1.post2=[[0], [4], [0, 'rc', 1], [0, inf, 2]] +4.1=[[0], [4], [1]] +4.1.0=[[0], [4], [1], [0]] +4.1.0.0=[[0], [4], [1], [0], [0]] +4.1.0.1=[[0], [4], [1], [0], [1]] +4.1.0.2=[[0], [4], [1], [0], [2]] +4.1.0.3=[[0], [4], [1], [0], [3]] +4.1.0.4=[[0], [4], [1], [0], [4]] +4.1.0.5=[[0], [4], [1], [0], [5]] +4.1.0.6=[[0], [4], [1], [0], [6]] +4.1.0.dev0=[[0], [4], [1], [0], [0, 'DEV', 0]] +4.1.0.p3=[[0], [4], [1], [0], [0, 'p', 3]] +4.1.0.post1=[[0], [4], [1], [0], [0, inf, 1]] +4.1.1=[[0], [4], [1], [1]] +4.1.1.0=[[0], [4], [1], [1], [0]] +4.1.1.p2=[[0], [4], [1], [1], [0, 'p', 2]] +4.1.1.post0=[[0], [4], [1], [1], [0, inf, 0]] +4.1.10=[[0], [4], [1], [10]] +4.1.11=[[0], [4], [1], [11]] +4.1.12=[[0], [4], [1], [12]] +4.1.13=[[0], [4], [1], [13]] +4.1.14=[[0], [4], [1], [14]] +4.1.15=[[0], [4], [1], [15]] +4.1.16=[[0], [4], [1], [16]] +4.1.17=[[0], [4], [1], [17]] +4.1.18=[[0], [4], [1], [18]] +4.1.19=[[0], [4], [1], [19]] +4.1.2=[[0], [4], [1], [2]] +4.1.2.0=[[0], [4], [1], [2], [0]] +4.1.2.p1=[[0], [4], [1], [2], [0, 'p', 1]] +4.1.2.post0=[[0], [4], [1], [2], [0, inf, 0]] +4.1.20=[[0], [4], [1], [20]] +4.1.20190227145202=[[0], [4], [1], [20190227145202]] +4.1.20190305210046=[[0], [4], [1], [20190305210046]] +4.1.20329=[[0], [4], [1], [20329]] +4.1.21=[[0], [4], [1], [21]] +4.1.22=[[0], [4], [1], [22]] +4.1.23=[[0], [4], [1], [23]] +4.1.2351.a80a8b8=[[0], [4], [1], [2351], [0, 'a', 80, 'a', 8, 'b', 8]] +4.1.3=[[0], [4], [1], [3]] +4.1.3.0=[[0], [4], [1], [3], [0]] +4.1.3.1=[[0], [4], [1], [3], [1]] +4.1.4=[[0], [4], [1], [4]] +4.1.4.0=[[0], [4], [1], [4], [0]] +4.1.4.1=[[0], [4], [1], [4], [1]] +4.1.5=[[0], [4], [1], [5]] +4.1.5.0=[[0], [4], [1], [5], [0]] +4.1.6=[[0], [4], [1], [6]] +4.1.6.0=[[0], [4], [1], [6], [0]] +4.1.7=[[0], [4], [1], [7]] +4.1.7.0=[[0], [4], [1], [7], [0]] +4.1.8=[[0], [4], [1], [8]] +4.1.8.0=[[0], [4], [1], [8], [0]] +4.1.8.1=[[0], [4], [1], [8], [1]] +4.1.9=[[0], [4], [1], [9]] +4.1.9.0=[[0], [4], [1], [9], [0]] +4.1.95=[[0], [4], [1], [95]] +4.10=[[0], [4], [10]] +4.10.0=[[0], [4], [10], [0]] +4.10.0.112=[[0], [4], [10], [0], [112]] +4.10.1=[[0], [4], [10], [1]] +4.10.10=[[0], [4], [10], [10]] +4.10.11=[[0], [4], [10], [11]] +4.10.12=[[0], [4], [10], [12]] +4.10.2=[[0], [4], [10], [2]] +4.10.21011=[[0], [4], [10], [21011]] +4.10.3=[[0], [4], [10], [3]] +4.10.4=[[0], [4], [10], [4]] +4.10.5=[[0], [4], [10], [5]] +4.10.50=[[0], [4], [10], [50]] +4.10.6=[[0], [4], [10], [6]] +4.10.7=[[0], [4], [10], [7]] +4.10_0=[[0], [4], [10], [0]] +4.10_1=[[0], [4], [10], [1]] +4.10_2=[[0], [4], [10], [2]] +4.10_4=[[0], [4], [10], [4]] +4.10_8=[[0], [4], [10], [8]] +4.11=[[0], [4], [11]] +4.11.0=[[0], [4], [11], [0]] +4.11.1=[[0], [4], [11], [1]] +4.11.12=[[0], [4], [11], [12]] +4.11.2=[[0], [4], [11], [2]] +4.11.21016=[[0], [4], [11], [21016]] +4.11.3=[[0], [4], [11], [3]] +4.11.4=[[0], [4], [11], [4]] +4.11.5=[[0], [4], [11], [5]] +4.11.6=[[0], [4], [11], [6]] +4.11.7=[[0], [4], [11], [7]] +4.11.8=[[0], [4], [11], [8]] +4.11.9=[[0], [4], [11], [9]] +4.11_0=[[0], [4], [11], [0]] +4.12=[[0], [4], [12]] +4.12.0=[[0], [4], [12], [0]] +4.12.0.113=[[0], [4], [12], [0], [113]] +4.12.1=[[0], [4], [12], [1]] +4.12.2=[[0], [4], [12], [2]] +4.12.3=[[0], [4], [12], [3]] +4.12.4=[[0], [4], [12], [4]] +4.12.5=[[0], [4], [12], [5]] +4.12.6=[[0], [4], [12], [6]] +4.12.7=[[0], [4], [12], [7]] +4.12.9=[[0], [4], [12], [9]] +4.12_0=[[0], [4], [12], [0]] +4.13=[[0], [4], [13]] +4.13.0=[[0], [4], [13], [0]] +4.13.1=[[0], [4], [13], [1]] +4.13.2=[[0], [4], [13], [2]] +4.13.3=[[0], [4], [13], [3]] +4.13_0=[[0], [4], [13], [0]] +4.13_19=[[0], [4], [13], [19]] +4.13_20=[[0], [4], [13], [20]] +4.13_22=[[0], [4], [13], [22]] +4.13_23=[[0], [4], [13], [23]] +4.13_24=[[0], [4], [13], [24]] +4.13_25=[[0], [4], [13], [25]] +4.14=[[0], [4], [14]] +4.14.0=[[0], [4], [14], [0]] +4.14.0.115=[[0], [4], [14], [0], [115]] +4.14.1=[[0], [4], [14], [1]] +4.14.2=[[0], [4], [14], [2]] +4.14.21026=[[0], [4], [14], [21026]] +4.14.3=[[0], [4], [14], [3]] +4.14.5=[[0], [4], [14], [5]] +4.14.6=[[0], [4], [14], [6]] +4.14_0=[[0], [4], [14], [0]] +4.15=[[0], [4], [15]] +4.15.0=[[0], [4], [15], [0]] +4.15.1=[[0], [4], [15], [1]] +4.15.2=[[0], [4], [15], [2]] +4.15.21026=[[0], [4], [15], [21026]] +4.15_0=[[0], [4], [15], [0]] +4.15_1=[[0], [4], [15], [1]] +4.16=[[0], [4], [16]] +4.16.0=[[0], [4], [16], [0]] +4.16.0.116=[[0], [4], [16], [0], [116]] +4.16.1=[[0], [4], [16], [1]] +4.16.1.117=[[0], [4], [16], [1], [117]] +4.16.2=[[0], [4], [16], [2]] +4.16.3=[[0], [4], [16], [3]] +4.16.6=[[0], [4], [16], [6]] +4.16.8=[[0], [4], [16], [8]] +4.161950=[[0], [4], [161950]] +4.16_0=[[0], [4], [16], [0]] +4.16_1=[[0], [4], [16], [1]] +4.16_2=[[0], [4], [16], [2]] +4.17=[[0], [4], [17]] +4.17.0=[[0], [4], [17], [0]] +4.17.0.1=[[0], [4], [17], [0], [1]] +4.17.0.2=[[0], [4], [17], [0], [2]] +4.17.0.4=[[0], [4], [17], [0], [4]] +4.17.0.5=[[0], [4], [17], [0], [5]] +4.17.0.6=[[0], [4], [17], [0], [6]] +4.17.1=[[0], [4], [17], [1]] +4.17.11=[[0], [4], [17], [11]] +4.17.13=[[0], [4], [17], [13]] +4.17.14=[[0], [4], [17], [14]] +4.17.15=[[0], [4], [17], [15]] +4.17.2=[[0], [4], [17], [2]] +4.17.21027=[[0], [4], [17], [21027]] +4.17.3=[[0], [4], [17], [3]] +4.17.3.6=[[0], [4], [17], [3], [6]] +4.17.3.7=[[0], [4], [17], [3], [7]] +4.17.3.8=[[0], [4], [17], [3], [8]] +4.17.4=[[0], [4], [17], [4]] +4.17.4.0=[[0], [4], [17], [4], [0]] +4.17.4.5=[[0], [4], [17], [4], [5]] +4.17.4.6=[[0], [4], [17], [4], [6]] +4.17.4.7=[[0], [4], [17], [4], [7]] +4.17.4.8=[[0], [4], [17], [4], [8]] +4.17.4.9=[[0], [4], [17], [4], [9]] +4.17.5=[[0], [4], [17], [5]] +4.17.5.0=[[0], [4], [17], [5], [0]] +4.17.5.1=[[0], [4], [17], [5], [1]] +4.17.5.2=[[0], [4], [17], [5], [2]] +4.17.5.3=[[0], [4], [17], [5], [3]] +4.17_0=[[0], [4], [17], [0]] +4.18=[[0], [4], [18]] +4.18.0=[[0], [4], [18], [0]] +4.18.0.118=[[0], [4], [18], [0], [118]] +4.18.1=[[0], [4], [18], [1]] +4.18.2=[[0], [4], [18], [2]] +4.18.21031=[[0], [4], [18], [21031]] +4.18.3=[[0], [4], [18], [3]] +4.18.4=[[0], [4], [18], [4]] +4.18.7=[[0], [4], [18], [7]] +4.18_0=[[0], [4], [18], [0]] +4.18_1=[[0], [4], [18], [1]] +4.18_2=[[0], [4], [18], [2]] +4.19=[[0], [4], [19]] +4.19.0=[[0], [4], [19], [0]] +4.19.1=[[0], [4], [19], [1]] +4.19.13=[[0], [4], [19], [13]] +4.19.18=[[0], [4], [19], [18]] +4.19.2=[[0], [4], [19], [2]] +4.19.20=[[0], [4], [19], [20]] +4.19.21059=[[0], [4], [19], [21059]] +4.19.22=[[0], [4], [19], [22]] +4.19.23=[[0], [4], [19], [23]] +4.19.24=[[0], [4], [19], [24]] +4.19.25=[[0], [4], [19], [25]] +4.19.3=[[0], [4], [19], [3]] +4.19.4=[[0], [4], [19], [4]] +4.19.5=[[0], [4], [19], [5]] +4.19.6=[[0], [4], [19], [6]] +4.19.7=[[0], [4], [19], [7]] +4.19.8=[[0], [4], [19], [8]] +4.19.9=[[0], [4], [19], [9]] +4.19_0=[[0], [4], [19], [0]] +4.19_1=[[0], [4], [19], [1]] +4.19_2=[[0], [4], [19], [2]] +4.1_0=[[0], [4], [1], [0]] +4.1_1=[[0], [4], [1], [1]] +4.1_10=[[0], [4], [1], [10]] +4.1_13=[[0], [4], [1], [13]] +4.1_15=[[0], [4], [1], [15]] +4.1_2=[[0], [4], [1], [2]] +4.1_21Jan17.6cc.jar=[[0], [4], [1], [21, 'jan', 17], [6, 'cc'], [0, 'jar']] +4.1_4=[[0], [4], [1], [4]] +4.1_7=[[0], [4], [1], [7]] +4.1_8=[[0], [4], [1], [8]] +4.1_9=[[0], [4], [1], [9]] +4.1l=[[0], [4], [1, 'l']] +4.2=[[0], [4], [2]] +4.2.0=[[0], [4], [2], [0]] +4.2.0.0=[[0], [4], [2], [0], [0]] +4.2.0.1=[[0], [4], [2], [0], [1]] +4.2.0.100=[[0], [4], [2], [0], [100]] +4.2.0.2=[[0], [4], [2], [0], [2]] +4.2.0.p3=[[0], [4], [2], [0], [0, 'p', 3]] +4.2.0.post0=[[0], [4], [2], [0], [0, inf, 0]] +4.2.0.post1=[[0], [4], [2], [0], [0, inf, 1]] +4.2.1=[[0], [4], [2], [1]] +4.2.1.0=[[0], [4], [2], [1], [0]] +4.2.1.p3=[[0], [4], [2], [1], [0, 'p', 3]] +4.2.10=[[0], [4], [2], [10]] +4.2.11=[[0], [4], [2], [11]] +4.2.11.1=[[0], [4], [2], [11], [1]] +4.2.12=[[0], [4], [2], [12]] +4.2.13=[[0], [4], [2], [13]] +4.2.14=[[0], [4], [2], [14]] +4.2.15=[[0], [4], [2], [15]] +4.2.2=[[0], [4], [2], [2]] +4.2.2.0=[[0], [4], [2], [2], [0]] +4.2.2.1=[[0], [4], [2], [2], [1]] +4.2.2.2=[[0], [4], [2], [2], [2]] +4.2.2.3=[[0], [4], [2], [2], [3]] +4.2.20340=[[0], [4], [2], [20340]] +4.2.3=[[0], [4], [2], [3]] +4.2.3.0=[[0], [4], [2], [3], [0]] +4.2.4=[[0], [4], [2], [4]] +4.2.4.0=[[0], [4], [2], [4], [0]] +4.2.4.1=[[0], [4], [2], [4], [1]] +4.2.5=[[0], [4], [2], [5]] +4.2.5.0=[[0], [4], [2], [5], [0]] +4.2.5.1=[[0], [4], [2], [5], [1]] +4.2.5.2=[[0], [4], [2], [5], [2]] +4.2.6=[[0], [4], [2], [6]] +4.2.6.0=[[0], [4], [2], [6], [0]] +4.2.6.1=[[0], [4], [2], [6], [1]] +4.2.7=[[0], [4], [2], [7]] +4.2.8=[[0], [4], [2], [8]] +4.2.9=[[0], [4], [2], [9]] +4.20=[[0], [4], [20]] +4.20.0=[[0], [4], [20], [0]] +4.20.0.120=[[0], [4], [20], [0], [120]] +4.20.1=[[0], [4], [20], [1]] +4.20.1.121=[[0], [4], [20], [1], [121]] +4.20.21059=[[0], [4], [20], [21059]] +4.201720=[[0], [4], [201720]] +4.21.0=[[0], [4], [21], [0]] +4.21.0.0=[[0], [4], [21], [0], [0]] +4.21.0.1=[[0], [4], [21], [0], [1]] +4.21.0.2=[[0], [4], [21], [0], [2]] +4.21.0.3=[[0], [4], [21], [0], [3]] +4.21.0.4=[[0], [4], [21], [0], [4]] +4.21.0.5=[[0], [4], [21], [0], [5]] +4.21.0.6=[[0], [4], [21], [0], [6]] +4.21.0.7=[[0], [4], [21], [0], [7]] +4.21.1=[[0], [4], [21], [1]] +4.21.10=[[0], [4], [21], [10]] +4.21.11=[[0], [4], [21], [11]] +4.21.12=[[0], [4], [21], [12]] +4.21.2=[[0], [4], [21], [2]] +4.21.21059=[[0], [4], [21], [21059]] +4.21.3=[[0], [4], [21], [3]] +4.21.4=[[0], [4], [21], [4]] +4.21.5=[[0], [4], [21], [5]] +4.21.6=[[0], [4], [21], [6]] +4.21.7=[[0], [4], [21], [7]] +4.21.8=[[0], [4], [21], [8]] +4.21.9=[[0], [4], [21], [9]] +4.218=[[0], [4], [218]] +4.22=[[0], [4], [22]] +4.22.0=[[0], [4], [22], [0]] +4.22.0.0=[[0], [4], [22], [0], [0]] +4.22.1=[[0], [4], [22], [1]] +4.22.2=[[0], [4], [22], [2]] +4.22.21108=[[0], [4], [22], [21108]] +4.22.3=[[0], [4], [22], [3]] +4.22.5=[[0], [4], [22], [5]] +4.220=[[0], [4], [220]] +4.222=[[0], [4], [222]] +4.224=[[0], [4], [224]] +4.226=[[0], [4], [226]] +4.228=[[0], [4], [228]] +4.23=[[0], [4], [23]] +4.23.0=[[0], [4], [23], [0]] +4.23.1=[[0], [4], [23], [1]] +4.23.2=[[0], [4], [23], [2]] +4.23.21108=[[0], [4], [23], [21108]] +4.23.3=[[0], [4], [23], [3]] +4.23.4=[[0], [4], [23], [4]] +4.23.5=[[0], [4], [23], [5]] +4.23.6=[[0], [4], [23], [6]] +4.23.7=[[0], [4], [23], [7]] +4.23.8=[[0], [4], [23], [8]] +4.23.9=[[0], [4], [23], [9]] +4.24=[[0], [4], [24]] +4.24.0=[[0], [4], [24], [0]] +4.24.1=[[0], [4], [24], [1]] +4.24.2=[[0], [4], [24], [2]] +4.24.3=[[0], [4], [24], [3]] +4.24.4=[[0], [4], [24], [4]] +4.24.5=[[0], [4], [24], [5]] +4.24.6=[[0], [4], [24], [6]] +4.25=[[0], [4], [25]] +4.25.0=[[0], [4], [25], [0]] +4.25.1=[[0], [4], [25], [1]] +4.25.2=[[0], [4], [25], [2]] +4.26=[[0], [4], [26]] +4.26.0=[[0], [4], [26], [0]] +4.26.1=[[0], [4], [26], [1]] +4.26.3=[[0], [4], [26], [3]] +4.26.4=[[0], [4], [26], [4]] +4.27=[[0], [4], [27]] +4.27.0=[[0], [4], [27], [0]] +4.27.1=[[0], [4], [27], [1]] +4.27.2=[[0], [4], [27], [2]] +4.27.3=[[0], [4], [27], [3]] +4.27.4=[[0], [4], [27], [4]] +4.28=[[0], [4], [28]] +4.28.0=[[0], [4], [28], [0]] +4.28.1=[[0], [4], [28], [1]] +4.28.2=[[0], [4], [28], [2]] +4.28.3=[[0], [4], [28], [3]] +4.28.4=[[0], [4], [28], [4]] +4.28.5=[[0], [4], [28], [5]] +4.29=[[0], [4], [29]] +4.29.0=[[0], [4], [29], [0]] +4.29.1=[[0], [4], [29], [1]] +4.29.2=[[0], [4], [29], [2]] +4.2_0=[[0], [4], [2], [0]] +4.2_1=[[0], [4], [2], [1]] +4.2_16=[[0], [4], [2], [16]] +4.2_2=[[0], [4], [2], [2]] +4.2_23=[[0], [4], [2], [23]] +4.2_3=[[0], [4], [2], [3]] +4.2_30=[[0], [4], [2], [30]] +4.2_4=[[0], [4], [2], [4]] +4.2_5=[[0], [4], [2], [5]] +4.2_8=[[0], [4], [2], [8]] +4.3=[[0], [4], [3]] +4.3.0=[[0], [4], [3], [0]] +4.3.0.0=[[0], [4], [3], [0], [0]] +4.3.0.post1=[[0], [4], [3], [0], [0, inf, 1]] +4.3.042=[[0], [4], [3], [42]] +4.3.0a=[[0], [4], [3], [0, 'a']] +4.3.1=[[0], [4], [3], [1]] +4.3.1.post1=[[0], [4], [3], [1], [0, inf, 1]] +4.3.10=[[0], [4], [3], [10]] +4.3.11=[[0], [4], [3], [11]] +4.3.11377=[[0], [4], [3], [11377]] +4.3.12=[[0], [4], [3], [12]] +4.3.13=[[0], [4], [3], [13]] +4.3.14=[[0], [4], [3], [14]] +4.3.15=[[0], [4], [3], [15]] +4.3.16=[[0], [4], [3], [16]] +4.3.17=[[0], [4], [3], [17]] +4.3.18=[[0], [4], [3], [18]] +4.3.19=[[0], [4], [3], [19]] +4.3.1t=[[0], [4], [3], [1, 't']] +4.3.2=[[0], [4], [3], [2]] +4.3.20=[[0], [4], [3], [20]] +4.3.20340=[[0], [4], [3], [20340]] +4.3.21=[[0], [4], [3], [21]] +4.3.21.1=[[0], [4], [3], [21], [1]] +4.3.21.2=[[0], [4], [3], [21], [2]] +4.3.21.3=[[0], [4], [3], [21], [3]] +4.3.21.4=[[0], [4], [3], [21], [4]] +4.3.21.5=[[0], [4], [3], [21], [5]] +4.3.21.6=[[0], [4], [3], [21], [6]] +4.3.21.7=[[0], [4], [3], [21], [7]] +4.3.22=[[0], [4], [3], [22]] +4.3.23=[[0], [4], [3], [23]] +4.3.24=[[0], [4], [3], [24]] +4.3.27=[[0], [4], [3], [27]] +4.3.29=[[0], [4], [3], [29]] +4.3.3=[[0], [4], [3], [3]] +4.3.31=[[0], [4], [3], [31]] +4.3.32=[[0], [4], [3], [32]] +4.3.33=[[0], [4], [3], [33]] +4.3.34=[[0], [4], [3], [34]] +4.3.4=[[0], [4], [3], [4]] +4.3.4.post0=[[0], [4], [3], [4], [0, inf, 0]] +4.3.5=[[0], [4], [3], [5]] +4.3.6=[[0], [4], [3], [6]] +4.3.7=[[0], [4], [3], [7]] +4.3.8=[[0], [4], [3], [8]] +4.3.9=[[0], [4], [3], [9]] +4.3.post1=[[0], [4], [3], [0, inf, 1]] +4.30=[[0], [4], [30]] +4.30.0=[[0], [4], [30], [0]] +4.30.4=[[0], [4], [30], [4]] +4.30.5=[[0], [4], [30], [5]] +4.30.6=[[0], [4], [30], [6]] +4.30.7=[[0], [4], [30], [7]] +4.30.8=[[0], [4], [30], [8]] +4.31=[[0], [4], [31]] +4.31.0=[[0], [4], [31], [0]] +4.31.1=[[0], [4], [31], [1]] +4.31.2=[[0], [4], [31], [2]] +4.32=[[0], [4], [32]] +4.32.0=[[0], [4], [32], [0]] +4.32.1=[[0], [4], [32], [1]] +4.32.2=[[0], [4], [32], [2]] +4.32.3=[[0], [4], [32], [3]] +4.33=[[0], [4], [33]] +4.33.0=[[0], [4], [33], [0]] +4.33.1=[[0], [4], [33], [1]] +4.33.2=[[0], [4], [33], [2]] +4.33.3=[[0], [4], [33], [3]] +4.34.0=[[0], [4], [34], [0]] +4.34.1=[[0], [4], [34], [1]] +4.34.2=[[0], [4], [34], [2]] +4.34.3=[[0], [4], [34], [3]] +4.34.4=[[0], [4], [34], [4]] +4.35=[[0], [4], [35]] +4.35.0=[[0], [4], [35], [0]] +4.35.16=[[0], [4], [35], [16]] +4.35.6=[[0], [4], [35], [6]] +4.36.0=[[0], [4], [36], [0]] +4.36.1=[[0], [4], [36], [1]] +4.36.2=[[0], [4], [36], [2]] +4.37.0=[[0], [4], [37], [0]] +4.37.1=[[0], [4], [37], [1]] +4.37.2=[[0], [4], [37], [2]] +4.37.3=[[0], [4], [37], [3]] +4.37.4=[[0], [4], [37], [4]] +4.38.0=[[0], [4], [38], [0]] +4.38.1=[[0], [4], [38], [1]] +4.38.3=[[0], [4], [38], [3]] +4.39.0=[[0], [4], [39], [0]] +4.39.1=[[0], [4], [39], [1]] +4.39.2=[[0], [4], [39], [2]] +4.39.3=[[0], [4], [39], [3]] +4.39.4=[[0], [4], [39], [4]] +4.3_0=[[0], [4], [3], [0]] +4.3_1=[[0], [4], [3], [1]] +4.4=[[0], [4], [4]] +4.4.0=[[0], [4], [4], [0]] +4.4.0.0=[[0], [4], [4], [0], [0]] +4.4.0.103=[[0], [4], [4], [0], [103]] +4.4.0.3=[[0], [4], [4], [0], [3]] +4.4.0.4=[[0], [4], [4], [0], [4]] +4.4.0.5=[[0], [4], [4], [0], [5]] +4.4.0.6=[[0], [4], [4], [0], [6]] +4.4.0rc1=[[0], [4], [4], [0, 'rc', 1]] +4.4.1=[[0], [4], [4], [1]] +4.4.1.1=[[0], [4], [4], [1], [1]] +4.4.1.104=[[0], [4], [4], [1], [104]] +4.4.10=[[0], [4], [4], [10]] +4.4.11=[[0], [4], [4], [11]] +4.4.12=[[0], [4], [4], [12]] +4.4.13=[[0], [4], [4], [13]] +4.4.14=[[0], [4], [4], [14]] +4.4.15=[[0], [4], [4], [15]] +4.4.16=[[0], [4], [4], [16]] +4.4.17=[[0], [4], [4], [17]] +4.4.18=[[0], [4], [4], [18]] +4.4.19=[[0], [4], [4], [19]] +4.4.2=[[0], [4], [4], [2]] +4.4.20=[[0], [4], [4], [20]] +4.4.21=[[0], [4], [4], [21]] +4.4.22=[[0], [4], [4], [22]] +4.4.23=[[0], [4], [4], [23]] +4.4.28=[[0], [4], [4], [28]] +4.4.3=[[0], [4], [4], [3]] +4.4.31=[[0], [4], [4], [31]] +4.4.32=[[0], [4], [4], [32]] +4.4.33=[[0], [4], [4], [33]] +4.4.4=[[0], [4], [4], [4]] +4.4.5=[[0], [4], [4], [5]] +4.4.6=[[0], [4], [4], [6]] +4.4.7=[[0], [4], [4], [7]] +4.4.8=[[0], [4], [4], [8]] +4.4.9=[[0], [4], [4], [9]] +4.4.97=[[0], [4], [4], [97]] +4.40.0=[[0], [4], [40], [0]] +4.40.1=[[0], [4], [40], [1]] +4.40.2=[[0], [4], [40], [2]] +4.40.21126=[[0], [4], [40], [21126]] +4.40.8=[[0], [4], [40], [8]] +4.41.0=[[0], [4], [41], [0]] +4.41.1=[[0], [4], [41], [1]] +4.41.2=[[0], [4], [41], [2]] +4.41.21142=[[0], [4], [41], [21142]] +4.41.3=[[0], [4], [41], [3]] +4.42.0=[[0], [4], [42], [0]] +4.42.1=[[0], [4], [42], [1]] +4.42.10=[[0], [4], [42], [10]] +4.42.3=[[0], [4], [42], [3]] +4.42.4=[[0], [4], [42], [4]] +4.42.5=[[0], [4], [42], [5]] +4.42.6=[[0], [4], [42], [6]] +4.42.7=[[0], [4], [42], [7]] +4.42.8=[[0], [4], [42], [8]] +4.43=[[0], [4], [43]] +4.43.0=[[0], [4], [43], [0]] +4.43.1=[[0], [4], [43], [1]] +4.43.2=[[0], [4], [43], [2]] +4.43.3=[[0], [4], [43], [3]] +4.43.4=[[0], [4], [43], [4]] +4.43.5=[[0], [4], [43], [5]] +4.43.6=[[0], [4], [43], [6]] +4.43.8=[[0], [4], [43], [8]] +4.43.9=[[0], [4], [43], [9]] +4.44.0=[[0], [4], [44], [0]] +4.44.1=[[0], [4], [44], [1]] +4.44.2=[[0], [4], [44], [2]] +4.44.3=[[0], [4], [44], [3]] +4.44.4=[[0], [4], [44], [4]] +4.45.0=[[0], [4], [45], [0]] +4.46.0=[[0], [4], [46], [0]] +4.46.1=[[0], [4], [46], [1]] +4.47.0=[[0], [4], [47], [0]] +4.47.1=[[0], [4], [47], [1]] +4.47.2=[[0], [4], [47], [2]] +4.47.3=[[0], [4], [47], [3]] +4.47.4=[[0], [4], [47], [4]] +4.47.5=[[0], [4], [47], [5]] +4.48.0=[[0], [4], [48], [0]] +4.48.1=[[0], [4], [48], [1]] +4.48.2=[[0], [4], [48], [2]] +4.49=[[0], [4], [49]] +4.49.0=[[0], [4], [49], [0]] +4.4_0=[[0], [4], [4], [0]] +4.4_1=[[0], [4], [4], [1]] +4.4_2=[[0], [4], [4], [2]] +4.4_20160413=[[0], [4], [4], [20160413]] +4.4_20160526=[[0], [4], [4], [20160526]] +4.5=[[0], [4], [5]] +4.5.0=[[0], [4], [5], [0]] +4.5.0.post=[[0], [4], [5], [0], [0, inf]] +4.5.1=[[0], [4], [5], [1]] +4.5.1.0=[[0], [4], [5], [1], [0]] +4.5.1.1=[[0], [4], [5], [1], [1]] +4.5.1.2=[[0], [4], [5], [1], [2]] +4.5.1.3=[[0], [4], [5], [1], [3]] +4.5.1.4=[[0], [4], [5], [1], [4]] +4.5.10=[[0], [4], [5], [10]] +4.5.11=[[0], [4], [5], [11]] +4.5.12=[[0], [4], [5], [12]] +4.5.13=[[0], [4], [5], [13]] +4.5.19=[[0], [4], [5], [19]] +4.5.2=[[0], [4], [5], [2]] +4.5.20190815125611=[[0], [4], [5], [20190815125611]] +4.5.20190906201758=[[0], [4], [5], [20190906201758]] +4.5.20191017101802=[[0], [4], [5], [20191017101802]] +4.5.20191023134839=[[0], [4], [5], [20191023134839]] +4.5.20191229160203=[[0], [4], [5], [20191229160203]] +4.5.20343=[[0], [4], [5], [20343]] +4.5.3=[[0], [4], [5], [3]] +4.5.3.1=[[0], [4], [5], [3], [1]] +4.5.33=[[0], [4], [5], [33]] +4.5.36=[[0], [4], [5], [36]] +4.5.4=[[0], [4], [5], [4]] +4.5.5=[[0], [4], [5], [5]] +4.5.6=[[0], [4], [5], [6]] +4.5.7=[[0], [4], [5], [7]] +4.5.8=[[0], [4], [5], [8]] +4.5.9=[[0], [4], [5], [9]] +4.50=[[0], [4], [50]] +4.50.0=[[0], [4], [50], [0]] +4.50.1=[[0], [4], [50], [1]] +4.50.2=[[0], [4], [50], [2]] +4.50.3=[[0], [4], [50], [3]] +4.50.4=[[0], [4], [50], [4]] +4.50.6=[[0], [4], [50], [6]] +4.50.7=[[0], [4], [50], [7]] +4.50.8=[[0], [4], [50], [8]] +4.51=[[0], [4], [51]] +4.51.0=[[0], [4], [51], [0]] +4.52=[[0], [4], [52]] +4.52.0=[[0], [4], [52], [0]] +4.53=[[0], [4], [53]] +4.53.0=[[0], [4], [53], [0]] +4.53.1=[[0], [4], [53], [1]] +4.53.2=[[0], [4], [53], [2]] +4.53.3=[[0], [4], [53], [3]] +4.54=[[0], [4], [54]] +4.54.0=[[0], [4], [54], [0]] +4.54.1=[[0], [4], [54], [1]] +4.54.2=[[0], [4], [54], [2]] +4.55=[[0], [4], [55]] +4.55.0=[[0], [4], [55], [0]] +4.55.1=[[0], [4], [55], [1]] +4.55.2=[[0], [4], [55], [2]] +4.55.3=[[0], [4], [55], [3]] +4.55.4=[[0], [4], [55], [4]] +4.56=[[0], [4], [56]] +4.56.0=[[0], [4], [56], [0]] +4.56.1=[[0], [4], [56], [1]] +4.56.2=[[0], [4], [56], [2]] +4.56.3=[[0], [4], [56], [3]] +4.57=[[0], [4], [57]] +4.57.0=[[0], [4], [57], [0]] +4.57.1=[[0], [4], [57], [1]] +4.58=[[0], [4], [58]] +4.58.0=[[0], [4], [58], [0]] +4.59=[[0], [4], [59]] +4.59.0=[[0], [4], [59], [0]] +4.5_0=[[0], [4], [5], [0]] +4.5_15=[[0], [4], [5], [15]] +4.5covid19=[[0], [4], [5, 'covid', 19]] +4.6=[[0], [4], [6]] +4.6.0=[[0], [4], [6], [0]] +4.6.0.106=[[0], [4], [6], [0], [106]] +4.6.1=[[0], [4], [6], [1]] +4.6.10=[[0], [4], [6], [10]] +4.6.11=[[0], [4], [6], [11]] +4.6.12=[[0], [4], [6], [12]] +4.6.13=[[0], [4], [6], [13]] +4.6.14=[[0], [4], [6], [14]] +4.6.15=[[0], [4], [6], [15]] +4.6.2=[[0], [4], [6], [2]] +4.6.2.6=[[0], [4], [6], [2], [6]] +4.6.3=[[0], [4], [6], [3]] +4.6.4=[[0], [4], [6], [4]] +4.6.5=[[0], [4], [6], [5]] +4.6.6=[[0], [4], [6], [6]] +4.6.7=[[0], [4], [6], [7]] +4.6.8=[[0], [4], [6], [8]] +4.6.9=[[0], [4], [6], [9]] +4.60=[[0], [4], [60]] +4.60.0=[[0], [4], [60], [0]] +4.60.1=[[0], [4], [60], [1]] +4.60.2=[[0], [4], [60], [2]] +4.60.3=[[0], [4], [60], [3]] +4.60.4=[[0], [4], [60], [4]] +4.61=[[0], [4], [61]] +4.61.0=[[0], [4], [61], [0]] +4.61.1=[[0], [4], [61], [1]] +4.61.2=[[0], [4], [61], [2]] +4.62=[[0], [4], [62]] +4.62.0=[[0], [4], [62], [0]] +4.62.1=[[0], [4], [62], [1]] +4.62.2=[[0], [4], [62], [2]] +4.62.3=[[0], [4], [62], [3]] +4.63=[[0], [4], [63]] +4.63.0=[[0], [4], [63], [0]] +4.63.1=[[0], [4], [63], [1]] +4.63.2=[[0], [4], [63], [2]] +4.64=[[0], [4], [64]] +4.64.0=[[0], [4], [64], [0]] +4.64.1=[[0], [4], [64], [1]] +4.65=[[0], [4], [65]] +4.65.0=[[0], [4], [65], [0]] +4.65.1=[[0], [4], [65], [1]] +4.65.2=[[0], [4], [65], [2]] +4.66=[[0], [4], [66]] +4.66.0=[[0], [4], [66], [0]] +4.67=[[0], [4], [67]] +4.67.0=[[0], [4], [67], [0]] +4.68=[[0], [4], [68]] +4.68.0=[[0], [4], [68], [0]] +4.69.0=[[0], [4], [69], [0]] +4.69.1=[[0], [4], [69], [1]] +4.6_0=[[0], [4], [6], [0]] +4.6_12=[[0], [4], [6], [12]] +4.6_14=[[0], [4], [6], [14]] +4.6_2=[[0], [4], [6], [2]] +4.6_3=[[0], [4], [6], [3]] +4.6_4.1=[[0], [4], [6], [4], [1]] +4.7=[[0], [4], [7]] +4.7.0=[[0], [4], [7], [0]] +4.7.0.post1=[[0], [4], [7], [0], [0, inf, 1]] +4.7.1=[[0], [4], [7], [1]] +4.7.1.1=[[0], [4], [7], [1], [1]] +4.7.10=[[0], [4], [7], [10]] +4.7.11=[[0], [4], [7], [11]] +4.7.12=[[0], [4], [7], [12]] +4.7.15=[[0], [4], [7], [15]] +4.7.16=[[0], [4], [7], [16]] +4.7.17=[[0], [4], [7], [17]] +4.7.18=[[0], [4], [7], [18]] +4.7.19=[[0], [4], [7], [19]] +4.7.2=[[0], [4], [7], [2]] +4.7.21002=[[0], [4], [7], [21002]] +4.7.3=[[0], [4], [7], [3]] +4.7.4=[[0], [4], [7], [4]] +4.7.5=[[0], [4], [7], [5]] +4.7.6=[[0], [4], [7], [6]] +4.7.7=[[0], [4], [7], [7]] +4.7.8=[[0], [4], [7], [8]] +4.7.9=[[0], [4], [7], [9]] +4.70=[[0], [4], [70]] +4.71=[[0], [4], [71]] +4.72=[[0], [4], [72]] +4.73=[[0], [4], [73]] +4.74=[[0], [4], [74]] +4.75=[[0], [4], [75]] +4.76=[[0], [4], [76]] +4.77=[[0], [4], [77]] +4.78=[[0], [4], [78]] +4.79=[[0], [4], [79]] +4.7_0=[[0], [4], [7], [0]] +4.7_1=[[0], [4], [7], [1]] +4.7_1.1=[[0], [4], [7], [1], [1]] +4.7_2=[[0], [4], [7], [2]] +4.8=[[0], [4], [8]] +4.8.0=[[0], [4], [8], [0]] +4.8.0.110=[[0], [4], [8], [0], [110]] +4.8.1=[[0], [4], [8], [1]] +4.8.1.0=[[0], [4], [8], [1], [0]] +4.8.10=[[0], [4], [8], [10]] +4.8.2=[[0], [4], [8], [2]] +4.8.27=[[0], [4], [8], [27]] +4.8.28=[[0], [4], [8], [28]] +4.8.29=[[0], [4], [8], [29]] +4.8.3=[[0], [4], [8], [3]] +4.8.4=[[0], [4], [8], [4]] +4.8.5=[[0], [4], [8], [5]] +4.8.6=[[0], [4], [8], [6]] +4.8.7=[[0], [4], [8], [7]] +4.80=[[0], [4], [80]] +4.81=[[0], [4], [81]] +4.82=[[0], [4], [82]] +4.89=[[0], [4], [89]] +4.8_0=[[0], [4], [8], [0]] +4.8_1=[[0], [4], [8], [1]] +4.9=[[0], [4], [9]] +4.9.0=[[0], [4], [9], [0]] +4.9.1=[[0], [4], [9], [1]] +4.9.2=[[0], [4], [9], [2]] +4.9.2.1=[[0], [4], [9], [2], [1]] +4.9.2.2=[[0], [4], [9], [2], [2]] +4.9.21002=[[0], [4], [9], [21002]] +4.9.2_1=[[0], [4], [9], [2], [1]] +4.9.3=[[0], [4], [9], [3]] +4.9.3_1=[[0], [4], [9], [3], [1]] +4.9.4=[[0], [4], [9], [4]] +4.9.4.1=[[0], [4], [9], [4], [1]] +4.9.5=[[0], [4], [9], [5]] +4.9.6=[[0], [4], [9], [6]] +4.9.7=[[0], [4], [9], [7]] +4.9.8=[[0], [4], [9], [8]] +4.9.9=[[0], [4], [9], [9]] +4.9_1=[[0], [4], [9], [1]] +4.9_10=[[0], [4], [9], [10]] +4.9_11=[[0], [4], [9], [11]] +4.9_2=[[0], [4], [9], [2]] +4.9_3=[[0], [4], [9], [3]] +4.9_4=[[0], [4], [9], [4]] +4.9_5=[[0], [4], [9], [5]] +4.9_6=[[0], [4], [9], [6]] +4.9_7=[[0], [4], [9], [7]] +4.9_9=[[0], [4], [9], [9]] +40=[[0], [40]] +40.0=[[0], [40], [0]] +40.0.0=[[0], [40], [0], [0]] +40.0.1=[[0], [40], [0], [1]] +40.0.2=[[0], [40], [0], [2]] +40.1=[[0], [40], [1]] +40.1.1=[[0], [40], [1], [1]] +40.2.0=[[0], [40], [2], [0]] +40.4.0=[[0], [40], [4], [0]] +40.4.3=[[0], [40], [4], [3]] +40.5.0=[[0], [40], [5], [0]] +40.6.0=[[0], [40], [6], [0]] +40.6.1=[[0], [40], [6], [1]] +40.6.2=[[0], [40], [6], [2]] +40.6.3=[[0], [40], [6], [3]] +40.7.0=[[0], [40], [7], [0]] +40.7.1=[[0], [40], [7], [1]] +40.7.3=[[0], [40], [7], [3]] +40.8.0=[[0], [40], [8], [0]] +40.9.0=[[0], [40], [9], [0]] +400.0.0=[[0], [400], [0], [0]] +401.0.0=[[0], [401], [0], [0]] +402.0.0=[[0], [402], [0], [0]] +4021.104=[[0], [4021], [104]] +4021.105=[[0], [4021], [105]] +4021.106=[[0], [4021], [106]] +4021.107=[[0], [4021], [107]] +4021.83=[[0], [4021], [83]] +4021.86=[[0], [4021], [86]] +4021.87=[[0], [4021], [87]] +4021.88=[[0], [4021], [88]] +4021.92=[[0], [4021], [92]] +4021.93=[[0], [4021], [93]] +4022.108=[[0], [4022], [108]] +4022.89=[[0], [4022], [89]] +4022.94=[[0], [4022], [94]] +403.0.0=[[0], [403], [0], [0]] +404.0.0=[[0], [404], [0], [0]] +405.0.0=[[0], [405], [0], [0]] +405.0.1=[[0], [405], [0], [1]] +406.0.0=[[0], [406], [0], [0]] +407.0.0=[[0], [407], [0], [0]] +408.0.1=[[0], [408], [0], [1]] +409.0.0=[[0], [409], [0], [0]] +409.12=[[0], [409], [12]] +41=[[0], [41]] +41.0=[[0], [41], [0]] +41.0.0=[[0], [41], [0], [0]] +41.0.1=[[0], [41], [0], [1]] +41.2.0=[[0], [41], [2], [0]] +41.4.0=[[0], [41], [4], [0]] +41.5.1=[[0], [41], [5], [1]] +41.6.0=[[0], [41], [6], [0]] +410.0.0=[[0], [410], [0], [0]] +411.0.0=[[0], [411], [0], [0]] +412.0.0=[[0], [412], [0], [0]] +413.0.0=[[0], [413], [0], [0]] +415.0.0=[[0], [415], [0], [0]] +416.0.0=[[0], [416], [0], [0]] +417.0.0=[[0], [417], [0], [0]] +417.0.1=[[0], [417], [0], [1]] +418.0.0=[[0], [418], [0], [0]] +419.0.0=[[0], [419], [0], [0]] +42=[[0], [42]] +42.0.0=[[0], [42], [0], [0]] +42.0.1=[[0], [42], [0], [1]] +42.0.2=[[0], [42], [0], [2]] +420.0.0=[[0], [420], [0], [0]] +421.0.0=[[0], [421], [0], [0]] +422.0.0=[[0], [422], [0], [0]] +423.0.0=[[0], [423], [0], [0]] +424.0.0=[[0], [424], [0], [0]] +425.0.0=[[0], [425], [0], [0]] +426.0.0=[[0], [426], [0], [0]] +427.0.0=[[0], [427], [0], [0]] +428.0.0=[[0], [428], [0], [0]] +429.0.0=[[0], [429], [0], [0]] +43=[[0], [43]] +43.0=[[0], [43], [0]] +430.0.0=[[0], [430], [0], [0]] +431.0.0=[[0], [431], [0], [0]] +44=[[0], [44]] +44.0.0=[[0], [44], [0], [0]] +45=[[0], [45]] +45.0.0=[[0], [45], [0], [0]] +45.1=[[0], [45], [1]] +45.1.0=[[0], [45], [1], [0]] +45.2.0=[[0], [45], [2], [0]] +45.3.0=[[0], [45], [3], [0]] +450.3=[[0], [450], [3]] +46=[[0], [46]] +46.0.0=[[0], [46], [0], [0]] +46.1=[[0], [46], [1]] +46.1.1=[[0], [46], [1], [1]] +46.1.3=[[0], [46], [1], [3]] +46.2.0=[[0], [46], [2], [0]] +46.3.0=[[0], [46], [3], [0]] +46.3.1=[[0], [46], [3], [1]] +46.4.0=[[0], [46], [4], [0]] +47=[[0], [47]] +47.0.0=[[0], [47], [0], [0]] +47.1.0=[[0], [47], [1], [0]] +47.1.1=[[0], [47], [1], [1]] +47.2.0=[[0], [47], [2], [0]] +47.3.0=[[0], [47], [3], [0]] +47.3.1=[[0], [47], [3], [1]] +47.3.2=[[0], [47], [3], [2]] +48=[[0], [48]] +48.0.0=[[0], [48], [0], [0]] +481=[[0], [481]] +49=[[0], [49]] +49.1.0=[[0], [49], [1], [0]] +49.1.1=[[0], [49], [1], [1]] +49.1.2=[[0], [49], [1], [2]] +49.1.3=[[0], [49], [1], [3]] +49.2.0=[[0], [49], [2], [0]] +49.2.1=[[0], [49], [2], [1]] +49.3.0=[[0], [49], [3], [0]] +49.3.1=[[0], [49], [3], [1]] +49.3.2=[[0], [49], [3], [2]] +49.4.0=[[0], [49], [4], [0]] +49.5.0=[[0], [49], [5], [0]] +49.6.0=[[0], [49], [6], [0]] +499.a107cef=[[0], [499], [0, 'a', 107, 'cef']] +4_10=[[0], [4], [10]] +4_11=[[0], [4], [11]] +4_12=[[0], [4], [12]] +4_13=[[0], [4], [13]] +4_14=[[0], [4], [14]] +4_6=[[0], [4], [6]] +4_9=[[0], [4], [9]] +5=[[0], [5]] +5.0=[[0], [5], [0]] +5.0.0=[[0], [5], [0], [0]] +5.0.0.0=[[0], [5], [0], [0], [0]] +5.0.0.1=[[0], [5], [0], [0], [1]] +5.0.0.124=[[0], [5], [0], [0], [124]] +5.0.0.2=[[0], [5], [0], [0], [2]] +5.0.0.2173=[[0], [5], [0], [0], [2173]] +5.0.0.3=[[0], [5], [0], [0], [3]] +5.0.0.4=[[0], [5], [0], [0], [4]] +5.0.0.4509.2e5a9a2=[[0], [5], [0], [0], [4509], [2, 'e', 5, 'a', 9, 'a', 2]] +5.0.0.4592.90b8472=[[0], [5], [0], [0], [4592], [90, 'b', 8472]] +5.0.0.4634.697f757=[[0], [5], [0], [0], [4634], [697, 'f', 757]] +5.0.0.4636.2595836=[[0], [5], [0], [0], [4636], [2595836]] +5.0.0.4636.c0ad18a=[[0], [5], [0], [0], [4636], [0, 'c', 0, 'ad', 18, 'a']] +5.0.0.5=[[0], [5], [0], [0], [5]] +5.0.0.post1=[[0], [5], [0], [0], [0, inf, 1]] +5.0.011=[[0], [5], [0], [11]] +5.0.018=[[0], [5], [0], [18]] +5.0.1=[[0], [5], [0], [1]] +5.0.1.125=[[0], [5], [0], [1], [125]] +5.0.10=[[0], [5], [0], [10]] +5.0.100=[[0], [5], [0], [100]] +5.0.11=[[0], [5], [0], [11]] +5.0.12=[[0], [5], [0], [12]] +5.0.13=[[0], [5], [0], [13]] +5.0.14=[[0], [5], [0], [14]] +5.0.15=[[0], [5], [0], [15]] +5.0.16=[[0], [5], [0], [16]] +5.0.17=[[0], [5], [0], [17]] +5.0.19=[[0], [5], [0], [19]] +5.0.2=[[0], [5], [0], [2]] +5.0.2.126=[[0], [5], [0], [2], [126]] +5.0.201=[[0], [5], [0], [201]] +5.0.202=[[0], [5], [0], [202]] +5.0.20200105154004=[[0], [5], [0], [20200105154004]] +5.0.20200122085940=[[0], [5], [0], [20200122085940]] +5.0.20200126033820=[[0], [5], [0], [20200126033820]] +5.0.20200220195218=[[0], [5], [0], [20200220195218]] +5.0.20200302192450=[[0], [5], [0], [20200302192450]] +5.0.20200416112825=[[0], [5], [0], [20200416112825]] +5.0.203=[[0], [5], [0], [203]] +5.0.225=[[0], [5], [0], [225]] +5.0.229=[[0], [5], [0], [229]] +5.0.3=[[0], [5], [0], [3]] +5.0.3.0=[[0], [5], [0], [3], [0]] +5.0.3.1=[[0], [5], [0], [3], [1]] +5.0.301=[[0], [5], [0], [301]] +5.0.4=[[0], [5], [0], [4]] +5.0.4.1=[[0], [5], [0], [4], [1]] +5.0.4.2=[[0], [5], [0], [4], [2]] +5.0.4.post1=[[0], [5], [0], [4], [0, inf, 1]] +5.0.4.post36=[[0], [5], [0], [4], [0, inf, 36]] +5.0.400=[[0], [5], [0], [400]] +5.0.401=[[0], [5], [0], [401]] +5.0.403=[[0], [5], [0], [403]] +5.0.404=[[0], [5], [0], [404]] +5.0.405=[[0], [5], [0], [405]] +5.0.406=[[0], [5], [0], [406]] +5.0.407=[[0], [5], [0], [407]] +5.0.408=[[0], [5], [0], [408]] +5.0.5=[[0], [5], [0], [5]] +5.0.5.1=[[0], [5], [0], [5], [1]] +5.0.5.2=[[0], [5], [0], [5], [2]] +5.0.6=[[0], [5], [0], [6]] +5.0.6rc1=[[0], [5], [0], [6, 'rc', 1]] +5.0.7=[[0], [5], [0], [7]] +5.0.8=[[0], [5], [0], [8]] +5.0.88=[[0], [5], [0], [88]] +5.0.9=[[0], [5], [0], [9]] +5.002=[[0], [5], [2]] +5.004=[[0], [5], [4]] +5.006=[[0], [5], [6]] +5.008=[[0], [5], [8]] +5.01=[[0], [5], [1]] +5.07=[[0], [5], [7]] +5.0_0=[[0], [5], [0], [0]] +5.0_1=[[0], [5], [0], [1]] +5.0_2=[[0], [5], [0], [2]] +5.1=[[0], [5], [1]] +5.1.0=[[0], [5], [1], [0]] +5.1.0.1=[[0], [5], [1], [0], [1]] +5.1.0.17=[[0], [5], [1], [0], [17]] +5.1.0b4=[[0], [5], [1], [0, 'b', 4]] +5.1.1=[[0], [5], [1], [1]] +5.1.1.post0=[[0], [5], [1], [1], [0, inf, 0]] +5.1.10=[[0], [5], [1], [10]] +5.1.10.0=[[0], [5], [1], [10], [0]] +5.1.10.1=[[0], [5], [1], [10], [1]] +5.1.15=[[0], [5], [1], [15]] +5.1.16=[[0], [5], [1], [16]] +5.1.2=[[0], [5], [1], [2]] +5.1.2.0=[[0], [5], [1], [2], [0]] +5.1.3=[[0], [5], [1], [3]] +5.1.3.0=[[0], [5], [1], [3], [0]] +5.1.4=[[0], [5], [1], [4]] +5.1.48=[[0], [5], [1], [48]] +5.1.5=[[0], [5], [1], [5]] +5.1.5.0=[[0], [5], [1], [5], [0]] +5.1.5.1=[[0], [5], [1], [5], [1]] +5.1.6=[[0], [5], [1], [6]] +5.1.7=[[0], [5], [1], [7]] +5.1.7.0=[[0], [5], [1], [7], [0]] +5.1.8=[[0], [5], [1], [8]] +5.1.8.0=[[0], [5], [1], [8], [0]] +5.1.8.1=[[0], [5], [1], [8], [1]] +5.1.8.2=[[0], [5], [1], [8], [2]] +5.1.8.3=[[0], [5], [1], [8], [3]] +5.1.9=[[0], [5], [1], [9]] +5.10=[[0], [5], [10]] +5.10.0=[[0], [5], [10], [0]] +5.10.0.138=[[0], [5], [10], [0], [138]] +5.10.1=[[0], [5], [10], [1]] +5.10.2=[[0], [5], [10], [2]] +5.10.3=[[0], [5], [10], [3]] +5.10.4=[[0], [5], [10], [4]] +5.10.5=[[0], [5], [10], [5]] +5.100.0=[[0], [5], [100], [0]] +5.101.0=[[0], [5], [101], [0]] +5.102.0=[[0], [5], [102], [0]] +5.103.0=[[0], [5], [103], [0]] +5.104.0=[[0], [5], [104], [0]] +5.105.0=[[0], [5], [105], [0]] +5.106.0=[[0], [5], [106], [0]] +5.11=[[0], [5], [11]] +5.11.0=[[0], [5], [11], [0]] +5.11.1=[[0], [5], [11], [1]] +5.11.2=[[0], [5], [11], [2]] +5.11.3=[[0], [5], [11], [3]] +5.11.4=[[0], [5], [11], [4]] +5.11.5=[[0], [5], [11], [5]] +5.12=[[0], [5], [12]] +5.12.0=[[0], [5], [12], [0]] +5.12.0.140=[[0], [5], [12], [0], [140]] +5.12.1=[[0], [5], [12], [1]] +5.12.1.141=[[0], [5], [12], [1], [141]] +5.12.10=[[0], [5], [12], [10]] +5.12.11=[[0], [5], [12], [11]] +5.12.13=[[0], [5], [12], [13]] +5.12.15=[[0], [5], [12], [15]] +5.12.16=[[0], [5], [12], [16]] +5.12.18=[[0], [5], [12], [18]] +5.12.19=[[0], [5], [12], [19]] +5.12.2=[[0], [5], [12], [2]] +5.12.23=[[0], [5], [12], [23]] +5.12.24=[[0], [5], [12], [24]] +5.12.25=[[0], [5], [12], [25]] +5.12.3=[[0], [5], [12], [3]] +5.12.4=[[0], [5], [12], [4]] +5.12.5=[[0], [5], [12], [5]] +5.12.6=[[0], [5], [12], [6]] +5.12.8=[[0], [5], [12], [8]] +5.12.9=[[0], [5], [12], [9]] +5.127=[[0], [5], [127]] +5.128=[[0], [5], [128]] +5.129=[[0], [5], [129]] +5.13=[[0], [5], [13]] +5.13.0=[[0], [5], [13], [0]] +5.13.1=[[0], [5], [13], [1]] +5.13.10=[[0], [5], [13], [10]] +5.13.11=[[0], [5], [13], [11]] +5.13.13=[[0], [5], [13], [13]] +5.13.14=[[0], [5], [13], [14]] +5.13.15=[[0], [5], [13], [15]] +5.13.16=[[0], [5], [13], [16]] +5.13.17=[[0], [5], [13], [17]] +5.13.18=[[0], [5], [13], [18]] +5.13.2=[[0], [5], [13], [2]] +5.13.3=[[0], [5], [13], [3]] +5.13.6=[[0], [5], [13], [6]] +5.13.8=[[0], [5], [13], [8]] +5.13.9=[[0], [5], [13], [9]] +5.133=[[0], [5], [133]] +5.14=[[0], [5], [14]] +5.14.0=[[0], [5], [14], [0]] +5.14.0.142=[[0], [5], [14], [0], [142]] +5.14.0.177=[[0], [5], [14], [0], [177]] +5.14.1=[[0], [5], [14], [1]] +5.14.1.144=[[0], [5], [14], [1], [144]] +5.14.2=[[0], [5], [14], [2]] +5.14.3=[[0], [5], [14], [3]] +5.14.4=[[0], [5], [14], [4]] +5.14.5=[[0], [5], [14], [5]] +5.14.7=[[0], [5], [14], [7]] +5.14.8=[[0], [5], [14], [8]] +5.15=[[0], [5], [15]] +5.15.0=[[0], [5], [15], [0]] +5.15.1=[[0], [5], [15], [1]] +5.15.2=[[0], [5], [15], [2]] +5.15.3=[[0], [5], [15], [3]] +5.15.4=[[0], [5], [15], [4]] +5.15.5=[[0], [5], [15], [5]] +5.15.6=[[0], [5], [15], [6]] +5.15.6.0=[[0], [5], [15], [6], [0]] +5.15.7=[[0], [5], [15], [7]] +5.15.8=[[0], [5], [15], [8]] +5.15.9=[[0], [5], [15], [9]] +5.16=[[0], [5], [16]] +5.16.0=[[0], [5], [16], [0]] +5.16.0.145=[[0], [5], [16], [0], [145]] +5.16.1=[[0], [5], [16], [1]] +5.16.1.146=[[0], [5], [16], [1], [146]] +5.16.2=[[0], [5], [16], [2]] +5.16.2.147=[[0], [5], [16], [2], [147]] +5.16.3=[[0], [5], [16], [3]] +5.16.5=[[0], [5], [16], [5]] +5.17=[[0], [5], [17]] +5.17.0=[[0], [5], [17], [0]] +5.17.1=[[0], [5], [17], [1]] +5.17.2=[[0], [5], [17], [2]] +5.17.21182=[[0], [5], [17], [21182]] +5.17.3=[[0], [5], [17], [3]] +5.17.4=[[0], [5], [17], [4]] +5.18=[[0], [5], [18]] +5.18.0=[[0], [5], [18], [0]] +5.18.0.148=[[0], [5], [18], [0], [148]] +5.18.1=[[0], [5], [18], [1]] +5.18.2=[[0], [5], [18], [2]] +5.18.3=[[0], [5], [18], [3]] +5.18.4=[[0], [5], [18], [4]] +5.19=[[0], [5], [19]] +5.19.0=[[0], [5], [19], [0]] +5.19.1=[[0], [5], [19], [1]] +5.19.12=[[0], [5], [19], [12]] +5.19.13=[[0], [5], [19], [13]] +5.19.14=[[0], [5], [19], [14]] +5.19.16=[[0], [5], [19], [16]] +5.19.2=[[0], [5], [19], [2]] +5.19.3=[[0], [5], [19], [3]] +5.19.4=[[0], [5], [19], [4]] +5.19.5=[[0], [5], [19], [5]] +5.19.6=[[0], [5], [19], [6]] +5.19.7=[[0], [5], [19], [7]] +5.19.8=[[0], [5], [19], [8]] +5.19.9=[[0], [5], [19], [9]] +5.1_0=[[0], [5], [1], [0]] +5.1_1=[[0], [5], [1], [1]] +5.1_2=[[0], [5], [1], [2]] +5.1_24Aug19.3e8=[[0], [5], [1], [24, 'aug', 19], [3, 'e', 8]] +5.1_3.1=[[0], [5], [1], [3], [1]] +5.1_4=[[0], [5], [1], [4]] +5.1_5=[[0], [5], [1], [5]] +5.1_6=[[0], [5], [1], [6]] +5.1_7=[[0], [5], [1], [7]] +5.1d=[[0], [5], [1, 'd']] +5.2=[[0], [5], [2]] +5.2.0=[[0], [5], [2], [0]] +5.2.0.127=[[0], [5], [2], [0], [127]] +5.2.0.post0=[[0], [5], [2], [0], [0, inf, 0]] +5.2.1=[[0], [5], [2], [1]] +5.2.1.129=[[0], [5], [2], [1], [129]] +5.2.1.post0=[[0], [5], [2], [1], [0, inf, 0]] +5.2.10.49=[[0], [5], [2], [10], [49]] +5.2.12=[[0], [5], [2], [12]] +5.2.15=[[0], [5], [2], [15]] +5.2.1_10=[[0], [5], [2], [1], [10]] +5.2.1_12=[[0], [5], [2], [1], [12]] +5.2.1_13=[[0], [5], [2], [1], [13]] +5.2.1_14=[[0], [5], [2], [1], [14]] +5.2.1_15=[[0], [5], [2], [1], [15]] +5.2.1_18=[[0], [5], [2], [1], [18]] +5.2.1_20=[[0], [5], [2], [1], [20]] +5.2.1_22=[[0], [5], [2], [1], [22]] +5.2.1_23=[[0], [5], [2], [1], [23]] +5.2.1_7=[[0], [5], [2], [1], [7]] +5.2.1rc0=[[0], [5], [2], [1, 'rc', 0]] +5.2.2=[[0], [5], [2], [2]] +5.2.2.130=[[0], [5], [2], [2], [130]] +5.2.2.post1=[[0], [5], [2], [2], [0, inf, 1]] +5.2.3=[[0], [5], [2], [3]] +5.2.3.131=[[0], [5], [2], [3], [131]] +5.2.4=[[0], [5], [2], [4]] +5.2.40=[[0], [5], [2], [40]] +5.2.5=[[0], [5], [2], [5]] +5.2.6=[[0], [5], [2], [6]] +5.2.7=[[0], [5], [2], [7]] +5.2.8=[[0], [5], [2], [8]] +5.20=[[0], [5], [20]] +5.20.0=[[0], [5], [20], [0]] +5.20.0.149=[[0], [5], [20], [0], [149]] +5.20.1=[[0], [5], [20], [1]] +5.20.1.150=[[0], [5], [20], [1], [150]] +5.20.2=[[0], [5], [20], [2]] +5.20.3=[[0], [5], [20], [3]] +5.20.3.1=[[0], [5], [20], [3], [1]] +5.20.5=[[0], [5], [20], [5]] +5.20.6=[[0], [5], [20], [6]] +5.20190524=[[0], [5], [20190524]] +5.20220120=[[0], [5], [20220120]] +5.20220220=[[0], [5], [20220220]] +5.20220313=[[0], [5], [20220313]] +5.20220320=[[0], [5], [20220320]] +5.20220420=[[0], [5], [20220420]] +5.20220527=[[0], [5], [20220527]] +5.20220620=[[0], [5], [20220620]] +5.21=[[0], [5], [21]] +5.21.0=[[0], [5], [21], [0]] +5.21.1=[[0], [5], [21], [1]] +5.212=[[0], [5], [212]] +5.22.0=[[0], [5], [22], [0]] +5.22.0.1=[[0], [5], [22], [0], [1]] +5.22.0.151=[[0], [5], [22], [0], [151]] +5.22.1=[[0], [5], [22], [1]] +5.22.1.152=[[0], [5], [22], [1], [152]] +5.22.2.1=[[0], [5], [22], [2], [1]] +5.22.21182=[[0], [5], [22], [21182]] +5.22.3=[[0], [5], [22], [3]] +5.22.5=[[0], [5], [22], [5]] +5.23.0=[[0], [5], [23], [0]] +5.23.1=[[0], [5], [23], [1]] +5.23.10=[[0], [5], [23], [10]] +5.23.11=[[0], [5], [23], [11]] +5.23.12=[[0], [5], [23], [12]] +5.23.2=[[0], [5], [23], [2]] +5.23.21182=[[0], [5], [23], [21182]] +5.23.3=[[0], [5], [23], [3]] +5.23.4=[[0], [5], [23], [4]] +5.23.5=[[0], [5], [23], [5]] +5.23.6=[[0], [5], [23], [6]] +5.23.7=[[0], [5], [23], [7]] +5.23.8=[[0], [5], [23], [8]] +5.23.9=[[0], [5], [23], [9]] +5.24.0=[[0], [5], [24], [0]] +5.24.0.153=[[0], [5], [24], [0], [153]] +5.24.1=[[0], [5], [24], [1]] +5.24.2=[[0], [5], [24], [2]] +5.24.3=[[0], [5], [24], [3]] +5.24.4=[[0], [5], [24], [4]] +5.25=[[0], [5], [25]] +5.25.0=[[0], [5], [25], [0]] +5.25.1=[[0], [5], [25], [1]] +5.26.0=[[0], [5], [26], [0]] +5.26.1=[[0], [5], [26], [1]] +5.26.2=[[0], [5], [26], [2]] +5.26.2.1=[[0], [5], [26], [2], [1]] +5.26.3=[[0], [5], [26], [3]] +5.27.0=[[0], [5], [27], [0]] +5.27.1=[[0], [5], [27], [1]] +5.27.4=[[0], [5], [27], [4]] +5.28.0=[[0], [5], [28], [0]] +5.29.0=[[0], [5], [29], [0]] +5.29.2=[[0], [5], [29], [2]] +5.29.3=[[0], [5], [29], [3]] +5.29.5=[[0], [5], [29], [5]] +5.29.6=[[0], [5], [29], [6]] +5.29.7=[[0], [5], [29], [7]] +5.29.8=[[0], [5], [29], [8]] +5.2_0=[[0], [5], [2], [0]] +5.2_21Apr21.304=[[0], [5], [2], [21, 'apr', 21], [304]] +5.3=[[0], [5], [3]] +5.3.0=[[0], [5], [3], [0]] +5.3.0.0=[[0], [5], [3], [0], [0]] +5.3.0.1=[[0], [5], [3], [0], [1]] +5.3.0.2=[[0], [5], [3], [0], [2]] +5.3.0.3=[[0], [5], [3], [0], [3]] +5.3.0.4=[[0], [5], [3], [0], [4]] +5.3.1=[[0], [5], [3], [1]] +5.3.11=[[0], [5], [3], [11]] +5.3.2=[[0], [5], [3], [2]] +5.3.21=[[0], [5], [3], [21]] +5.3.28=[[0], [5], [3], [28]] +5.3.3=[[0], [5], [3], [3]] +5.3.4=[[0], [5], [3], [4]] +5.3.5=[[0], [5], [3], [5]] +5.3.6=[[0], [5], [3], [6]] +5.3.8=[[0], [5], [3], [8]] +5.30=[[0], [5], [30]] +5.30.0=[[0], [5], [30], [0]] +5.30.1=[[0], [5], [30], [1]] +5.30.2=[[0], [5], [30], [2]] +5.30.3=[[0], [5], [30], [3]] +5.30.3.1=[[0], [5], [30], [3], [1]] +5.31.0=[[0], [5], [31], [0]] +5.31.1=[[0], [5], [31], [1]] +5.31.4=[[0], [5], [31], [4]] +5.32=[[0], [5], [32]] +5.32.0=[[0], [5], [32], [0]] +5.32.0.1=[[0], [5], [32], [0], [1]] +5.32.1=[[0], [5], [32], [1]] +5.32.1.1=[[0], [5], [32], [1], [1]] +5.32.2=[[0], [5], [32], [2]] +5.32.5=[[0], [5], [32], [5]] +5.33=[[0], [5], [33]] +5.33.0=[[0], [5], [33], [0]] +5.33.3=[[0], [5], [33], [3]] +5.33.9=[[0], [5], [33], [9]] +5.34.0=[[0], [5], [34], [0]] +5.34.36=[[0], [5], [34], [36]] +5.34.38=[[0], [5], [34], [38]] +5.35=[[0], [5], [35]] +5.35.0=[[0], [5], [35], [0]] +5.36=[[0], [5], [36]] +5.36.0=[[0], [5], [36], [0]] +5.37=[[0], [5], [37]] +5.37.0=[[0], [5], [37], [0]] +5.37.1=[[0], [5], [37], [1]] +5.37.3=[[0], [5], [37], [3]] +5.37.4=[[0], [5], [37], [4]] +5.37.5=[[0], [5], [37], [5]] +5.38=[[0], [5], [38]] +5.38.0=[[0], [5], [38], [0]] +5.38.1=[[0], [5], [38], [1]] +5.39=[[0], [5], [39]] +5.39.0=[[0], [5], [39], [0]] +5.3_1=[[0], [5], [3], [1]] +5.3_2=[[0], [5], [3], [2]] +5.3_4=[[0], [5], [3], [4]] +5.4=[[0], [5], [4]] +5.4.0=[[0], [5], [4], [0]] +5.4.0.132=[[0], [5], [4], [0], [132]] +5.4.1=[[0], [5], [4], [1]] +5.4.1.134=[[0], [5], [4], [1], [134]] +5.4.10=[[0], [5], [4], [10]] +5.4.10_1.2.0=[[0], [5], [4], [10], [1], [2], [0]] +5.4.10_1.3.0=[[0], [5], [4], [10], [1], [3], [0]] +5.4.11=[[0], [5], [4], [11]] +5.4.12=[[0], [5], [4], [12]] +5.4.2=[[0], [5], [4], [2]] +5.4.3=[[0], [5], [4], [3]] +5.4.4=[[0], [5], [4], [4]] +5.4.5=[[0], [5], [4], [5]] +5.4.6=[[0], [5], [4], [6]] +5.4.7=[[0], [5], [4], [7]] +5.4.8=[[0], [5], [4], [8]] +5.4.9=[[0], [5], [4], [9]] +5.40=[[0], [5], [40]] +5.40.0=[[0], [5], [40], [0]] +5.40.1=[[0], [5], [40], [1]] +5.41=[[0], [5], [41]] +5.41.0=[[0], [5], [41], [0]] +5.41.1=[[0], [5], [41], [1]] +5.41.2=[[0], [5], [41], [2]] +5.41.3=[[0], [5], [41], [3]] +5.41.4=[[0], [5], [41], [4]] +5.41.5=[[0], [5], [41], [5]] +5.42.0=[[0], [5], [42], [0]] +5.42.1=[[0], [5], [42], [1]] +5.42.2=[[0], [5], [42], [2]] +5.42.3=[[0], [5], [42], [3]] +5.43.0=[[0], [5], [43], [0]] +5.43.1=[[0], [5], [43], [1]] +5.43.2=[[0], [5], [43], [2]] +5.43.3=[[0], [5], [43], [3]] +5.43.4=[[0], [5], [43], [4]] +5.43.5=[[0], [5], [43], [5]] +5.43.6=[[0], [5], [43], [6]] +5.43.7=[[0], [5], [43], [7]] +5.43.8=[[0], [5], [43], [8]] +5.43.9=[[0], [5], [43], [9]] +5.44.0=[[0], [5], [44], [0]] +5.44.21241=[[0], [5], [44], [21241]] +5.45.0=[[0], [5], [45], [0]] +5.45.4=[[0], [5], [45], [4]] +5.46.0=[[0], [5], [46], [0]] +5.47.0=[[0], [5], [47], [0]] +5.48.0=[[0], [5], [48], [0]] +5.49.0=[[0], [5], [49], [0]] +5.4_1=[[0], [5], [4], [1]] +5.4_10=[[0], [5], [4], [10]] +5.4_12=[[0], [5], [4], [12]] +5.4_3=[[0], [5], [4], [3]] +5.5=[[0], [5], [5]] +5.5.0=[[0], [5], [5], [0]] +5.5.1=[[0], [5], [5], [1]] +5.5.10=[[0], [5], [5], [10]] +5.5.1016=[[0], [5], [5], [1016]] +5.5.1068=[[0], [5], [5], [1068]] +5.5.11=[[0], [5], [5], [11]] +5.5.12=[[0], [5], [5], [12]] +5.5.13=[[0], [5], [5], [13]] +5.5.14=[[0], [5], [5], [14]] +5.5.15=[[0], [5], [5], [15]] +5.5.2=[[0], [5], [5], [2]] +5.5.2.0_17=[[0], [5], [5], [2], [0], [17]] +5.5.2.0_17.1=[[0], [5], [5], [2], [0], [17], [1]] +5.5.2.0_17.4=[[0], [5], [5], [2], [0], [17], [4]] +5.5.2.0_17.6=[[0], [5], [5], [2], [0], [17], [6]] +5.5.2.0_17.7=[[0], [5], [5], [2], [0], [17], [7]] +5.5.2.0_17.8=[[0], [5], [5], [2], [0], [17], [8]] +5.5.2.0_17.9=[[0], [5], [5], [2], [0], [17], [9]] +5.5.2.5=[[0], [5], [5], [2], [5]] +5.5.3=[[0], [5], [5], [3]] +5.5.4=[[0], [5], [5], [4]] +5.5.5=[[0], [5], [5], [5]] +5.5.6=[[0], [5], [5], [6]] +5.5.7=[[0], [5], [5], [7]] +5.5.8=[[0], [5], [5], [8]] +5.5.9=[[0], [5], [5], [9]] +5.5.985=[[0], [5], [5], [985]] +5.5.992=[[0], [5], [5], [992]] +5.5004=[[0], [5], [5004]] +5.506=[[0], [5], [506]] +5.508=[[0], [5], [508]] +5.51=[[0], [5], [51]] +5.52=[[0], [5], [52]] +5.52.0=[[0], [5], [52], [0]] +5.54=[[0], [5], [54]] +5.55=[[0], [5], [55]] +5.55.0=[[0], [5], [55], [0]] +5.57.21262=[[0], [5], [57], [21262]] +5.5_0=[[0], [5], [5], [0]] +5.6=[[0], [5], [6]] +5.6.0=[[0], [5], [6], [0]] +5.6.0.0=[[0], [5], [6], [0], [0]] +5.6.0.135=[[0], [5], [6], [0], [135]] +5.6.0a1=[[0], [5], [6], [0, 'a', 1]] +5.6.1=[[0], [5], [6], [1]] +5.6.13=[[0], [5], [6], [13]] +5.6.13.1=[[0], [5], [6], [13], [1]] +5.6.13.2=[[0], [5], [6], [13], [2]] +5.6.13.3=[[0], [5], [6], [13], [3]] +5.6.15=[[0], [5], [6], [15]] +5.6.16=[[0], [5], [6], [16]] +5.6.17=[[0], [5], [6], [17]] +5.6.18=[[0], [5], [6], [18]] +5.6.2=[[0], [5], [6], [2]] +5.6.2_2.0.0=[[0], [5], [6], [2], [2], [0], [0]] +5.6.2_2.1.0=[[0], [5], [6], [2], [2], [1], [0]] +5.6.2_2.2.0=[[0], [5], [6], [2], [2], [2], [0]] +5.6.3=[[0], [5], [6], [3]] +5.6.4=[[0], [5], [6], [4]] +5.6.5=[[0], [5], [6], [5]] +5.6.6=[[0], [5], [6], [6]] +5.6.7=[[0], [5], [6], [7]] +5.6.8=[[0], [5], [6], [8]] +5.6.9=[[0], [5], [6], [9]] +5.64.0=[[0], [5], [64], [0]] +5.64.1=[[0], [5], [64], [1]] +5.65.0=[[0], [5], [65], [0]] +5.66.0=[[0], [5], [66], [0]] +5.661=[[0], [5], [661]] +5.67.0=[[0], [5], [67], [0]] +5.68.0=[[0], [5], [68], [0]] +5.69.0=[[0], [5], [69], [0]] +5.6_1=[[0], [5], [6], [1]] +5.6_2=[[0], [5], [6], [2]] +5.7=[[0], [5], [7]] +5.7.0=[[0], [5], [7], [0]] +5.7.0.0=[[0], [5], [7], [0], [0]] +5.7.0.1=[[0], [5], [7], [0], [1]] +5.7.0.dev20210429=[[0], [5], [7], [0], [0, 'DEV', 20210429]] +5.7.0rc2=[[0], [5], [7], [0, 'rc', 2]] +5.7.1=[[0], [5], [7], [1]] +5.7.10=[[0], [5], [7], [10]] +5.7.11=[[0], [5], [7], [11]] +5.7.2=[[0], [5], [7], [2]] +5.7.20=[[0], [5], [7], [20]] +5.7.28=[[0], [5], [7], [28]] +5.7.3=[[0], [5], [7], [3]] +5.7.4=[[0], [5], [7], [4]] +5.7.5=[[0], [5], [7], [5]] +5.7.6=[[0], [5], [7], [6]] +5.7.7=[[0], [5], [7], [7]] +5.7.8=[[0], [5], [7], [8]] +5.7.9=[[0], [5], [7], [9]] +5.70=[[0], [5], [70]] +5.70.0=[[0], [5], [70], [0]] +5.70.1=[[0], [5], [70], [1]] +5.71.0=[[0], [5], [71], [0]] +5.72=[[0], [5], [72]] +5.72.0=[[0], [5], [72], [0]] +5.73=[[0], [5], [73]] +5.73.0=[[0], [5], [73], [0]] +5.74=[[0], [5], [74]] +5.74.0=[[0], [5], [74], [0]] +5.74.1=[[0], [5], [74], [1]] +5.75=[[0], [5], [75]] +5.75.0=[[0], [5], [75], [0]] +5.76.0=[[0], [5], [76], [0]] +5.77.0=[[0], [5], [77], [0]] +5.79.0=[[0], [5], [79], [0]] +5.7_1=[[0], [5], [7], [1]] +5.8=[[0], [5], [8]] +5.8.0=[[0], [5], [8], [0]] +5.8.0.136=[[0], [5], [8], [0], [136]] +5.8.0rc1=[[0], [5], [8], [0, 'rc', 1]] +5.8.0rc2=[[0], [5], [8], [0, 'rc', 2]] +5.8.0rc3=[[0], [5], [8], [0, 'rc', 3]] +5.8.1=[[0], [5], [8], [1]] +5.8.2=[[0], [5], [8], [2]] +5.8.3=[[0], [5], [8], [3]] +5.8.4=[[0], [5], [8], [4]] +5.8.5=[[0], [5], [8], [5]] +5.8.6=[[0], [5], [8], [6]] +5.8.7=[[0], [5], [8], [7]] +5.80.0=[[0], [5], [80], [0]] +5.81.0=[[0], [5], [81], [0]] +5.82=[[0], [5], [82]] +5.82.0=[[0], [5], [82], [0]] +5.83=[[0], [5], [83]] +5.83.0=[[0], [5], [83], [0]] +5.84.0=[[0], [5], [84], [0]] +5.85=[[0], [5], [85]] +5.85.0=[[0], [5], [85], [0]] +5.86=[[0], [5], [86]] +5.86.0=[[0], [5], [86], [0]] +5.87.0=[[0], [5], [87], [0]] +5.88=[[0], [5], [88]] +5.88.0=[[0], [5], [88], [0]] +5.89.0=[[0], [5], [89], [0]] +5.891=[[0], [5], [891]] +5.9=[[0], [5], [9]] +5.9.0=[[0], [5], [9], [0]] +5.9.0a1=[[0], [5], [9], [0, 'a', 1]] +5.9.0rc2=[[0], [5], [9], [0, 'rc', 2]] +5.9.1=[[0], [5], [9], [1]] +5.9.2=[[0], [5], [9], [2]] +5.9.20201122.0=[[0], [5], [9], [20201122], [0]] +5.9.20201206.0=[[0], [5], [9], [20201206], [0]] +5.9.20201213.0=[[0], [5], [9], [20201213], [0]] +5.9.20201220.0=[[0], [5], [9], [20201220], [0]] +5.9.20201227.0=[[0], [5], [9], [20201227], [0]] +5.9.20210103.0=[[0], [5], [9], [20210103], [0]] +5.9.20210110.0=[[0], [5], [9], [20210110], [0]] +5.9.20210117.0=[[0], [5], [9], [20210117], [0]] +5.9.20210124.0=[[0], [5], [9], [20210124], [0]] +5.9.20210131.0=[[0], [5], [9], [20210131], [0]] +5.9.20210207.0=[[0], [5], [9], [20210207], [0]] +5.9.20210214.0=[[0], [5], [9], [20210214], [0]] +5.9.20210221.0=[[0], [5], [9], [20210221], [0]] +5.9.20210228.0=[[0], [5], [9], [20210228], [0]] +5.9.20210307.0=[[0], [5], [9], [20210307], [0]] +5.9.20210314.0=[[0], [5], [9], [20210314], [0]] +5.9.20210321.0=[[0], [5], [9], [20210321], [0]] +5.9.20210328.0=[[0], [5], [9], [20210328], [0]] +5.9.20210404.0=[[0], [5], [9], [20210404], [0]] +5.9.20210411.0=[[0], [5], [9], [20210411], [0]] +5.9.20210418.0=[[0], [5], [9], [20210418], [0]] +5.9.20210425.0=[[0], [5], [9], [20210425], [0]] +5.9.20210502.0=[[0], [5], [9], [20210502], [0]] +5.9.20210509.0=[[0], [5], [9], [20210509], [0]] +5.9.20210516.0=[[0], [5], [9], [20210516], [0]] +5.9.20210523.0=[[0], [5], [9], [20210523], [0]] +5.9.20210530.0=[[0], [5], [9], [20210530], [0]] +5.9.20210606.0=[[0], [5], [9], [20210606], [0]] +5.9.20210613.0=[[0], [5], [9], [20210613], [0]] +5.9.20210620.0=[[0], [5], [9], [20210620], [0]] +5.9.20210627.0=[[0], [5], [9], [20210627], [0]] +5.9.20210704.0=[[0], [5], [9], [20210704], [0]] +5.9.20210711.0=[[0], [5], [9], [20210711], [0]] +5.9.20210718.0=[[0], [5], [9], [20210718], [0]] +5.9.20210725.0=[[0], [5], [9], [20210725], [0]] +5.9.20210801.0=[[0], [5], [9], [20210801], [0]] +5.9.20210808.0=[[0], [5], [9], [20210808], [0]] +5.9.20210815.0=[[0], [5], [9], [20210815], [0]] +5.9.20210822.0=[[0], [5], [9], [20210822], [0]] +5.9.20210829.0=[[0], [5], [9], [20210829], [0]] +5.9.20210905.0=[[0], [5], [9], [20210905], [0]] +5.9.20210912.0=[[0], [5], [9], [20210912], [0]] +5.9.20210919.0=[[0], [5], [9], [20210919], [0]] +5.9.20210926.0=[[0], [5], [9], [20210926], [0]] +5.9.20211003.0=[[0], [5], [9], [20211003], [0]] +5.9.20211010.0=[[0], [5], [9], [20211010], [0]] +5.9.20211017.0=[[0], [5], [9], [20211017], [0]] +5.9.20211031.0=[[0], [5], [9], [20211031], [0]] +5.9.20211107.0=[[0], [5], [9], [20211107], [0]] +5.9.20211114.0=[[0], [5], [9], [20211114], [0]] +5.9.20211121.0=[[0], [5], [9], [20211121], [0]] +5.9.20211128.0=[[0], [5], [9], [20211128], [0]] +5.9.20211205.0=[[0], [5], [9], [20211205], [0]] +5.9.20211212.0=[[0], [5], [9], [20211212], [0]] +5.9.20211219.0=[[0], [5], [9], [20211219], [0]] +5.9.20211226.0=[[0], [5], [9], [20211226], [0]] +5.9.20220102.0=[[0], [5], [9], [20220102], [0]] +5.9.20220109.0=[[0], [5], [9], [20220109], [0]] +5.9.20220116.0=[[0], [5], [9], [20220116], [0]] +5.9.20220123.0=[[0], [5], [9], [20220123], [0]] +5.9.20220130.0=[[0], [5], [9], [20220130], [0]] +5.9.20220206.0=[[0], [5], [9], [20220206], [0]] +5.9.20220213.0=[[0], [5], [9], [20220213], [0]] +5.9.20220220.0=[[0], [5], [9], [20220220], [0]] +5.9.20220227.0=[[0], [5], [9], [20220227], [0]] +5.9.20220306.0=[[0], [5], [9], [20220306], [0]] +5.9.20220313.0=[[0], [5], [9], [20220313], [0]] +5.9.20220320.0=[[0], [5], [9], [20220320], [0]] +5.9.20220327.0=[[0], [5], [9], [20220327], [0]] +5.9.20220403.0=[[0], [5], [9], [20220403], [0]] +5.9.20220410.0=[[0], [5], [9], [20220410], [0]] +5.9.20220417.0=[[0], [5], [9], [20220417], [0]] +5.9.20220424.0=[[0], [5], [9], [20220424], [0]] +5.9.20220501.0=[[0], [5], [9], [20220501], [0]] +5.9.20220508.0=[[0], [5], [9], [20220508], [0]] +5.9.20220515.0=[[0], [5], [9], [20220515], [0]] +5.9.20220522.0=[[0], [5], [9], [20220522], [0]] +5.9.20220529.0=[[0], [5], [9], [20220529], [0]] +5.9.20220605.0=[[0], [5], [9], [20220605], [0]] +5.9.20220612.0=[[0], [5], [9], [20220612], [0]] +5.9.20220619.0=[[0], [5], [9], [20220619], [0]] +5.9.20220626.0=[[0], [5], [9], [20220626], [0]] +5.9.20220703.0=[[0], [5], [9], [20220703], [0]] +5.9.20220710.0=[[0], [5], [9], [20220710], [0]] +5.9.20220717.0=[[0], [5], [9], [20220717], [0]] +5.9.20220724.0=[[0], [5], [9], [20220724], [0]] +5.9.20220731.0=[[0], [5], [9], [20220731], [0]] +5.9.20220807.0=[[0], [5], [9], [20220807], [0]] +5.9.20220814.0=[[0], [5], [9], [20220814], [0]] +5.9.20220821.0=[[0], [5], [9], [20220821], [0]] +5.9.20220828.0=[[0], [5], [9], [20220828], [0]] +5.9.20220904.0=[[0], [5], [9], [20220904], [0]] +5.9.20220918.0=[[0], [5], [9], [20220918], [0]] +5.9.20220925.0=[[0], [5], [9], [20220925], [0]] +5.9.20221002.0=[[0], [5], [9], [20221002], [0]] +5.9.20221009.0=[[0], [5], [9], [20221009], [0]] +5.9.20221023.0=[[0], [5], [9], [20221023], [0]] +5.9.20221030.0=[[0], [5], [9], [20221030], [0]] +5.9.20221106.0=[[0], [5], [9], [20221106], [0]] +5.9.20221113.0=[[0], [5], [9], [20221113], [0]] +5.9.20221120.0=[[0], [5], [9], [20221120], [0]] +5.9.20221127.0=[[0], [5], [9], [20221127], [0]] +5.9.20221204.0=[[0], [5], [9], [20221204], [0]] +5.9.3=[[0], [5], [9], [3]] +5.9.4=[[0], [5], [9], [4]] +5.9.5=[[0], [5], [9], [5]] +5.9.5.1=[[0], [5], [9], [5], [1]] +5.9.5.2=[[0], [5], [9], [5], [2]] +5.9.5.3=[[0], [5], [9], [5], [3]] +5.9.5.4=[[0], [5], [9], [5], [4]] +5.9.5.5=[[0], [5], [9], [5], [5]] +5.9.5.6=[[0], [5], [9], [5], [6]] +5.9.6=[[0], [5], [9], [6]] +5.9.7=[[0], [5], [9], [7]] +5.9.8=[[0], [5], [9], [8]] +5.90.0=[[0], [5], [90], [0]] +5.911=[[0], [5], [911]] +5.93=[[0], [5], [93]] +5.94=[[0], [5], [94]] +5.94.0=[[0], [5], [94], [0]] +5.941=[[0], [5], [941]] +5.95=[[0], [5], [95]] +5.95.0=[[0], [5], [95], [0]] +5.96.0=[[0], [5], [96], [0]] +5.97.0=[[0], [5], [97], [0]] +5.98.0=[[0], [5], [98], [0]] +5.99.0=[[0], [5], [99], [0]] +5.992=[[0], [5], [992]] +5.9_0.3=[[0], [5], [9], [0], [3]] +50=[[0], [50]] +51=[[0], [51]] +52=[[0], [52]] +52.1=[[0], [52], [1]] +52.2=[[0], [52], [2]] +52.3=[[0], [52], [3]] +52.4=[[0], [52], [4]] +52.5=[[0], [52], [5]] +53=[[0], [53]] +53.1=[[0], [53], [1]] +53.2=[[0], [53], [2]] +53.3=[[0], [53], [3]] +53.4=[[0], [53], [4]] +530=[[0], [530]] +533.63=[[0], [533], [63]] +54=[[0], [54]] +54.0=[[0], [54], [0]] +54.1=[[0], [54], [1]] +54.2=[[0], [54], [2]] +54.3=[[0], [54], [3]] +540.66=[[0], [540], [66]] +55=[[0], [55]] +55.0=[[0], [55], [0]] +56=[[0], [56]] +56.0=[[0], [56], [0]] +56.1=[[0], [56], [1]] +57=[[0], [57]] +57.0=[[0], [57], [0]] +57.0.0=[[0], [57], [0], [0]] +57.0.1=[[0], [57], [0], [1]] +57.0.2=[[0], [57], [0], [2]] +57.1=[[0], [57], [1]] +57.2=[[0], [57], [2]] +57.4.0=[[0], [57], [4], [0]] +57.4.1=[[0], [57], [4], [1]] +57.4.10=[[0], [57], [4], [10]] +57.4.11=[[0], [57], [4], [11]] +57.4.12=[[0], [57], [4], [12]] +57.4.13=[[0], [57], [4], [13]] +57.4.14=[[0], [57], [4], [14]] +57.4.15=[[0], [57], [4], [15]] +57.4.16=[[0], [57], [4], [16]] +57.4.17=[[0], [57], [4], [17]] +57.4.18=[[0], [57], [4], [18]] +57.4.2=[[0], [57], [4], [2]] +57.4.3=[[0], [57], [4], [3]] +57.4.4=[[0], [57], [4], [4]] +57.4.5=[[0], [57], [4], [5]] +57.4.6=[[0], [57], [4], [6]] +57.4.7=[[0], [57], [4], [7]] +57.4.8=[[0], [57], [4], [8]] +57.4.9=[[0], [57], [4], [9]] +58=[[0], [58]] +58.0=[[0], [58], [0]] +58.0.2=[[0], [58], [0], [2]] +58.0.3=[[0], [58], [0], [3]] +58.0.4=[[0], [58], [0], [4]] +58.1=[[0], [58], [1]] +58.2=[[0], [58], [2]] +58.2.0=[[0], [58], [2], [0]] +58.3.0=[[0], [58], [3], [0]] +58.4.0=[[0], [58], [4], [0]] +58.5.2=[[0], [58], [5], [2]] +58.5.3=[[0], [58], [5], [3]] +59.0.1=[[0], [59], [0], [1]] +59.1.0=[[0], [59], [1], [0]] +59.1.1=[[0], [59], [1], [1]] +59.2.0=[[0], [59], [2], [0]] +59.4.0=[[0], [59], [4], [0]] +59.5.0=[[0], [59], [5], [0]] +59.6.0=[[0], [59], [6], [0]] +59.7.0=[[0], [59], [7], [0]] +59.8.0=[[0], [59], [8], [0]] +6=[[0], [6]] +6.0=[[0], [6], [0]] +6.0.0=[[0], [6], [0], [0]] +6.0.0.0=[[0], [6], [0], [0], [0]] +6.0.0.1=[[0], [6], [0], [0], [1]] +6.0.0.post1=[[0], [6], [0], [0], [0, inf, 1]] +6.0.1=[[0], [6], [0], [1]] +6.0.1.155=[[0], [6], [0], [1], [155]] +6.0.10=[[0], [6], [0], [10]] +6.0.100=[[0], [6], [0], [100]] +6.0.101=[[0], [6], [0], [101]] +6.0.102=[[0], [6], [0], [102]] +6.0.11=[[0], [6], [0], [11]] +6.0.12=[[0], [6], [0], [12]] +6.0.12.1=[[0], [6], [0], [12], [1]] +6.0.12.2=[[0], [6], [0], [12], [2]] +6.0.12.3=[[0], [6], [0], [12], [3]] +6.0.12.4=[[0], [6], [0], [12], [4]] +6.0.12.5=[[0], [6], [0], [12], [5]] +6.0.12.6=[[0], [6], [0], [12], [6]] +6.0.12.7=[[0], [6], [0], [12], [7]] +6.0.12.8=[[0], [6], [0], [12], [8]] +6.0.13=[[0], [6], [0], [13]] +6.0.14=[[0], [6], [0], [14]] +6.0.16=[[0], [6], [0], [16]] +6.0.1_10=[[0], [6], [0], [1], [10]] +6.0.1_11=[[0], [6], [0], [1], [11]] +6.0.1_3=[[0], [6], [0], [1], [3]] +6.0.1_6=[[0], [6], [0], [1], [6]] +6.0.1_7=[[0], [6], [0], [1], [7]] +6.0.1_8=[[0], [6], [0], [1], [8]] +6.0.1_9=[[0], [6], [0], [1], [9]] +6.0.2=[[0], [6], [0], [2]] +6.0.201=[[0], [6], [0], [201]] +6.0.20160220=[[0], [6], [0], [20160220]] +6.0.202=[[0], [6], [0], [202]] +6.0.20200523200656=[[0], [6], [0], [20200523200656]] +6.0.20200601095207=[[0], [6], [0], [20200601095207]] +6.0.20221218.0=[[0], [6], [0], [20221218], [0]] +6.0.20221225.0=[[0], [6], [0], [20221225], [0]] +6.0.20230101.0=[[0], [6], [0], [20230101], [0]] +6.0.20230108.0=[[0], [6], [0], [20230108], [0]] +6.0.20230115.0=[[0], [6], [0], [20230115], [0]] +6.0.20230122.0=[[0], [6], [0], [20230122], [0]] +6.0.20230129.0=[[0], [6], [0], [20230129], [0]] +6.0.20230205.0=[[0], [6], [0], [20230205], [0]] +6.0.20230212.0=[[0], [6], [0], [20230212], [0]] +6.0.20230219.0=[[0], [6], [0], [20230219], [0]] +6.0.20230226.0=[[0], [6], [0], [20230226], [0]] +6.0.20230305.0=[[0], [6], [0], [20230305], [0]] +6.0.20230312.0=[[0], [6], [0], [20230312], [0]] +6.0.20230319.0=[[0], [6], [0], [20230319], [0]] +6.0.20230326.0=[[0], [6], [0], [20230326], [0]] +6.0.20230409.0=[[0], [6], [0], [20230409], [0]] +6.0.20230416.0=[[0], [6], [0], [20230416], [0]] +6.0.20230423.0=[[0], [6], [0], [20230423], [0]] +6.0.20230430.0=[[0], [6], [0], [20230430], [0]] +6.0.20230507.0=[[0], [6], [0], [20230507], [0]] +6.0.20230514.0=[[0], [6], [0], [20230514], [0]] +6.0.3=[[0], [6], [0], [3]] +6.0.300=[[0], [6], [0], [300]] +6.0.301=[[0], [6], [0], [301]] +6.0.4=[[0], [6], [0], [4]] +6.0.401=[[0], [6], [0], [401]] +6.0.403=[[0], [6], [0], [403]] +6.0.405=[[0], [6], [0], [405]] +6.0.408=[[0], [6], [0], [408]] +6.0.5=[[0], [6], [0], [5]] +6.0.6=[[0], [6], [0], [6]] +6.0.7=[[0], [6], [0], [7]] +6.0.8=[[0], [6], [0], [8]] +6.0.9=[[0], [6], [0], [9]] +6.01=[[0], [6], [1]] +6.02=[[0], [6], [2]] +6.04=[[0], [6], [4]] +6.5=[[0], [6], [5]] +6.06=[[0], [6], [6]] +6.07=[[0], [6], [7]] +6.08=[[0], [6], [8]] +6.09=[[0], [6], [9]] +6.0_0=[[0], [6], [0], [0]] +6.0_1=[[0], [6], [0], [1]] +6.0_2=[[0], [6], [0], [2]] +6.0_3=[[0], [6], [0], [3]] +6.0_5=[[0], [6], [0], [5]] +6.0_76=[[0], [6], [0], [76]] +6.0_78=[[0], [6], [0], [78]] +6.0_79=[[0], [6], [0], [79]] +6.0_80=[[0], [6], [0], [80]] +6.0_81=[[0], [6], [0], [81]] +6.0_82=[[0], [6], [0], [82]] +6.0_84=[[0], [6], [0], [84]] +6.0_85=[[0], [6], [0], [85]] +6.0_86=[[0], [6], [0], [86]] +6.0_88=[[0], [6], [0], [88]] +6.0_89=[[0], [6], [0], [89]] +6.0_90=[[0], [6], [0], [90]] +6.0_91=[[0], [6], [0], [91]] +6.0_92=[[0], [6], [0], [92]] +6.0_93=[[0], [6], [0], [93]] +6.0_94=[[0], [6], [0], [94]] +6.0rc2=[[0], [6], [0, 'rc', 2]] +6.1=[[0], [6], [1]] +6.1.0=[[0], [6], [1], [0]] +6.1.0.1=[[0], [6], [1], [0], [1]] +6.1.0.post1=[[0], [6], [1], [0], [0, inf, 1]] +6.1.1=[[0], [6], [1], [1]] +6.1.10=[[0], [6], [1], [10]] +6.1.11=[[0], [6], [1], [11]] +6.1.12=[[0], [6], [1], [12]] +6.1.13=[[0], [6], [1], [13]] +6.1.14=[[0], [6], [1], [14]] +6.1.15=[[0], [6], [1], [15]] +6.1.16=[[0], [6], [1], [16]] +6.1.2=[[0], [6], [1], [2]] +6.1.26=[[0], [6], [1], [26]] +6.1.3=[[0], [6], [1], [3]] +6.1.3.0=[[0], [6], [1], [3], [0]] +6.1.4=[[0], [6], [1], [4]] +6.1.4.0=[[0], [6], [1], [4], [0]] +6.1.5=[[0], [6], [1], [5]] +6.1.6=[[0], [6], [1], [6]] +6.1.7=[[0], [6], [1], [7]] +6.1.8=[[0], [6], [1], [8]] +6.1.9=[[0], [6], [1], [9]] +6.10=[[0], [6], [10]] +6.10.0=[[0], [6], [10], [0]] +6.10.0.165=[[0], [6], [10], [0], [165]] +6.10.1=[[0], [6], [10], [1]] +6.10.2=[[0], [6], [10], [2]] +6.10.3=[[0], [6], [10], [3]] +6.11=[[0], [6], [11]] +6.11.0=[[0], [6], [11], [0]] +6.11.1=[[0], [6], [11], [1]] +6.12=[[0], [6], [12]] +6.12.0=[[0], [6], [12], [0]] +6.12.0.90=[[0], [6], [12], [0], [90]] +6.12.1=[[0], [6], [12], [1]] +6.12.2=[[0], [6], [12], [2]] +6.12.3=[[0], [6], [12], [3]] +6.13=[[0], [6], [13]] +6.13.0=[[0], [6], [13], [0]] +6.13.1=[[0], [6], [13], [1]] +6.13.10=[[0], [6], [13], [10]] +6.13.11=[[0], [6], [13], [11]] +6.13.12=[[0], [6], [13], [12]] +6.13.13=[[0], [6], [13], [13]] +6.13.14=[[0], [6], [13], [14]] +6.13.2=[[0], [6], [13], [2]] +6.13.3=[[0], [6], [13], [3]] +6.13.4=[[0], [6], [13], [4]] +6.13.5=[[0], [6], [13], [5]] +6.13.6=[[0], [6], [13], [6]] +6.13.7=[[0], [6], [13], [7]] +6.13.8=[[0], [6], [13], [8]] +6.13.9=[[0], [6], [13], [9]] +6.14=[[0], [6], [14]] +6.14.0=[[0], [6], [14], [0]] +6.14.06=[[0], [6], [14], [6]] +6.14.1=[[0], [6], [14], [1]] +6.14.2=[[0], [6], [14], [2]] +6.14.3=[[0], [6], [14], [3]] +6.14.4=[[0], [6], [14], [4]] +6.14.5=[[0], [6], [14], [5]] +6.14.6=[[0], [6], [14], [6]] +6.14.7=[[0], [6], [14], [7]] +6.14.8=[[0], [6], [14], [8]] +6.14.9=[[0], [6], [14], [9]] +6.15=[[0], [6], [15]] +6.15.0=[[0], [6], [15], [0]] +6.15.1=[[0], [6], [15], [1]] +6.15.2=[[0], [6], [15], [2]] +6.15.2.9=[[0], [6], [15], [2], [9]] +6.15.3=[[0], [6], [15], [3]] +6.15.5=[[0], [6], [15], [5]] +6.16.0=[[0], [6], [16], [0]] +6.16.00=[[0], [6], [16], [0]] +6.16.1=[[0], [6], [16], [1]] +6.16.2=[[0], [6], [16], [2]] +6.16.3=[[0], [6], [16], [3]] +6.17.0=[[0], [6], [17], [0]] +6.17.1=[[0], [6], [17], [1]] +6.17.2=[[0], [6], [17], [2]] +6.17.26=[[0], [6], [17], [26]] +6.17.3=[[0], [6], [17], [3]] +6.17.4=[[0], [6], [17], [4]] +6.18=[[0], [6], [18]] +6.18.0=[[0], [6], [18], [0]] +6.18.0.0=[[0], [6], [18], [0], [0]] +6.18.00=[[0], [6], [18], [0]] +6.18.04=[[0], [6], [18], [4]] +6.18.1=[[0], [6], [18], [1]] +6.18.10=[[0], [6], [18], [10]] +6.18.11=[[0], [6], [18], [11]] +6.18.12=[[0], [6], [18], [12]] +6.18.2=[[0], [6], [18], [2]] +6.18.2.1=[[0], [6], [18], [2], [1]] +6.18.2.2=[[0], [6], [18], [2], [2]] +6.18.2.3=[[0], [6], [18], [2], [3]] +6.18.2.4=[[0], [6], [18], [2], [4]] +6.18.2.5=[[0], [6], [18], [2], [5]] +6.18.2.6=[[0], [6], [18], [2], [6]] +6.18.2.7=[[0], [6], [18], [2], [7]] +6.18.3=[[0], [6], [18], [3]] +6.18.4=[[0], [6], [18], [4]] +6.18.5=[[0], [6], [18], [5]] +6.18.9=[[0], [6], [18], [9]] +6.19=[[0], [6], [19]] +6.19.0=[[0], [6], [19], [0]] +6.19.1=[[0], [6], [19], [1]] +6.19.2=[[0], [6], [19], [2]] +6.19.3=[[0], [6], [19], [3]] +6.19.4=[[0], [6], [19], [4]] +6.1_0=[[0], [6], [1], [0]] +6.1_1=[[0], [6], [1], [1]] +6.2=[[0], [6], [2]] +6.2.0=[[0], [6], [2], [0]] +6.2.0.156=[[0], [6], [2], [0], [156]] +6.2.1=[[0], [6], [2], [1]] +6.2.1.0=[[0], [6], [2], [1], [0]] +6.2.10=[[0], [6], [2], [10]] +6.2.11=[[0], [6], [2], [11]] +6.2.12=[[0], [6], [2], [12]] +6.2.13=[[0], [6], [2], [13]] +6.2.14=[[0], [6], [2], [14]] +6.2.1550507116=[[0], [6], [2], [1550507116]] +6.2.1629922860=[[0], [6], [2], [1629922860]] +6.2.1802=[[0], [6], [2], [1802]] +6.2.1804=[[0], [6], [2], [1804]] +6.2.1808=[[0], [6], [2], [1808]] +6.2.2=[[0], [6], [2], [2]] +6.2.2004=[[0], [6], [2], [2004]] +6.2.2005=[[0], [6], [2], [2005]] +6.2.2006=[[0], [6], [2], [2006]] +6.2.21303=[[0], [6], [2], [21303]] +6.2.3=[[0], [6], [2], [3]] +6.2.3.0=[[0], [6], [2], [3], [0]] +6.2.32=[[0], [6], [2], [32]] +6.2.4=[[0], [6], [2], [4]] +6.2.4.0=[[0], [6], [2], [4], [0]] +6.2.5=[[0], [6], [2], [5]] +6.2.5.0=[[0], [6], [2], [5], [0]] +6.2.6=[[0], [6], [2], [6]] +6.2.7=[[0], [6], [2], [7]] +6.2.8=[[0], [6], [2], [8]] +6.2.9=[[0], [6], [2], [9]] +6.20.0=[[0], [6], [20], [0]] +6.20.00=[[0], [6], [20], [0]] +6.20.1=[[0], [6], [20], [1]] +6.20.2=[[0], [6], [20], [2]] +6.20.4=[[0], [6], [20], [4]] +6.20.4.1=[[0], [6], [20], [4], [1]] +6.20.6=[[0], [6], [20], [6]] +6.20180316=[[0], [6], [20180316]] +6.20180626=[[0], [6], [20180626]] +6.20180807=[[0], [6], [20180807]] +6.20180913=[[0], [6], [20180913]] +6.20180926=[[0], [6], [20180926]] +6.21.0=[[0], [6], [21], [0]] +6.21.1=[[0], [6], [21], [1]] +6.21.14=[[0], [6], [21], [14]] +6.21.2=[[0], [6], [21], [2]] +6.21.3=[[0], [6], [21], [3]] +6.21.4=[[0], [6], [21], [4]] +6.21.5=[[0], [6], [21], [5]] +6.21.6=[[0], [6], [21], [6]] +6.21.7=[[0], [6], [21], [7]] +6.21.8=[[0], [6], [21], [8]] +6.22=[[0], [6], [22]] +6.22.0=[[0], [6], [22], [0]] +6.22.02=[[0], [6], [22], [2]] +6.22.03=[[0], [6], [22], [3]] +6.22.04=[[0], [6], [22], [4]] +6.22.06=[[0], [6], [22], [6]] +6.22.1=[[0], [6], [22], [1]] +6.22.10=[[0], [6], [22], [10]] +6.22.11=[[0], [6], [22], [11]] +6.22.12=[[0], [6], [22], [12]] +6.22.14=[[0], [6], [22], [14]] +6.22.15=[[0], [6], [22], [15]] +6.22.16=[[0], [6], [22], [16]] +6.22.17=[[0], [6], [22], [17]] +6.22.18=[[0], [6], [22], [18]] +6.22.19=[[0], [6], [22], [19]] +6.22.2=[[0], [6], [22], [2]] +6.22.20=[[0], [6], [22], [20]] +6.22.21=[[0], [6], [22], [21]] +6.22.6=[[0], [6], [22], [6]] +6.22.8=[[0], [6], [22], [8]] +6.22.9=[[0], [6], [22], [9]] +6.23.0=[[0], [6], [23], [0]] +6.23.00=[[0], [6], [23], [0]] +6.23.01=[[0], [6], [23], [1]] +6.23.02=[[0], [6], [23], [2]] +6.23.1=[[0], [6], [23], [1]] +6.23.2=[[0], [6], [23], [2]] +6.23.3=[[0], [6], [23], [3]] +6.23.4=[[0], [6], [23], [4]] +6.230.22310=[[0], [6], [230], [22310]] +6.24.0=[[0], [6], [24], [0]] +6.24.00=[[0], [6], [24], [0]] +6.24.01=[[0], [6], [24], [1]] +6.24.02=[[0], [6], [24], [2]] +6.24.03=[[0], [6], [24], [3]] +6.24.04=[[0], [6], [24], [4]] +6.24.5=[[0], [6], [24], [5]] +6.24.07=[[0], [6], [24], [7]] +6.24.1=[[0], [6], [24], [1]] +6.24.10=[[0], [6], [24], [10]] +6.24.2=[[0], [6], [24], [2]] +6.24.3=[[0], [6], [24], [3]] +6.24.4=[[0], [6], [24], [4]] +6.24.5=[[0], [6], [24], [5]] +6.24.6=[[0], [6], [24], [6]] +6.24.8=[[0], [6], [24], [8]] +6.24.9=[[0], [6], [24], [9]] +6.25.0=[[0], [6], [25], [0]] +6.25.1=[[0], [6], [25], [1]] +6.25.2=[[0], [6], [25], [2]] +6.25.3=[[0], [6], [25], [3]] +6.26.0=[[0], [6], [26], [0]] +6.26.1=[[0], [6], [26], [1]] +6.26.10=[[0], [6], [26], [10]] +6.26.2=[[0], [6], [26], [2]] +6.26.4=[[0], [6], [26], [4]] +6.26.6=[[0], [6], [26], [6]] +6.26.8=[[0], [6], [26], [8]] +6.265.22338=[[0], [6], [265], [22338]] +6.27.0=[[0], [6], [27], [0]] +6.27.1=[[0], [6], [27], [1]] +6.27.2=[[0], [6], [27], [2]] +6.27.3=[[0], [6], [27], [3]] +6.28=[[0], [6], [28]] +6.28.0=[[0], [6], [28], [0]] +6.28.1=[[0], [6], [28], [1]] +6.29.0=[[0], [6], [29], [0]] +6.29.2=[[0], [6], [29], [2]] +6.29.3=[[0], [6], [29], [3]] +6.29.5=[[0], [6], [29], [5]] +6.2_0=[[0], [6], [2], [0]] +6.2_1=[[0], [6], [2], [1]] +6.3=[[0], [6], [3]] +6.3.0=[[0], [6], [3], [0]] +6.3.008=[[0], [6], [3], [8]] +6.3.1=[[0], [6], [3], [1]] +6.3.2=[[0], [6], [3], [2]] +6.3.200715.1200940=[[0], [6], [3], [200715], [1200940]] +6.3.210714.1191517=[[0], [6], [3], [210714], [1191517]] +6.3.210831.1135705=[[0], [6], [3], [210831], [1135705]] +6.3.210914.1223714=[[0], [6], [3], [210914], [1223714]] +6.3.210915.1185521=[[0], [6], [3], [210915], [1185521]] +6.3.211001.1111810=[[0], [6], [3], [211001], [1111810]] +6.3.3=[[0], [6], [3], [3]] +6.3.4=[[0], [6], [3], [4]] +6.3.5=[[0], [6], [3], [5]] +6.3.6=[[0], [6], [3], [6]] +6.3.7=[[0], [6], [3], [7]] +6.3.8=[[0], [6], [3], [8]] +6.3.9=[[0], [6], [3], [9]] +6.30.0=[[0], [6], [30], [0]] +6.30.1=[[0], [6], [30], [1]] +6.31.0=[[0], [6], [31], [0]] +6.31.1=[[0], [6], [31], [1]] +6.31.2=[[0], [6], [31], [2]] +6.31.3=[[0], [6], [31], [3]] +6.31.4=[[0], [6], [31], [4]] +6.31.5=[[0], [6], [31], [5]] +6.31.6=[[0], [6], [31], [6]] +6.32.0=[[0], [6], [32], [0]] +6.32.1=[[0], [6], [32], [1]] +6.33.0=[[0], [6], [33], [0]] +6.33.1=[[0], [6], [33], [1]] +6.34.0=[[0], [6], [34], [0]] +6.34.1=[[0], [6], [34], [1]] +6.34.2=[[0], [6], [34], [2]] +6.35.0=[[0], [6], [35], [0]] +6.35.1=[[0], [6], [35], [1]] +6.35.2=[[0], [6], [35], [2]] +6.35.3=[[0], [6], [35], [3]] +6.35.4=[[0], [6], [35], [4]] +6.35.5=[[0], [6], [35], [5]] +6.36=[[0], [6], [36]] +6.36.0=[[0], [6], [36], [0]] +6.36.1=[[0], [6], [36], [1]] +6.36.2=[[0], [6], [36], [2]] +6.37.0=[[0], [6], [37], [0]] +6.37.1=[[0], [6], [37], [1]] +6.37.2=[[0], [6], [37], [2]] +6.38.0=[[0], [6], [38], [0]] +6.38.1=[[0], [6], [38], [1]] +6.39=[[0], [6], [39]] +6.39.0=[[0], [6], [39], [0]] +6.39.1=[[0], [6], [39], [1]] +6.39.2=[[0], [6], [39], [2]] +6.39.3=[[0], [6], [39], [3]] +6.39.4=[[0], [6], [39], [4]] +6.39.5=[[0], [6], [39], [5]] +6.39.6=[[0], [6], [39], [6]] +6.3_0=[[0], [6], [3], [0]] +6.4=[[0], [6], [4]] +6.4.0=[[0], [6], [4], [0]] +6.4.0.157=[[0], [6], [4], [0], [157]] +6.4.1=[[0], [6], [4], [1]] +6.4.1.158=[[0], [6], [4], [1], [158]] +6.4.10=[[0], [6], [4], [10]] +6.4.11=[[0], [6], [4], [11]] +6.4.12=[[0], [6], [4], [12]] +6.4.2=[[0], [6], [4], [2]] +6.4.2.159=[[0], [6], [4], [2], [159]] +6.4.2.99=[[0], [6], [4], [2], [99]] +6.4.211028.1233218=[[0], [6], [4], [211028], [1233218]] +6.4.211221.1165422=[[0], [6], [4], [211221], [1165422]] +6.4.3=[[0], [6], [4], [3]] +6.4.3.160=[[0], [6], [4], [3], [160]] +6.4.3.4=[[0], [6], [4], [3], [4]] +6.4.4=[[0], [6], [4], [4]] +6.4.4.161=[[0], [6], [4], [4], [161]] +6.4.5=[[0], [6], [4], [5]] +6.4.6=[[0], [6], [4], [6]] +6.4.7=[[0], [6], [4], [7]] +6.4.8=[[0], [6], [4], [8]] +6.4.9=[[0], [6], [4], [9]] +6.40.0=[[0], [6], [40], [0]] +6.40.1=[[0], [6], [40], [1]] +6.40.2=[[0], [6], [40], [2]] +6.40.3=[[0], [6], [40], [3]] +6.41.0=[[0], [6], [41], [0]] +6.42.0=[[0], [6], [42], [0]] +6.42.2=[[0], [6], [42], [2]] +6.42.3=[[0], [6], [42], [3]] +6.43.0=[[0], [6], [43], [0]] +6.43.1=[[0], [6], [43], [1]] +6.43.2=[[0], [6], [43], [2]] +6.43.3=[[0], [6], [43], [3]] +6.44.0=[[0], [6], [44], [0]] +6.44.1=[[0], [6], [44], [1]] +6.44.2=[[0], [6], [44], [2]] +6.45.0=[[0], [6], [45], [0]] +6.45.1=[[0], [6], [45], [1]] +6.45.2=[[0], [6], [45], [2]] +6.45.3=[[0], [6], [45], [3]] +6.45.4=[[0], [6], [45], [4]] +6.46.0=[[0], [6], [46], [0]] +6.46.1=[[0], [6], [46], [1]] +6.46.10=[[0], [6], [46], [10]] +6.46.11=[[0], [6], [46], [11]] +6.46.2=[[0], [6], [46], [2]] +6.46.3=[[0], [6], [46], [3]] +6.46.5=[[0], [6], [46], [5]] +6.46.6=[[0], [6], [46], [6]] +6.46.7=[[0], [6], [46], [7]] +6.46.8=[[0], [6], [46], [8]] +6.46.9=[[0], [6], [46], [9]] +6.47.0=[[0], [6], [47], [0]] +6.47.1=[[0], [6], [47], [1]] +6.47.2=[[0], [6], [47], [2]] +6.47.3=[[0], [6], [47], [3]] +6.47.4=[[0], [6], [47], [4]] +6.47.5=[[0], [6], [47], [5]] +6.48.0=[[0], [6], [48], [0]] +6.48.1=[[0], [6], [48], [1]] +6.48.2=[[0], [6], [48], [2]] +6.48.3=[[0], [6], [48], [3]] +6.49=[[0], [6], [49]] +6.49.0=[[0], [6], [49], [0]] +6.49.1=[[0], [6], [49], [1]] +6.4_0=[[0], [6], [4], [0]] +6.4_1=[[0], [6], [4], [1]] +6.5=[[0], [6], [5]] +6.5.0=[[0], [6], [5], [0]] +6.5.1=[[0], [6], [5], [1]] +6.5.11=[[0], [6], [5], [11]] +6.5.12=[[0], [6], [5], [12]] +6.5.13=[[0], [6], [5], [13]] +6.5.14=[[0], [6], [5], [14]] +6.5.15=[[0], [6], [5], [15]] +6.5.18=[[0], [6], [5], [18]] +6.5.2=[[0], [6], [5], [2]] +6.5.221019.1152644=[[0], [6], [5], [221019], [1152644]] +6.5.3=[[0], [6], [5], [3]] +6.5.4=[[0], [6], [5], [4]] +6.5.5=[[0], [6], [5], [5]] +6.5.95=[[0], [6], [5], [95]] +6.50.0=[[0], [6], [50], [0]] +6.50.1=[[0], [6], [50], [1]] +6.51.0=[[0], [6], [51], [0]] +6.51.1=[[0], [6], [51], [1]] +6.52=[[0], [6], [52]] +6.52.0=[[0], [6], [52], [0]] +6.52.1=[[0], [6], [52], [1]] +6.52.2=[[0], [6], [52], [2]] +6.52.3=[[0], [6], [52], [3]] +6.52.4=[[0], [6], [52], [4]] +6.53=[[0], [6], [53]] +6.53.0=[[0], [6], [53], [0]] +6.54.0=[[0], [6], [54], [0]] +6.54.1=[[0], [6], [54], [1]] +6.54.2=[[0], [6], [54], [2]] +6.54.3=[[0], [6], [54], [3]] +6.54.4=[[0], [6], [54], [4]] +6.54.5=[[0], [6], [54], [5]] +6.54.6=[[0], [6], [54], [6]] +6.55.0=[[0], [6], [55], [0]] +6.56.0=[[0], [6], [56], [0]] +6.56.1=[[0], [6], [56], [1]] +6.56.2=[[0], [6], [56], [2]] +6.56.3=[[0], [6], [56], [3]] +6.56.4=[[0], [6], [56], [4]] +6.57=[[0], [6], [57]] +6.57.0=[[0], [6], [57], [0]] +6.57.1=[[0], [6], [57], [1]] +6.58.0=[[0], [6], [58], [0]] +6.58.1=[[0], [6], [58], [1]] +6.58.2=[[0], [6], [58], [2]] +6.59.0=[[0], [6], [59], [0]] +6.59.1=[[0], [6], [59], [1]] +6.5_0=[[0], [6], [5], [0]] +6.6=[[0], [6], [6]] +6.6.0=[[0], [6], [6], [0]] +6.6.0.162=[[0], [6], [6], [0], [162]] +6.6.1=[[0], [6], [6], [1]] +6.6.2=[[0], [6], [6], [2]] +6.6.3=[[0], [6], [6], [3]] +6.6.4=[[0], [6], [6], [4]] +6.60=[[0], [6], [60]] +6.60.0=[[0], [6], [60], [0]] +6.60.1=[[0], [6], [60], [1]] +6.61=[[0], [6], [61]] +6.61.0=[[0], [6], [61], [0]] +6.61.1=[[0], [6], [61], [1]] +6.61.2=[[0], [6], [61], [2]] +6.61.3=[[0], [6], [61], [3]] +6.62=[[0], [6], [62]] +6.62.0=[[0], [6], [62], [0]] +6.62.1=[[0], [6], [62], [1]] +6.63=[[0], [6], [63]] +6.63.0=[[0], [6], [63], [0]] +6.63.1=[[0], [6], [63], [1]] +6.63.2=[[0], [6], [63], [2]] +6.64=[[0], [6], [64]] +6.64.0=[[0], [6], [64], [0]] +6.65=[[0], [6], [65]] +6.65.0=[[0], [6], [65], [0]] +6.65.1=[[0], [6], [65], [1]] +6.65.2=[[0], [6], [65], [2]] +6.66=[[0], [6], [66]] +6.66.0=[[0], [6], [66], [0]] +6.66.1=[[0], [6], [66], [1]] +6.66.2=[[0], [6], [66], [2]] +6.67=[[0], [6], [67]] +6.67.0=[[0], [6], [67], [0]] +6.67.1=[[0], [6], [67], [1]] +6.68.0=[[0], [6], [68], [0]] +6.68.1=[[0], [6], [68], [1]] +6.68.2=[[0], [6], [68], [2]] +6.69=[[0], [6], [69]] +6.69.1=[[0], [6], [69], [1]] +6.6_0=[[0], [6], [6], [0]] +6.7=[[0], [6], [7]] +6.7.0=[[0], [6], [7], [0]] +6.7.0.post2=[[0], [6], [7], [0], [0, inf, 2]] +6.7.1=[[0], [6], [7], [1]] +6.7.1.2018.12=[[0], [6], [7], [1], [2018], [12]] +6.7.2=[[0], [6], [7], [2]] +6.7.3=[[0], [6], [7], [3]] +6.7.4=[[0], [6], [7], [4]] +6.7.5=[[0], [6], [7], [5]] +6.7.6=[[0], [6], [7], [6]] +6.7.7=[[0], [6], [7], [7]] +6.7.8=[[0], [6], [7], [8]] +6.7.9=[[0], [6], [7], [9]] +6.70=[[0], [6], [70]] +6.71=[[0], [6], [71]] +6.72=[[0], [6], [72]] +6.73=[[0], [6], [73]] +6.74=[[0], [6], [74]] +6.75=[[0], [6], [75]] +6.76=[[0], [6], [76]] +6.77=[[0], [6], [77]] +6.78=[[0], [6], [78]] +6.79=[[0], [6], [79]] +6.7_0=[[0], [6], [7], [0]] +6.8=[[0], [6], [8]] +6.8.0=[[0], [6], [8], [0]] +6.8.0.163=[[0], [6], [8], [0], [163]] +6.8.1=[[0], [6], [8], [1]] +6.8.1.164=[[0], [6], [8], [1], [164]] +6.8.12=[[0], [6], [8], [12]] +6.8.2=[[0], [6], [8], [2]] +6.8.3=[[0], [6], [8], [3]] +6.8.4=[[0], [6], [8], [4]] +6.8.5=[[0], [6], [8], [5]] +6.8.6=[[0], [6], [8], [6]] +6.8.7=[[0], [6], [8], [7]] +6.8.8=[[0], [6], [8], [8]] +6.8.9=[[0], [6], [8], [9]] +6.80=[[0], [6], [80]] +6.81=[[0], [6], [81]] +6.82=[[0], [6], [82]] +6.86=[[0], [6], [86]] +6.88=[[0], [6], [88]] +6.9=[[0], [6], [9]] +6.9.0=[[0], [6], [9], [0]] +6.9.1=[[0], [6], [9], [1]] +6.9.2=[[0], [6], [9], [2]] +6.9.3=[[0], [6], [9], [3]] +6.9.4=[[0], [6], [9], [4]] +6.9.5=[[0], [6], [9], [5]] +6.9.6=[[0], [6], [9], [6]] +6.9.7=[[0], [6], [9], [7]] +6.9.7.1=[[0], [6], [9], [7], [1]] +6.9.8=[[0], [6], [9], [8]] +60=[[0], [60]] +60.0.3=[[0], [60], [0], [3]] +60.0.4=[[0], [60], [0], [4]] +60.0.5=[[0], [60], [0], [5]] +60.1.0=[[0], [60], [1], [0]] +60.1.1=[[0], [60], [1], [1]] +60.10.0=[[0], [60], [10], [0]] +60.2=[[0], [60], [2]] +60.2.0=[[0], [60], [2], [0]] +60.3.1=[[0], [60], [3], [1]] +60.5.0=[[0], [60], [5], [0]] +60.6.0=[[0], [60], [6], [0]] +60.7.0=[[0], [60], [7], [0]] +60.7.1=[[0], [60], [7], [1]] +60.8.1=[[0], [60], [8], [1]] +60.8.2=[[0], [60], [8], [2]] +60.9.0=[[0], [60], [9], [0]] +60.9.1=[[0], [60], [9], [1]] +60.9.2=[[0], [60], [9], [2]] +60.9.3=[[0], [60], [9], [3]] +609=[[0], [609]] +61=[[0], [61]] +61.0.0=[[0], [61], [0], [0]] +61.1.0=[[0], [61], [1], [0]] +61.1.1=[[0], [61], [1], [1]] +61.2.0=[[0], [61], [2], [0]] +61.3.0=[[0], [61], [3], [0]] +61.3.1=[[0], [61], [3], [1]] +62=[[0], [62]] +62.0.0=[[0], [62], [0], [0]] +62.1.0=[[0], [62], [1], [0]] +62.2.0=[[0], [62], [2], [0]] +62.3.1=[[0], [62], [3], [1]] +62.3.2=[[0], [62], [3], [2]] +62.3.3=[[0], [62], [3], [3]] +62.3.4=[[0], [62], [3], [4]] +62.5.0=[[0], [62], [5], [0]] +62.6.0=[[0], [62], [6], [0]] +62.6.1=[[0], [62], [6], [1]] +63=[[0], [63]] +63.1.0=[[0], [63], [1], [0]] +63.2.0=[[0], [63], [2], [0]] +63.2.1=[[0], [63], [2], [1]] +63.2.2=[[0], [63], [2], [2]] +63.2.3=[[0], [63], [2], [3]] +63.3.0=[[0], [63], [3], [0]] +63.4.0=[[0], [63], [4], [0]] +63.4.1=[[0], [63], [4], [1]] +63.4.2=[[0], [63], [4], [2]] +63.4.3=[[0], [63], [4], [3]] +64=[[0], [64]] +64.0.0=[[0], [64], [0], [0]] +64.0.1=[[0], [64], [0], [1]] +64.0.2=[[0], [64], [0], [2]] +64.0.3=[[0], [64], [0], [3]] +64.2=[[0], [64], [2]] +65=[[0], [65]] +65.0.0=[[0], [65], [0], [0]] +65.0.1=[[0], [65], [0], [1]] +65.0.2=[[0], [65], [0], [2]] +65.1.0=[[0], [65], [1], [0]] +65.1.1=[[0], [65], [1], [1]] +65.2.0=[[0], [65], [2], [0]] +65.3.0=[[0], [65], [3], [0]] +65.4.0=[[0], [65], [4], [0]] +65.4.0.0=[[0], [65], [4], [0], [0]] +65.4.1=[[0], [65], [4], [1]] +65.5.0=[[0], [65], [5], [0]] +65.5.0.0=[[0], [65], [5], [0], [0]] +65.5.0.1=[[0], [65], [5], [0], [1]] +65.5.0.2=[[0], [65], [5], [0], [2]] +65.5.0.3=[[0], [65], [5], [0], [3]] +65.5.1=[[0], [65], [5], [1]] +65.6.0.0=[[0], [65], [6], [0], [0]] +65.6.0.1=[[0], [65], [6], [0], [1]] +65.6.0.2=[[0], [65], [6], [0], [2]] +65.6.0.3=[[0], [65], [6], [0], [3]] +65.6.3=[[0], [65], [6], [3]] +65.7.0.0=[[0], [65], [7], [0], [0]] +65.7.0.1=[[0], [65], [7], [0], [1]] +65.7.0.3=[[0], [65], [7], [0], [3]] +65.7.0.4=[[0], [65], [7], [0], [4]] +66=[[0], [66]] +66.0.0=[[0], [66], [0], [0]] +66.1.0=[[0], [66], [1], [0]] +66.1.1=[[0], [66], [1], [1]] +67=[[0], [67]] +67.1=[[0], [67], [1]] +67.1.0=[[0], [67], [1], [0]] +67.1.0.0=[[0], [67], [1], [0], [0]] +67.1.0.1=[[0], [67], [1], [0], [1]] +67.1.0.2=[[0], [67], [1], [0], [2]] +67.2.0.0=[[0], [67], [2], [0], [0]] +67.2.0.1=[[0], [67], [2], [0], [1]] +67.3.0.0=[[0], [67], [3], [0], [0]] +67.3.0.1=[[0], [67], [3], [0], [1]] +67.3.0.2=[[0], [67], [3], [0], [2]] +67.3.1=[[0], [67], [3], [1]] +67.3.2=[[0], [67], [3], [2]] +67.3.3=[[0], [67], [3], [3]] +67.4.0=[[0], [67], [4], [0]] +67.4.0.0=[[0], [67], [4], [0], [0]] +67.4.0.1=[[0], [67], [4], [0], [1]] +67.4.0.2=[[0], [67], [4], [0], [2]] +67.4.0.3=[[0], [67], [4], [0], [3]] +68=[[0], [68]] +68.0.2=[[0], [68], [0], [2]] +68.1=[[0], [68], [1]] +68.11.0esr=[[0], [68], [11], [0, 'esr']] +68.12.0esr=[[0], [68], [12], [0, 'esr']] +68.2=[[0], [68], [2]] +68.4.1esr=[[0], [68], [4], [1, 'esr']] +68.4.2esr=[[0], [68], [4], [2, 'esr']] +68.5.0esr=[[0], [68], [5], [0, 'esr']] +68.6.0esr=[[0], [68], [6], [0, 'esr']] +68.6.1esr=[[0], [68], [6], [1, 'esr']] +68.7.0esr=[[0], [68], [7], [0, 'esr']] +68.8.0esr=[[0], [68], [8], [0, 'esr']] +68.9.0esr=[[0], [68], [9], [0, 'esr']] +69=[[0], [69]] +69.0.3=[[0], [69], [0], [3]] +69.1=[[0], [69], [1]] +7=[[0], [7]] +7.0=[[0], [7], [0]] +7.0.0=[[0], [7], [0], [0]] +7.0.0.0=[[0], [7], [0], [0], [0]] +7.0.0.1=[[0], [7], [0], [0], [1]] +7.0.0.166=[[0], [7], [0], [0], [166]] +7.0.1=[[0], [7], [0], [1]] +7.0.1.0=[[0], [7], [0], [1], [0]] +7.0.1.dev=[[0], [7], [0], [1], [0, 'DEV']] +7.0.10=[[0], [7], [0], [10]] +7.0.100=[[0], [7], [0], [100]] +7.0.102=[[0], [7], [0], [102]] +7.0.10_0=[[0], [7], [0], [10], [0]] +7.0.10_10=[[0], [7], [0], [10], [10]] +7.0.10_11=[[0], [7], [0], [10], [11]] +7.0.10_12=[[0], [7], [0], [10], [12]] +7.0.10_13=[[0], [7], [0], [10], [13]] +7.0.10_14=[[0], [7], [0], [10], [14]] +7.0.10_15=[[0], [7], [0], [10], [15]] +7.0.10_16=[[0], [7], [0], [10], [16]] +7.0.10_17=[[0], [7], [0], [10], [17]] +7.0.10_18=[[0], [7], [0], [10], [18]] +7.0.10_19=[[0], [7], [0], [10], [19]] +7.0.10_2=[[0], [7], [0], [10], [2]] +7.0.10_20=[[0], [7], [0], [10], [20]] +7.0.10_21=[[0], [7], [0], [10], [21]] +7.0.10_22=[[0], [7], [0], [10], [22]] +7.0.10_23=[[0], [7], [0], [10], [23]] +7.0.10_24=[[0], [7], [0], [10], [24]] +7.0.10_25=[[0], [7], [0], [10], [25]] +7.0.10_26=[[0], [7], [0], [10], [26]] +7.0.10_27=[[0], [7], [0], [10], [27]] +7.0.10_28=[[0], [7], [0], [10], [28]] +7.0.10_3=[[0], [7], [0], [10], [3]] +7.0.10_4=[[0], [7], [0], [10], [4]] +7.0.10_5=[[0], [7], [0], [10], [5]] +7.0.10_59=[[0], [7], [0], [10], [59]] +7.0.10_6=[[0], [7], [0], [10], [6]] +7.0.10_60=[[0], [7], [0], [10], [60]] +7.0.10_61=[[0], [7], [0], [10], [61]] +7.0.10_62=[[0], [7], [0], [10], [62]] +7.0.10_8=[[0], [7], [0], [10], [8]] +7.0.10_9=[[0], [7], [0], [10], [9]] +7.0.11=[[0], [7], [0], [11]] +7.0.11_0=[[0], [7], [0], [11], [0]] +7.0.11_1=[[0], [7], [0], [11], [1]] +7.0.11_11=[[0], [7], [0], [11], [11]] +7.0.11_12=[[0], [7], [0], [11], [12]] +7.0.11_13=[[0], [7], [0], [11], [13]] +7.0.11_14=[[0], [7], [0], [11], [14]] +7.0.11_2=[[0], [7], [0], [11], [2]] +7.0.11_3=[[0], [7], [0], [11], [3]] +7.0.11_4=[[0], [7], [0], [11], [4]] +7.0.11_5=[[0], [7], [0], [11], [5]] +7.0.11_6=[[0], [7], [0], [11], [6]] +7.0.11_7=[[0], [7], [0], [11], [7]] +7.0.11_8=[[0], [7], [0], [11], [8]] +7.0.11_9=[[0], [7], [0], [11], [9]] +7.0.161=[[0], [7], [0], [161]] +7.0.19=[[0], [7], [0], [19]] +7.0.2=[[0], [7], [0], [2]] +7.0.2.0=[[0], [7], [0], [2], [0]] +7.0.2.99.0.0=[[0], [7], [0], [2], [99], [0], [0]] +7.0.20=[[0], [7], [0], [20]] +7.0.20200612160654=[[0], [7], [0], [20200612160654]] +7.0.20200811075006=[[0], [7], [0], [20200811075006]] +7.0.20201119201711=[[0], [7], [0], [20201119201711]] +7.0.21=[[0], [7], [0], [21]] +7.0.22=[[0], [7], [0], [22]] +7.0.24=[[0], [7], [0], [24]] +7.0.3=[[0], [7], [0], [3]] +7.0.3.0=[[0], [7], [0], [3], [0]] +7.0.3.1=[[0], [7], [0], [3], [1]] +7.0.3.99.0.0=[[0], [7], [0], [3], [99], [0], [0]] +7.0.3.99.1.0=[[0], [7], [0], [3], [99], [1], [0]] +7.0.3.99.2.0=[[0], [7], [0], [3], [99], [2], [0]] +7.0.3.99.4.0=[[0], [7], [0], [3], [99], [4], [0]] +7.0.31=[[0], [7], [0], [31]] +7.0.32=[[0], [7], [0], [32]] +7.0.36=[[0], [7], [0], [36]] +7.0.4=[[0], [7], [0], [4]] +7.0.4.0=[[0], [7], [0], [4], [0]] +7.0.4.99.1.2=[[0], [7], [0], [4], [99], [1], [2]] +7.0.5=[[0], [7], [0], [5]] +7.0.5.0=[[0], [7], [0], [5], [0]] +7.0.6=[[0], [7], [0], [6]] +7.0.6.1=[[0], [7], [0], [6], [1]] +7.0.6.99.1.0=[[0], [7], [0], [6], [99], [1], [0]] +7.0.6.99.2.0=[[0], [7], [0], [6], [99], [2], [0]] +7.0.7=[[0], [7], [0], [7]] +7.0.7.0=[[0], [7], [0], [7], [0]] +7.0.7.99.0.0=[[0], [7], [0], [7], [99], [0], [0]] +7.0.7_39=[[0], [7], [0], [7], [39]] +7.0.8=[[0], [7], [0], [8]] +7.0.8.1=[[0], [7], [0], [8], [1]] +7.0.8.2=[[0], [7], [0], [8], [2]] +7.0.8_0=[[0], [7], [0], [8], [0]] +7.0.8_1=[[0], [7], [0], [8], [1]] +7.0.8_10=[[0], [7], [0], [8], [10]] +7.0.8_11=[[0], [7], [0], [8], [11]] +7.0.8_13=[[0], [7], [0], [8], [13]] +7.0.8_14=[[0], [7], [0], [8], [14]] +7.0.8_15=[[0], [7], [0], [8], [15]] +7.0.8_16=[[0], [7], [0], [8], [16]] +7.0.8_19=[[0], [7], [0], [8], [19]] +7.0.8_2=[[0], [7], [0], [8], [2]] +7.0.8_20=[[0], [7], [0], [8], [20]] +7.0.8_22=[[0], [7], [0], [8], [22]] +7.0.8_23=[[0], [7], [0], [8], [23]] +7.0.8_24=[[0], [7], [0], [8], [24]] +7.0.8_27=[[0], [7], [0], [8], [27]] +7.0.8_3=[[0], [7], [0], [8], [3]] +7.0.8_34=[[0], [7], [0], [8], [34]] +7.0.8_35=[[0], [7], [0], [8], [35]] +7.0.8_36=[[0], [7], [0], [8], [36]] +7.0.8_38=[[0], [7], [0], [8], [38]] +7.0.8_39=[[0], [7], [0], [8], [39]] +7.0.8_4=[[0], [7], [0], [8], [4]] +7.0.8_40=[[0], [7], [0], [8], [40]] +7.0.8_41=[[0], [7], [0], [8], [41]] +7.0.8_42=[[0], [7], [0], [8], [42]] +7.0.8_43=[[0], [7], [0], [8], [43]] +7.0.8_44=[[0], [7], [0], [8], [44]] +7.0.8_46=[[0], [7], [0], [8], [46]] +7.0.8_47=[[0], [7], [0], [8], [47]] +7.0.8_48=[[0], [7], [0], [8], [48]] +7.0.8_49=[[0], [7], [0], [8], [49]] +7.0.8_5=[[0], [7], [0], [8], [5]] +7.0.8_50=[[0], [7], [0], [8], [50]] +7.0.8_51=[[0], [7], [0], [8], [51]] +7.0.8_52=[[0], [7], [0], [8], [52]] +7.0.8_53=[[0], [7], [0], [8], [53]] +7.0.8_54=[[0], [7], [0], [8], [54]] +7.0.8_56=[[0], [7], [0], [8], [56]] +7.0.8_58=[[0], [7], [0], [8], [58]] +7.0.8_59=[[0], [7], [0], [8], [59]] +7.0.8_6=[[0], [7], [0], [8], [6]] +7.0.8_60=[[0], [7], [0], [8], [60]] +7.0.8_61=[[0], [7], [0], [8], [61]] +7.0.8_62=[[0], [7], [0], [8], [62]] +7.0.8_63=[[0], [7], [0], [8], [63]] +7.0.8_64=[[0], [7], [0], [8], [64]] +7.0.8_65=[[0], [7], [0], [8], [65]] +7.0.8_67=[[0], [7], [0], [8], [67]] +7.0.8_68=[[0], [7], [0], [8], [68]] +7.0.8_7=[[0], [7], [0], [8], [7]] +7.0.8_8=[[0], [7], [0], [8], [8]] +7.0.9=[[0], [7], [0], [9]] +7.0.9_0=[[0], [7], [0], [9], [0]] +7.0.9_1=[[0], [7], [0], [9], [1]] +7.0.9_10=[[0], [7], [0], [9], [10]] +7.0.9_12=[[0], [7], [0], [9], [12]] +7.0.9_13=[[0], [7], [0], [9], [13]] +7.0.9_14=[[0], [7], [0], [9], [14]] +7.0.9_15=[[0], [7], [0], [9], [15]] +7.0.9_16=[[0], [7], [0], [9], [16]] +7.0.9_17=[[0], [7], [0], [9], [17]] +7.0.9_18=[[0], [7], [0], [9], [18]] +7.0.9_19=[[0], [7], [0], [9], [19]] +7.0.9_2=[[0], [7], [0], [9], [2]] +7.0.9_20=[[0], [7], [0], [9], [20]] +7.0.9_21=[[0], [7], [0], [9], [21]] +7.0.9_22=[[0], [7], [0], [9], [22]] +7.0.9_23=[[0], [7], [0], [9], [23]] +7.0.9_24=[[0], [7], [0], [9], [24]] +7.0.9_25=[[0], [7], [0], [9], [25]] +7.0.9_26=[[0], [7], [0], [9], [26]] +7.0.9_27=[[0], [7], [0], [9], [27]] +7.0.9_6=[[0], [7], [0], [9], [6]] +7.0.9_7=[[0], [7], [0], [9], [7]] +7.07=[[0], [7], [7]] +7.0_1=[[0], [7], [0], [1]] +7.1=[[0], [7], [1]] +7.1.0=[[0], [7], [1], [0]] +7.1.0.0=[[0], [7], [1], [0], [0]] +7.1.0.1=[[0], [7], [1], [0], [1]] +7.1.0.43=[[0], [7], [1], [0], [43]] +7.1.0_0=[[0], [7], [1], [0], [0]] +7.1.0_1=[[0], [7], [1], [0], [1]] +7.1.0_10=[[0], [7], [1], [0], [10]] +7.1.0_11=[[0], [7], [1], [0], [11]] +7.1.0_12=[[0], [7], [1], [0], [12]] +7.1.0_13=[[0], [7], [1], [0], [13]] +7.1.0_14=[[0], [7], [1], [0], [14]] +7.1.0_15=[[0], [7], [1], [0], [15]] +7.1.0_16=[[0], [7], [1], [0], [16]] +7.1.0_18=[[0], [7], [1], [0], [18]] +7.1.0_19=[[0], [7], [1], [0], [19]] +7.1.0_2=[[0], [7], [1], [0], [2]] +7.1.0_20=[[0], [7], [1], [0], [20]] +7.1.0_21=[[0], [7], [1], [0], [21]] +7.1.0_22=[[0], [7], [1], [0], [22]] +7.1.0_23=[[0], [7], [1], [0], [23]] +7.1.0_24=[[0], [7], [1], [0], [24]] +7.1.0_25=[[0], [7], [1], [0], [25]] +7.1.0_26=[[0], [7], [1], [0], [26]] +7.1.0_27=[[0], [7], [1], [0], [27]] +7.1.0_28=[[0], [7], [1], [0], [28]] +7.1.0_29=[[0], [7], [1], [0], [29]] +7.1.0_3=[[0], [7], [1], [0], [3]] +7.1.0_30=[[0], [7], [1], [0], [30]] +7.1.0_31=[[0], [7], [1], [0], [31]] +7.1.0_32=[[0], [7], [1], [0], [32]] +7.1.0_33=[[0], [7], [1], [0], [33]] +7.1.0_34=[[0], [7], [1], [0], [34]] +7.1.0_35=[[0], [7], [1], [0], [35]] +7.1.0_36=[[0], [7], [1], [0], [36]] +7.1.0_37=[[0], [7], [1], [0], [37]] +7.1.0_38=[[0], [7], [1], [0], [38]] +7.1.0_39=[[0], [7], [1], [0], [39]] +7.1.0_4=[[0], [7], [1], [0], [4]] +7.1.0_40=[[0], [7], [1], [0], [40]] +7.1.0_41=[[0], [7], [1], [0], [41]] +7.1.0_44=[[0], [7], [1], [0], [44]] +7.1.0_45=[[0], [7], [1], [0], [45]] +7.1.0_46=[[0], [7], [1], [0], [46]] +7.1.0_47=[[0], [7], [1], [0], [47]] +7.1.0_48=[[0], [7], [1], [0], [48]] +7.1.0_49=[[0], [7], [1], [0], [49]] +7.1.0_5=[[0], [7], [1], [0], [5]] +7.1.0_50=[[0], [7], [1], [0], [50]] +7.1.0_52=[[0], [7], [1], [0], [52]] +7.1.0_53=[[0], [7], [1], [0], [53]] +7.1.0_54=[[0], [7], [1], [0], [54]] +7.1.0_55=[[0], [7], [1], [0], [55]] +7.1.0_56=[[0], [7], [1], [0], [56]] +7.1.0_57=[[0], [7], [1], [0], [57]] +7.1.0_58=[[0], [7], [1], [0], [58]] +7.1.0_59=[[0], [7], [1], [0], [59]] +7.1.0_6=[[0], [7], [1], [0], [6]] +7.1.0_60=[[0], [7], [1], [0], [60]] +7.1.0_61=[[0], [7], [1], [0], [61]] +7.1.0_62=[[0], [7], [1], [0], [62]] +7.1.0_7=[[0], [7], [1], [0], [7]] +7.1.0_8=[[0], [7], [1], [0], [8]] +7.1.0_9=[[0], [7], [1], [0], [9]] +7.1.0b=[[0], [7], [1], [0, 'b']] +7.1.0r=[[0], [7], [1], [0, 'r']] +7.1.1=[[0], [7], [1], [1]] +7.1.1.0=[[0], [7], [1], [1], [0]] +7.1.10=[[0], [7], [1], [10]] +7.1.11=[[0], [7], [1], [11]] +7.1.12=[[0], [7], [1], [12]] +7.1.13=[[0], [7], [1], [13]] +7.1.14=[[0], [7], [1], [14]] +7.1.1_0=[[0], [7], [1], [1], [0]] +7.1.1_1=[[0], [7], [1], [1], [1]] +7.1.1_2=[[0], [7], [1], [1], [2]] +7.1.1_3=[[0], [7], [1], [1], [3]] +7.1.1_4=[[0], [7], [1], [1], [4]] +7.1.1_5=[[0], [7], [1], [1], [5]] +7.1.1_6=[[0], [7], [1], [1], [6]] +7.1.1_7=[[0], [7], [1], [1], [7]] +7.1.1_8=[[0], [7], [1], [1], [8]] +7.1.1_9=[[0], [7], [1], [1], [9]] +7.1.1b=[[0], [7], [1], [1, 'b']] +7.1.2=[[0], [7], [1], [2]] +7.1.20210316164414=[[0], [7], [1], [20210316164414]] +7.1.20210518142926=[[0], [7], [1], [20210518142926]] +7.1.20210611090601=[[0], [7], [1], [20210611090601]] +7.1.26=[[0], [7], [1], [26]] +7.1.3=[[0], [7], [1], [3]] +7.1.3condapatch=[[0], [7], [1], [3, 'condapatch']] +7.1.4=[[0], [7], [1], [4]] +7.1.5=[[0], [7], [1], [5]] +7.1.6=[[0], [7], [1], [6]] +7.1.7=[[0], [7], [1], [7]] +7.1.8=[[0], [7], [1], [8]] +7.1.9=[[0], [7], [1], [9]] +7.10=[[0], [7], [10]] +7.10.0=[[0], [7], [10], [0]] +7.10.0.175=[[0], [7], [10], [0], [175]] +7.10.0b1=[[0], [7], [10], [0, 'b', 1]] +7.10.1=[[0], [7], [10], [1]] +7.10.1b1=[[0], [7], [10], [1, 'b', 1]] +7.10.2=[[0], [7], [10], [2]] +7.109.22021=[[0], [7], [109], [22021]] +7.11=[[0], [7], [11]] +7.11.0=[[0], [7], [11], [0]] +7.11.1=[[0], [7], [11], [1]] +7.11.10=[[0], [7], [11], [10]] +7.11.2=[[0], [7], [11], [2]] +7.11.3=[[0], [7], [11], [3]] +7.11.4=[[0], [7], [11], [4]] +7.11.5=[[0], [7], [11], [5]] +7.11.6=[[0], [7], [11], [6]] +7.11.7=[[0], [7], [11], [7]] +7.11.8=[[0], [7], [11], [8]] +7.11.9=[[0], [7], [11], [9]] +7.111.22021=[[0], [7], [111], [22021]] +7.114.22021=[[0], [7], [114], [22021]] +7.12=[[0], [7], [12]] +7.12.0=[[0], [7], [12], [0]] +7.12.0.176=[[0], [7], [12], [0], [176]] +7.12.1=[[0], [7], [12], [1]] +7.12.2=[[0], [7], [12], [2]] +7.12.3=[[0], [7], [12], [3]] +7.12.4=[[0], [7], [12], [4]] +7.12.5=[[0], [7], [12], [5]] +7.12.6=[[0], [7], [12], [6]] +7.12.7=[[0], [7], [12], [7]] +7.125.22022=[[0], [7], [125], [22022]] +7.126.22022=[[0], [7], [126], [22022]] +7.13=[[0], [7], [13]] +7.13.0=[[0], [7], [13], [0]] +7.13.0b1=[[0], [7], [13], [0, 'b', 1]] +7.13.1=[[0], [7], [13], [1]] +7.13.2=[[0], [7], [13], [2]] +7.13.3=[[0], [7], [13], [3]] +7.13.4=[[0], [7], [13], [4]] +7.13.5=[[0], [7], [13], [5]] +7.132.22039=[[0], [7], [132], [22039]] +7.14=[[0], [7], [14]] +7.14.0=[[0], [7], [14], [0]] +7.14.0.177=[[0], [7], [14], [0], [177]] +7.14.0b1=[[0], [7], [14], [0, 'b', 1]] +7.14.1=[[0], [7], [14], [1]] +7.14.1b1=[[0], [7], [14], [1, 'b', 1]] +7.14.2=[[0], [7], [14], [2]] +7.142.22057=[[0], [7], [142], [22057]] +7.147.22086=[[0], [7], [147], [22086]] +7.148.22086=[[0], [7], [148], [22086]] +7.149.22086=[[0], [7], [149], [22086]] +7.15=[[0], [7], [15]] +7.15.0=[[0], [7], [15], [0]] +7.15.1=[[0], [7], [15], [1]] +7.15.2=[[0], [7], [15], [2]] +7.15.3=[[0], [7], [15], [3]] +7.15.4=[[0], [7], [15], [4]] +7.15.5=[[0], [7], [15], [5]] +7.158.22119=[[0], [7], [158], [22119]] +7.16=[[0], [7], [16]] +7.16.0=[[0], [7], [16], [0]] +7.16.0.178=[[0], [7], [16], [0], [178]] +7.16.1=[[0], [7], [16], [1]] +7.16.2=[[0], [7], [16], [2]] +7.16.3=[[0], [7], [16], [3]] +7.16.4=[[0], [7], [16], [4]] +7.163.22119=[[0], [7], [163], [22119]] +7.168.22121=[[0], [7], [168], [22121]] +7.169.22121=[[0], [7], [169], [22121]] +7.17=[[0], [7], [17]] +7.17.0=[[0], [7], [17], [0]] +7.17.1=[[0], [7], [17], [1]] +7.17.6=[[0], [7], [17], [6]] +7.18.0=[[0], [7], [18], [0]] +7.18.1=[[0], [7], [18], [1]] +7.18.2=[[0], [7], [18], [2]] +7.187.22201=[[0], [7], [187], [22201]] +7.19.0=[[0], [7], [19], [0]] +7.19.1=[[0], [7], [19], [1]] +7.1p2=[[0], [7], [1, 'p', 2]] +7.2=[[0], [7], [2]] +7.2.0=[[0], [7], [2], [0]] +7.2.0.0=[[0], [7], [2], [0], [0]] +7.2.1=[[0], [7], [2], [1]] +7.2.1.168=[[0], [7], [2], [1], [168]] +7.2.10=[[0], [7], [2], [10]] +7.2.11=[[0], [7], [2], [11]] +7.2.12=[[0], [7], [2], [12]] +7.2.13=[[0], [7], [2], [13]] +7.2.14=[[0], [7], [2], [14]] +7.2.15=[[0], [7], [2], [15]] +7.2.16=[[0], [7], [2], [16]] +7.2.2=[[0], [7], [2], [2]] +7.2.2.169=[[0], [7], [2], [2], [169]] +7.2.20=[[0], [7], [2], [20]] +7.2.21=[[0], [7], [2], [21]] +7.2.22=[[0], [7], [2], [22]] +7.2.23=[[0], [7], [2], [23]] +7.2.24=[[0], [7], [2], [24]] +7.2.25=[[0], [7], [2], [25]] +7.2.3=[[0], [7], [2], [3]] +7.2.3.170=[[0], [7], [2], [3], [170]] +7.2.30=[[0], [7], [2], [30]] +7.2.4=[[0], [7], [2], [4]] +7.2.4.171=[[0], [7], [2], [4], [171]] +7.2.5=[[0], [7], [2], [5]] +7.2.5.1=[[0], [7], [2], [5], [1]] +7.2.6=[[0], [7], [2], [6]] +7.2.6.1=[[0], [7], [2], [6], [1]] +7.2.7=[[0], [7], [2], [7]] +7.2.8=[[0], [7], [2], [8]] +7.2.9=[[0], [7], [2], [9]] +7.2.d=[[0], [7], [2], [0, 'd']] +7.20.0=[[0], [7], [20], [0]] +7.20181031=[[0], [7], [20181031]] +7.20181105=[[0], [7], [20181105]] +7.20181211=[[0], [7], [20181211]] +7.20190219=[[0], [7], [20190219]] +7.20190322=[[0], [7], [20190322]] +7.20190503=[[0], [7], [20190503]] +7.20190507=[[0], [7], [20190507]] +7.20190626=[[0], [7], [20190626]] +7.20190708=[[0], [7], [20190708]] +7.20190730=[[0], [7], [20190730]] +7.20190819=[[0], [7], [20190819]] +7.20190912=[[0], [7], [20190912]] +7.20191009=[[0], [7], [20191009]] +7.20191017=[[0], [7], [20191017]] +7.20191024=[[0], [7], [20191024]] +7.20191106=[[0], [7], [20191106]] +7.20191114=[[0], [7], [20191114]] +7.20191230=[[0], [7], [20191230]] +7.20200202.7=[[0], [7], [20200202], [7]] +7.20200204=[[0], [7], [20200204]] +7.20200219=[[0], [7], [20200219]] +7.20200226=[[0], [7], [20200226]] +7.20200309=[[0], [7], [20200309]] +7.21.0=[[0], [7], [21], [0]] +7.213.22307=[[0], [7], [213], [22307]] +7.217.22307=[[0], [7], [217], [22307]] +7.22.0=[[0], [7], [22], [0]] +7.23.0=[[0], [7], [23], [0]] +7.23.1=[[0], [7], [23], [1]] +7.230.22310=[[0], [7], [230], [22310]] +7.238.22316=[[0], [7], [238], [22316]] +7.24.0=[[0], [7], [24], [0]] +7.24.1=[[0], [7], [24], [1]] +7.24.3=[[0], [7], [24], [3]] +7.25.0=[[0], [7], [25], [0]] +7.25.1=[[0], [7], [25], [1]] +7.251.22317=[[0], [7], [251], [22317]] +7.252.22317=[[0], [7], [252], [22317]] +7.26.0=[[0], [7], [26], [0]] +7.26.1=[[0], [7], [26], [1]] +7.26.2=[[0], [7], [26], [2]] +7.26.3=[[0], [7], [26], [3]] +7.265.22338=[[0], [7], [265], [22338]] +7.27.0=[[0], [7], [27], [0]] +7.27.1=[[0], [7], [27], [1]] +7.28.0=[[0], [7], [28], [0]] +7.29.0=[[0], [7], [29], [0]] +7.29.4=[[0], [7], [29], [4]] +7.298.22349=[[0], [7], [298], [22349]] +7.3=[[0], [7], [3]] +7.3.0=[[0], [7], [3], [0]] +7.3.0.0=[[0], [7], [3], [0], [0]] +7.3.0.2=[[0], [7], [3], [0], [2]] +7.3.1=[[0], [7], [3], [1]] +7.3.10=[[0], [7], [3], [10]] +7.3.11=[[0], [7], [3], [11]] +7.3.12=[[0], [7], [3], [12]] +7.3.13=[[0], [7], [3], [13]] +7.3.14=[[0], [7], [3], [14]] +7.3.15=[[0], [7], [3], [15]] +7.3.16=[[0], [7], [3], [16]] +7.3.17=[[0], [7], [3], [17]] +7.3.18=[[0], [7], [3], [18]] +7.3.19=[[0], [7], [3], [19]] +7.3.2=[[0], [7], [3], [2]] +7.3.2.0=[[0], [7], [3], [2], [0]] +7.3.20=[[0], [7], [3], [20]] +7.3.21=[[0], [7], [3], [21]] +7.3.21313=[[0], [7], [3], [21313]] +7.3.22=[[0], [7], [3], [22]] +7.3.23=[[0], [7], [3], [23]] +7.3.24=[[0], [7], [3], [24]] +7.3.26=[[0], [7], [3], [26]] +7.3.27=[[0], [7], [3], [27]] +7.3.28=[[0], [7], [3], [28]] +7.3.29=[[0], [7], [3], [29]] +7.3.3=[[0], [7], [3], [3]] +7.3.3.0=[[0], [7], [3], [3], [0]] +7.3.30=[[0], [7], [3], [30]] +7.3.31=[[0], [7], [3], [31]] +7.3.32=[[0], [7], [3], [32]] +7.3.33=[[0], [7], [3], [33]] +7.3.4=[[0], [7], [3], [4]] +7.3.5=[[0], [7], [3], [5]] +7.3.6=[[0], [7], [3], [6]] +7.3.7=[[0], [7], [3], [7]] +7.3.8=[[0], [7], [3], [8]] +7.3.9=[[0], [7], [3], [9]] +7.30.1=[[0], [7], [30], [1]] +7.31.0=[[0], [7], [31], [0]] +7.31.1=[[0], [7], [31], [1]] +7.310.22362=[[0], [7], [310], [22362]] +7.32.0=[[0], [7], [32], [0]] +7.33.0=[[0], [7], [33], [0]] +7.330.23004=[[0], [7], [330], [23004]] +7.352.0=[[0], [7], [352], [0]] +7.36=[[0], [7], [36]] +7.37=[[0], [7], [37]] +7.38=[[0], [7], [38]] +7.39=[[0], [7], [39]] +7.3_11=[[0], [7], [3], [11]] +7.3_12=[[0], [7], [3], [12]] +7.3_13=[[0], [7], [3], [13]] +7.3_14=[[0], [7], [3], [14]] +7.3_15=[[0], [7], [3], [15]] +7.3_16=[[0], [7], [3], [16]] +7.3_17=[[0], [7], [3], [17]] +7.3_18=[[0], [7], [3], [18]] +7.3_19=[[0], [7], [3], [19]] +7.3_20=[[0], [7], [3], [20]] +7.3_21=[[0], [7], [3], [21]] +7.3_22=[[0], [7], [3], [22]] +7.3_45=[[0], [7], [3], [45]] +7.3_48=[[0], [7], [3], [48]] +7.3_50=[[0], [7], [3], [50]] +7.3_51.1=[[0], [7], [3], [51], [1]] +7.3_51.3=[[0], [7], [3], [51], [3]] +7.3_51.4=[[0], [7], [3], [51], [4]] +7.3_51.5=[[0], [7], [3], [51], [5]] +7.3_51.6=[[0], [7], [3], [51], [6]] +7.3_52=[[0], [7], [3], [52]] +7.3_53=[[0], [7], [3], [53]] +7.3_53.1=[[0], [7], [3], [53], [1]] +7.3_54=[[0], [7], [3], [54]] +7.3_55=[[0], [7], [3], [55]] +7.3_56=[[0], [7], [3], [56]] +7.3_57=[[0], [7], [3], [57]] +7.3_58=[[0], [7], [3], [58]] +7.3_58.1=[[0], [7], [3], [58], [1]] +7.3_58.2=[[0], [7], [3], [58], [2]] +7.3_58.3=[[0], [7], [3], [58], [3]] +7.3_59=[[0], [7], [3], [59]] +7.3_60=[[0], [7], [3], [60]] +7.4=[[0], [7], [4]] +7.4.0=[[0], [7], [4], [0]] +7.4.0.0=[[0], [7], [4], [0], [0]] +7.4.0.172=[[0], [7], [4], [0], [172]] +7.4.1=[[0], [7], [4], [1]] +7.4.1.0=[[0], [7], [4], [1], [0]] +7.4.10=[[0], [7], [4], [10]] +7.4.11=[[0], [7], [4], [11]] +7.4.12=[[0], [7], [4], [12]] +7.4.13=[[0], [7], [4], [13]] +7.4.14=[[0], [7], [4], [14]] +7.4.15=[[0], [7], [4], [15]] +7.4.16=[[0], [7], [4], [16]] +7.4.1721=[[0], [7], [4], [1721]] +7.4.2=[[0], [7], [4], [2]] +7.4.2.0=[[0], [7], [4], [2], [0]] +7.4.20=[[0], [7], [4], [20]] +7.4.21=[[0], [7], [4], [21]] +7.4.21313=[[0], [7], [4], [21313]] +7.4.22=[[0], [7], [4], [22]] +7.4.23=[[0], [7], [4], [23]] +7.4.24=[[0], [7], [4], [24]] +7.4.25=[[0], [7], [4], [25]] +7.4.26=[[0], [7], [4], [26]] +7.4.27=[[0], [7], [4], [27]] +7.4.3=[[0], [7], [4], [3]] +7.4.3.0=[[0], [7], [4], [3], [0]] +7.4.3.1=[[0], [7], [4], [3], [1]] +7.4.3.2=[[0], [7], [4], [3], [2]] +7.4.4=[[0], [7], [4], [4]] +7.4.4.0=[[0], [7], [4], [4], [0]] +7.4.5=[[0], [7], [4], [5]] +7.4.6=[[0], [7], [4], [6]] +7.4.7=[[0], [7], [4], [7]] +7.4.8=[[0], [7], [4], [8]] +7.4.9=[[0], [7], [4], [9]] +7.40=[[0], [7], [40]] +7.43.0.2=[[0], [7], [43], [0], [2]] +7.43.0.3=[[0], [7], [43], [0], [3]] +7.43.0.4=[[0], [7], [43], [0], [4]] +7.43.0.5=[[0], [7], [43], [0], [5]] +7.43.0.6=[[0], [7], [43], [0], [6]] +7.44.0=[[0], [7], [44], [0]] +7.44.1=[[0], [7], [44], [1]] +7.44.2=[[0], [7], [44], [2]] +7.44.3=[[0], [7], [44], [3]] +7.44.4=[[0], [7], [44], [4]] +7.44.5=[[0], [7], [44], [5]] +7.44.6=[[0], [7], [44], [6]] +7.44.7=[[0], [7], [44], [7]] +7.44.8=[[0], [7], [44], [8]] +7.44.9=[[0], [7], [44], [9]] +7.45.0=[[0], [7], [45], [0]] +7.45.1=[[0], [7], [45], [1]] +7.45.1.1=[[0], [7], [45], [1], [1]] +7.45.1.2=[[0], [7], [45], [1], [2]] +7.45.1.3=[[0], [7], [45], [1], [3]] +7.45.1.4=[[0], [7], [45], [1], [4]] +7.45.2.0=[[0], [7], [45], [2], [0]] +7.45.2.1=[[0], [7], [45], [2], [1]] +7.45.2.2=[[0], [7], [45], [2], [2]] +7.45.2.3=[[0], [7], [45], [2], [3]] +7.47.1=[[0], [7], [47], [1]] +7.48.0=[[0], [7], [48], [0]] +7.5=[[0], [7], [5]] +7.5.0=[[0], [7], [5], [0]] +7.5.1=[[0], [7], [5], [1]] +7.5.10=[[0], [7], [5], [10]] +7.5.12=[[0], [7], [5], [12]] +7.5.14=[[0], [7], [5], [14]] +7.5.1rc2=[[0], [7], [5], [1, 'rc', 2]] +7.5.1rc4=[[0], [7], [5], [1, 'rc', 4]] +7.5.2=[[0], [7], [5], [2]] +7.5.288.22=[[0], [7], [5], [288], [22]] +7.5.288.30=[[0], [7], [5], [288], [30]] +7.5.3=[[0], [7], [5], [3]] +7.5.3.0=[[0], [7], [5], [3], [0]] +7.5.4=[[0], [7], [5], [4]] +7.5.5=[[0], [7], [5], [5]] +7.5.6=[[0], [7], [5], [6]] +7.5.7=[[0], [7], [5], [7]] +7.5.8=[[0], [7], [5], [8]] +7.5.9=[[0], [7], [5], [9]] +7.52.1=[[0], [7], [52], [1]] +7.54.1=[[0], [7], [54], [1]] +7.56=[[0], [7], [56]] +7.58.0=[[0], [7], [58], [0]] +7.59.0=[[0], [7], [59], [0]] +7.6=[[0], [7], [6]] +7.6.0=[[0], [7], [6], [0]] +7.6.0.173=[[0], [7], [6], [0], [173]] +7.6.0a5=[[0], [7], [6], [0, 'a', 5]] +7.6.1=[[0], [7], [6], [1]] +7.6.10=[[0], [7], [6], [10]] +7.6.12=[[0], [7], [6], [12]] +7.6.14=[[0], [7], [6], [14]] +7.6.2=[[0], [7], [6], [2]] +7.6.3=[[0], [7], [6], [3]] +7.6.3.0=[[0], [7], [6], [3], [0]] +7.6.4=[[0], [7], [6], [4]] +7.6.5=[[0], [7], [6], [5]] +7.6.5.32=[[0], [7], [6], [5], [32]] +7.6.6=[[0], [7], [6], [6]] +7.6.7=[[0], [7], [6], [7]] +7.60.0=[[0], [7], [60], [0]] +7.61.0=[[0], [7], [61], [0]] +7.61.1=[[0], [7], [61], [1]] +7.62.0=[[0], [7], [62], [0]] +7.63.0=[[0], [7], [63], [0]] +7.64=[[0], [7], [64]] +7.64.0=[[0], [7], [64], [0]] +7.64.1=[[0], [7], [64], [1]] +7.65.1=[[0], [7], [65], [1]] +7.65.2=[[0], [7], [65], [2]] +7.65.3=[[0], [7], [65], [3]] +7.66=[[0], [7], [66]] +7.68.0=[[0], [7], [68], [0]] +7.69.1=[[0], [7], [69], [1]] +7.7=[[0], [7], [7]] +7.7.0=[[0], [7], [7], [0]] +7.7.0.0=[[0], [7], [7], [0], [0]] +7.7.0.1=[[0], [7], [7], [0], [1]] +7.7.0a1=[[0], [7], [7], [0, 'a', 1]] +7.7.1=[[0], [7], [7], [1]] +7.7.15=[[0], [7], [7], [15]] +7.7.2=[[0], [7], [7], [2]] +7.7.23=[[0], [7], [7], [23]] +7.7.3=[[0], [7], [7], [3]] +7.7.31=[[0], [7], [7], [31]] +7.7.34=[[0], [7], [7], [34]] +7.7.4=[[0], [7], [7], [4]] +7.7.5=[[0], [7], [7], [5]] +7.7.9=[[0], [7], [7], [9]] +7.71.0=[[0], [7], [71], [0]] +7.71.1=[[0], [7], [71], [1]] +7.75.0=[[0], [7], [75], [0]] +7.76.0=[[0], [7], [76], [0]] +7.76.1=[[0], [7], [76], [1]] +7.77.0=[[0], [7], [77], [0]] +7.78.0=[[0], [7], [78], [0]] +7.79.0=[[0], [7], [79], [0]] +7.79.1=[[0], [7], [79], [1]] +7.8=[[0], [7], [8]] +7.8.0=[[0], [7], [8], [0]] +7.8.0.174=[[0], [7], [8], [0], [174]] +7.8.1=[[0], [7], [8], [1]] +7.8.2=[[0], [7], [8], [2]] +7.8.3=[[0], [7], [8], [3]] +7.8.5=[[0], [7], [8], [5]] +7.80.0=[[0], [7], [80], [0]] +7.800.1=[[0], [7], [800], [1]] +7.81.0=[[0], [7], [81], [0]] +7.82.0=[[0], [7], [82], [0]] +7.83.0=[[0], [7], [83], [0]] +7.83.1=[[0], [7], [83], [1]] +7.85.0=[[0], [7], [85], [0]] +7.86.0=[[0], [7], [86], [0]] +7.87.0=[[0], [7], [87], [0]] +7.88.0=[[0], [7], [88], [0]] +7.88.1=[[0], [7], [88], [1]] +7.9=[[0], [7], [9]] +7.9.0=[[0], [7], [9], [0]] +7.9.0a1=[[0], [7], [9], [0, 'a', 1]] +7.9.1=[[0], [7], [9], [1]] +7.9.1a1=[[0], [7], [9], [1, 'a', 1]] +7.9.2=[[0], [7], [9], [2]] +7.9.3=[[0], [7], [9], [3]] +7.950.1=[[0], [7], [950], [1]] +7.9p1=[[0], [7], [9, 'p', 1]] +70.0.1=[[0], [70], [0], [1]] +70.1=[[0], [70], [1]] +70.a=[[0], [70], [0, 'a']] +71=[[0], [71]] +71.a=[[0], [71], [0, 'a']] +71.b=[[0], [71], [0, 'b']] +72=[[0], [72]] +72.0.2=[[0], [72], [0], [2]] +72.1=[[0], [72], [1]] +73=[[0], [73]] +73.0=[[0], [73], [0]] +73.0.3683.68.0=[[0], [73], [0], [3683], [68], [0]] +74=[[0], [74]] +74.0=[[0], [74], [0]] +74.0.1=[[0], [74], [0], [1]] +74.0.3729.6.0=[[0], [74], [0], [3729], [6], [0]] +75=[[0], [75]] +75.0=[[0], [75], [0]] +75.0.3770.8.0=[[0], [75], [0], [3770], [8], [0]] +76=[[0], [76]] +76.0=[[0], [76], [0]] +76.0.3809.68.0=[[0], [76], [0], [3809], [68], [0]] +77.0=[[0], [77], [0]] +77.0.1=[[0], [77], [0], [1]] +77.0.3865.10.0=[[0], [77], [0], [3865], [10], [0]] +77.0.3865.40.0=[[0], [77], [0], [3865], [40], [0]] +78.0.3904.11.0=[[0], [78], [0], [3904], [11], [0]] +78.0.3904.70.0=[[0], [78], [0], [3904], [70], [0]] +78.0esr=[[0], [78], [0, 'esr']] +78.1.0esr=[[0], [78], [1], [0, 'esr']] +78.10.1esr=[[0], [78], [10], [1, 'esr']] +78.11.0esr=[[0], [78], [11], [0, 'esr']] +78.12.0esr=[[0], [78], [12], [0, 'esr']] +78.13.0esr=[[0], [78], [13], [0, 'esr']] +78.14.0esr=[[0], [78], [14], [0, 'esr']] +78.15.0esr=[[0], [78], [15], [0, 'esr']] +78.2.0esr=[[0], [78], [2], [0, 'esr']] +78.3.0esr=[[0], [78], [3], [0, 'esr']] +78.4.0esr=[[0], [78], [4], [0, 'esr']] +78.5.0esr=[[0], [78], [5], [0, 'esr']] +78.6.0esr=[[0], [78], [6], [0, 'esr']] +78.7.0esr=[[0], [78], [7], [0, 'esr']] +78.8.0esr=[[0], [78], [8], [0, 'esr']] +78.9.0esr=[[0], [78], [9], [0, 'esr']] +79=[[0], [79]] +79.0=[[0], [79], [0]] +79.0.3945.16.0=[[0], [79], [0], [3945], [16], [0]] +8=[[0], [8]] +8.0=[[0], [8], [0]] +8.0.0=[[0], [8], [0], [0]] +8.0.0.0=[[0], [8], [0], [0], [0]] +8.0.0.1=[[0], [8], [0], [0], [1]] +8.0.0.179=[[0], [8], [0], [0], [179]] +8.0.1=[[0], [8], [0], [1]] +8.0.10=[[0], [8], [0], [10]] +8.0.11=[[0], [8], [0], [11]] +8.0.112=[[0], [8], [0], [112]] +8.0.12=[[0], [8], [0], [12]] +8.0.121=[[0], [8], [0], [121]] +8.0.13=[[0], [8], [0], [13]] +8.0.14=[[0], [8], [0], [14]] +8.0.144=[[0], [8], [0], [144]] +8.0.15=[[0], [8], [0], [15]] +8.0.16=[[0], [8], [0], [16]] +8.0.17=[[0], [8], [0], [17]] +8.0.18=[[0], [8], [0], [18]] +8.0.19=[[0], [8], [0], [19]] +8.0.192=[[0], [8], [0], [192]] +8.0.2=[[0], [8], [0], [2]] +8.0.20=[[0], [8], [0], [20]] +8.0.20210624101613=[[0], [8], [0], [20210624101613]] +8.0.20210624154013=[[0], [8], [0], [20210624154013]] +8.0.21=[[0], [8], [0], [21]] +8.0.22=[[0], [8], [0], [22]] +8.0.23=[[0], [8], [0], [23]] +8.0.24=[[0], [8], [0], [24]] +8.0.25=[[0], [8], [0], [25]] +8.0.26=[[0], [8], [0], [26]] +8.0.265=[[0], [8], [0], [265]] +8.0.27=[[0], [8], [0], [27]] +8.0.28=[[0], [8], [0], [28]] +8.0.282=[[0], [8], [0], [282]] +8.0.29=[[0], [8], [0], [29]] +8.0.3=[[0], [8], [0], [3]] +8.0.30=[[0], [8], [0], [30]] +8.0.302=[[0], [8], [0], [302]] +8.0.31=[[0], [8], [0], [31]] +8.0.312=[[0], [8], [0], [312]] +8.0.32=[[0], [8], [0], [32]] +8.0.332=[[0], [8], [0], [332]] +8.0.4=[[0], [8], [0], [4]] +8.0.5=[[0], [8], [0], [5]] +8.0.5.39=[[0], [8], [0], [5], [39]] +8.0.6=[[0], [8], [0], [6]] +8.0.7=[[0], [8], [0], [7]] +8.0.8=[[0], [8], [0], [8]] +8.0.9=[[0], [8], [0], [9]] +8.0_0=[[0], [8], [0], [0]] +8.0_1=[[0], [8], [0], [1]] +8.0a1=[[0], [8], [0, 'a', 1]] +8.0a2=[[0], [8], [0, 'a', 2]] +8.0b0=[[0], [8], [0, 'b', 0]] +8.0b1=[[0], [8], [0, 'b', 1]] +8.0b2=[[0], [8], [0, 'b', 2]] +8.0b3=[[0], [8], [0, 'b', 3]] +8.0p1=[[0], [8], [0, 'p', 1]] +8.0rc1=[[0], [8], [0, 'rc', 1]] +8.0rc2=[[0], [8], [0, 'rc', 2]] +8.0rc3=[[0], [8], [0, 'rc', 3]] +8.1=[[0], [8], [1]] +8.1.0=[[0], [8], [1], [0]] +8.1.0.180=[[0], [8], [1], [0], [180]] +8.1.0.77=[[0], [8], [1], [0], [77]] +8.1.0925=[[0], [8], [1], [925]] +8.1.0960=[[0], [8], [1], [960]] +8.1.1=[[0], [8], [1], [1]] +8.1.10=[[0], [8], [1], [10]] +8.1.1008=[[0], [8], [1], [1008]] +8.1.11=[[0], [8], [1], [11]] +8.1.13=[[0], [8], [1], [13]] +8.1.1343=[[0], [8], [1], [1343]] +8.1.1349=[[0], [8], [1], [1349]] +8.1.2=[[0], [8], [1], [2]] +8.1.20210627200047=[[0], [8], [1], [20210627200047]] +8.1.20210716111910=[[0], [8], [1], [20210716111910]] +8.1.20210721123742=[[0], [8], [1], [20210721123742]] +8.1.3=[[0], [8], [1], [3]] +8.1.4=[[0], [8], [1], [4]] +8.1.5=[[0], [8], [1], [5]] +8.1.6=[[0], [8], [1], [6]] +8.1.7=[[0], [8], [1], [7]] +8.1.8=[[0], [8], [1], [8]] +8.1.9=[[0], [8], [1], [9]] +8.1.np1.12=[[0], [8], [1], [0, 'np', 1], [12]] +8.1.np1.13=[[0], [8], [1], [0, 'np', 1], [13]] +8.1.np1.14=[[0], [8], [1], [0, 'np', 1], [14]] +8.10=[[0], [8], [10]] +8.10.0=[[0], [8], [10], [0]] +8.10.1=[[0], [8], [10], [1]] +8.10.10=[[0], [8], [10], [10]] +8.10.14=[[0], [8], [10], [14]] +8.10.18=[[0], [8], [10], [18]] +8.10.2=[[0], [8], [10], [2]] +8.10.3=[[0], [8], [10], [3]] +8.10.4=[[0], [8], [10], [4]] +8.10.5=[[0], [8], [10], [5]] +8.10.6=[[0], [8], [10], [6]] +8.10.7=[[0], [8], [10], [7]] +8.11=[[0], [8], [11]] +8.11.0=[[0], [8], [11], [0]] +8.11.1=[[0], [8], [11], [1]] +8.11.2=[[0], [8], [11], [2]] +8.11.3=[[0], [8], [11], [3]] +8.11.4=[[0], [8], [11], [4]] +8.12=[[0], [8], [12]] +8.12.0=[[0], [8], [12], [0]] +8.12.1=[[0], [8], [12], [1]] +8.12.2=[[0], [8], [12], [2]] +8.12.24=[[0], [8], [12], [24]] +8.12.25=[[0], [8], [12], [25]] +8.12.26=[[0], [8], [12], [26]] +8.12.27=[[0], [8], [12], [27]] +8.12.28=[[0], [8], [12], [28]] +8.12.29=[[0], [8], [12], [29]] +8.12.30=[[0], [8], [12], [30]] +8.12.31=[[0], [8], [12], [31]] +8.12.32=[[0], [8], [12], [32]] +8.12.33=[[0], [8], [12], [33]] +8.12.34=[[0], [8], [12], [34]] +8.12.35=[[0], [8], [12], [35]] +8.12.36=[[0], [8], [12], [36]] +8.12.37=[[0], [8], [12], [37]] +8.12.38=[[0], [8], [12], [38]] +8.12.39=[[0], [8], [12], [39]] +8.12.40=[[0], [8], [12], [40]] +8.12.41=[[0], [8], [12], [41]] +8.12.42=[[0], [8], [12], [42]] +8.12.43=[[0], [8], [12], [43]] +8.12.44=[[0], [8], [12], [44]] +8.12.45=[[0], [8], [12], [45]] +8.12.46=[[0], [8], [12], [46]] +8.12.47=[[0], [8], [12], [47]] +8.12.48=[[0], [8], [12], [48]] +8.12.49=[[0], [8], [12], [49]] +8.12.50=[[0], [8], [12], [50]] +8.12.51=[[0], [8], [12], [51]] +8.12.52=[[0], [8], [12], [52]] +8.12.53=[[0], [8], [12], [53]] +8.12.54=[[0], [8], [12], [54]] +8.12.55=[[0], [8], [12], [55]] +8.12.56=[[0], [8], [12], [56]] +8.12.57=[[0], [8], [12], [57]] +8.13=[[0], [8], [13]] +8.13.0=[[0], [8], [13], [0]] +8.13.1=[[0], [8], [13], [1]] +8.13.2=[[0], [8], [13], [2]] +8.13.3=[[0], [8], [13], [3]] +8.13.4=[[0], [8], [13], [4]] +8.13.5=[[0], [8], [13], [5]] +8.13.6=[[0], [8], [13], [6]] +8.13.7=[[0], [8], [13], [7]] +8.14=[[0], [8], [14]] +8.14.0=[[0], [8], [14], [0]] +8.14.1=[[0], [8], [14], [1]] +8.14.2=[[0], [8], [14], [2]] +8.15=[[0], [8], [15]] +8.15.0=[[0], [8], [15], [0]] +8.15.1=[[0], [8], [15], [1]] +8.16=[[0], [8], [16]] +8.16.0=[[0], [8], [16], [0]] +8.17.0=[[0], [8], [17], [0]] +8.18=[[0], [8], [18]] +8.18.0=[[0], [8], [18], [0]] +8.19=[[0], [8], [19]] +8.19.0=[[0], [8], [19], [0]] +8.2=[[0], [8], [2]] +8.2.0=[[0], [8], [2], [0]] +8.2.0.181=[[0], [8], [2], [0], [181]] +8.2.0.53=[[0], [8], [2], [0], [53]] +8.2.0441=[[0], [8], [2], [441]] +8.2.0444=[[0], [8], [2], [444]] +8.2.0448=[[0], [8], [2], [448]] +8.2.0460=[[0], [8], [2], [460]] +8.2.0464=[[0], [8], [2], [464]] +8.2.0485=[[0], [8], [2], [485]] +8.2.0486=[[0], [8], [2], [486]] +8.2.0488=[[0], [8], [2], [488]] +8.2.0489=[[0], [8], [2], [489]] +8.2.0495=[[0], [8], [2], [495]] +8.2.504=[[0], [8], [2], [504]] +8.2.508=[[0], [8], [2], [508]] +8.2.510=[[0], [8], [2], [510]] +8.2.515=[[0], [8], [2], [515]] +8.2.516=[[0], [8], [2], [516]] +8.2.519=[[0], [8], [2], [519]] +8.2.520=[[0], [8], [2], [520]] +8.2.521=[[0], [8], [2], [521]] +8.2.525=[[0], [8], [2], [525]] +8.2.529=[[0], [8], [2], [529]] +8.2.530=[[0], [8], [2], [530]] +8.2.534=[[0], [8], [2], [534]] +8.2.535=[[0], [8], [2], [535]] +8.2.539=[[0], [8], [2], [539]] +8.2.541=[[0], [8], [2], [541]] +8.2.548=[[0], [8], [2], [548]] +8.2.556=[[0], [8], [2], [556]] +8.2.558=[[0], [8], [2], [558]] +8.2.566=[[0], [8], [2], [566]] +8.2.569=[[0], [8], [2], [569]] +8.2.574=[[0], [8], [2], [574]] +8.2.577=[[0], [8], [2], [577]] +8.2.579=[[0], [8], [2], [579]] +8.2.582=[[0], [8], [2], [582]] +8.2.583=[[0], [8], [2], [583]] +8.2.587=[[0], [8], [2], [587]] +8.2.592=[[0], [8], [2], [592]] +8.2.595=[[0], [8], [2], [595]] +8.2.598=[[0], [8], [2], [598]] +8.2.0600=[[0], [8], [2], [600]] +8.2.0606=[[0], [8], [2], [606]] +8.2.0616=[[0], [8], [2], [616]] +8.2.0617=[[0], [8], [2], [617]] +8.2.0618=[[0], [8], [2], [618]] +8.2.0628=[[0], [8], [2], [628]] +8.2.0632=[[0], [8], [2], [632]] +8.2.0633=[[0], [8], [2], [633]] +8.2.0636=[[0], [8], [2], [636]] +8.2.0637=[[0], [8], [2], [637]] +8.2.0640=[[0], [8], [2], [640]] +8.2.0642=[[0], [8], [2], [642]] +8.2.0647=[[0], [8], [2], [647]] +8.2.0649=[[0], [8], [2], [649]] +8.2.0654=[[0], [8], [2], [654]] +8.2.0656=[[0], [8], [2], [656]] +8.2.0659=[[0], [8], [2], [659]] +8.2.0664=[[0], [8], [2], [664]] +8.2.0671=[[0], [8], [2], [671]] +8.2.0676=[[0], [8], [2], [676]] +8.2.0682=[[0], [8], [2], [682]] +8.2.0683=[[0], [8], [2], [683]] +8.2.0692=[[0], [8], [2], [692]] +8.2.0694=[[0], [8], [2], [694]] +8.2.0695=[[0], [8], [2], [695]] +8.2.0701=[[0], [8], [2], [701]] +8.2.0702=[[0], [8], [2], [702]] +8.2.0705=[[0], [8], [2], [705]] +8.2.0707=[[0], [8], [2], [707]] +8.2.0716=[[0], [8], [2], [716]] +8.2.0717=[[0], [8], [2], [717]] +8.2.0719=[[0], [8], [2], [719]] +8.2.0720=[[0], [8], [2], [720]] +8.2.0722=[[0], [8], [2], [722]] +8.2.0724=[[0], [8], [2], [724]] +8.2.0726=[[0], [8], [2], [726]] +8.2.0729=[[0], [8], [2], [729]] +8.2.0730=[[0], [8], [2], [730]] +8.2.0735=[[0], [8], [2], [735]] +8.2.0746=[[0], [8], [2], [746]] +8.2.0747=[[0], [8], [2], [747]] +8.2.0750=[[0], [8], [2], [750]] +8.2.0752=[[0], [8], [2], [752]] +8.2.0754=[[0], [8], [2], [754]] +8.2.0757=[[0], [8], [2], [757]] +8.2.0764=[[0], [8], [2], [764]] +8.2.0766=[[0], [8], [2], [766]] +8.2.0770=[[0], [8], [2], [770]] +8.2.0790=[[0], [8], [2], [790]] +8.2.0793=[[0], [8], [2], [793]] +8.2.0795=[[0], [8], [2], [795]] +8.2.0796=[[0], [8], [2], [796]] +8.2.0801=[[0], [8], [2], [801]] +8.2.0803=[[0], [8], [2], [803]] +8.2.0806=[[0], [8], [2], [806]] +8.2.0812=[[0], [8], [2], [812]] +8.2.0813=[[0], [8], [2], [813]] +8.2.0814=[[0], [8], [2], [814]] +8.2.0815=[[0], [8], [2], [815]] +8.2.0821=[[0], [8], [2], [821]] +8.2.0822=[[0], [8], [2], [822]] +8.2.0825=[[0], [8], [2], [825]] +8.2.0827=[[0], [8], [2], [827]] +8.2.0829=[[0], [8], [2], [829]] +8.2.0830=[[0], [8], [2], [830]] +8.2.0834=[[0], [8], [2], [834]] +8.2.0836=[[0], [8], [2], [836]] +8.2.0841=[[0], [8], [2], [841]] +8.2.0852=[[0], [8], [2], [852]] +8.2.0854=[[0], [8], [2], [854]] +8.2.0855=[[0], [8], [2], [855]] +8.2.0859=[[0], [8], [2], [859]] +8.2.0864=[[0], [8], [2], [864]] +8.2.0869=[[0], [8], [2], [869]] +8.2.0877=[[0], [8], [2], [877]] +8.2.0884=[[0], [8], [2], [884]] +8.2.0888=[[0], [8], [2], [888]] +8.2.0890=[[0], [8], [2], [890]] +8.2.0891=[[0], [8], [2], [891]] +8.2.0892=[[0], [8], [2], [892]] +8.2.0908=[[0], [8], [2], [908]] +8.2.0910=[[0], [8], [2], [910]] +8.2.0914=[[0], [8], [2], [914]] +8.2.0915=[[0], [8], [2], [915]] +8.2.0916=[[0], [8], [2], [916]] +8.2.0931=[[0], [8], [2], [931]] +8.2.0935=[[0], [8], [2], [935]] +8.2.0940=[[0], [8], [2], [940]] +8.2.0950=[[0], [8], [2], [950]] +8.2.0956=[[0], [8], [2], [956]] +8.2.0957=[[0], [8], [2], [957]] +8.2.0959=[[0], [8], [2], [959]] +8.2.0960=[[0], [8], [2], [960]] +8.2.0961=[[0], [8], [2], [961]] +8.2.0974=[[0], [8], [2], [974]] +8.2.0979=[[0], [8], [2], [979]] +8.2.0983=[[0], [8], [2], [983]] +8.2.0986=[[0], [8], [2], [986]] +8.2.0987=[[0], [8], [2], [987]] +8.2.0989=[[0], [8], [2], [989]] +8.2.0991=[[0], [8], [2], [991]] +8.2.0992=[[0], [8], [2], [992]] +8.2.0995=[[0], [8], [2], [995]] +8.2.0997=[[0], [8], [2], [997]] +8.2.0998=[[0], [8], [2], [998]] +8.2.1=[[0], [8], [2], [1]] +8.2.1.32=[[0], [8], [2], [1], [32]] +8.2.10=[[0], [8], [2], [10]] +8.2.1009=[[0], [8], [2], [1009]] +8.2.1010=[[0], [8], [2], [1010]] +8.2.1011=[[0], [8], [2], [1011]] +8.2.1014=[[0], [8], [2], [1014]] +8.2.1017=[[0], [8], [2], [1017]] +8.2.1018=[[0], [8], [2], [1018]] +8.2.1023=[[0], [8], [2], [1023]] +8.2.1024=[[0], [8], [2], [1024]] +8.2.1025=[[0], [8], [2], [1025]] +8.2.1030=[[0], [8], [2], [1030]] +8.2.1033=[[0], [8], [2], [1033]] +8.2.1034=[[0], [8], [2], [1034]] +8.2.1036=[[0], [8], [2], [1036]] +8.2.1040=[[0], [8], [2], [1040]] +8.2.1041=[[0], [8], [2], [1041]] +8.2.1042=[[0], [8], [2], [1042]] +8.2.1043=[[0], [8], [2], [1043]] +8.2.1044=[[0], [8], [2], [1044]] +8.2.1045=[[0], [8], [2], [1045]] +8.2.1046=[[0], [8], [2], [1046]] +8.2.1048=[[0], [8], [2], [1048]] +8.2.1051=[[0], [8], [2], [1051]] +8.2.1052=[[0], [8], [2], [1052]] +8.2.1053=[[0], [8], [2], [1053]] +8.2.1055=[[0], [8], [2], [1055]] +8.2.1056=[[0], [8], [2], [1056]] +8.2.1057=[[0], [8], [2], [1057]] +8.2.1058=[[0], [8], [2], [1058]] +8.2.1059=[[0], [8], [2], [1059]] +8.2.1061=[[0], [8], [2], [1061]] +8.2.1064=[[0], [8], [2], [1064]] +8.2.1065=[[0], [8], [2], [1065]] +8.2.1068=[[0], [8], [2], [1068]] +8.2.1070=[[0], [8], [2], [1070]] +8.2.1072=[[0], [8], [2], [1072]] +8.2.1076=[[0], [8], [2], [1076]] +8.2.1078=[[0], [8], [2], [1078]] +8.2.1079=[[0], [8], [2], [1079]] +8.2.1080=[[0], [8], [2], [1080]] +8.2.1081=[[0], [8], [2], [1081]] +8.2.1083=[[0], [8], [2], [1083]] +8.2.11=[[0], [8], [2], [11]] +8.2.1101=[[0], [8], [2], [1101]] +8.2.1104=[[0], [8], [2], [1104]] +8.2.1106=[[0], [8], [2], [1106]] +8.2.1107=[[0], [8], [2], [1107]] +8.2.1110=[[0], [8], [2], [1110]] +8.2.1111=[[0], [8], [2], [1111]] +8.2.1113=[[0], [8], [2], [1113]] +8.2.1114=[[0], [8], [2], [1114]] +8.2.1118=[[0], [8], [2], [1118]] +8.2.1119=[[0], [8], [2], [1119]] +8.2.1121=[[0], [8], [2], [1121]] +8.2.1123=[[0], [8], [2], [1123]] +8.2.1124=[[0], [8], [2], [1124]] +8.2.1125=[[0], [8], [2], [1125]] +8.2.1126=[[0], [8], [2], [1126]] +8.2.1127=[[0], [8], [2], [1127]] +8.2.1128=[[0], [8], [2], [1128]] +8.2.1131=[[0], [8], [2], [1131]] +8.2.1134=[[0], [8], [2], [1134]] +8.2.1136=[[0], [8], [2], [1136]] +8.2.1139=[[0], [8], [2], [1139]] +8.2.1142=[[0], [8], [2], [1142]] +8.2.1144=[[0], [8], [2], [1144]] +8.2.1145=[[0], [8], [2], [1145]] +8.2.1146=[[0], [8], [2], [1146]] +8.2.1148=[[0], [8], [2], [1148]] +8.2.1149=[[0], [8], [2], [1149]] +8.2.12=[[0], [8], [2], [12]] +8.2.1266=[[0], [8], [2], [1266]] +8.2.1268=[[0], [8], [2], [1268]] +8.2.1270=[[0], [8], [2], [1270]] +8.2.1271=[[0], [8], [2], [1271]] +8.2.1272=[[0], [8], [2], [1272]] +8.2.1273=[[0], [8], [2], [1273]] +8.2.1274=[[0], [8], [2], [1274]] +8.2.1276=[[0], [8], [2], [1276]] +8.2.1277=[[0], [8], [2], [1277]] +8.2.1279=[[0], [8], [2], [1279]] +8.2.1280=[[0], [8], [2], [1280]] +8.2.1281=[[0], [8], [2], [1281]] +8.2.1282=[[0], [8], [2], [1282]] +8.2.1283=[[0], [8], [2], [1283]] +8.2.1284=[[0], [8], [2], [1284]] +8.2.1286=[[0], [8], [2], [1286]] +8.2.1287=[[0], [8], [2], [1287]] +8.2.1288=[[0], [8], [2], [1288]] +8.2.1289=[[0], [8], [2], [1289]] +8.2.1290=[[0], [8], [2], [1290]] +8.2.1291=[[0], [8], [2], [1291]] +8.2.1292=[[0], [8], [2], [1292]] +8.2.1294=[[0], [8], [2], [1294]] +8.2.1295=[[0], [8], [2], [1295]] +8.2.1296=[[0], [8], [2], [1296]] +8.2.1297=[[0], [8], [2], [1297]] +8.2.1299=[[0], [8], [2], [1299]] +8.2.13=[[0], [8], [2], [13]] +8.2.1301=[[0], [8], [2], [1301]] +8.2.1302=[[0], [8], [2], [1302]] +8.2.1303=[[0], [8], [2], [1303]] +8.2.1305=[[0], [8], [2], [1305]] +8.2.1306=[[0], [8], [2], [1306]] +8.2.1307=[[0], [8], [2], [1307]] +8.2.1312=[[0], [8], [2], [1312]] +8.2.1313=[[0], [8], [2], [1313]] +8.2.1314=[[0], [8], [2], [1314]] +8.2.1315=[[0], [8], [2], [1315]] +8.2.1317=[[0], [8], [2], [1317]] +8.2.1319=[[0], [8], [2], [1319]] +8.2.1322=[[0], [8], [2], [1322]] +8.2.1324=[[0], [8], [2], [1324]] +8.2.1325=[[0], [8], [2], [1325]] +8.2.1327=[[0], [8], [2], [1327]] +8.2.1328=[[0], [8], [2], [1328]] +8.2.1331=[[0], [8], [2], [1331]] +8.2.1333=[[0], [8], [2], [1333]] +8.2.1334=[[0], [8], [2], [1334]] +8.2.1336=[[0], [8], [2], [1336]] +8.2.1337=[[0], [8], [2], [1337]] +8.2.1341=[[0], [8], [2], [1341]] +8.2.1342=[[0], [8], [2], [1342]] +8.2.1346=[[0], [8], [2], [1346]] +8.2.1347=[[0], [8], [2], [1347]] +8.2.1348=[[0], [8], [2], [1348]] +8.2.1351=[[0], [8], [2], [1351]] +8.2.1352=[[0], [8], [2], [1352]] +8.2.1353=[[0], [8], [2], [1353]] +8.2.1354=[[0], [8], [2], [1354]] +8.2.1356=[[0], [8], [2], [1356]] +8.2.1357=[[0], [8], [2], [1357]] +8.2.1359=[[0], [8], [2], [1359]] +8.2.1360=[[0], [8], [2], [1360]] +8.2.1361=[[0], [8], [2], [1361]] +8.2.1362=[[0], [8], [2], [1362]] +8.2.1364=[[0], [8], [2], [1364]] +8.2.1368=[[0], [8], [2], [1368]] +8.2.1372=[[0], [8], [2], [1372]] +8.2.1373=[[0], [8], [2], [1373]] +8.2.1375=[[0], [8], [2], [1375]] +8.2.1376=[[0], [8], [2], [1376]] +8.2.1377=[[0], [8], [2], [1377]] +8.2.1378=[[0], [8], [2], [1378]] +8.2.1379=[[0], [8], [2], [1379]] +8.2.1381=[[0], [8], [2], [1381]] +8.2.1382=[[0], [8], [2], [1382]] +8.2.1383=[[0], [8], [2], [1383]] +8.2.1385=[[0], [8], [2], [1385]] +8.2.1387=[[0], [8], [2], [1387]] +8.2.1389=[[0], [8], [2], [1389]] +8.2.1390=[[0], [8], [2], [1390]] +8.2.1391=[[0], [8], [2], [1391]] +8.2.1393=[[0], [8], [2], [1393]] +8.2.1395=[[0], [8], [2], [1395]] +8.2.1396=[[0], [8], [2], [1396]] +8.2.1397=[[0], [8], [2], [1397]] +8.2.1398=[[0], [8], [2], [1398]] +8.2.1399=[[0], [8], [2], [1399]] +8.2.14=[[0], [8], [2], [14]] +8.2.1400=[[0], [8], [2], [1400]] +8.2.1404=[[0], [8], [2], [1404]] +8.2.1405=[[0], [8], [2], [1405]] +8.2.1406=[[0], [8], [2], [1406]] +8.2.1407=[[0], [8], [2], [1407]] +8.2.1409=[[0], [8], [2], [1409]] +8.2.1410=[[0], [8], [2], [1410]] +8.2.1411=[[0], [8], [2], [1411]] +8.2.1412=[[0], [8], [2], [1412]] +8.2.1413=[[0], [8], [2], [1413]] +8.2.1419=[[0], [8], [2], [1419]] +8.2.1421=[[0], [8], [2], [1421]] +8.2.1424=[[0], [8], [2], [1424]] +8.2.1425=[[0], [8], [2], [1425]] +8.2.1427=[[0], [8], [2], [1427]] +8.2.1428=[[0], [8], [2], [1428]] +8.2.1429=[[0], [8], [2], [1429]] +8.2.1431=[[0], [8], [2], [1431]] +8.2.1434=[[0], [8], [2], [1434]] +8.2.1435=[[0], [8], [2], [1435]] +8.2.1438=[[0], [8], [2], [1438]] +8.2.1441=[[0], [8], [2], [1441]] +8.2.1443=[[0], [8], [2], [1443]] +8.2.1444=[[0], [8], [2], [1444]] +8.2.1445=[[0], [8], [2], [1445]] +8.2.1446=[[0], [8], [2], [1446]] +8.2.1449=[[0], [8], [2], [1449]] +8.2.1455=[[0], [8], [2], [1455]] +8.2.1456=[[0], [8], [2], [1456]] +8.2.1457=[[0], [8], [2], [1457]] +8.2.1459=[[0], [8], [2], [1459]] +8.2.1460=[[0], [8], [2], [1460]] +8.2.1464=[[0], [8], [2], [1464]] +8.2.1465=[[0], [8], [2], [1465]] +8.2.1466=[[0], [8], [2], [1466]] +8.2.1468=[[0], [8], [2], [1468]] +8.2.1470=[[0], [8], [2], [1470]] +8.2.1471=[[0], [8], [2], [1471]] +8.2.1475=[[0], [8], [2], [1475]] +8.2.1477=[[0], [8], [2], [1477]] +8.2.1479=[[0], [8], [2], [1479]] +8.2.1480=[[0], [8], [2], [1480]] +8.2.1481=[[0], [8], [2], [1481]] +8.2.1482=[[0], [8], [2], [1482]] +8.2.1484=[[0], [8], [2], [1484]] +8.2.1485=[[0], [8], [2], [1485]] +8.2.1486=[[0], [8], [2], [1486]] +8.2.1487=[[0], [8], [2], [1487]] +8.2.1488=[[0], [8], [2], [1488]] +8.2.1489=[[0], [8], [2], [1489]] +8.2.1490=[[0], [8], [2], [1490]] +8.2.1494=[[0], [8], [2], [1494]] +8.2.1495=[[0], [8], [2], [1495]] +8.2.1497=[[0], [8], [2], [1497]] +8.2.1498=[[0], [8], [2], [1498]] +8.2.1499=[[0], [8], [2], [1499]] +8.2.15=[[0], [8], [2], [15]] +8.2.15.4=[[0], [8], [2], [15], [4]] +8.2.1500=[[0], [8], [2], [1500]] +8.2.1501=[[0], [8], [2], [1501]] +8.2.1502=[[0], [8], [2], [1502]] +8.2.1505=[[0], [8], [2], [1505]] +8.2.1507=[[0], [8], [2], [1507]] +8.2.1508=[[0], [8], [2], [1508]] +8.2.1509=[[0], [8], [2], [1509]] +8.2.1510=[[0], [8], [2], [1510]] +8.2.1511=[[0], [8], [2], [1511]] +8.2.1512=[[0], [8], [2], [1512]] +8.2.1513=[[0], [8], [2], [1513]] +8.2.1515=[[0], [8], [2], [1515]] +8.2.1516=[[0], [8], [2], [1516]] +8.2.1517=[[0], [8], [2], [1517]] +8.2.1518=[[0], [8], [2], [1518]] +8.2.1520=[[0], [8], [2], [1520]] +8.2.1522=[[0], [8], [2], [1522]] +8.2.1523=[[0], [8], [2], [1523]] +8.2.1524=[[0], [8], [2], [1524]] +8.2.1526=[[0], [8], [2], [1526]] +8.2.1527=[[0], [8], [2], [1527]] +8.2.1528=[[0], [8], [2], [1528]] +8.2.1530=[[0], [8], [2], [1530]] +8.2.1531=[[0], [8], [2], [1531]] +8.2.1533=[[0], [8], [2], [1533]] +8.2.1534=[[0], [8], [2], [1534]] +8.2.1535=[[0], [8], [2], [1535]] +8.2.1536=[[0], [8], [2], [1536]] +8.2.1537=[[0], [8], [2], [1537]] +8.2.1539=[[0], [8], [2], [1539]] +8.2.1540=[[0], [8], [2], [1540]] +8.2.1541=[[0], [8], [2], [1541]] +8.2.1542=[[0], [8], [2], [1542]] +8.2.1543=[[0], [8], [2], [1543]] +8.2.1544=[[0], [8], [2], [1544]] +8.2.1545=[[0], [8], [2], [1545]] +8.2.1546=[[0], [8], [2], [1546]] +8.2.1548=[[0], [8], [2], [1548]] +8.2.1549=[[0], [8], [2], [1549]] +8.2.1550=[[0], [8], [2], [1550]] +8.2.1558=[[0], [8], [2], [1558]] +8.2.1559=[[0], [8], [2], [1559]] +8.2.1560=[[0], [8], [2], [1560]] +8.2.1561=[[0], [8], [2], [1561]] +8.2.1563=[[0], [8], [2], [1563]] +8.2.1584=[[0], [8], [2], [1584]] +8.2.1586=[[0], [8], [2], [1586]] +8.2.1587=[[0], [8], [2], [1587]] +8.2.1588=[[0], [8], [2], [1588]] +8.2.1591=[[0], [8], [2], [1591]] +8.2.1592=[[0], [8], [2], [1592]] +8.2.1593=[[0], [8], [2], [1593]] +8.2.1594=[[0], [8], [2], [1594]] +8.2.1595=[[0], [8], [2], [1595]] +8.2.1597=[[0], [8], [2], [1597]] +8.2.1598=[[0], [8], [2], [1598]] +8.2.16=[[0], [8], [2], [16]] +8.2.1603=[[0], [8], [2], [1603]] +8.2.1607=[[0], [8], [2], [1607]] +8.2.1612=[[0], [8], [2], [1612]] +8.2.1616=[[0], [8], [2], [1616]] +8.2.1619=[[0], [8], [2], [1619]] +8.2.1620=[[0], [8], [2], [1620]] +8.2.1621=[[0], [8], [2], [1621]] +8.2.1624=[[0], [8], [2], [1624]] +8.2.1626=[[0], [8], [2], [1626]] +8.2.1628=[[0], [8], [2], [1628]] +8.2.1629=[[0], [8], [2], [1629]] +8.2.1630=[[0], [8], [2], [1630]] +8.2.1632=[[0], [8], [2], [1632]] +8.2.1633=[[0], [8], [2], [1633]] +8.2.1634=[[0], [8], [2], [1634]] +8.2.1635=[[0], [8], [2], [1635]] +8.2.1637=[[0], [8], [2], [1637]] +8.2.1638=[[0], [8], [2], [1638]] +8.2.1640=[[0], [8], [2], [1640]] +8.2.1642=[[0], [8], [2], [1642]] +8.2.1643=[[0], [8], [2], [1643]] +8.2.1646=[[0], [8], [2], [1646]] +8.2.1648=[[0], [8], [2], [1648]] +8.2.1649=[[0], [8], [2], [1649]] +8.2.1651=[[0], [8], [2], [1651]] +8.2.1652=[[0], [8], [2], [1652]] +8.2.1653=[[0], [8], [2], [1653]] +8.2.1655=[[0], [8], [2], [1655]] +8.2.1657=[[0], [8], [2], [1657]] +8.2.1659=[[0], [8], [2], [1659]] +8.2.1663=[[0], [8], [2], [1663]] +8.2.1665=[[0], [8], [2], [1665]] +8.2.1666=[[0], [8], [2], [1666]] +8.2.1667=[[0], [8], [2], [1667]] +8.2.1669=[[0], [8], [2], [1669]] +8.2.1671=[[0], [8], [2], [1671]] +8.2.1673=[[0], [8], [2], [1673]] +8.2.1675=[[0], [8], [2], [1675]] +8.2.1678=[[0], [8], [2], [1678]] +8.2.1680=[[0], [8], [2], [1680]] +8.2.1681=[[0], [8], [2], [1681]] +8.2.1683=[[0], [8], [2], [1683]] +8.2.1684=[[0], [8], [2], [1684]] +8.2.1687=[[0], [8], [2], [1687]] +8.2.1688=[[0], [8], [2], [1688]] +8.2.1690=[[0], [8], [2], [1690]] +8.2.1694=[[0], [8], [2], [1694]] +8.2.1697=[[0], [8], [2], [1697]] +8.2.1699=[[0], [8], [2], [1699]] +8.2.1700=[[0], [8], [2], [1700]] +8.2.1701=[[0], [8], [2], [1701]] +8.2.1703=[[0], [8], [2], [1703]] +8.2.1704=[[0], [8], [2], [1704]] +8.2.1705=[[0], [8], [2], [1705]] +8.2.1706=[[0], [8], [2], [1706]] +8.2.1708=[[0], [8], [2], [1708]] +8.2.1709=[[0], [8], [2], [1709]] +8.2.1710=[[0], [8], [2], [1710]] +8.2.1711=[[0], [8], [2], [1711]] +8.2.1712=[[0], [8], [2], [1712]] +8.2.1713=[[0], [8], [2], [1713]] +8.2.1717=[[0], [8], [2], [1717]] +8.2.1719=[[0], [8], [2], [1719]] +8.2.1724=[[0], [8], [2], [1724]] +8.2.1733=[[0], [8], [2], [1733]] +8.2.1736=[[0], [8], [2], [1736]] +8.2.1738=[[0], [8], [2], [1738]] +8.2.1739=[[0], [8], [2], [1739]] +8.2.1741=[[0], [8], [2], [1741]] +8.2.1743=[[0], [8], [2], [1743]] +8.2.1745=[[0], [8], [2], [1745]] +8.2.1746=[[0], [8], [2], [1746]] +8.2.1747=[[0], [8], [2], [1747]] +8.2.1748=[[0], [8], [2], [1748]] +8.2.1749=[[0], [8], [2], [1749]] +8.2.1751=[[0], [8], [2], [1751]] +8.2.1753=[[0], [8], [2], [1753]] +8.2.1755=[[0], [8], [2], [1755]] +8.2.1756=[[0], [8], [2], [1756]] +8.2.1757=[[0], [8], [2], [1757]] +8.2.1758=[[0], [8], [2], [1758]] +8.2.1761=[[0], [8], [2], [1761]] +8.2.1762=[[0], [8], [2], [1762]] +8.2.1764=[[0], [8], [2], [1764]] +8.2.1766=[[0], [8], [2], [1766]] +8.2.1767=[[0], [8], [2], [1767]] +8.2.1768=[[0], [8], [2], [1768]] +8.2.1770=[[0], [8], [2], [1770]] +8.2.1775=[[0], [8], [2], [1775]] +8.2.1777=[[0], [8], [2], [1777]] +8.2.1778=[[0], [8], [2], [1778]] +8.2.1779=[[0], [8], [2], [1779]] +8.2.1781=[[0], [8], [2], [1781]] +8.2.1782=[[0], [8], [2], [1782]] +8.2.1783=[[0], [8], [2], [1783]] +8.2.1784=[[0], [8], [2], [1784]] +8.2.1786=[[0], [8], [2], [1786]] +8.2.1787=[[0], [8], [2], [1787]] +8.2.1789=[[0], [8], [2], [1789]] +8.2.1792=[[0], [8], [2], [1792]] +8.2.1793=[[0], [8], [2], [1793]] +8.2.1794=[[0], [8], [2], [1794]] +8.2.1795=[[0], [8], [2], [1795]] +8.2.1796=[[0], [8], [2], [1796]] +8.2.1797=[[0], [8], [2], [1797]] +8.2.1799=[[0], [8], [2], [1799]] +8.2.1800=[[0], [8], [2], [1800]] +8.2.1801=[[0], [8], [2], [1801]] +8.2.1802=[[0], [8], [2], [1802]] +8.2.1805=[[0], [8], [2], [1805]] +8.2.1808=[[0], [8], [2], [1808]] +8.2.1810=[[0], [8], [2], [1810]] +8.2.1811=[[0], [8], [2], [1811]] +8.2.1812=[[0], [8], [2], [1812]] +8.2.1814=[[0], [8], [2], [1814]] +8.2.1815=[[0], [8], [2], [1815]] +8.2.1816=[[0], [8], [2], [1816]] +8.2.1817=[[0], [8], [2], [1817]] +8.2.1818=[[0], [8], [2], [1818]] +8.2.1819=[[0], [8], [2], [1819]] +8.2.1821=[[0], [8], [2], [1821]] +8.2.1823=[[0], [8], [2], [1823]] +8.2.1824=[[0], [8], [2], [1824]] +8.2.1825=[[0], [8], [2], [1825]] +8.2.1827=[[0], [8], [2], [1827]] +8.2.1829=[[0], [8], [2], [1829]] +8.2.1830=[[0], [8], [2], [1830]] +8.2.1832=[[0], [8], [2], [1832]] +8.2.1833=[[0], [8], [2], [1833]] +8.2.1834=[[0], [8], [2], [1834]] +8.2.1835=[[0], [8], [2], [1835]] +8.2.1837=[[0], [8], [2], [1837]] +8.2.1838=[[0], [8], [2], [1838]] +8.2.1839=[[0], [8], [2], [1839]] +8.2.1840=[[0], [8], [2], [1840]] +8.2.1842=[[0], [8], [2], [1842]] +8.2.1844=[[0], [8], [2], [1844]] +8.2.1845=[[0], [8], [2], [1845]] +8.2.1846=[[0], [8], [2], [1846]] +8.2.1847=[[0], [8], [2], [1847]] +8.2.1848=[[0], [8], [2], [1848]] +8.2.1852=[[0], [8], [2], [1852]] +8.2.1856=[[0], [8], [2], [1856]] +8.2.1858=[[0], [8], [2], [1858]] +8.2.1859=[[0], [8], [2], [1859]] +8.2.1861=[[0], [8], [2], [1861]] +8.2.1862=[[0], [8], [2], [1862]] +8.2.1863=[[0], [8], [2], [1863]] +8.2.1864=[[0], [8], [2], [1864]] +8.2.1865=[[0], [8], [2], [1865]] +8.2.1867=[[0], [8], [2], [1867]] +8.2.1869=[[0], [8], [2], [1869]] +8.2.1873=[[0], [8], [2], [1873]] +8.2.1875=[[0], [8], [2], [1875]] +8.2.1877=[[0], [8], [2], [1877]] +8.2.1880=[[0], [8], [2], [1880]] +8.2.1881=[[0], [8], [2], [1881]] +8.2.1883=[[0], [8], [2], [1883]] +8.2.1885=[[0], [8], [2], [1885]] +8.2.1886=[[0], [8], [2], [1886]] +8.2.1888=[[0], [8], [2], [1888]] +8.2.1890=[[0], [8], [2], [1890]] +8.2.1891=[[0], [8], [2], [1891]] +8.2.1893=[[0], [8], [2], [1893]] +8.2.1895=[[0], [8], [2], [1895]] +8.2.1896=[[0], [8], [2], [1896]] +8.2.1897=[[0], [8], [2], [1897]] +8.2.1899=[[0], [8], [2], [1899]] +8.2.1900=[[0], [8], [2], [1900]] +8.2.1901=[[0], [8], [2], [1901]] +8.2.1902=[[0], [8], [2], [1902]] +8.2.1904=[[0], [8], [2], [1904]] +8.2.1905=[[0], [8], [2], [1905]] +8.2.1910=[[0], [8], [2], [1910]] +8.2.1911=[[0], [8], [2], [1911]] +8.2.1913=[[0], [8], [2], [1913]] +8.2.1920=[[0], [8], [2], [1920]] +8.2.1923=[[0], [8], [2], [1923]] +8.2.1924=[[0], [8], [2], [1924]] +8.2.1928=[[0], [8], [2], [1928]] +8.2.1929=[[0], [8], [2], [1929]] +8.2.1930=[[0], [8], [2], [1930]] +8.2.1931=[[0], [8], [2], [1931]] +8.2.1932=[[0], [8], [2], [1932]] +8.2.1933=[[0], [8], [2], [1933]] +8.2.1941=[[0], [8], [2], [1941]] +8.2.1943=[[0], [8], [2], [1943]] +8.2.1944=[[0], [8], [2], [1944]] +8.2.1975=[[0], [8], [2], [1975]] +8.2.1976=[[0], [8], [2], [1976]] +8.2.1977=[[0], [8], [2], [1977]] +8.2.1978=[[0], [8], [2], [1978]] +8.2.1979=[[0], [8], [2], [1979]] +8.2.1980=[[0], [8], [2], [1980]] +8.2.1981=[[0], [8], [2], [1981]] +8.2.1982=[[0], [8], [2], [1982]] +8.2.1983=[[0], [8], [2], [1983]] +8.2.1984=[[0], [8], [2], [1984]] +8.2.1985=[[0], [8], [2], [1985]] +8.2.1988=[[0], [8], [2], [1988]] +8.2.1989=[[0], [8], [2], [1989]] +8.2.1991=[[0], [8], [2], [1991]] +8.2.1992=[[0], [8], [2], [1992]] +8.2.1994=[[0], [8], [2], [1994]] +8.2.1995=[[0], [8], [2], [1995]] +8.2.1997=[[0], [8], [2], [1997]] +8.2.1999=[[0], [8], [2], [1999]] +8.2.2=[[0], [8], [2], [2]] +8.2.2000=[[0], [8], [2], [2000]] +8.2.2004=[[0], [8], [2], [2004]] +8.2.2005=[[0], [8], [2], [2005]] +8.2.2007=[[0], [8], [2], [2007]] +8.2.2009=[[0], [8], [2], [2009]] +8.2.2010=[[0], [8], [2], [2010]] +8.2.2013=[[0], [8], [2], [2013]] +8.2.2014=[[0], [8], [2], [2014]] +8.2.2017=[[0], [8], [2], [2017]] +8.2.2018=[[0], [8], [2], [2018]] +8.2.2019=[[0], [8], [2], [2019]] +8.2.2021=[[0], [8], [2], [2021]] +8.2.20210902094147=[[0], [8], [2], [20210902094147]] +8.2.20210914115719=[[0], [8], [2], [20210914115719]] +8.2.20210918131710=[[0], [8], [2], [20210918131710]] +8.2.20211014150008=[[0], [8], [2], [20211014150008]] +8.2.20211015115235=[[0], [8], [2], [20211015115235]] +8.2.20211020114435=[[0], [8], [2], [20211020114435]] +8.2.20211103155537=[[0], [8], [2], [20211103155537]] +8.2.20211104054942=[[0], [8], [2], [20211104054942]] +8.2.20211116214159=[[0], [8], [2], [20211116214159]] +8.2.20211222191353=[[0], [8], [2], [20211222191353]] +8.2.2022=[[0], [8], [2], [2022]] +8.2.20220103095339=[[0], [8], [2], [20220103095339]] +8.2.20220204150214=[[0], [8], [2], [20220204150214]] +8.2.2023=[[0], [8], [2], [2023]] +8.2.2025=[[0], [8], [2], [2025]] +8.2.2029=[[0], [8], [2], [2029]] +8.2.2030=[[0], [8], [2], [2030]] +8.2.2031=[[0], [8], [2], [2031]] +8.2.2032=[[0], [8], [2], [2032]] +8.2.2033=[[0], [8], [2], [2033]] +8.2.2034=[[0], [8], [2], [2034]] +8.2.2035=[[0], [8], [2], [2035]] +8.2.2036=[[0], [8], [2], [2036]] +8.2.2038=[[0], [8], [2], [2038]] +8.2.2039=[[0], [8], [2], [2039]] +8.2.2040=[[0], [8], [2], [2040]] +8.2.2041=[[0], [8], [2], [2041]] +8.2.2042=[[0], [8], [2], [2042]] +8.2.2044=[[0], [8], [2], [2044]] +8.2.2045=[[0], [8], [2], [2045]] +8.2.2051=[[0], [8], [2], [2051]] +8.2.2054=[[0], [8], [2], [2054]] +8.2.2055=[[0], [8], [2], [2055]] +8.2.2058=[[0], [8], [2], [2058]] +8.2.2060=[[0], [8], [2], [2060]] +8.2.2061=[[0], [8], [2], [2061]] +8.2.2062=[[0], [8], [2], [2062]] +8.2.2063=[[0], [8], [2], [2063]] +8.2.2065=[[0], [8], [2], [2065]] +8.2.2067=[[0], [8], [2], [2067]] +8.2.2069=[[0], [8], [2], [2069]] +8.2.2070=[[0], [8], [2], [2070]] +8.2.2072=[[0], [8], [2], [2072]] +8.2.2073=[[0], [8], [2], [2073]] +8.2.2077=[[0], [8], [2], [2077]] +8.2.2078=[[0], [8], [2], [2078]] +8.2.2079=[[0], [8], [2], [2079]] +8.2.2080=[[0], [8], [2], [2080]] +8.2.2081=[[0], [8], [2], [2081]] +8.2.2082=[[0], [8], [2], [2082]] +8.2.2083=[[0], [8], [2], [2083]] +8.2.2084=[[0], [8], [2], [2084]] +8.2.2086=[[0], [8], [2], [2086]] +8.2.2087=[[0], [8], [2], [2087]] +8.2.2089=[[0], [8], [2], [2089]] +8.2.2091=[[0], [8], [2], [2091]] +8.2.2092=[[0], [8], [2], [2092]] +8.2.2093=[[0], [8], [2], [2093]] +8.2.2094=[[0], [8], [2], [2094]] +8.2.2095=[[0], [8], [2], [2095]] +8.2.2096=[[0], [8], [2], [2096]] +8.2.2098=[[0], [8], [2], [2098]] +8.2.2099=[[0], [8], [2], [2099]] +8.2.2100=[[0], [8], [2], [2100]] +8.2.2101=[[0], [8], [2], [2101]] +8.2.2102=[[0], [8], [2], [2102]] +8.2.2103=[[0], [8], [2], [2103]] +8.2.2105=[[0], [8], [2], [2105]] +8.2.2106=[[0], [8], [2], [2106]] +8.2.2107=[[0], [8], [2], [2107]] +8.2.2108=[[0], [8], [2], [2108]] +8.2.2110=[[0], [8], [2], [2110]] +8.2.2112=[[0], [8], [2], [2112]] +8.2.2113=[[0], [8], [2], [2113]] +8.2.2115=[[0], [8], [2], [2115]] +8.2.2116=[[0], [8], [2], [2116]] +8.2.2117=[[0], [8], [2], [2117]] +8.2.2118=[[0], [8], [2], [2118]] +8.2.2119=[[0], [8], [2], [2119]] +8.2.2121=[[0], [8], [2], [2121]] +8.2.2122=[[0], [8], [2], [2122]] +8.2.2123=[[0], [8], [2], [2123]] +8.2.2124=[[0], [8], [2], [2124]] +8.2.2125=[[0], [8], [2], [2125]] +8.2.2127=[[0], [8], [2], [2127]] +8.2.2129=[[0], [8], [2], [2129]] +8.2.2130=[[0], [8], [2], [2130]] +8.2.2131=[[0], [8], [2], [2131]] +8.2.2132=[[0], [8], [2], [2132]] +8.2.2133=[[0], [8], [2], [2133]] +8.2.2134=[[0], [8], [2], [2134]] +8.2.2135=[[0], [8], [2], [2135]] +8.2.2136=[[0], [8], [2], [2136]] +8.2.2137=[[0], [8], [2], [2137]] +8.2.2138=[[0], [8], [2], [2138]] +8.2.2139=[[0], [8], [2], [2139]] +8.2.2140=[[0], [8], [2], [2140]] +8.2.2143=[[0], [8], [2], [2143]] +8.2.2144=[[0], [8], [2], [2144]] +8.2.2148=[[0], [8], [2], [2148]] +8.2.2149=[[0], [8], [2], [2149]] +8.2.2151=[[0], [8], [2], [2151]] +8.2.2152=[[0], [8], [2], [2152]] +8.2.2154=[[0], [8], [2], [2154]] +8.2.2156=[[0], [8], [2], [2156]] +8.2.2157=[[0], [8], [2], [2157]] +8.2.2158=[[0], [8], [2], [2158]] +8.2.2159=[[0], [8], [2], [2159]] +8.2.2160=[[0], [8], [2], [2160]] +8.2.2161=[[0], [8], [2], [2161]] +8.2.2165=[[0], [8], [2], [2165]] +8.2.2166=[[0], [8], [2], [2166]] +8.2.2167=[[0], [8], [2], [2167]] +8.2.2169=[[0], [8], [2], [2169]] +8.2.2171=[[0], [8], [2], [2171]] +8.2.2173=[[0], [8], [2], [2173]] +8.2.2176=[[0], [8], [2], [2176]] +8.2.2177=[[0], [8], [2], [2177]] +8.2.2178=[[0], [8], [2], [2178]] +8.2.2181=[[0], [8], [2], [2181]] +8.2.2182=[[0], [8], [2], [2182]] +8.2.2183=[[0], [8], [2], [2183]] +8.2.2184=[[0], [8], [2], [2184]] +8.2.2185=[[0], [8], [2], [2185]] +8.2.2187=[[0], [8], [2], [2187]] +8.2.2190=[[0], [8], [2], [2190]] +8.2.2192=[[0], [8], [2], [2192]] +8.2.2193=[[0], [8], [2], [2193]] +8.2.2194=[[0], [8], [2], [2194]] +8.2.2195=[[0], [8], [2], [2195]] +8.2.2197=[[0], [8], [2], [2197]] +8.2.2198=[[0], [8], [2], [2198]] +8.2.2199=[[0], [8], [2], [2199]] +8.2.2201=[[0], [8], [2], [2201]] +8.2.2202=[[0], [8], [2], [2202]] +8.2.2203=[[0], [8], [2], [2203]] +8.2.2204=[[0], [8], [2], [2204]] +8.2.2205=[[0], [8], [2], [2205]] +8.2.2206=[[0], [8], [2], [2206]] +8.2.2207=[[0], [8], [2], [2207]] +8.2.2208=[[0], [8], [2], [2208]] +8.2.2209=[[0], [8], [2], [2209]] +8.2.2211=[[0], [8], [2], [2211]] +8.2.2212=[[0], [8], [2], [2212]] +8.2.2213=[[0], [8], [2], [2213]] +8.2.2214=[[0], [8], [2], [2214]] +8.2.2215=[[0], [8], [2], [2215]] +8.2.2218=[[0], [8], [2], [2218]] +8.2.2220=[[0], [8], [2], [2220]] +8.2.2221=[[0], [8], [2], [2221]] +8.2.2224=[[0], [8], [2], [2224]] +8.2.2226=[[0], [8], [2], [2226]] +8.2.2227=[[0], [8], [2], [2227]] +8.2.2228=[[0], [8], [2], [2228]] +8.2.2230=[[0], [8], [2], [2230]] +8.2.2233=[[0], [8], [2], [2233]] +8.2.2234=[[0], [8], [2], [2234]] +8.2.2237=[[0], [8], [2], [2237]] +8.2.2238=[[0], [8], [2], [2238]] +8.2.2239=[[0], [8], [2], [2239]] +8.2.2241=[[0], [8], [2], [2241]] +8.2.2243=[[0], [8], [2], [2243]] +8.2.2244=[[0], [8], [2], [2244]] +8.2.2246=[[0], [8], [2], [2246]] +8.2.2248=[[0], [8], [2], [2248]] +8.2.2249=[[0], [8], [2], [2249]] +8.2.2250=[[0], [8], [2], [2250]] +8.2.2251=[[0], [8], [2], [2251]] +8.2.2253=[[0], [8], [2], [2253]] +8.2.2256=[[0], [8], [2], [2256]] +8.2.2257=[[0], [8], [2], [2257]] +8.2.2259=[[0], [8], [2], [2259]] +8.2.2261=[[0], [8], [2], [2261]] +8.2.2263=[[0], [8], [2], [2263]] +8.2.2264=[[0], [8], [2], [2264]] +8.2.2266=[[0], [8], [2], [2266]] +8.2.2267=[[0], [8], [2], [2267]] +8.2.2268=[[0], [8], [2], [2268]] +8.2.2269=[[0], [8], [2], [2269]] +8.2.2270=[[0], [8], [2], [2270]] +8.2.2271=[[0], [8], [2], [2271]] +8.2.2274=[[0], [8], [2], [2274]] +8.2.2277=[[0], [8], [2], [2277]] +8.2.2280=[[0], [8], [2], [2280]] +8.2.2282=[[0], [8], [2], [2282]] +8.2.2283=[[0], [8], [2], [2283]] +8.2.2284=[[0], [8], [2], [2284]] +8.2.2285=[[0], [8], [2], [2285]] +8.2.2286=[[0], [8], [2], [2286]] +8.2.2288=[[0], [8], [2], [2288]] +8.2.2289=[[0], [8], [2], [2289]] +8.2.2290=[[0], [8], [2], [2290]] +8.2.2291=[[0], [8], [2], [2291]] +8.2.2293=[[0], [8], [2], [2293]] +8.2.2294=[[0], [8], [2], [2294]] +8.2.2295=[[0], [8], [2], [2295]] +8.2.2298=[[0], [8], [2], [2298]] +8.2.2299=[[0], [8], [2], [2299]] +8.2.2300=[[0], [8], [2], [2300]] +8.2.2301=[[0], [8], [2], [2301]] +8.2.2302=[[0], [8], [2], [2302]] +8.2.2304=[[0], [8], [2], [2304]] +8.2.2305=[[0], [8], [2], [2305]] +8.2.2306=[[0], [8], [2], [2306]] +8.2.2307=[[0], [8], [2], [2307]] +8.2.2310=[[0], [8], [2], [2310]] +8.2.2311=[[0], [8], [2], [2311]] +8.2.2312=[[0], [8], [2], [2312]] +8.2.2314=[[0], [8], [2], [2314]] +8.2.2315=[[0], [8], [2], [2315]] +8.2.2316=[[0], [8], [2], [2316]] +8.2.2317=[[0], [8], [2], [2317]] +8.2.2318=[[0], [8], [2], [2318]] +8.2.2319=[[0], [8], [2], [2319]] +8.2.2320=[[0], [8], [2], [2320]] +8.2.2321=[[0], [8], [2], [2321]] +8.2.2322=[[0], [8], [2], [2322]] +8.2.2324=[[0], [8], [2], [2324]] +8.2.2326=[[0], [8], [2], [2326]] +8.2.2327=[[0], [8], [2], [2327]] +8.2.2328=[[0], [8], [2], [2328]] +8.2.2330=[[0], [8], [2], [2330]] +8.2.2331=[[0], [8], [2], [2331]] +8.2.2332=[[0], [8], [2], [2332]] +8.2.2335=[[0], [8], [2], [2335]] +8.2.2340=[[0], [8], [2], [2340]] +8.2.2343=[[0], [8], [2], [2343]] +8.2.2344=[[0], [8], [2], [2344]] +8.2.2347=[[0], [8], [2], [2347]] +8.2.2349=[[0], [8], [2], [2349]] +8.2.2352=[[0], [8], [2], [2352]] +8.2.2353=[[0], [8], [2], [2353]] +8.2.2355=[[0], [8], [2], [2355]] +8.2.2357=[[0], [8], [2], [2357]] +8.2.2358=[[0], [8], [2], [2358]] +8.2.2359=[[0], [8], [2], [2359]] +8.2.2361=[[0], [8], [2], [2361]] +8.2.2362=[[0], [8], [2], [2362]] +8.2.2363=[[0], [8], [2], [2363]] +8.2.2367=[[0], [8], [2], [2367]] +8.2.2368=[[0], [8], [2], [2368]] +8.2.2369=[[0], [8], [2], [2369]] +8.2.2371=[[0], [8], [2], [2371]] +8.2.2372=[[0], [8], [2], [2372]] +8.2.2374=[[0], [8], [2], [2374]] +8.2.2375=[[0], [8], [2], [2375]] +8.2.2377=[[0], [8], [2], [2377]] +8.2.2380=[[0], [8], [2], [2380]] +8.2.2382=[[0], [8], [2], [2382]] +8.2.2384=[[0], [8], [2], [2384]] +8.2.2385=[[0], [8], [2], [2385]] +8.2.2387=[[0], [8], [2], [2387]] +8.2.2388=[[0], [8], [2], [2388]] +8.2.2389=[[0], [8], [2], [2389]] +8.2.2390=[[0], [8], [2], [2390]] +8.2.2391=[[0], [8], [2], [2391]] +8.2.2393=[[0], [8], [2], [2393]] +8.2.2394=[[0], [8], [2], [2394]] +8.2.2398=[[0], [8], [2], [2398]] +8.2.2400=[[0], [8], [2], [2400]] +8.2.2401=[[0], [8], [2], [2401]] +8.2.2402=[[0], [8], [2], [2402]] +8.2.2403=[[0], [8], [2], [2403]] +8.2.2406=[[0], [8], [2], [2406]] +8.2.2408=[[0], [8], [2], [2408]] +8.2.2409=[[0], [8], [2], [2409]] +8.2.2410=[[0], [8], [2], [2410]] +8.2.2411=[[0], [8], [2], [2411]] +8.2.2412=[[0], [8], [2], [2412]] +8.2.2415=[[0], [8], [2], [2415]] +8.2.2417=[[0], [8], [2], [2417]] +8.2.2418=[[0], [8], [2], [2418]] +8.2.2419=[[0], [8], [2], [2419]] +8.2.2423=[[0], [8], [2], [2423]] +8.2.2424=[[0], [8], [2], [2424]] +8.2.2425=[[0], [8], [2], [2425]] +8.2.2427=[[0], [8], [2], [2427]] +8.2.2428=[[0], [8], [2], [2428]] +8.2.2430=[[0], [8], [2], [2430]] +8.2.2431=[[0], [8], [2], [2431]] +8.2.2432=[[0], [8], [2], [2432]] +8.2.2433=[[0], [8], [2], [2433]] +8.2.2434=[[0], [8], [2], [2434]] +8.2.2436=[[0], [8], [2], [2436]] +8.2.2438=[[0], [8], [2], [2438]] +8.2.2440=[[0], [8], [2], [2440]] +8.2.2441=[[0], [8], [2], [2441]] +8.2.2442=[[0], [8], [2], [2442]] +8.2.2443=[[0], [8], [2], [2443]] +8.2.2445=[[0], [8], [2], [2445]] +8.2.2446=[[0], [8], [2], [2446]] +8.2.2451=[[0], [8], [2], [2451]] +8.2.2453=[[0], [8], [2], [2453]] +8.2.2462=[[0], [8], [2], [2462]] +8.2.2464=[[0], [8], [2], [2464]] +8.2.2465=[[0], [8], [2], [2465]] +8.2.2466=[[0], [8], [2], [2466]] +8.2.2467=[[0], [8], [2], [2467]] +8.2.2468=[[0], [8], [2], [2468]] +8.2.2470=[[0], [8], [2], [2470]] +8.2.2471=[[0], [8], [2], [2471]] +8.2.2475=[[0], [8], [2], [2475]] +8.2.2476=[[0], [8], [2], [2476]] +8.2.2479=[[0], [8], [2], [2479]] +8.2.2484=[[0], [8], [2], [2484]] +8.2.2486=[[0], [8], [2], [2486]] +8.2.2488=[[0], [8], [2], [2488]] +8.2.2489=[[0], [8], [2], [2489]] +8.2.2490=[[0], [8], [2], [2490]] +8.2.2491=[[0], [8], [2], [2491]] +8.2.2492=[[0], [8], [2], [2492]] +8.2.2493=[[0], [8], [2], [2493]] +8.2.2494=[[0], [8], [2], [2494]] +8.2.2497=[[0], [8], [2], [2497]] +8.2.2498=[[0], [8], [2], [2498]] +8.2.2500=[[0], [8], [2], [2500]] +8.2.2501=[[0], [8], [2], [2501]] +8.2.2505=[[0], [8], [2], [2505]] +8.2.2506=[[0], [8], [2], [2506]] +8.2.2508=[[0], [8], [2], [2508]] +8.2.2509=[[0], [8], [2], [2509]] +8.2.2510=[[0], [8], [2], [2510]] +8.2.2514=[[0], [8], [2], [2514]] +8.2.2516=[[0], [8], [2], [2516]] +8.2.2517=[[0], [8], [2], [2517]] +8.2.2519=[[0], [8], [2], [2519]] +8.2.2520=[[0], [8], [2], [2520]] +8.2.2521=[[0], [8], [2], [2521]] +8.2.2523=[[0], [8], [2], [2523]] +8.2.2525=[[0], [8], [2], [2525]] +8.2.2526=[[0], [8], [2], [2526]] +8.2.2527=[[0], [8], [2], [2527]] +8.2.2528=[[0], [8], [2], [2528]] +8.2.2529=[[0], [8], [2], [2529]] +8.2.2530=[[0], [8], [2], [2530]] +8.2.2531=[[0], [8], [2], [2531]] +8.2.2532=[[0], [8], [2], [2532]] +8.2.2533=[[0], [8], [2], [2533]] +8.2.2536=[[0], [8], [2], [2536]] +8.2.2537=[[0], [8], [2], [2537]] +8.2.2538=[[0], [8], [2], [2538]] +8.2.2540=[[0], [8], [2], [2540]] +8.2.2541=[[0], [8], [2], [2541]] +8.2.2543=[[0], [8], [2], [2543]] +8.2.2544=[[0], [8], [2], [2544]] +8.2.2545=[[0], [8], [2], [2545]] +8.2.2548=[[0], [8], [2], [2548]] +8.2.2550=[[0], [8], [2], [2550]] +8.2.2551=[[0], [8], [2], [2551]] +8.2.2553=[[0], [8], [2], [2553]] +8.2.2556=[[0], [8], [2], [2556]] +8.2.2557=[[0], [8], [2], [2557]] +8.2.2558=[[0], [8], [2], [2558]] +8.2.2559=[[0], [8], [2], [2559]] +8.2.2560=[[0], [8], [2], [2560]] +8.2.2561=[[0], [8], [2], [2561]] +8.2.2562=[[0], [8], [2], [2562]] +8.2.2563=[[0], [8], [2], [2563]] +8.2.2564=[[0], [8], [2], [2564]] +8.2.2565=[[0], [8], [2], [2565]] +8.2.2566=[[0], [8], [2], [2566]] +8.2.2567=[[0], [8], [2], [2567]] +8.2.2569=[[0], [8], [2], [2569]] +8.2.2572=[[0], [8], [2], [2572]] +8.2.2573=[[0], [8], [2], [2573]] +8.2.2574=[[0], [8], [2], [2574]] +8.2.2575=[[0], [8], [2], [2575]] +8.2.2576=[[0], [8], [2], [2576]] +8.2.2578=[[0], [8], [2], [2578]] +8.2.2580=[[0], [8], [2], [2580]] +8.2.2582=[[0], [8], [2], [2582]] +8.2.2583=[[0], [8], [2], [2583]] +8.2.2585=[[0], [8], [2], [2585]] +8.2.2589=[[0], [8], [2], [2589]] +8.2.2590=[[0], [8], [2], [2590]] +8.2.2595=[[0], [8], [2], [2595]] +8.2.2596=[[0], [8], [2], [2596]] +8.2.2600=[[0], [8], [2], [2600]] +8.2.2601=[[0], [8], [2], [2601]] +8.2.2602=[[0], [8], [2], [2602]] +8.2.2603=[[0], [8], [2], [2603]] +8.2.2604=[[0], [8], [2], [2604]] +8.2.2606=[[0], [8], [2], [2606]] +8.2.2607=[[0], [8], [2], [2607]] +8.2.2608=[[0], [8], [2], [2608]] +8.2.2609=[[0], [8], [2], [2609]] +8.2.2610=[[0], [8], [2], [2610]] +8.2.2611=[[0], [8], [2], [2611]] +8.2.2615=[[0], [8], [2], [2615]] +8.2.2622=[[0], [8], [2], [2622]] +8.2.2623=[[0], [8], [2], [2623]] +8.2.2625=[[0], [8], [2], [2625]] +8.2.2627=[[0], [8], [2], [2627]] +8.2.2628=[[0], [8], [2], [2628]] +8.2.2629=[[0], [8], [2], [2629]] +8.2.2630=[[0], [8], [2], [2630]] +8.2.2631=[[0], [8], [2], [2631]] +8.2.2632=[[0], [8], [2], [2632]] +8.2.2634=[[0], [8], [2], [2634]] +8.2.2635=[[0], [8], [2], [2635]] +8.2.2637=[[0], [8], [2], [2637]] +8.2.2639=[[0], [8], [2], [2639]] +8.2.2642=[[0], [8], [2], [2642]] +8.2.2647=[[0], [8], [2], [2647]] +8.2.2648=[[0], [8], [2], [2648]] +8.2.2649=[[0], [8], [2], [2649]] +8.2.2650=[[0], [8], [2], [2650]] +8.2.2653=[[0], [8], [2], [2653]] +8.2.2655=[[0], [8], [2], [2655]] +8.2.2657=[[0], [8], [2], [2657]] +8.2.2659=[[0], [8], [2], [2659]] +8.2.2660=[[0], [8], [2], [2660]] +8.2.2661=[[0], [8], [2], [2661]] +8.2.2662=[[0], [8], [2], [2662]] +8.2.2663=[[0], [8], [2], [2663]] +8.2.2665=[[0], [8], [2], [2665]] +8.2.2666=[[0], [8], [2], [2666]] +8.2.2668=[[0], [8], [2], [2668]] +8.2.2671=[[0], [8], [2], [2671]] +8.2.2673=[[0], [8], [2], [2673]] +8.2.2674=[[0], [8], [2], [2674]] +8.2.2676=[[0], [8], [2], [2676]] +8.2.2677=[[0], [8], [2], [2677]] +8.2.2678=[[0], [8], [2], [2678]] +8.2.2679=[[0], [8], [2], [2679]] +8.2.2681=[[0], [8], [2], [2681]] +8.2.2684=[[0], [8], [2], [2684]] +8.2.2685=[[0], [8], [2], [2685]] +8.2.2687=[[0], [8], [2], [2687]] +8.2.2688=[[0], [8], [2], [2688]] +8.2.2689=[[0], [8], [2], [2689]] +8.2.2691=[[0], [8], [2], [2691]] +8.2.2693=[[0], [8], [2], [2693]] +8.2.2694=[[0], [8], [2], [2694]] +8.2.2695=[[0], [8], [2], [2695]] +8.2.2703=[[0], [8], [2], [2703]] +8.2.2705=[[0], [8], [2], [2705]] +8.2.2706=[[0], [8], [2], [2706]] +8.2.2707=[[0], [8], [2], [2707]] +8.2.2709=[[0], [8], [2], [2709]] +8.2.2710=[[0], [8], [2], [2710]] +8.2.2712=[[0], [8], [2], [2712]] +8.2.2713=[[0], [8], [2], [2713]] +8.2.2715=[[0], [8], [2], [2715]] +8.2.2718=[[0], [8], [2], [2718]] +8.2.2719=[[0], [8], [2], [2719]] +8.2.2721=[[0], [8], [2], [2721]] +8.2.2724=[[0], [8], [2], [2724]] +8.2.2725=[[0], [8], [2], [2725]] +8.2.2728=[[0], [8], [2], [2728]] +8.2.2734=[[0], [8], [2], [2734]] +8.2.2735=[[0], [8], [2], [2735]] +8.2.2736=[[0], [8], [2], [2736]] +8.2.2738=[[0], [8], [2], [2738]] +8.2.2739=[[0], [8], [2], [2739]] +8.2.2740=[[0], [8], [2], [2740]] +8.2.2741=[[0], [8], [2], [2741]] +8.2.2743=[[0], [8], [2], [2743]] +8.2.2745=[[0], [8], [2], [2745]] +8.2.2747=[[0], [8], [2], [2747]] +8.2.2752=[[0], [8], [2], [2752]] +8.2.2753=[[0], [8], [2], [2753]] +8.2.2754=[[0], [8], [2], [2754]] +8.2.2755=[[0], [8], [2], [2755]] +8.2.2756=[[0], [8], [2], [2756]] +8.2.2758=[[0], [8], [2], [2758]] +8.2.2760=[[0], [8], [2], [2760]] +8.2.2761=[[0], [8], [2], [2761]] +8.2.2763=[[0], [8], [2], [2763]] +8.2.2764=[[0], [8], [2], [2764]] +8.2.2767=[[0], [8], [2], [2767]] +8.2.2769=[[0], [8], [2], [2769]] +8.2.2770=[[0], [8], [2], [2770]] +8.2.2771=[[0], [8], [2], [2771]] +8.2.2772=[[0], [8], [2], [2772]] +8.2.2773=[[0], [8], [2], [2773]] +8.2.2774=[[0], [8], [2], [2774]] +8.2.2775=[[0], [8], [2], [2775]] +8.2.2776=[[0], [8], [2], [2776]] +8.2.2778=[[0], [8], [2], [2778]] +8.2.2779=[[0], [8], [2], [2779]] +8.2.2780=[[0], [8], [2], [2780]] +8.2.2781=[[0], [8], [2], [2781]] +8.2.2783=[[0], [8], [2], [2783]] +8.2.2784=[[0], [8], [2], [2784]] +8.2.2786=[[0], [8], [2], [2786]] +8.2.2787=[[0], [8], [2], [2787]] +8.2.2791=[[0], [8], [2], [2791]] +8.2.2792=[[0], [8], [2], [2792]] +8.2.2795=[[0], [8], [2], [2795]] +8.2.2798=[[0], [8], [2], [2798]] +8.2.2799=[[0], [8], [2], [2799]] +8.2.2800=[[0], [8], [2], [2800]] +8.2.2801=[[0], [8], [2], [2801]] +8.2.2802=[[0], [8], [2], [2802]] +8.2.2803=[[0], [8], [2], [2803]] +8.2.2804=[[0], [8], [2], [2804]] +8.2.2805=[[0], [8], [2], [2805]] +8.2.2808=[[0], [8], [2], [2808]] +8.2.2810=[[0], [8], [2], [2810]] +8.2.2811=[[0], [8], [2], [2811]] +8.2.2814=[[0], [8], [2], [2814]] +8.2.2815=[[0], [8], [2], [2815]] +8.2.2817=[[0], [8], [2], [2817]] +8.2.2818=[[0], [8], [2], [2818]] +8.2.2819=[[0], [8], [2], [2819]] +8.2.2820=[[0], [8], [2], [2820]] +8.2.2821=[[0], [8], [2], [2821]] +8.2.2822=[[0], [8], [2], [2822]] +8.2.2823=[[0], [8], [2], [2823]] +8.2.2824=[[0], [8], [2], [2824]] +8.2.2825=[[0], [8], [2], [2825]] +8.2.2827=[[0], [8], [2], [2827]] +8.2.2831=[[0], [8], [2], [2831]] +8.2.2832=[[0], [8], [2], [2832]] +8.2.2833=[[0], [8], [2], [2833]] +8.2.2834=[[0], [8], [2], [2834]] +8.2.2838=[[0], [8], [2], [2838]] +8.2.2840=[[0], [8], [2], [2840]] +8.2.2841=[[0], [8], [2], [2841]] +8.2.2842=[[0], [8], [2], [2842]] +8.2.2844=[[0], [8], [2], [2844]] +8.2.2845=[[0], [8], [2], [2845]] +8.2.2846=[[0], [8], [2], [2846]] +8.2.2847=[[0], [8], [2], [2847]] +8.2.2848=[[0], [8], [2], [2848]] +8.2.2850=[[0], [8], [2], [2850]] +8.2.2860=[[0], [8], [2], [2860]] +8.2.2863=[[0], [8], [2], [2863]] +8.2.2864=[[0], [8], [2], [2864]] +8.2.2865=[[0], [8], [2], [2865]] +8.2.2867=[[0], [8], [2], [2867]] +8.2.2868=[[0], [8], [2], [2868]] +8.2.2869=[[0], [8], [2], [2869]] +8.2.2871=[[0], [8], [2], [2871]] +8.2.2872=[[0], [8], [2], [2872]] +8.2.2873=[[0], [8], [2], [2873]] +8.2.2874=[[0], [8], [2], [2874]] +8.2.2875=[[0], [8], [2], [2875]] +8.2.2876=[[0], [8], [2], [2876]] +8.2.2877=[[0], [8], [2], [2877]] +8.2.2878=[[0], [8], [2], [2878]] +8.2.2879=[[0], [8], [2], [2879]] +8.2.2881=[[0], [8], [2], [2881]] +8.2.2882=[[0], [8], [2], [2882]] +8.2.2884=[[0], [8], [2], [2884]] +8.2.2885=[[0], [8], [2], [2885]] +8.2.2889=[[0], [8], [2], [2889]] +8.2.2890=[[0], [8], [2], [2890]] +8.2.2891=[[0], [8], [2], [2891]] +8.2.2893=[[0], [8], [2], [2893]] +8.2.2895=[[0], [8], [2], [2895]] +8.2.2896=[[0], [8], [2], [2896]] +8.2.2897=[[0], [8], [2], [2897]] +8.2.2898=[[0], [8], [2], [2898]] +8.2.2899=[[0], [8], [2], [2899]] +8.2.2900=[[0], [8], [2], [2900]] +8.2.2901=[[0], [8], [2], [2901]] +8.2.2903=[[0], [8], [2], [2903]] +8.2.2905=[[0], [8], [2], [2905]] +8.2.2907=[[0], [8], [2], [2907]] +8.2.2908=[[0], [8], [2], [2908]] +8.2.2910=[[0], [8], [2], [2910]] +8.2.2911=[[0], [8], [2], [2911]] +8.2.2912=[[0], [8], [2], [2912]] +8.2.2913=[[0], [8], [2], [2913]] +8.2.2914=[[0], [8], [2], [2914]] +8.2.2915=[[0], [8], [2], [2915]] +8.2.2917=[[0], [8], [2], [2917]] +8.2.2918=[[0], [8], [2], [2918]] +8.2.2920=[[0], [8], [2], [2920]] +8.2.2921=[[0], [8], [2], [2921]] +8.2.2922=[[0], [8], [2], [2922]] +8.2.2925=[[0], [8], [2], [2925]] +8.2.2928=[[0], [8], [2], [2928]] +8.2.2929=[[0], [8], [2], [2929]] +8.2.2930=[[0], [8], [2], [2930]] +8.2.2932=[[0], [8], [2], [2932]] +8.2.2933=[[0], [8], [2], [2933]] +8.2.2934=[[0], [8], [2], [2934]] +8.2.2937=[[0], [8], [2], [2937]] +8.2.2938=[[0], [8], [2], [2938]] +8.2.2942=[[0], [8], [2], [2942]] +8.2.2943=[[0], [8], [2], [2943]] +8.2.2946=[[0], [8], [2], [2946]] +8.2.2948=[[0], [8], [2], [2948]] +8.2.2949=[[0], [8], [2], [2949]] +8.2.2955=[[0], [8], [2], [2955]] +8.2.2956=[[0], [8], [2], [2956]] +8.2.2958=[[0], [8], [2], [2958]] +8.2.2961=[[0], [8], [2], [2961]] +8.2.2962=[[0], [8], [2], [2962]] +8.2.2965=[[0], [8], [2], [2965]] +8.2.2966=[[0], [8], [2], [2966]] +8.2.2967=[[0], [8], [2], [2967]] +8.2.2968=[[0], [8], [2], [2968]] +8.2.2971=[[0], [8], [2], [2971]] +8.2.2973=[[0], [8], [2], [2973]] +8.2.2976=[[0], [8], [2], [2976]] +8.2.2978=[[0], [8], [2], [2978]] +8.2.2982=[[0], [8], [2], [2982]] +8.2.2983=[[0], [8], [2], [2983]] +8.2.2984=[[0], [8], [2], [2984]] +8.2.2989=[[0], [8], [2], [2989]] +8.2.2991=[[0], [8], [2], [2991]] +8.2.2993=[[0], [8], [2], [2993]] +8.2.2995=[[0], [8], [2], [2995]] +8.2.2998=[[0], [8], [2], [2998]] +8.2.2999=[[0], [8], [2], [2999]] +8.2.3=[[0], [8], [2], [3]] +8.2.3001=[[0], [8], [2], [3001]] +8.2.3004=[[0], [8], [2], [3004]] +8.2.3006=[[0], [8], [2], [3006]] +8.2.3008=[[0], [8], [2], [3008]] +8.2.3009=[[0], [8], [2], [3009]] +8.2.3012=[[0], [8], [2], [3012]] +8.2.3013=[[0], [8], [2], [3013]] +8.2.3014=[[0], [8], [2], [3014]] +8.2.3015=[[0], [8], [2], [3015]] +8.2.3018=[[0], [8], [2], [3018]] +8.2.3020=[[0], [8], [2], [3020]] +8.2.3021=[[0], [8], [2], [3021]] +8.2.3024=[[0], [8], [2], [3024]] +8.2.3025=[[0], [8], [2], [3025]] +8.2.3027=[[0], [8], [2], [3027]] +8.2.3028=[[0], [8], [2], [3028]] +8.2.3032=[[0], [8], [2], [3032]] +8.2.3033=[[0], [8], [2], [3033]] +8.2.3034=[[0], [8], [2], [3034]] +8.2.3038=[[0], [8], [2], [3038]] +8.2.3040=[[0], [8], [2], [3040]] +8.2.3043=[[0], [8], [2], [3043]] +8.2.3044=[[0], [8], [2], [3044]] +8.2.3045=[[0], [8], [2], [3045]] +8.2.3046=[[0], [8], [2], [3046]] +8.2.3047=[[0], [8], [2], [3047]] +8.2.3048=[[0], [8], [2], [3048]] +8.2.3049=[[0], [8], [2], [3049]] +8.2.3053=[[0], [8], [2], [3053]] +8.2.3055=[[0], [8], [2], [3055]] +8.2.3056=[[0], [8], [2], [3056]] +8.2.3057=[[0], [8], [2], [3057]] +8.2.3060=[[0], [8], [2], [3060]] +8.2.3062=[[0], [8], [2], [3062]] +8.2.3066=[[0], [8], [2], [3066]] +8.2.3067=[[0], [8], [2], [3067]] +8.2.3070=[[0], [8], [2], [3070]] +8.2.3072=[[0], [8], [2], [3072]] +8.2.3075=[[0], [8], [2], [3075]] +8.2.3076=[[0], [8], [2], [3076]] +8.2.3077=[[0], [8], [2], [3077]] +8.2.3080=[[0], [8], [2], [3080]] +8.2.3081=[[0], [8], [2], [3081]] +8.2.3082=[[0], [8], [2], [3082]] +8.2.3083=[[0], [8], [2], [3083]] +8.2.3084=[[0], [8], [2], [3084]] +8.2.3086=[[0], [8], [2], [3086]] +8.2.3088=[[0], [8], [2], [3088]] +8.2.3089=[[0], [8], [2], [3089]] +8.2.3090=[[0], [8], [2], [3090]] +8.2.3092=[[0], [8], [2], [3092]] +8.2.3094=[[0], [8], [2], [3094]] +8.2.3095=[[0], [8], [2], [3095]] +8.2.3097=[[0], [8], [2], [3097]] +8.2.3099=[[0], [8], [2], [3099]] +8.2.3103=[[0], [8], [2], [3103]] +8.2.3104=[[0], [8], [2], [3104]] +8.2.3105=[[0], [8], [2], [3105]] +8.2.3107=[[0], [8], [2], [3107]] +8.2.3108=[[0], [8], [2], [3108]] +8.2.3109=[[0], [8], [2], [3109]] +8.2.3111=[[0], [8], [2], [3111]] +8.2.3113=[[0], [8], [2], [3113]] +8.2.3114=[[0], [8], [2], [3114]] +8.2.3115=[[0], [8], [2], [3115]] +8.2.3118=[[0], [8], [2], [3118]] +8.2.3119=[[0], [8], [2], [3119]] +8.2.3120=[[0], [8], [2], [3120]] +8.2.3122=[[0], [8], [2], [3122]] +8.2.3125=[[0], [8], [2], [3125]] +8.2.3126=[[0], [8], [2], [3126]] +8.2.3129=[[0], [8], [2], [3129]] +8.2.3131=[[0], [8], [2], [3131]] +8.2.3132=[[0], [8], [2], [3132]] +8.2.3134=[[0], [8], [2], [3134]] +8.2.3135=[[0], [8], [2], [3135]] +8.2.3136=[[0], [8], [2], [3136]] +8.2.3137=[[0], [8], [2], [3137]] +8.2.3138=[[0], [8], [2], [3138]] +8.2.3139=[[0], [8], [2], [3139]] +8.2.3140=[[0], [8], [2], [3140]] +8.2.3142=[[0], [8], [2], [3142]] +8.2.3143=[[0], [8], [2], [3143]] +8.2.3145=[[0], [8], [2], [3145]] +8.2.3147=[[0], [8], [2], [3147]] +8.2.3149=[[0], [8], [2], [3149]] +8.2.3150=[[0], [8], [2], [3150]] +8.2.3152=[[0], [8], [2], [3152]] +8.2.3154=[[0], [8], [2], [3154]] +8.2.3155=[[0], [8], [2], [3155]] +8.2.3156=[[0], [8], [2], [3156]] +8.2.3157=[[0], [8], [2], [3157]] +8.2.3158=[[0], [8], [2], [3158]] +8.2.3159=[[0], [8], [2], [3159]] +8.2.3160=[[0], [8], [2], [3160]] +8.2.3161=[[0], [8], [2], [3161]] +8.2.3163=[[0], [8], [2], [3163]] +8.2.3165=[[0], [8], [2], [3165]] +8.2.3166=[[0], [8], [2], [3166]] +8.2.3168=[[0], [8], [2], [3168]] +8.2.3169=[[0], [8], [2], [3169]] +8.2.3171=[[0], [8], [2], [3171]] +8.2.3172=[[0], [8], [2], [3172]] +8.2.3173=[[0], [8], [2], [3173]] +8.2.3174=[[0], [8], [2], [3174]] +8.2.3175=[[0], [8], [2], [3175]] +8.2.3176=[[0], [8], [2], [3176]] +8.2.3177=[[0], [8], [2], [3177]] +8.2.3178=[[0], [8], [2], [3178]] +8.2.3179=[[0], [8], [2], [3179]] +8.2.3180=[[0], [8], [2], [3180]] +8.2.3182=[[0], [8], [2], [3182]] +8.2.3183=[[0], [8], [2], [3183]] +8.2.3185=[[0], [8], [2], [3185]] +8.2.3187=[[0], [8], [2], [3187]] +8.2.3188=[[0], [8], [2], [3188]] +8.2.3189=[[0], [8], [2], [3189]] +8.2.3192=[[0], [8], [2], [3192]] +8.2.3194=[[0], [8], [2], [3194]] +8.2.3196=[[0], [8], [2], [3196]] +8.2.3197=[[0], [8], [2], [3197]] +8.2.3198=[[0], [8], [2], [3198]] +8.2.3199=[[0], [8], [2], [3199]] +8.2.3201=[[0], [8], [2], [3201]] +8.2.3203=[[0], [8], [2], [3203]] +8.2.3204=[[0], [8], [2], [3204]] +8.2.3205=[[0], [8], [2], [3205]] +8.2.3206=[[0], [8], [2], [3206]] +8.2.3207=[[0], [8], [2], [3207]] +8.2.3210=[[0], [8], [2], [3210]] +8.2.3211=[[0], [8], [2], [3211]] +8.2.3213=[[0], [8], [2], [3213]] +8.2.3215=[[0], [8], [2], [3215]] +8.2.3219=[[0], [8], [2], [3219]] +8.2.3221=[[0], [8], [2], [3221]] +8.2.3222=[[0], [8], [2], [3222]] +8.2.3223=[[0], [8], [2], [3223]] +8.2.3226=[[0], [8], [2], [3226]] +8.2.3227=[[0], [8], [2], [3227]] +8.2.3228=[[0], [8], [2], [3228]] +8.2.3232=[[0], [8], [2], [3232]] +8.2.3233=[[0], [8], [2], [3233]] +8.2.3234=[[0], [8], [2], [3234]] +8.2.3235=[[0], [8], [2], [3235]] +8.2.3236=[[0], [8], [2], [3236]] +8.2.3237=[[0], [8], [2], [3237]] +8.2.3238=[[0], [8], [2], [3238]] +8.2.3239=[[0], [8], [2], [3239]] +8.2.3242=[[0], [8], [2], [3242]] +8.2.3247=[[0], [8], [2], [3247]] +8.2.3249=[[0], [8], [2], [3249]] +8.2.3250=[[0], [8], [2], [3250]] +8.2.3253=[[0], [8], [2], [3253]] +8.2.3255=[[0], [8], [2], [3255]] +8.2.3257=[[0], [8], [2], [3257]] +8.2.3258=[[0], [8], [2], [3258]] +8.2.3260=[[0], [8], [2], [3260]] +8.2.3263=[[0], [8], [2], [3263]] +8.2.3264=[[0], [8], [2], [3264]] +8.2.3266=[[0], [8], [2], [3266]] +8.2.3268=[[0], [8], [2], [3268]] +8.2.3269=[[0], [8], [2], [3269]] +8.2.3270=[[0], [8], [2], [3270]] +8.2.3272=[[0], [8], [2], [3272]] +8.2.3273=[[0], [8], [2], [3273]] +8.2.3274=[[0], [8], [2], [3274]] +8.2.3275=[[0], [8], [2], [3275]] +8.2.3278=[[0], [8], [2], [3278]] +8.2.3279=[[0], [8], [2], [3279]] +8.2.3281=[[0], [8], [2], [3281]] +8.2.3282=[[0], [8], [2], [3282]] +8.2.3283=[[0], [8], [2], [3283]] +8.2.3284=[[0], [8], [2], [3284]] +8.2.3289=[[0], [8], [2], [3289]] +8.2.3290=[[0], [8], [2], [3290]] +8.2.3299=[[0], [8], [2], [3299]] +8.2.3300=[[0], [8], [2], [3300]] +8.2.3301=[[0], [8], [2], [3301]] +8.2.3306=[[0], [8], [2], [3306]] +8.2.3307=[[0], [8], [2], [3307]] +8.2.3310=[[0], [8], [2], [3310]] +8.2.3311=[[0], [8], [2], [3311]] +8.2.3312=[[0], [8], [2], [3312]] +8.2.3313=[[0], [8], [2], [3313]] +8.2.3316=[[0], [8], [2], [3316]] +8.2.3318=[[0], [8], [2], [3318]] +8.2.3319=[[0], [8], [2], [3319]] +8.2.3320=[[0], [8], [2], [3320]] +8.2.3321=[[0], [8], [2], [3321]] +8.2.3322=[[0], [8], [2], [3322]] +8.2.3323=[[0], [8], [2], [3323]] +8.2.3326=[[0], [8], [2], [3326]] +8.2.3327=[[0], [8], [2], [3327]] +8.2.3331=[[0], [8], [2], [3331]] +8.2.3332=[[0], [8], [2], [3332]] +8.2.3333=[[0], [8], [2], [3333]] +8.2.3334=[[0], [8], [2], [3334]] +8.2.3336=[[0], [8], [2], [3336]] +8.2.3338=[[0], [8], [2], [3338]] +8.2.3340=[[0], [8], [2], [3340]] +8.2.3341=[[0], [8], [2], [3341]] +8.2.3344=[[0], [8], [2], [3344]] +8.2.3346=[[0], [8], [2], [3346]] +8.2.3347=[[0], [8], [2], [3347]] +8.2.3350=[[0], [8], [2], [3350]] +8.2.3351=[[0], [8], [2], [3351]] +8.2.3352=[[0], [8], [2], [3352]] +8.2.3353=[[0], [8], [2], [3353]] +8.2.3354=[[0], [8], [2], [3354]] +8.2.3356=[[0], [8], [2], [3356]] +8.2.3357=[[0], [8], [2], [3357]] +8.2.3358=[[0], [8], [2], [3358]] +8.2.3360=[[0], [8], [2], [3360]] +8.2.3361=[[0], [8], [2], [3361]] +8.2.3367=[[0], [8], [2], [3367]] +8.2.3368=[[0], [8], [2], [3368]] +8.2.3370=[[0], [8], [2], [3370]] +8.2.3371=[[0], [8], [2], [3371]] +8.2.3373=[[0], [8], [2], [3373]] +8.2.3375=[[0], [8], [2], [3375]] +8.2.3376=[[0], [8], [2], [3376]] +8.2.3377=[[0], [8], [2], [3377]] +8.2.3378=[[0], [8], [2], [3378]] +8.2.3380=[[0], [8], [2], [3380]] +8.2.3382=[[0], [8], [2], [3382]] +8.2.3383=[[0], [8], [2], [3383]] +8.2.3384=[[0], [8], [2], [3384]] +8.2.3385=[[0], [8], [2], [3385]] +8.2.3386=[[0], [8], [2], [3386]] +8.2.3388=[[0], [8], [2], [3388]] +8.2.3389=[[0], [8], [2], [3389]] +8.2.3391=[[0], [8], [2], [3391]] +8.2.3392=[[0], [8], [2], [3392]] +8.2.3393=[[0], [8], [2], [3393]] +8.2.3394=[[0], [8], [2], [3394]] +8.2.3397=[[0], [8], [2], [3397]] +8.2.3398=[[0], [8], [2], [3398]] +8.2.3399=[[0], [8], [2], [3399]] +8.2.3401=[[0], [8], [2], [3401]] +8.2.3402=[[0], [8], [2], [3402]] +8.2.3403=[[0], [8], [2], [3403]] +8.2.3404=[[0], [8], [2], [3404]] +8.2.3405=[[0], [8], [2], [3405]] +8.2.3407=[[0], [8], [2], [3407]] +8.2.3408=[[0], [8], [2], [3408]] +8.2.3409=[[0], [8], [2], [3409]] +8.2.3412=[[0], [8], [2], [3412]] +8.2.3413=[[0], [8], [2], [3413]] +8.2.3416=[[0], [8], [2], [3416]] +8.2.3417=[[0], [8], [2], [3417]] +8.2.3419=[[0], [8], [2], [3419]] +8.2.3420=[[0], [8], [2], [3420]] +8.2.3423=[[0], [8], [2], [3423]] +8.2.3427=[[0], [8], [2], [3427]] +8.2.3437=[[0], [8], [2], [3437]] +8.2.3447=[[0], [8], [2], [3447]] +8.2.3457=[[0], [8], [2], [3457]] +8.2.3582=[[0], [8], [2], [3582]] +8.2.3901=[[0], [8], [2], [3901]] +8.2.4=[[0], [8], [2], [4]] +8.2.4950=[[0], [8], [2], [4950]] +8.2.5=[[0], [8], [2], [5]] +8.2.6=[[0], [8], [2], [6]] +8.2.7=[[0], [8], [2], [7]] +8.2.8=[[0], [8], [2], [8]] +8.2.9=[[0], [8], [2], [9]] +8.20=[[0], [8], [20]] +8.20.0=[[0], [8], [20], [0]] +8.20.21357=[[0], [8], [20], [21357]] +8.200.0=[[0], [8], [200], [0]] +8.20200226=[[0], [8], [20200226]] +8.20200309=[[0], [8], [20200309]] +8.20200522=[[0], [8], [20200522]] +8.20200617=[[0], [8], [20200617]] +8.20200618=[[0], [8], [20200618]] +8.20200720.1=[[0], [8], [20200720], [1]] +8.20200810=[[0], [8], [20200810]] +8.20200908=[[0], [8], [20200908]] +8.20201007=[[0], [8], [20201007]] +8.20201104=[[0], [8], [20201104]] +8.20201127=[[0], [8], [20201127]] +8.20201129=[[0], [8], [20201129]] +8.20210127=[[0], [8], [20210127]] +8.20210128=[[0], [8], [20210128]] +8.20210224=[[0], [8], [20210224]] +8.20210310=[[0], [8], [20210310]] +8.20210330=[[0], [8], [20210330]] +8.20210331=[[0], [8], [20210331]] +8.20210428=[[0], [8], [20210428]] +8.20210621=[[0], [8], [20210621]] +8.20210715=[[0], [8], [20210715]] +8.20210803=[[0], [8], [20210803]] +8.20210903=[[0], [8], [20210903]] +8.20211011=[[0], [8], [20211011]] +8.20211028=[[0], [8], [20211028]] +8.20211123=[[0], [8], [20211123]] +8.20211231=[[0], [8], [20211231]] +8.21=[[0], [8], [21]] +8.21.0=[[0], [8], [21], [0]] +8.22.0=[[0], [8], [22], [0]] +8.23.0=[[0], [8], [23], [0]] +8.23.1=[[0], [8], [23], [1]] +8.24.0=[[0], [8], [24], [0]] +8.240=[[0], [8], [240]] +8.244=[[0], [8], [244]] +8.25=[[0], [8], [25]] +8.25.0=[[0], [8], [25], [0]] +8.26.0=[[0], [8], [26], [0]] +8.27.0=[[0], [8], [27], [0]] +8.28.0=[[0], [8], [28], [0]] +8.29=[[0], [8], [29]] +8.29.0=[[0], [8], [29], [0]] +8.3=[[0], [8], [3]] +8.3.0=[[0], [8], [3], [0]] +8.3.0.2=[[0], [8], [3], [0], [2]] +8.3.0.3=[[0], [8], [3], [0], [3]] +8.3.0b0=[[0], [8], [3], [0, 'b', 0]] +8.3.1=[[0], [8], [3], [1]] +8.3.10=[[0], [8], [3], [10]] +8.3.11=[[0], [8], [3], [11]] +8.3.2=[[0], [8], [3], [2]] +8.3.2.44=[[0], [8], [3], [2], [44]] +8.3.20220518163624=[[0], [8], [3], [20220518163624]] +8.3.20220525163636=[[0], [8], [3], [20220525163636]] +8.3.20220717184004=[[0], [8], [3], [20220717184004]] +8.3.20220801194920=[[0], [8], [3], [20220801194920]] +8.3.20220825133457=[[0], [8], [3], [20220825133457]] +8.3.20220831150015=[[0], [8], [3], [20220831150015]] +8.3.20220909144501=[[0], [8], [3], [20220909144501]] +8.3.20220913105718=[[0], [8], [3], [20220913105718]] +8.3.20220916115321=[[0], [8], [3], [20220916115321]] +8.3.20221016151607=[[0], [8], [3], [20221016151607]] +8.3.20221028160159=[[0], [8], [3], [20221028160159]] +8.3.20221115203138=[[0], [8], [3], [20221115203138]] +8.3.20221209165047=[[0], [8], [3], [20221209165047]] +8.3.20230109181936=[[0], [8], [3], [20230109181936]] +8.3.276=[[0], [8], [3], [276]] +8.3.286=[[0], [8], [3], [286]] +8.3.297=[[0], [8], [3], [297]] +8.3.3=[[0], [8], [3], [3]] +8.3.305=[[0], [8], [3], [305]] +8.3.307=[[0], [8], [3], [307]] +8.3.308=[[0], [8], [3], [308]] +8.3.309=[[0], [8], [3], [309]] +8.3.310=[[0], [8], [3], [310]] +8.3.311=[[0], [8], [3], [311]] +8.3.312=[[0], [8], [3], [312]] +8.3.314=[[0], [8], [3], [314]] +8.3.315=[[0], [8], [3], [315]] +8.3.316=[[0], [8], [3], [316]] +8.3.319=[[0], [8], [3], [319]] +8.3.320=[[0], [8], [3], [320]] +8.3.321=[[0], [8], [3], [321]] +8.3.322=[[0], [8], [3], [322]] +8.3.323=[[0], [8], [3], [323]] +8.3.324=[[0], [8], [3], [324]] +8.3.325=[[0], [8], [3], [325]] +8.3.326=[[0], [8], [3], [326]] +8.3.327=[[0], [8], [3], [327]] +8.3.328=[[0], [8], [3], [328]] +8.3.329=[[0], [8], [3], [329]] +8.3.331=[[0], [8], [3], [331]] +8.3.334=[[0], [8], [3], [334]] +8.3.335=[[0], [8], [3], [335]] +8.3.336=[[0], [8], [3], [336]] +8.3.337=[[0], [8], [3], [337]] +8.3.338=[[0], [8], [3], [338]] +8.3.339=[[0], [8], [3], [339]] +8.3.342=[[0], [8], [3], [342]] +8.3.343=[[0], [8], [3], [343]] +8.3.346=[[0], [8], [3], [346]] +8.3.348=[[0], [8], [3], [348]] +8.3.349=[[0], [8], [3], [349]] +8.3.350=[[0], [8], [3], [350]] +8.3.351=[[0], [8], [3], [351]] +8.3.352=[[0], [8], [3], [352]] +8.3.361=[[0], [8], [3], [361]] +8.3.362=[[0], [8], [3], [362]] +8.3.363=[[0], [8], [3], [363]] +8.3.368=[[0], [8], [3], [368]] +8.3.372=[[0], [8], [3], [372]] +8.3.376=[[0], [8], [3], [376]] +8.3.4=[[0], [8], [3], [4]] +8.3.5=[[0], [8], [3], [5]] +8.3.6=[[0], [8], [3], [6]] +8.3.7=[[0], [8], [3], [7]] +8.3.8=[[0], [8], [3], [8]] +8.3.9=[[0], [8], [3], [9]] +8.30=[[0], [8], [30]] +8.30.0=[[0], [8], [30], [0]] +8.304=[[0], [8], [304]] +8.305=[[0], [8], [305]] +8.307=[[0], [8], [307]] +8.31=[[0], [8], [31]] +8.31.0=[[0], [8], [31], [0]] +8.32=[[0], [8], [32]] +8.32.0=[[0], [8], [32], [0]] +8.33=[[0], [8], [33]] +8.33.0=[[0], [8], [33], [0]] +8.34.0=[[0], [8], [34], [0]] +8.35.0=[[0], [8], [35], [0]] +8.36.0=[[0], [8], [36], [0]] +8.37=[[0], [8], [37]] +8.37.0=[[0], [8], [37], [0]] +8.38=[[0], [8], [38]] +8.38.0=[[0], [8], [38], [0]] +8.39=[[0], [8], [39]] +8.39.0=[[0], [8], [39], [0]] +8.39.2=[[0], [8], [39], [2]] +8.3p1=[[0], [8], [3, 'p', 1]] +8.4=[[0], [8], [4]] +8.4.0=[[0], [8], [4], [0]] +8.4.0.27=[[0], [8], [4], [0], [27]] +8.4.1=[[0], [8], [4], [1]] +8.4.1.50=[[0], [8], [4], [1], [50]] +8.4.2=[[0], [8], [4], [2]] +8.4.20230127112827=[[0], [8], [4], [20230127112827]] +8.4.20230128170514=[[0], [8], [4], [20230128170514]] +8.4.20230201194352=[[0], [8], [4], [20230201194352]] +8.4.20230213094415=[[0], [8], [4], [20230213094415]] +8.4.20230426093816=[[0], [8], [4], [20230426093816]] +8.4.20230511084951=[[0], [8], [4], [20230511084951]] +8.4.21326=[[0], [8], [4], [21326]] +8.4.3=[[0], [8], [4], [3]] +8.4.371.19=[[0], [8], [4], [371], [19]] +8.4.371.22=[[0], [8], [4], [371], [22]] +8.4.4=[[0], [8], [4], [4]] +8.4.5=[[0], [8], [4], [5]] +8.4.8=[[0], [8], [4], [8]] +8.40.0=[[0], [8], [40], [0]] +8.40.1=[[0], [8], [40], [1]] +8.40.2=[[0], [8], [40], [2]] +8.40.5=[[0], [8], [40], [5]] +8.41=[[0], [8], [41]] +8.41.0=[[0], [8], [41], [0]] +8.41.1=[[0], [8], [41], [1]] +8.41.3=[[0], [8], [41], [3]] +8.42.0=[[0], [8], [42], [0]] +8.42.1=[[0], [8], [42], [1]] +8.42.2=[[0], [8], [42], [2]] +8.43=[[0], [8], [43]] +8.43.0=[[0], [8], [43], [0]] +8.43.7=[[0], [8], [43], [7]] +8.44=[[0], [8], [44]] +8.45=[[0], [8], [45]] +8.4p1=[[0], [8], [4, 'p', 1]] +8.5=[[0], [8], [5]] +8.5.0=[[0], [8], [5], [0]] +8.5.1=[[0], [8], [5], [1]] +8.5.10=[[0], [8], [5], [10]] +8.5.11=[[0], [8], [5], [11]] +8.5.13=[[0], [8], [5], [13]] +8.5.14=[[0], [8], [5], [14]] +8.5.15=[[0], [8], [5], [15]] +8.5.16=[[0], [8], [5], [16]] +8.5.17=[[0], [8], [5], [17]] +8.5.18=[[0], [8], [5], [18]] +8.5.19=[[0], [8], [5], [19]] +8.5.2=[[0], [8], [5], [2]] +8.5.20=[[0], [8], [5], [20]] +8.5.21=[[0], [8], [5], [21]] +8.5.22=[[0], [8], [5], [22]] +8.5.27=[[0], [8], [5], [27]] +8.5.28=[[0], [8], [5], [28]] +8.5.29=[[0], [8], [5], [29]] +8.5.3=[[0], [8], [5], [3]] +8.5.4=[[0], [8], [5], [4]] +8.5.5=[[0], [8], [5], [5]] +8.5.6=[[0], [8], [5], [6]] +8.5.8=[[0], [8], [5], [8]] +8.5.9=[[0], [8], [5], [9]] +8.500.0=[[0], [8], [500], [0]] +8.5p1=[[0], [8], [5, 'p', 1]] +8.6=[[0], [8], [6]] +8.6.0=[[0], [8], [6], [0]] +8.6.1=[[0], [8], [6], [1]] +8.6.10=[[0], [8], [6], [10]] +8.6.11=[[0], [8], [6], [11]] +8.6.12=[[0], [8], [6], [12]] +8.6.13=[[0], [8], [6], [13]] +8.6.14=[[0], [8], [6], [14]] +8.6.15=[[0], [8], [6], [15]] +8.6.16=[[0], [8], [6], [16]] +8.6.17=[[0], [8], [6], [17]] +8.6.18=[[0], [8], [6], [18]] +8.6.2=[[0], [8], [6], [2]] +8.6.3=[[0], [8], [6], [3]] +8.6.4=[[0], [8], [6], [4]] +8.6.5=[[0], [8], [6], [5]] +8.6.6=[[0], [8], [6], [6]] +8.6.7=[[0], [8], [6], [7]] +8.6.8=[[0], [8], [6], [8]] +8.6.9=[[0], [8], [6], [9]] +8.600.0=[[0], [8], [600], [0]] +8.6p1=[[0], [8], [6, 'p', 1]] +8.7=[[0], [8], [7]] +8.7.0=[[0], [8], [7], [0]] +8.7.1=[[0], [8], [7], [1]] +8.7.11=[[0], [8], [7], [11]] +8.7.12=[[0], [8], [7], [12]] +8.7.13=[[0], [8], [7], [13]] +8.7.14=[[0], [8], [7], [14]] +8.7.15=[[0], [8], [7], [15]] +8.7.17=[[0], [8], [7], [17]] +8.7.18=[[0], [8], [7], [18]] +8.7.19=[[0], [8], [7], [19]] +8.7.2=[[0], [8], [7], [2]] +8.7.20=[[0], [8], [7], [20]] +8.7.23=[[0], [8], [7], [23]] +8.7.3=[[0], [8], [7], [3]] +8.7.4=[[0], [8], [7], [4]] +8.7.5=[[0], [8], [7], [5]] +8.7.6=[[0], [8], [7], [6]] +8.7.7=[[0], [8], [7], [7]] +8.7p1=[[0], [8], [7, 'p', 1]] +8.8=[[0], [8], [8]] +8.8.0=[[0], [8], [8], [0]] +8.8.0.121=[[0], [8], [8], [0], [121]] +8.8.1=[[0], [8], [8], [1]] +8.8.160=[[0], [8], [8], [160]] +8.8.2=[[0], [8], [8], [2]] +8.8.294=[[0], [8], [8], [294]] +8.8.3=[[0], [8], [8], [3]] +8.8.4=[[0], [8], [8], [4]] +8.8.5=[[0], [8], [8], [5]] +8.8.8=[[0], [8], [8], [8]] +8.8.9=[[0], [8], [8], [9]] +8.8p1=[[0], [8], [8, 'p', 1]] +8.9=[[0], [8], [9]] +8.9.0=[[0], [8], [9], [0]] +8.9.1=[[0], [8], [9], [1]] +8.9.10=[[0], [8], [9], [10]] +8.9.11=[[0], [8], [9], [11]] +8.9.13=[[0], [8], [9], [13]] +8.9.15=[[0], [8], [9], [15]] +8.9.2=[[0], [8], [9], [2]] +8.9.21=[[0], [8], [9], [21]] +8.9.3=[[0], [8], [9], [3]] +8.9.39=[[0], [8], [9], [39]] +8.9.4=[[0], [8], [9], [4]] +8.9.5=[[0], [8], [9], [5]] +8.9.6=[[0], [8], [9], [6]] +8.9.7=[[0], [8], [9], [7]] +8.9.8=[[0], [8], [9], [8]] +8.9.83=[[0], [8], [9], [83]] +8.9.9=[[0], [8], [9], [9]] +8.9p1=[[0], [8], [9, 'p', 1]] +80.0=[[0], [80], [0]] +80.0.3987.106.0=[[0], [80], [0], [3987], [106], [0]] +80.0.3987.16.0=[[0], [80], [0], [3987], [16], [0]] +81=[[0], [81]] +81.0=[[0], [81], [0]] +81.0.4044.20.0=[[0], [81], [0], [4044], [20], [0]] +81.0.4044.69.0=[[0], [81], [0], [4044], [69], [0]] +82=[[0], [82]] +82.0=[[0], [82], [0]] +83=[[0], [83]] +83.0=[[0], [83], [0]] +83.0.4103.14.0=[[0], [83], [0], [4103], [14], [0]] +83.0.4103.39.0=[[0], [83], [0], [4103], [39], [0]] +84=[[0], [84]] +84.0=[[0], [84], [0]] +84.0.4147.30.0=[[0], [84], [0], [4147], [30], [0]] +85=[[0], [85]] +85.0=[[0], [85], [0]] +85.0.4183.38.0=[[0], [85], [0], [4183], [38], [0]] +85.0.4183.83.0=[[0], [85], [0], [4183], [83], [0]] +85.0.4183.87.0=[[0], [85], [0], [4183], [87], [0]] +86.0=[[0], [86], [0]] +86.0.4240.22.0=[[0], [86], [0], [4240], [22], [0]] +87.0=[[0], [87], [0]] +87.0.4280.20.0=[[0], [87], [0], [4280], [20], [0]] +87.0.4280.88.0=[[0], [87], [0], [4280], [88], [0]] +88=[[0], [88]] +88.0=[[0], [88], [0]] +88.0.1=[[0], [88], [0], [1]] +88.0.4324.27.0=[[0], [88], [0], [4324], [27], [0]] +88.0.4324.27.1=[[0], [88], [0], [4324], [27], [1]] +88.0.4324.96.0=[[0], [88], [0], [4324], [96], [0]] +89.0=[[0], [89], [0]] +89.0.4389.23.0=[[0], [89], [0], [4389], [23], [0]] +895=[[0], [895]] +8d=[[0], [8, 'd']] +9=[[0], [9]] +9.0=[[0], [9], [0]] +9.0.0=[[0], [9], [0], [0]] +9.0.0065=[[0], [9], [0], [65]] +9.0.0335=[[0], [9], [0], [335]] +9.0.0814=[[0], [9], [0], [814]] +9.0.0_1=[[0], [9], [0], [0], [1]] +9.0.1=[[0], [9], [0], [1]] +9.0.10=[[0], [9], [0], [10]] +9.0.11=[[0], [9], [0], [11]] +9.0.12=[[0], [9], [0], [12]] +9.0.13=[[0], [9], [0], [13]] +9.0.14=[[0], [9], [0], [14]] +9.0.1425=[[0], [9], [0], [1425]] +9.0.15=[[0], [9], [0], [15]] +9.0.16=[[0], [9], [0], [16]] +9.0.17=[[0], [9], [0], [17]] +9.0.18=[[0], [9], [0], [18]] +9.0.19=[[0], [9], [0], [19]] +9.0.2=[[0], [9], [0], [2]] +9.0.20=[[0], [9], [0], [20]] +9.0.21=[[0], [9], [0], [21]] +9.0.22=[[0], [9], [0], [22]] +9.0.3=[[0], [9], [0], [3]] +9.0.30729.6161=[[0], [9], [0], [30729], [6161]] +9.0.4=[[0], [9], [0], [4]] +9.0.5=[[0], [9], [0], [5]] +9.0.6=[[0], [9], [0], [6]] +9.0.7=[[0], [9], [0], [7]] +9.0.8=[[0], [9], [0], [8]] +9.0.9=[[0], [9], [0], [9]] +9.01=[[0], [9], [1]] +9.0_0=[[0], [9], [0], [0]] +9.0p1=[[0], [9], [0, 'p', 1]] +9.1=[[0], [9], [1]] +9.1.0=[[0], [9], [1], [0]] +9.1.1=[[0], [9], [1], [1]] +9.1.2=[[0], [9], [1], [2]] +9.1.23.1=[[0], [9], [1], [23], [1]] +9.1.3=[[0], [9], [1], [3]] +9.10=[[0], [9], [10]] +9.10.0=[[0], [9], [10], [0]] +9.10.1=[[0], [9], [10], [1]] +9.107.22008=[[0], [9], [107], [22008]] +9.11.0=[[0], [9], [11], [0]] +9.11.1=[[0], [9], [11], [1]] +9.11.2=[[0], [9], [11], [2]] +9.11.4=[[0], [9], [11], [4]] +9.110.22021=[[0], [9], [110], [22021]] +9.113.22021=[[0], [9], [113], [22021]] +9.12.0=[[0], [9], [12], [0]] +9.12.1=[[0], [9], [12], [1]] +9.12.2=[[0], [9], [12], [2]] +9.12.3=[[0], [9], [12], [3]] +9.12.4=[[0], [9], [12], [4]] +9.128.22026=[[0], [9], [128], [22026]] +9.13.0=[[0], [9], [13], [0]] +9.13.2=[[0], [9], [13], [2]] +9.13.3=[[0], [9], [13], [3]] +9.13.4=[[0], [9], [13], [4]] +9.13.5=[[0], [9], [13], [5]] +9.13.6=[[0], [9], [13], [6]] +9.13.7=[[0], [9], [13], [7]] +9.132.22039=[[0], [9], [132], [22039]] +9.134.22048=[[0], [9], [134], [22048]] +9.147.22086=[[0], [9], [147], [22086]] +9.15.0=[[0], [9], [15], [0]] +9.163.22119=[[0], [9], [163], [22119]] +9.168.22121=[[0], [9], [168], [22121]] +9.169.22121=[[0], [9], [169], [22121]] +9.173.22126=[[0], [9], [173], [22126]] +9.189.22201=[[0], [9], [189], [22201]] +9.1p1=[[0], [9], [1, 'p', 1]] +9.2=[[0], [9], [2]] +9.2.0=[[0], [9], [2], [0]] +9.2.1=[[0], [9], [2], [1]] +9.2.148=[[0], [9], [2], [148]] +9.2.2=[[0], [9], [2], [2]] +9.2.2.1=[[0], [9], [2], [2], [1]] +9.2.2.2=[[0], [9], [2], [2], [2]] +9.2.3=[[0], [9], [2], [3]] +9.2.4=[[0], [9], [2], [4]] +9.2.5=[[0], [9], [2], [5]] +9.2.6=[[0], [9], [2], [6]] +9.2.7=[[0], [9], [2], [7]] +9.20=[[0], [9], [20]] +9.200.4=[[0], [9], [200], [4]] +9.200.6=[[0], [9], [200], [6]] +9.200.7=[[0], [9], [200], [7]] +9.207.22283=[[0], [9], [207], [22283]] +9.213.22307=[[0], [9], [213], [22307]] +9.22=[[0], [9], [22]] +9.230.22310=[[0], [9], [230], [22310]] +9.238.22316=[[0], [9], [238], [22316]] +9.251.22317=[[0], [9], [251], [22317]] +9.2p1=[[0], [9], [2, 'p', 1]] +9.3=[[0], [9], [3]] +9.3.0=[[0], [9], [3], [0]] +9.3.0.0=[[0], [9], [3], [0], [0]] +9.3.0.1=[[0], [9], [3], [0], [1]] +9.3.0.2=[[0], [9], [3], [0], [2]] +9.3.0.3=[[0], [9], [3], [0], [3]] +9.3.0.4=[[0], [9], [3], [0], [4]] +9.3.1=[[0], [9], [3], [1]] +9.3.2=[[0], [9], [3], [2]] +9.3.23=[[0], [9], [3], [23]] +9.3.28=[[0], [9], [3], [28]] +9.3.3=[[0], [9], [3], [3]] +9.3.31=[[0], [9], [3], [31]] +9.3.4=[[0], [9], [3], [4]] +9.3.5=[[0], [9], [3], [5]] +9.3.6=[[0], [9], [3], [6]] +9.3.9=[[0], [9], [3], [9]] +9.300.22349=[[0], [9], [300], [22349]] +9.38.1=[[0], [9], [38], [1]] +9.397a52e=[[0], [9], [397, 'a', 52, 'e']] +9.3p1=[[0], [9], [3, 'p', 1]] +9.4=[[0], [9], [4]] +9.4.0=[[0], [9], [4], [0]] +9.4.0.0=[[0], [9], [4], [0], [0]] +9.4.0.1=[[0], [9], [4], [0], [1]] +9.4.0.10=[[0], [9], [4], [0], [10]] +9.4.0.11=[[0], [9], [4], [0], [11]] +9.4.0.12=[[0], [9], [4], [0], [12]] +9.4.0.13=[[0], [9], [4], [0], [13]] +9.4.0.14=[[0], [9], [4], [0], [14]] +9.4.0.15=[[0], [9], [4], [0], [15]] +9.4.0.16=[[0], [9], [4], [0], [16]] +9.4.0.17=[[0], [9], [4], [0], [17]] +9.4.0.2=[[0], [9], [4], [0], [2]] +9.4.0.5=[[0], [9], [4], [0], [5]] +9.4.0.6=[[0], [9], [4], [0], [6]] +9.4.0.7=[[0], [9], [4], [0], [7]] +9.4.0.8=[[0], [9], [4], [0], [8]] +9.4.0.9=[[0], [9], [4], [0], [9]] +9.4.1=[[0], [9], [4], [1]] +9.4.12=[[0], [9], [4], [12]] +9.4.14=[[0], [9], [4], [14]] +9.4.2=[[0], [9], [4], [2]] +9.4.4=[[0], [9], [4], [4]] +9.5=[[0], [9], [5]] +9.5.0=[[0], [9], [5], [0]] +9.5.1=[[0], [9], [5], [1]] +9.5.2=[[0], [9], [5], [2]] +9.5.3=[[0], [9], [5], [3]] +9.5.4=[[0], [9], [5], [4]] +9.53.1=[[0], [9], [53], [1]] +9.53.3=[[0], [9], [53], [3]] +9.54.0=[[0], [9], [54], [0]] +9.5r1.6=[[0], [9], [5, 'r', 1], [6]] +9.6=[[0], [9], [6]] +9.6.0=[[0], [9], [6], [0]] +9.6.0.1=[[0], [9], [6], [0], [1]] +9.6.0.2=[[0], [9], [6], [0], [2]] +9.6.1=[[0], [9], [6], [1]] +9.6.2=[[0], [9], [6], [2]] +9.6.3=[[0], [9], [6], [3]] +9.6.7=[[0], [9], [6], [7]] +9.6.8=[[0], [9], [6], [8]] +9.6.9=[[0], [9], [6], [9]] +9.7=[[0], [9], [7]] +9.7.0=[[0], [9], [7], [0]] +9.7.0.1=[[0], [9], [7], [0], [1]] +9.7.1=[[0], [9], [7], [1]] +9.8=[[0], [9], [8]] +9.8.0=[[0], [9], [8], [0]] +9.8.0.2=[[0], [9], [8], [0], [2]] +9.8.1=[[0], [9], [8], [1]] +9.8.2=[[0], [9], [8], [2]] +9.8.3=[[0], [9], [8], [3]] +9.8.4=[[0], [9], [8], [4]] +9.8_3=[[0], [9], [8], [3]] +9.8_6=[[0], [9], [8], [6]] +9.9=[[0], [9], [9]] +9.9.0=[[0], [9], [9], [0]] +9.9.0.0=[[0], [9], [9], [0], [0]] +9.9.1=[[0], [9], [9], [1]] +9.9.2=[[0], [9], [9], [2]] +9.9.3=[[0], [9], [9], [3]] +9.9.4=[[0], [9], [9], [4]] +9.900.3=[[0], [9], [900], [3]] +9.900.4=[[0], [9], [900], [4]] +9.900.5=[[0], [9], [900], [5]] +90=[[0], [90]] +90.0=[[0], [90], [0]] +90.0.4430.24.0=[[0], [90], [0], [4430], [24], [0]] +91=[[0], [91]] +91.0=[[0], [91], [0]] +91.0.2=[[0], [91], [0], [2]] +91.0.4472.19.0=[[0], [91], [0], [4472], [19], [0]] +91.1.0esr=[[0], [91], [1], [0, 'esr']] +91.10.0=[[0], [91], [10], [0]] +91.10.0esr=[[0], [91], [10], [0, 'esr']] +91.11.0=[[0], [91], [11], [0]] +91.11.0esr=[[0], [91], [11], [0, 'esr']] +91.12.0=[[0], [91], [12], [0]] +91.12.0esr=[[0], [91], [12], [0, 'esr']] +91.13.0=[[0], [91], [13], [0]] +91.13.0esr=[[0], [91], [13], [0, 'esr']] +91.2.0esr=[[0], [91], [2], [0, 'esr']] +91.3.0esr=[[0], [91], [3], [0, 'esr']] +91.4.0esr=[[0], [91], [4], [0, 'esr']] +91.4.1esr=[[0], [91], [4], [1, 'esr']] +91.5.0esr=[[0], [91], [5], [0, 'esr']] +91.6.0esr=[[0], [91], [6], [0, 'esr']] +91.6.1esr=[[0], [91], [6], [1, 'esr']] +91.7.1esr=[[0], [91], [7], [1, 'esr']] +91.8.0=[[0], [91], [8], [0]] +91.8.0esr=[[0], [91], [8], [0, 'esr']] +91.9.0=[[0], [91], [9], [0]] +91.9.0esr=[[0], [91], [9], [0, 'esr']] +91.9.1=[[0], [91], [9], [1]] +92=[[0], [92]] +92.0=[[0], [92], [0]] +92.0.4515.43.0=[[0], [92], [0], [4515], [43], [0]] +921=[[0], [921]] +927.0.2=[[0], [927], [0], [2]] +93=[[0], [93]] +93.0=[[0], [93], [0]] +93.0.4577.15.0=[[0], [93], [0], [4577], [15], [0]] +94=[[0], [94]] +94.0=[[0], [94], [0]] +94.0.1=[[0], [94], [0], [1]] +94.0.2=[[0], [94], [0], [2]] +949.0.1=[[0], [949], [0], [1]] +95=[[0], [95]] +95.0=[[0], [95], [0]] +95.0.2=[[0], [95], [0], [2]] +95.0.4638.10.0=[[0], [95], [0], [4638], [10], [0]] +95.0.4638.17.0=[[0], [95], [0], [4638], [17], [0]] +96=[[0], [96]] +96.0=[[0], [96], [0]] +96.0.1=[[0], [96], [0], [1]] +96.0.2=[[0], [96], [0], [2]] +96.0.3=[[0], [96], [0], [3]] +96.0.4664.35.0=[[0], [96], [0], [4664], [35], [0]] +96.0.4664.45.0=[[0], [96], [0], [4664], [45], [0]] +96.3=[[0], [96], [3]] +97=[[0], [97]] +97.0=[[0], [97], [0]] +97.0.1=[[0], [97], [0], [1]] +97.0.2=[[0], [97], [0], [2]] +97.0.4692.20.0=[[0], [97], [0], [4692], [20], [0]] +97.0.4692.36.0=[[0], [97], [0], [4692], [36], [0]] +97.0.4692.71.0=[[0], [97], [0], [4692], [71], [0]] +97.1=[[0], [97], [1]] +97.2=[[0], [97], [2]] +97.3=[[0], [97], [3]] +97.4=[[0], [97], [4]] +973.0.1=[[0], [973], [0], [1]] +98=[[0], [98]] +98.0=[[0], [98], [0]] +98.0.1=[[0], [98], [0], [1]] +98.0.2=[[0], [98], [0], [2]] +98.0.4758.48.0=[[0], [98], [0], [4758], [48], [0]] +98.0.4758.80.0=[[0], [98], [0], [4758], [80], [0]] +98.1=[[0], [98], [1]] +98.2=[[0], [98], [2]] +98.3=[[0], [98], [3]] +99=[[0], [99]] +99.0=[[0], [99], [0]] +99.0.4844.17.0=[[0], [99], [0], [4844], [17], [0]] +99.0.4844.35.0=[[0], [99], [0], [4844], [35], [0]] +99.0.4844.51.0=[[0], [99], [0], [4844], [51], [0]] +99.1=[[0], [99], [1]] +99.2=[[0], [99], [2]] +9999.27=[[0], [9999], [27]] +9999.32=[[0], [9999], [32]] +9_3=[[0], [9], [3]] +9c=[[0], [9, 'c']] +9d=[[0], [9, 'd']] +9e=[[0], [9, 'e']] +ESMF_6_3_0rp1_ESMP_01=[[0], [0, 'esmf'], [6], [3], [0, 'rp', 1], [0, 'esmp'], [1]] +Release_2017_09=[[0], [0, 'release'], [2017], [9]] +Release_2017_09_3=[[0], [0, 'release'], [2017], [9], [3]] +dev=[[0], [0, 'DEV']] +master=[[0], [0, 'master']] +r1206=[[0], [0, 'r', 1206]] +r26=[[0], [0, 'r', 26]] +r7271.1a4dbf6=[[0], [0, 'r', 7271], [1, 'a', 4, 'dbf', 6]] +test=[[0], [0, 'test']] +v.1.1.0=[[0], [0, 'v'], [1], [1], [0]] +v0.0.1=[[0], [0, 'v', 0], [0], [1]] +v0.0.2=[[0], [0, 'v', 0], [0], [2]] +v0.0.3=[[0], [0, 'v', 0], [0], [3]] +v0.0.5=[[0], [0, 'v', 0], [0], [5]] +v0.04=[[0], [0, 'v', 0], [4]] +v0.1=[[0], [0, 'v', 0], [1]] +v0.1.0=[[0], [0, 'v', 0], [1], [0]] +v0.1.1=[[0], [0, 'v', 0], [1], [1]] +v0.1.2=[[0], [0, 'v', 0], [1], [2]] +v0.1.90=[[0], [0, 'v', 0], [1], [90]] +v0.14.0=[[0], [0, 'v', 0], [14], [0]] +v0.2.0=[[0], [0, 'v', 0], [2], [0]] +v0.2.1=[[0], [0, 'v', 0], [2], [1]] +v0.2.2=[[0], [0, 'v', 0], [2], [2]] +v0.2.3=[[0], [0, 'v', 0], [2], [3]] +v0.22.2=[[0], [0, 'v', 0], [22], [2]] +v0.22.3=[[0], [0, 'v', 0], [22], [3]] +v0.23.0=[[0], [0, 'v', 0], [23], [0]] +v0.27.2=[[0], [0, 'v', 0], [27], [2]] +v0.27.3=[[0], [0, 'v', 0], [27], [3]] +v0.3.0=[[0], [0, 'v', 0], [3], [0]] +v0.3.1=[[0], [0, 'v', 0], [3], [1]] +v0.3.2=[[0], [0, 'v', 0], [3], [2]] +v0.3.7=[[0], [0, 'v', 0], [3], [7]] +v0.4.0=[[0], [0, 'v', 0], [4], [0]] +v0.4.1=[[0], [0, 'v', 0], [4], [1]] +v0.4.2=[[0], [0, 'v', 0], [4], [2]] +v0.4.8=[[0], [0, 'v', 0], [4], [8]] +v0.5=[[0], [0, 'v', 0], [5]] +v0.5.0=[[0], [0, 'v', 0], [5], [0]] +v0.5.3=[[0], [0, 'v', 0], [5], [3]] +v0.6.0=[[0], [0, 'v', 0], [6], [0]] +v0.6.0b0=[[0], [0, 'v', 0], [6], [0, 'b', 0]] +v0.6.5=[[0], [0, 'v', 0], [6], [5]] +v0.6.6=[[0], [0, 'v', 0], [6], [6]] +v0.6.7=[[0], [0, 'v', 0], [6], [7]] +v0.6.9=[[0], [0, 'v', 0], [6], [9]] +v0.7.0=[[0], [0, 'v', 0], [7], [0]] +v0.7.0a4=[[0], [0, 'v', 0], [7], [0, 'a', 4]] +v0.7.0a6=[[0], [0, 'v', 0], [7], [0, 'a', 6]] +v0.8.0=[[0], [0, 'v', 0], [8], [0]] +v0.8.1=[[0], [0, 'v', 0], [8], [1]] +v1.0=[[0], [0, 'v', 1], [0]] +v1.0.0=[[0], [0, 'v', 1], [0], [0]] +v1.0.1=[[0], [0, 'v', 1], [0], [1]] +v1.0b=[[0], [0, 'v', 1], [0, 'b']] +v1.1=[[0], [0, 'v', 1], [1]] +v1.1.0=[[0], [0, 'v', 1], [1], [0]] +v1.1.1=[[0], [0, 'v', 1], [1], [1]] +v1.1.11=[[0], [0, 'v', 1], [1], [11]] +v1.1.3=[[0], [0, 'v', 1], [1], [3]] +v1.1.alpha=[[0], [0, 'v', 1], [1], [0, 'alpha']] +v1.10=[[0], [0, 'v', 1], [10]] +v1.11=[[0], [0, 'v', 1], [11]] +v1.13=[[0], [0, 'v', 1], [13]] +v1.14=[[0], [0, 'v', 1], [14]] +v1.14.19=[[0], [0, 'v', 1], [14], [19]] +v1.15=[[0], [0, 'v', 1], [15]] +v1.16=[[0], [0, 'v', 1], [16]] +v1.17=[[0], [0, 'v', 1], [17]] +v1.18=[[0], [0, 'v', 1], [18]] +v1.19=[[0], [0, 'v', 1], [19]] +v1.2=[[0], [0, 'v', 1], [2]] +v1.2.1=[[0], [0, 'v', 1], [2], [1]] +v1.2.2=[[0], [0, 'v', 1], [2], [2]] +v1.20=[[0], [0, 'v', 1], [20]] +v1.21=[[0], [0, 'v', 1], [21]] +v1.22=[[0], [0, 'v', 1], [22]] +v1.23=[[0], [0, 'v', 1], [23]] +v1.24=[[0], [0, 'v', 1], [24]] +v1.25=[[0], [0, 'v', 1], [25]] +v1.26=[[0], [0, 'v', 1], [26]] +v1.27=[[0], [0, 'v', 1], [27]] +v1.28=[[0], [0, 'v', 1], [28]] +v1.29=[[0], [0, 'v', 1], [29]] +v1.3.1=[[0], [0, 'v', 1], [3], [1]] +v1.3.190304ac=[[0], [0, 'v', 1], [3], [190304, 'ac']] +v1.3.2=[[0], [0, 'v', 1], [3], [2]] +v1.30=[[0], [0, 'v', 1], [30]] +v1.4=[[0], [0, 'v', 1], [4]] +v1.4.0=[[0], [0, 'v', 1], [4], [0]] +v1.4.0b1=[[0], [0, 'v', 1], [4], [0, 'b', 1]] +v1.4.1=[[0], [0, 'v', 1], [4], [1]] +v1.4dev1=[[0], [0, 'v', 1], [4, 'DEV', 1]] +v1.6.3=[[0], [0, 'v', 1], [6], [3]] +v1.9=[[0], [0, 'v', 1], [9]] +v1.9.0=[[0], [0, 'v', 1], [9], [0]] +v2.0.0=[[0], [0, 'v', 2], [0], [0]] +v2.0.1=[[0], [0, 'v', 2], [0], [1]] +v2.0.2=[[0], [0, 'v', 2], [0], [2]] +v2.008=[[0], [0, 'v', 2], [8]] +v2.0_gamma=[[0], [0, 'v', 2], [0], [0, 'gamma']] +v2.0_gamma2=[[0], [0, 'v', 2], [0], [0, 'gamma', 2]] +v2.1.0=[[0], [0, 'v', 2], [1], [0]] +v2.2.0=[[0], [0, 'v', 2], [2], [0]] +v2.2.1=[[0], [0, 'v', 2], [2], [1]] +v2.2.2=[[0], [0, 'v', 2], [2], [2]] +v2.28.0=[[0], [0, 'v', 2], [28], [0]] +v2.4.1=[[0], [0, 'v', 2], [4], [1]] +v3.0.3.1=[[0], [0, 'v', 3], [0], [3], [1]] +v3.8=[[0], [0, 'v', 3], [8]] +v4.0=[[0], [0, 'v', 4], [0]] +v4.3.6=[[0], [0, 'v', 4], [3], [6]] +v5.0=[[0], [0, 'v', 5], [0]] +v5.0_beta.2_8_g390494d7c=[[0], [0, 'v', 5], [0], [0, 'beta'], [2], [8], [0, 'g', 390494, 'd', 7, 'c']] +win_3.1.2=[[0], [0, 'win'], [3], [1], [2]] From 81251810e7dd70959a5f9a6edcc9cf1987440db1 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 12:27:17 +0200 Subject: [PATCH 12/22] fix: docs --- test-data/parsed_versions.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test-data/parsed_versions.txt b/test-data/parsed_versions.txt index cc480651e..e07bc97a4 100644 --- a/test-data/parsed_versions.txt +++ b/test-data/parsed_versions.txt @@ -14,9 +14,13 @@ # # ```python # from conda.models.version import VersionOrder -# lines = open('versions.txt', 'r').readlines() -# parsed_lines = [ f"{line.strip()}={VersionOrder(line).version}\n" for line in lines ] -# open("parsed_versions.txt", "w").writelines(parsed_lines) +# +# open("parsed_versions.txt", "w").writelines( +# [ +# f"{line.strip()}={VersionOrder(line).version}\n" +# for line in open("versions.txt", "r").readlines() +# ] +# ) # ``` # # This generates the parsed versions found below. From 901a443bc4669c4a7dd1924541ba8e9039596708 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 15:09:54 +0200 Subject: [PATCH 13/22] fix: tests --- ..._conda_types__conda_lock__test__packages_for_platform-3.snap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-3.snap b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-3.snap index 70f07d07e..ee391b3bd 100644 --- a/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-3.snap +++ b/crates/rattler_conda_types/src/conda_lock/snapshots/rattler_conda_types__conda_lock__test__packages_for_platform-3.snap @@ -2176,7 +2176,7 @@ expression: "conda_lock.packages_for_platform(Platform::OsxArm64).collect::=2020.06.20" + certifi: ">=2020.6.20" contourpy: ">=1.0.1" cycler: ">=0.10" fonttools: ">=4.22.0" From 6628cbc6055b14413833ace37b645b60e274df03 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 19:52:13 +0200 Subject: [PATCH 14/22] fix: 1-- and 1__ --- crates/rattler_conda_types/src/version/mod.rs | 31 +++++++-- .../rattler_conda_types/src/version/parse.rs | 63 ++++++++++++------- ...da_types__version__parse__test__parse.snap | 23 +++++-- 3 files changed, 84 insertions(+), 33 deletions(-) diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 1fc43608c..e8c2c8a23 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -663,15 +663,20 @@ impl<'v, I: Iterator> + 'v> fmt::Display for SegmentForma enum Component { Numeral(u64), - // Post should always be ordered greater than anything else. + /// Post should always be ordered greater than anything else. Post, - // Dev should always be ordered less than anything else. + /// Dev should always be ordered less than anything else. Dev, - // A generic string identifier. Identifiers are compared lexicographically. They are always - // ordered less than numbers. + /// A generic string identifier. Identifiers are compared lexicographically. They are always + /// ordered less than numbers. Iden(Box), + + /// An underscore or dash. + UnderscoreOrDash { + is_dash: bool, + }, } impl Component { @@ -734,14 +739,25 @@ impl Ord for Component { fn cmp(&self, other: &Self) -> Ordering { match (self, other) { // Numbers are always ordered higher than strings - (Component::Numeral(_), Component::Iden(_)) => Ordering::Greater, - (Component::Iden(_), Component::Numeral(_)) => Ordering::Less, + (Component::Numeral(_), Component::Iden(_) | Component::UnderscoreOrDash { .. }) => { + Ordering::Greater + } + (Component::Iden(_) | Component::UnderscoreOrDash { .. }, Component::Numeral(_)) => { + Ordering::Less + } // Compare numbers and identifiers normally amongst themselves. (Component::Numeral(a), Component::Numeral(b)) => a.cmp(b), (Component::Iden(a), Component::Iden(b)) => a.cmp(b), (Component::Post, Component::Post) => Ordering::Equal, (Component::Dev, Component::Dev) => Ordering::Equal, + (Component::UnderscoreOrDash { .. }, Component::UnderscoreOrDash { .. }) => { + Ordering::Equal + } + + // Underscores are sorted before identifiers + (Component::UnderscoreOrDash { .. }, Component::Iden(_)) => Ordering::Greater, + (Component::Iden(_), Component::UnderscoreOrDash { .. }) => Ordering::Less, // Post is always compared greater than anything else. (Component::Post, _) => Ordering::Greater, @@ -767,6 +783,8 @@ impl Display for Component { Component::Iden(s) => write!(f, "{}", s), Component::Post => write!(f, "post"), Component::Dev => write!(f, "dev"), + Component::UnderscoreOrDash { is_dash: true } => write!(f, "-"), + Component::UnderscoreOrDash { is_dash: false } => write!(f, "_"), } } } @@ -778,6 +796,7 @@ impl Debug for Component { Component::Iden(s) => write!(f, "'{}'", s), Component::Post => write!(f, "inf"), Component::Dev => write!(f, "'DEV'"), + Component::UnderscoreOrDash { .. } => write!(f, "'_'"), } } } diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index d73c722a5..6f22e6505 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -5,7 +5,7 @@ use crate::version::{ComponentVec, SegmentVec}; use nom::branch::alt; use nom::bytes::complete::{tag_no_case, take_while}; use nom::character::complete::{alpha1, char, digit1, one_of}; -use nom::combinator::{cut, eof, map, opt, value}; +use nom::combinator::{cut, eof, map, map_res, opt, value}; use nom::error::{ErrorKind, FromExternalError, ParseError}; use nom::sequence::{preceded, terminated}; use nom::{IResult, Parser}; @@ -125,33 +125,44 @@ fn numeral_parser(input: &str) -> IResult<&str, u64, ParseVersionErrorKind> { } /// Parses a single version [`Component`]. -fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVersionErrorKind> { - alt(( - // Parse a numeral - map(numeral_parser, Component::Numeral), - // Parse special case components - value(Component::Post, tag_no_case("post")), - value(Component::Dev, tag_no_case("dev")), - // Parse an identifier - map(alpha1, |alpha: &'i str| { - Component::Iden(alpha.to_lowercase().into_boxed_str()) - }), - // Parse a `_` at the end of the string. - map(terminated(char('_'), eof), |_| { - Component::Iden(String::from("_").into_boxed_str()) - }), - ))(input) +fn component_parser<'i>( + separator: Option, +) -> impl Parser<&'i str, Component, ParseVersionErrorKind> { + move |input: &'i str| { + alt(( + // Parse a numeral + map(numeral_parser, Component::Numeral), + // Parse special case components + value(Component::Post, tag_no_case("post")), + value(Component::Dev, tag_no_case("dev")), + // Parse an identifier + map(alpha1, |alpha: &'i str| { + Component::Iden(alpha.to_lowercase().into_boxed_str()) + }), + // Parse a `_` or `-` at the end of the string. + map_res(terminated(one_of("-_"), eof), |c: char| { + let is_dash = match (c, separator) { + ('-', Some('-') | None) => true, + ('_', Some('_') | None) => false, + _ => return Err(ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores), + }; + Ok(Component::UnderscoreOrDash { is_dash }) + }), + ))(input) + } } /// Parses a version segment from a list of components. fn segment_parser<'i>( components: &mut ComponentVec, + separator: Option, ) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + '_ { move |input| { // Parse the first component of the segment - let (mut rest, first_component) = match component_parser(input) { + let (mut rest, first_component) = match component_parser(separator).parse(input) { Ok(result) => result, - Err(nom::Err::Error(_)) => { + // Convert undefined parse errors into an expect error + Err(nom::Err::Error(ParseVersionErrorKind::Nom(_))) => { return Err(nom::Err::Error(ParseVersionErrorKind::ExpectedComponent)) } Err(e) => return Err(e), @@ -168,7 +179,7 @@ fn segment_parser<'i>( // Loop until we can't find any more components loop { - let (remaining, component) = match opt(component_parser)(rest) { + let (remaining, component) = match opt(component_parser(separator))(rest) { Ok((i, o)) => (i, o), Err(e) => { // Remove any components that we may have added. @@ -213,7 +224,8 @@ fn final_version_part_parser( let first_segment_idx = segments.len(); // Parse the first segment of the version. It must exists. - let (mut input, first_segment_length) = segment_parser(components).parse(input)?; + let (mut input, first_segment_length) = + segment_parser(components, dash_or_underscore).parse(input)?; segments.push(first_segment_length); let result = loop { // Parse either eof or a version segment separator. @@ -230,7 +242,8 @@ fn final_version_part_parser( // Make sure dashes and underscores are not mixed. match (dash_or_underscore, separator) { - (None, seperator) => dash_or_underscore = Some(seperator), + (None, '-') => dash_or_underscore = Some('-'), + (None, '_') => dash_or_underscore = Some('_'), (Some('-'), '_') | (Some('_'), '-') => { break Err(nom::Err::Error( ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores, @@ -240,7 +253,7 @@ fn final_version_part_parser( } // Parse the next segment. - let (rest, segment) = match segment_parser(components).parse(rest) { + let (rest, segment) = match segment_parser(components, dash_or_underscore).parse(rest) { Ok(result) => result, Err(e) => break Err(e), }; @@ -376,6 +389,7 @@ mod test { "1-2-3_", "1-2_3", "1.0.1_", + "1.0.1-", "1.0.1post.za", "1@2", "1_", @@ -383,6 +397,9 @@ mod test { "1_2_3_", "1__", "1___", + "1--", + "1-_", + "1_-", ]; #[derive(Debug, Serialize)] diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index 2a482bf67..a2e3ac496 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -30,21 +30,33 @@ expression: index_map local: [[0], [2]], }, ), - "1-2-3": Version( + "1--": Version( Version { - version: [[0], [1], [2], [3]], + version: [[0], [1], [0, '_']], local: [[0]], }, ), - "1-2-3_": Version( + "1-2-3": Version( Version { - version: [[0], [1], [2], [3, '_']], + version: [[0], [1], [2], [3]], local: [[0]], }, ), + "1-2-3_": Error( + "cannot use both underscores and dashes as version segment seperators", + ), "1-2_3": Error( "cannot use both underscores and dashes as version segment seperators", ), + "1-_": Error( + "cannot use both underscores and dashes as version segment seperators", + ), + "1.0.1-": Version( + Version { + version: [[0], [1], [0], [1, '_']], + local: [[0]], + }, + ), "1.0.1_": Version( Version { version: [[0], [1], [0], [1, '_']], @@ -66,6 +78,9 @@ expression: index_map local: [[0]], }, ), + "1_-": Error( + "cannot use both underscores and dashes as version segment seperators", + ), "1_2_3": Version( Version { version: [[0], [1], [2], [3]], From 311ffa020787ab96f5d5b0829e6b2a86fb23daea Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sun, 2 Jul 2023 20:01:43 +0200 Subject: [PATCH 15/22] fix: error messages --- crates/rattler_conda_types/src/version/mod.rs | 32 ++++++++++++------- .../rattler_conda_types/src/version/parse.rs | 5 ++- ...da_types__version__parse__test__parse.snap | 22 ++++++------- 3 files changed, 35 insertions(+), 24 deletions(-) diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index e8c2c8a23..29a89ad07 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -594,7 +594,7 @@ impl Debug for Version { f.debug_struct("Version") .field( "version", - &SegmentFormatter::new(self.epoch_opt(), self.segments()), + &SegmentFormatter::new(Some(self.epoch_opt().unwrap_or(0)), self.segments()), ) .field("local", &SegmentFormatter::new(None, self.local_segments())) .finish() @@ -624,9 +624,13 @@ impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatt }; write!(f, "[")?; - write!(f, "[{}]", epoch.unwrap_or(0))?; - for segment in iter { - write!(f, ", ")?; + if let Some(epoch) = epoch { + write!(f, "[{}], ", epoch)?; + } + for (idx, segment) in iter.enumerate() { + if idx > 0 { + write!(f, ", ")?; + } write!(f, "[{:?}]", segment.components().format(", "))?; } write!(f, "]")?; @@ -637,11 +641,15 @@ impl<'v, I: Iterator> + 'v> fmt::Debug for SegmentFormatt impl<'v, I: Iterator> + 'v> fmt::Display for SegmentFormatter<'v, I> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - let (_epoch, iter) = match self.inner.borrow_mut().take() { + let (epoch, iter) = match self.inner.borrow_mut().take() { Some(iter) => iter, None => panic!("was already formatted once"), }; + if let Some(epoch) = epoch { + write!(f, "{epoch}!")? + } + for segment in iter { if let Some(separator) = segment.separator() { write!(f, "{separator}")?; @@ -756,8 +764,8 @@ impl Ord for Component { } // Underscores are sorted before identifiers - (Component::UnderscoreOrDash { .. }, Component::Iden(_)) => Ordering::Greater, - (Component::Iden(_), Component::UnderscoreOrDash { .. }) => Ordering::Less, + (Component::UnderscoreOrDash { .. }, Component::Iden(_)) => Ordering::Less, + (Component::Iden(_), Component::UnderscoreOrDash { .. }) => Ordering::Greater, // Post is always compared greater than anything else. (Component::Post, _) => Ordering::Greater, @@ -842,11 +850,11 @@ impl PartialOrd for Version { impl Display for Version { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - if let Some(epoch) = self.epoch_opt() { - write!(f, "{epoch}!")?; - } - - write!(f, "{}", SegmentFormatter::new(None, self.segments()))?; + write!( + f, + "{}", + SegmentFormatter::new(self.epoch_opt(), self.segments()) + )?; if self.has_local() { write!(f, "+{}", SegmentFormatter::new(None, self.local_segments()))?; } diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 6f22e6505..f0b313640 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -454,7 +454,10 @@ mod test { let parsed_version = Version::from_str(version).unwrap(); let parsed_version_debug_string = format!( "{:?}", - SegmentFormatter::new(parsed_version.epoch_opt(), parsed_version.segments()) + SegmentFormatter::new( + Some(parsed_version.epoch_opt().unwrap_or(0)), + parsed_version.segments() + ) ); assert_eq!(parsed_version_debug_string, debug_parsed); } diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index a2e3ac496..e52980769 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -12,7 +12,7 @@ expression: index_map "1!1.2a.3-rc1": Version( Version { version: [[1], [1], [2, 'a'], [3], [0, 'rc', 1]], - local: [[0]], + local: [], }, ), "1+": Error( @@ -27,19 +27,19 @@ expression: index_map "1+2": Version( Version { version: [[0], [1]], - local: [[0], [2]], + local: [[2]], }, ), "1--": Version( Version { version: [[0], [1], [0, '_']], - local: [[0]], + local: [], }, ), "1-2-3": Version( Version { version: [[0], [1], [2], [3]], - local: [[0]], + local: [], }, ), "1-2-3_": Error( @@ -54,19 +54,19 @@ expression: index_map "1.0.1-": Version( Version { version: [[0], [1], [0], [1, '_']], - local: [[0]], + local: [], }, ), "1.0.1_": Version( Version { version: [[0], [1], [0], [1, '_']], - local: [[0]], + local: [], }, ), "1.0.1post.za": Version( Version { version: [[0], [1], [0], [1, inf], [0, 'za']], - local: [[0]], + local: [], }, ), "1@2": Error( @@ -75,7 +75,7 @@ expression: index_map "1_": Version( Version { version: [[0], [1, '_']], - local: [[0]], + local: [], }, ), "1_-": Error( @@ -84,19 +84,19 @@ expression: index_map "1_2_3": Version( Version { version: [[0], [1], [2], [3]], - local: [[0]], + local: [], }, ), "1_2_3_": Version( Version { version: [[0], [1], [2], [3, '_']], - local: [[0]], + local: [], }, ), "1__": Version( Version { version: [[0], [1], [0, '_']], - local: [[0]], + local: [], }, ), "1___": Error( From d39d169fbe82d9b46a092f2c3cf6f97984191c9c Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 09:48:24 +0200 Subject: [PATCH 16/22] fix: remove default from version and fix issue --- .../rattler_conda_types/src/match_spec/mod.rs | 8 +++-- .../rattler_conda_types/src/repo_data/mod.rs | 28 ++++++++++++++- crates/rattler_conda_types/src/version/mod.rs | 2 +- crates/rattler_shell/src/shell/mod.rs | 34 +++++++++++++------ 4 files changed, 56 insertions(+), 16 deletions(-) diff --git a/crates/rattler_conda_types/src/match_spec/mod.rs b/crates/rattler_conda_types/src/match_spec/mod.rs index 404564290..3b1a7ede6 100644 --- a/crates/rattler_conda_types/src/match_spec/mod.rs +++ b/crates/rattler_conda_types/src/match_spec/mod.rs @@ -373,13 +373,15 @@ mod tests { #[test] fn test_digest_match() { let record = PackageRecord { - name: "mamba".to_string(), - version: Version::from_str("1.0").unwrap(), sha256: parse_digest_from_hex::( "f44c4bc9c6916ecc0e33137431645b029ade22190c7144eead61446dcbcc6f97", ), md5: parse_digest_from_hex::("dede6252c964db3f3e41c7d30d07f6bf"), - ..PackageRecord::default() + ..PackageRecord::new( + String::from("mamba"), + Version::from_str("1.0").unwrap(), + String::from(""), + ) }; let spec = MatchSpec::from_str("mamba[version==1.0, sha256=aaac4bc9c6916ecc0e33137431645b029ade22190c7144eead61446dcbcc6f97]").unwrap(); diff --git a/crates/rattler_conda_types/src/repo_data/mod.rs b/crates/rattler_conda_types/src/repo_data/mod.rs index 76fa71fb5..ce3fe8aa5 100644 --- a/crates/rattler_conda_types/src/repo_data/mod.rs +++ b/crates/rattler_conda_types/src/repo_data/mod.rs @@ -62,7 +62,7 @@ pub struct ChannelInfo { #[serde_as] #[skip_serializing_none] #[sorted] -#[derive(Debug, Deserialize, Serialize, Eq, PartialEq, Ord, PartialOrd, Clone, Hash, Default)] +#[derive(Debug, Deserialize, Serialize, Eq, PartialEq, Ord, PartialOrd, Clone, Hash)] pub struct PackageRecord { /// Optionally the architecture the package supports pub arch: Option, @@ -182,6 +182,32 @@ impl RepoData { } impl PackageRecord { + /// A simple helper method that constructs a `PackageRecord` with the bare minimum values. + pub fn new(name: String, version: Version, build: String) -> Self { + Self { + arch: None, + build, + build_number: 0, + constrains: vec![], + depends: vec![], + features: None, + legacy_bz2_md5: None, + legacy_bz2_size: None, + license: None, + license_family: None, + md5: None, + name, + noarch: Default::default(), + platform: None, + sha256: None, + size: None, + subdir: Platform::current().to_string(), + timestamp: None, + track_features: vec![], + version, + } + } + /// Sorts the records topologically. /// /// This function is deterministic, meaning that it will return the same result regardless of diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 005417682..29a89ad07 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -126,7 +126,7 @@ use segment::Segment; /// this problem by appending an underscore to plain version numbers: /// /// 1.0.1_ < 1.0.1a => True # ensure correct ordering for openssl -#[derive(Clone, Eq, Deserialize, Default)] +#[derive(Clone, Eq)] pub struct Version { /// Individual components of the version. /// diff --git a/crates/rattler_shell/src/shell/mod.rs b/crates/rattler_shell/src/shell/mod.rs index af989f317..3b6d59204 100644 --- a/crates/rattler_shell/src/shell/mod.rs +++ b/crates/rattler_shell/src/shell/mod.rs @@ -120,24 +120,28 @@ fn native_path_to_unix(path: &str) -> Result { .arg("--unix") .arg("--path") .arg(path) - .output() - .unwrap(); + .output(); - if output.status.success() { - return Ok(String::from_utf8(output.stdout) + match output { + Ok(output) if output.status.success() => Ok(String::from_utf8(output.stdout) .map_err(|_| { std::io::Error::new( std::io::ErrorKind::Other, - "Failed to convert path to Unix style", + "failed to convert path to Unix style", ) })? .trim() - .to_string()); + .to_string()), + Err(e) if e.kind() == std::io::ErrorKind::NotFound => Err(e), + Err(e) => Err(std::io::Error::new( + std::io::ErrorKind::Other, + format!("failed to convert path to Unix style: {e}"), + )), + _ => Err(std::io::Error::new( + std::io::ErrorKind::Other, + format!("failed to convert path to Unix style: cygpath failed"), + )), } - Err(std::io::Error::new( - std::io::ErrorKind::Other, - "Failed to convert path to Unix style", - )) } /// A [`Shell`] implementation for the Bash shell. @@ -170,7 +174,15 @@ impl Shell for Bash { .map(|path| { // check if we are on Windows, and if yes, convert native path to unix for (Git) Bash if cfg!(windows) { - native_path_to_unix(path.to_string_lossy().as_ref()).unwrap() + match native_path_to_unix(path.to_string_lossy().as_ref()) { + Ok(path) => path, + Err(e) if e.kind() == std::io::ErrorKind::NotFound => { + // This indicates that the cypath executable could not be found. In that + // case we just ignore any conversion and use the windows path directly. + path.to_string_lossy().to_string() + } + Err(e) => panic!("{e}"), + } } else { path.to_string_lossy().into_owned() } From 1728599b9798c2422ccd2b52a54a0bedf2b25b35 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 09:54:37 +0200 Subject: [PATCH 17/22] fix: clippy --- crates/rattler_shell/src/shell/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rattler_shell/src/shell/mod.rs b/crates/rattler_shell/src/shell/mod.rs index 3b6d59204..6d9a299c7 100644 --- a/crates/rattler_shell/src/shell/mod.rs +++ b/crates/rattler_shell/src/shell/mod.rs @@ -139,7 +139,7 @@ fn native_path_to_unix(path: &str) -> Result { )), _ => Err(std::io::Error::new( std::io::ErrorKind::Other, - format!("failed to convert path to Unix style: cygpath failed"), + "failed to convert path to Unix style: cygpath failed", )), } } From 5234e3bd34f7a3e6ffab78a3bd3049ffcc844d2a Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 14:49:47 +0200 Subject: [PATCH 18/22] feat: add VersionWithSource --- .../rattler_conda_types/src/conda_lock/mod.rs | 4 +- crates/rattler_conda_types/src/lib.rs | 2 +- .../rattler_conda_types/src/package/index.rs | 7 +- .../rattler_conda_types/src/repo_data/mod.rs | 11 +- crates/rattler_conda_types/src/version/mod.rs | 3 + .../src/version/with_source.rs | 168 ++++++++++++++++++ crates/rattler_solve/src/lib.rs | 2 +- 7 files changed, 183 insertions(+), 14 deletions(-) create mode 100644 crates/rattler_conda_types/src/version/with_source.rs diff --git a/crates/rattler_conda_types/src/conda_lock/mod.rs b/crates/rattler_conda_types/src/conda_lock/mod.rs index 809a7b4d5..8fe8b9772 100644 --- a/crates/rattler_conda_types/src/conda_lock/mod.rs +++ b/crates/rattler_conda_types/src/conda_lock/mod.rs @@ -7,7 +7,7 @@ use crate::match_spec::parse::ParseMatchSpecError; use crate::MatchSpec; use crate::{ utils::serde::Ordered, NamelessMatchSpec, NoArchType, PackageRecord, ParsePlatformError, - ParseVersionError, Platform, RepoDataRecord, Version, + ParseVersionError, Platform, RepoDataRecord, }; use fxhash::FxHashMap; use rattler_digest::{serde::SerializableHash, Md5Hash, Sha256Hash}; @@ -350,7 +350,7 @@ impl TryFrom for RepoDataRecord { .map(|(name, matchspec)| MatchSpec::from_nameless(matchspec, Some(name)).to_string()) .collect::>(); - let version = value.version.parse::()?; + let version = value.version.parse()?; let md5 = match value.hash { Md5(md5) => Some(md5), Md5Sha256(md5, _) => Some(md5), diff --git a/crates/rattler_conda_types/src/lib.rs b/crates/rattler_conda_types/src/lib.rs index 3d67e5c40..e2e5dd89a 100644 --- a/crates/rattler_conda_types/src/lib.rs +++ b/crates/rattler_conda_types/src/lib.rs @@ -36,7 +36,7 @@ pub use repo_data::patches::{PackageRecordPatch, PatchInstructions, RepoDataPatc pub use repo_data::{ChannelInfo, ConvertSubdirError, PackageRecord, RepoData}; pub use repo_data_record::RepoDataRecord; pub use run_export::RunExportKind; -pub use version::{ParseVersionError, ParseVersionErrorKind, Version}; +pub use version::{ParseVersionError, ParseVersionErrorKind, Version, VersionWithSource}; pub use version_spec::VersionSpec; #[cfg(test)] diff --git a/crates/rattler_conda_types/src/package/index.rs b/crates/rattler_conda_types/src/package/index.rs index ab5f015e6..16fbcba15 100644 --- a/crates/rattler_conda_types/src/package/index.rs +++ b/crates/rattler_conda_types/src/package/index.rs @@ -1,9 +1,9 @@ use std::path::Path; use super::PackageFile; -use crate::{NoArchType, Version}; +use crate::{NoArchType, VersionWithSource}; use serde::{Deserialize, Serialize}; -use serde_with::{serde_as, skip_serializing_none, DisplayFromStr, OneOrMany}; +use serde_with::{serde_as, skip_serializing_none, OneOrMany}; use rattler_macros::sorted; @@ -70,8 +70,7 @@ pub struct IndexJson { pub track_features: Vec, /// The version of the package - #[serde_as(as = "DisplayFromStr")] - pub version: Version, + pub version: VersionWithSource, } impl PackageFile for IndexJson { diff --git a/crates/rattler_conda_types/src/repo_data/mod.rs b/crates/rattler_conda_types/src/repo_data/mod.rs index ce3fe8aa5..a789d0165 100644 --- a/crates/rattler_conda_types/src/repo_data/mod.rs +++ b/crates/rattler_conda_types/src/repo_data/mod.rs @@ -12,13 +12,13 @@ use fxhash::{FxHashMap, FxHashSet}; use rattler_digest::{serde::SerializableHash, Md5Hash, Sha256Hash}; use serde::{Deserialize, Serialize}; -use serde_with::{serde_as, skip_serializing_none, DisplayFromStr, OneOrMany}; +use serde_with::{serde_as, skip_serializing_none, OneOrMany}; use thiserror::Error; use rattler_macros::sorted; use crate::package::IndexJson; -use crate::{Channel, NoArchType, Platform, RepoDataRecord, Version}; +use crate::{Channel, NoArchType, Platform, RepoDataRecord, VersionWithSource}; /// [`RepoData`] is an index of package binaries available on in a subdirectory of a Conda channel. // Note: we cannot use the sorted macro here, because the `packages` and `conda_packages` fields are @@ -139,8 +139,7 @@ pub struct PackageRecord { pub track_features: Vec, /// The version of the package - #[serde_as(as = "DisplayFromStr")] - pub version: Version, + pub version: VersionWithSource, // Looking at the `PackageRecord` class in the Conda source code a record can also include all // these fields. However, I have no idea if or how they are used so I left them out. //pub preferred_env: Option, @@ -183,7 +182,7 @@ impl RepoData { impl PackageRecord { /// A simple helper method that constructs a `PackageRecord` with the bare minimum values. - pub fn new(name: String, version: Version, build: String) -> Self { + pub fn new(name: String, version: impl Into, build: String) -> Self { Self { arch: None, build, @@ -204,7 +203,7 @@ impl PackageRecord { subdir: Platform::current().to_string(), timestamp: None, track_features: vec![], - version, + version: version.into(), } } diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 29a89ad07..5418188a0 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -20,10 +20,13 @@ pub use parse::{ParseVersionError, ParseVersionErrorKind}; mod flags; mod parse; mod segment; +mod with_source; use flags::Flags; use segment::Segment; +pub use with_source::VersionWithSource; + /// This class implements an order relation between version strings. Version strings can contain the /// usual alphanumeric characters (A-Za-z0-9), separated into segments by dots and underscores. /// Empty segments (i.e. two consecutive dots, a leading/trailing underscore) are not permitted. An diff --git a/crates/rattler_conda_types/src/version/with_source.rs b/crates/rattler_conda_types/src/version/with_source.rs new file mode 100644 index 000000000..b756eab26 --- /dev/null +++ b/crates/rattler_conda_types/src/version/with_source.rs @@ -0,0 +1,168 @@ +use super::Version; +use crate::ParseVersionError; +use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; +use std::borrow::Cow; +use std::hash::{Hash, Hasher}; +use std::{ + cmp::Ordering, + fmt, + fmt::{Display, Formatter}, + ops::Deref, + str::FromStr, +}; + +/// Holds a version and the string it was created from. This is useful if you want to retain the +/// original string the version was created from. This might be useful in cases where you have +/// multiple strings that are represented by the same [`Version`] but you still want to be able to +/// distinguish them. +/// +/// The string `1.0` and `1.01` represent the same version. When you print the parsed version though +/// it will come out as `1.0`. You loose the original representation. This struct stores the +/// original source string. +/// +/// It is also possible to convert directly from a [`Version`] but the [`Display`] implementation +/// is then used to generate the string representation. +#[derive(Debug, Clone)] +pub struct VersionWithSource { + version: Version, + source: Option>, +} + +impl FromStr for VersionWithSource { + type Err = ParseVersionError; + + fn from_str(s: &str) -> Result { + Ok(Self { + version: Version::from_str(s)?, + source: Some(s.to_owned().into_boxed_str()), + }) + } +} + +impl Hash for VersionWithSource { + fn hash(&self, state: &mut H) { + self.version.hash(state); + self.source.hash(state); + } +} + +impl PartialEq for VersionWithSource { + fn eq(&self, other: &Self) -> bool { + self.version.eq(&other.version) && self.as_str().eq(&other.as_str()) + } +} + +impl Eq for VersionWithSource {} + +impl PartialOrd for VersionWithSource { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for VersionWithSource { + fn cmp(&self, other: &Self) -> Ordering { + // First order by version then by string representation + self.version + .cmp(&other.version) + .then_with(|| self.as_str().as_ref().cmp(other.as_str().as_ref())) + } +} + +impl VersionWithSource { + /// Constructs a new instance from a [`Version`] and a source representation. + pub fn new(version: Version, source: impl ToString) -> Self { + Self { + version, + source: Some(source.to_string().into_boxed_str()), + } + } + + /// Returns the [`Version`] + pub fn version(&self) -> &Version { + &self.version + } + + /// Returns the string representation of this instance. Either this is a reference to the source + /// string or an owned formatted version of the stored version. + pub fn as_str(&self) -> Cow { + match &self.source { + Some(source) => Cow::Borrowed(source.as_ref()), + None => Cow::Owned(format!("{}", &self.version)), + } + } + + /// Convert this instance back into a [`Version`]. + pub fn into_version(self) -> Version { + self.version + } +} + +impl PartialEq for VersionWithSource { + fn eq(&self, other: &Version) -> bool { + self.version.eq(other) + } +} + +impl PartialOrd for VersionWithSource { + fn partial_cmp(&self, other: &Version) -> Option { + self.version.partial_cmp(other) + } +} + +impl From for VersionWithSource { + fn from(version: Version) -> Self { + VersionWithSource { + version, + source: None, + } + } +} + +impl AsRef for VersionWithSource { + fn as_ref(&self) -> &Version { + &self.version + } +} + +impl Deref for VersionWithSource { + type Target = Version; + + fn deref(&self) -> &Self::Target { + &self.version + } +} + +impl Display for VersionWithSource { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + match &self.source { + Some(source) => write!(f, "{}", source.as_ref()), + None => write!(f, "{}", &self.version), + } + } +} + +impl Serialize for VersionWithSource { + fn serialize(&self, serializer: S) -> Result + where + S: Serializer, + { + match &self.source { + None => self.version.to_string().serialize(serializer), + Some(src) => src.serialize(serializer), + } + } +} + +impl<'de> Deserialize<'de> for VersionWithSource { + fn deserialize(deserializer: D) -> Result + where + D: Deserializer<'de>, + { + let source = String::deserialize(deserializer)?; + Ok(Self { + version: Version::from_str(&source).map_err(D::Error::custom)?, + source: Some(source.into_boxed_str()), + }) + } +} diff --git a/crates/rattler_solve/src/lib.rs b/crates/rattler_solve/src/lib.rs index 13bde9aee..f74638c9b 100644 --- a/crates/rattler_solve/src/lib.rs +++ b/crates/rattler_solve/src/lib.rs @@ -146,7 +146,7 @@ mod test_libsolv { file_name: "dummy-filename".to_string(), package_record: PackageRecord { name: name.to_string(), - version: Version::from_str(version).unwrap(), + version: version.parse().unwrap(), build: build.to_string(), build_number, subdir: subdir.to_string(), From 32a1fb57bac45aba0d4ca7b99f4d9f8123fb0e03 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 7 Jul 2023 13:27:55 +0200 Subject: [PATCH 19/22] wip --- crates/rattler_conda_types/src/version/mod.rs | 12 +- .../rattler_conda_types/src/version/parse.rs | 318 +++++++++++------- .../src/version/segment.rs | 19 +- ...da_types__version__parse__test__parse.snap | 4 +- .../src/version_spec/mod.rs | 1 + .../src/version_spec/parse.rs | 303 +++++++++++++++++ 6 files changed, 529 insertions(+), 128 deletions(-) create mode 100644 crates/rattler_conda_types/src/version_spec/parse.rs diff --git a/crates/rattler_conda_types/src/version/mod.rs b/crates/rattler_conda_types/src/version/mod.rs index 5418188a0..e575b7bf4 100644 --- a/crates/rattler_conda_types/src/version/mod.rs +++ b/crates/rattler_conda_types/src/version/mod.rs @@ -18,7 +18,7 @@ use smallvec::SmallVec; pub use parse::{ParseVersionError, ParseVersionErrorKind}; mod flags; -mod parse; +pub(crate) mod parse; mod segment; mod with_source; @@ -218,7 +218,7 @@ impl Version { }; version_segments.iter().map(move |&segment| { let start = idx; - idx += segment.len(); + idx += segment.len() as usize; SegmentIter { offset: start, version: self, @@ -312,12 +312,12 @@ impl Version { let mut idx = if self.has_epoch() { 1 } else { 0 }; idx += self.segments[..start] .iter() - .map(|segment| segment.len()) + .map(|segment| segment.len() as usize) .sum::(); let version_segments = &self.segments[start..]; Either::Left(version_segments.iter().map(move |&segment| { let start = idx; - idx += segment.len(); + idx += segment.len() as usize; SegmentIter { offset: start, version: self, @@ -914,7 +914,7 @@ impl<'v> SegmentIter<'v> { /// Returns the number of components stored in the version. Note that the number of components /// returned by [`Self::components`] might differ because it might include an implicit default. pub fn component_count(&self) -> usize { - self.segment.len() + self.segment.len() as usize } /// Returns an iterator over the components of this segment. @@ -924,7 +924,7 @@ impl<'v> SegmentIter<'v> { let version = self.version; // Create an iterator over all component - let segment_components = (self.offset..self.offset + self.segment.len()) + let segment_components = (self.offset..self.offset + self.segment.len() as usize) .map(move |idx| &version.components[idx]); // Add an implicit default if this segment has one diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index f0b313640..253bfcaab 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -3,12 +3,12 @@ use crate::version::flags::Flags; use crate::version::segment::Segment; use crate::version::{ComponentVec, SegmentVec}; use nom::branch::alt; -use nom::bytes::complete::{tag_no_case, take_while}; +use nom::bytes::complete::tag_no_case; use nom::character::complete::{alpha1, char, digit1, one_of}; -use nom::combinator::{cut, eof, map, map_res, opt, value}; +use nom::combinator::{map, opt, value}; use nom::error::{ErrorKind, FromExternalError, ParseError}; -use nom::sequence::{preceded, terminated}; -use nom::{IResult, Parser}; +use nom::sequence::terminated; +use nom::IResult; use smallvec::SmallVec; use std::{ convert::Into, @@ -83,6 +83,9 @@ pub enum ParseVersionErrorKind { /// Cannot mix and match dashes and underscores #[error("cannot use both underscores and dashes as version segment seperators")] CannotMixAndMatchDashesAndUnderscores, + /// Expected the end of the string + #[error("encountered more characters but expected none")] + ExpectedEof, /// Nom error #[error("{0:?}")] Nom(ErrorKind), @@ -125,119 +128,145 @@ fn numeral_parser(input: &str) -> IResult<&str, u64, ParseVersionErrorKind> { } /// Parses a single version [`Component`]. -fn component_parser<'i>( - separator: Option, -) -> impl Parser<&'i str, Component, ParseVersionErrorKind> { - move |input: &'i str| { - alt(( - // Parse a numeral - map(numeral_parser, Component::Numeral), - // Parse special case components - value(Component::Post, tag_no_case("post")), - value(Component::Dev, tag_no_case("dev")), - // Parse an identifier - map(alpha1, |alpha: &'i str| { - Component::Iden(alpha.to_lowercase().into_boxed_str()) - }), - // Parse a `_` or `-` at the end of the string. - map_res(terminated(one_of("-_"), eof), |c: char| { - let is_dash = match (c, separator) { - ('-', Some('-') | None) => true, - ('_', Some('_') | None) => false, - _ => return Err(ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores), - }; - Ok(Component::UnderscoreOrDash { is_dash }) - }), - ))(input) - } +fn component_parser<'i>(input: &'i str) -> IResult<&'i str, Component, ParseVersionErrorKind> { + alt(( + // Parse a numeral + map(numeral_parser, Component::Numeral), + // Parse special case components + value(Component::Post, tag_no_case("post")), + value(Component::Dev, tag_no_case("dev")), + // Parse an identifier + map(alpha1, |alpha: &'i str| { + Component::Iden(alpha.to_lowercase().into_boxed_str()) + }), + ))(input) } /// Parses a version segment from a list of components. fn segment_parser<'i>( components: &mut ComponentVec, - separator: Option, -) -> impl Parser<&'i str, Segment, ParseVersionErrorKind> + '_ { - move |input| { - // Parse the first component of the segment - let (mut rest, first_component) = match component_parser(separator).parse(input) { - Ok(result) => result, - // Convert undefined parse errors into an expect error - Err(nom::Err::Error(ParseVersionErrorKind::Nom(_))) => { - return Err(nom::Err::Error(ParseVersionErrorKind::ExpectedComponent)) + input: &'i str, +) -> IResult<&'i str, Segment, ParseVersionErrorKind> { + // Parse the first component of the segment + let (mut rest, first_component) = match component_parser(input) { + Ok(result) => result, + // Convert undefined parse errors into an expect error + Err(nom::Err::Error(ParseVersionErrorKind::Nom(_))) => { + return Err(nom::Err::Error(ParseVersionErrorKind::ExpectedComponent)) + } + Err(e) => return Err(e), + }; + + // If the first component is not numeric we add a default component since each segment must + // always start with a number. + let mut component_count = 0u16; + let has_implicit_default = !first_component.is_numeric(); + + // Add the first component + components.push(first_component); + component_count += 1; + + // Loop until we can't find any more components + loop { + let (remaining, component) = match opt(component_parser)(rest) { + Ok((i, o)) => (i, o), + Err(e) => { + // Remove any components that we may have added. + components.drain(components.len() - (component_count as usize)..); + return Err(e); } - Err(e) => return Err(e), }; - - // If the first component is not numeric we add a default component since each segment must - // always start with a number. - let mut component_count = 0u16; - let has_implicit_default = !first_component.is_numeric(); - - // Add the first component - components.push(first_component); - component_count += 1; - - // Loop until we can't find any more components - loop { - let (remaining, component) = match opt(component_parser(separator))(rest) { - Ok((i, o)) => (i, o), - Err(e) => { - // Remove any components that we may have added. - components.drain(components.len() - (component_count as usize)..); - return Err(e); - } - }; - match component { - Some(component) => { - components.push(component); - component_count = match component_count.checked_add(1) { - Some(length) => length, - None => { - return Err(nom::Err::Error( - ParseVersionErrorKind::TooManyComponentsInASegment, - )) - } + match component { + Some(component) => { + components.push(component); + component_count = match component_count.checked_add(1) { + Some(length) => length, + None => { + return Err(nom::Err::Failure( + ParseVersionErrorKind::TooManyComponentsInASegment, + )) } } - None => { - let segment = Segment::new(component_count) - .ok_or(nom::Err::Error( - ParseVersionErrorKind::TooManyComponentsInASegment, - ))? - .with_implicit_default(has_implicit_default); + } + None => { + let segment = Segment::new(component_count) + .ok_or(nom::Err::Failure( + ParseVersionErrorKind::TooManyComponentsInASegment, + ))? + .with_implicit_default(has_implicit_default); - break Ok((remaining, segment)); - } + break Ok((remaining, segment)); } - rest = remaining; } + rest = remaining; } } -fn final_version_part_parser( +/// Parses a trailing underscore or dash. +fn trailing_dash_underscore_parser( + input: &str, + dash_or_underscore: Option, +) -> IResult<&str, (Option, Option), ParseVersionErrorKind> { + // Parse a - or _. Return early if it cannot be found. + let (rest, Some(separator)) = opt(one_of::<_,_,(&str, ErrorKind)>("-_"))(input).map_err(|e| e.map(|(_, kind)| ParseVersionErrorKind::Nom(kind)))? else { + return Ok((input, (None, dash_or_underscore))); + }; + + // Make sure dashes and underscores are not mixed. + let dash_or_underscore = match (dash_or_underscore, separator) { + (None, '-') => Some('-'), + (None, '_') => Some('_'), + (Some('-'), '_') | (Some('_'), '-') => { + return Err(nom::Err::Error( + ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores, + )) + } + _ => dash_or_underscore, + }; + + Ok(( + rest, + ( + Some(Component::UnderscoreOrDash { + is_dash: separator == '-', + }), + dash_or_underscore, + ), + )) +} + +fn version_part_parser<'i>( components: &mut ComponentVec, segments: &mut SegmentVec, - input: &str, + input: &'i str, dash_or_underscore: Option, -) -> Result, nom::Err> { +) -> IResult<&'i str, Option, ParseVersionErrorKind> { let mut dash_or_underscore = dash_or_underscore; - let first_segment_idx = segments.len(); + let mut recovery_segment_idx = segments.len(); // Parse the first segment of the version. It must exists. - let (mut input, first_segment_length) = - segment_parser(components, dash_or_underscore).parse(input)?; + let (mut input, first_segment_length) = segment_parser(components, input)?; segments.push(first_segment_length); + + // Iterate over any additional segments that we find. let result = loop { - // Parse either eof or a version segment separator. - let (rest, separator) = match alt((map(one_of("-._"), Some), value(None, eof)))(input) { - Ok((_, None)) => break Ok(dash_or_underscore), + // Parse a version segment separator. + let (rest, separator) = match opt(one_of("-._"))(input) { + Ok((_, None)) => { + // No additional separator found, exit early. + return Ok((input, dash_or_underscore)); + } Ok((rest, Some(separator))) => (rest, separator), + Err(nom::Err::Error(_)) => { + // If an error occured we convert it to a segment separator not found error instead. break Err(nom::Err::Error( ParseVersionErrorKind::ExpectedSegmentSeparator, - )) + )); } - Err(e) => return Err(e), + + // Failure are propagated + Err(e) => break Err(e), }; // Make sure dashes and underscores are not mixed. @@ -245,7 +274,7 @@ fn final_version_part_parser( (None, '-') => dash_or_underscore = Some('-'), (None, '_') => dash_or_underscore = Some('_'), (Some('-'), '_') | (Some('_'), '-') => { - break Err(nom::Err::Error( + break Err(nom::Err::Failure( ParseVersionErrorKind::CannotMixAndMatchDashesAndUnderscores, )) } @@ -253,25 +282,73 @@ fn final_version_part_parser( } // Parse the next segment. - let (rest, segment) = match segment_parser(components, dash_or_underscore).parse(rest) { + let (rest, segment) = match segment_parser(components, rest) { Ok(result) => result, + Err(nom::Err::Error(_)) => { + // If parsing of a segment failed, check if perhaps the seperator is followed by an + // underscore or dash. + match trailing_dash_underscore_parser(rest, dash_or_underscore)? { + (rest, (Some(component), dash_or_underscore)) => { + // We are parsing multiple dashes or underscores ("..__"), add a new segment + // just for the trailing underscore/dash + components.push(component); + segments.push( + Segment::new(1) + .unwrap() + .with_implicit_default(true) + .with_separator(Some(separator)) + .unwrap(), + ); + + // Since the trailing is always at the end we immediately return + return Ok((rest, dash_or_underscore)); + } + (rest, (None, dash_or_underscore)) if separator == '-' || separator == '_' => { + // We are parsing a single dash or underscore (".._"), update the last + // segment we added + let segment = segments + .last_mut() + .expect("there must be at least one segment added"); + components.push(Component::UnderscoreOrDash { + is_dash: separator == '-', + }); + + *segment = segment + .len() + .checked_add(1) + .and_then(|len| segment.with_component_count(len)) + .ok_or(nom::Err::Failure( + ParseVersionErrorKind::TooManyComponentsInASegment, + ))?; + + // Since the trailing is always at the end we immediately return + return Ok((rest, dash_or_underscore)); + } + _ => return Ok((input, dash_or_underscore)), + } + } + + // Failures are propagated Err(e) => break Err(e), }; + segments.push( segment .with_separator(Some(separator)) .expect("unrecognized separator"), ); - + recovery_segment_idx += 1; input = rest; }; - // If there was an error, revert the `segment_lengths` array. - if result.is_err() { - segments.drain(first_segment_idx..); + match result { + // If there was an error, revert the `segment_lengths` array. + Err(e) => { + segments.drain(recovery_segment_idx..); + Err(e) + } + Ok(separator) => Ok((input, separator)), } - - result } pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKind> { @@ -291,16 +368,15 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi flags = flags.with_has_epoch(true); } - // Scan the input to find the version segments. - let (rest, common_part) = recognize_segments(input)?; - let (rest, local_part) = opt(preceded(char('+'), cut(recognize_segments)))(rest)?; - - // Parse the common version part - let dash_or_underscore = - final_version_part_parser(&mut components, &mut segments, common_part, None)?; + // Parse the common part of the version + let (rest, dash_or_underscore) = + match version_part_parser(&mut components, &mut segments, input, None) { + Ok(result) => result, + Err(e) => return Err(e), + }; // Parse the local version part - if let Some(local_part) = local_part { + let rest = if let Ok((local_version_part, _)) = char::<_, (&str, ErrorKind)>('+')(rest) { let first_local_segment_idx = segments.len(); // Encode the local segment index into the flags. @@ -322,14 +398,18 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi } } - // Parse the segments - final_version_part_parser( + match version_part_parser( &mut components, &mut segments, - local_part, + local_version_part, dash_or_underscore, - )?; - } + ) { + Ok((rest, _)) => rest, + Err(e) => return Err(e), + } + } else { + rest + }; return Ok(( rest, @@ -339,19 +419,12 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi segments, }, )); - - /// A helper function to crudely recognize version segments. - fn recognize_segments<'i, E: ParseError<&'i str>>( - input: &'i str, - ) -> IResult<&'i str, &'i str, E> { - take_while(|c: char| c.is_alphanumeric() || c == '_' || c == '-' || c == '.')(input) - } } pub fn final_version_parser(input: &str) -> Result { match version_parser(input) { Ok(("", version)) => Ok(version), - Ok(_) => Err(ParseVersionErrorKind::ExpectedSegmentSeparator), + Ok(_) => Err(ParseVersionErrorKind::ExpectedEof), Err(nom::Err::Failure(e) | nom::Err::Error(e)) => Err(e), Err(_) => unreachable!("not streaming, so no other error possible"), } @@ -368,6 +441,7 @@ impl FromStr for Version { #[cfg(test)] mod test { use super::{final_version_parser, Version}; + use crate::version::parse::version_parser; use crate::version::SegmentFormatter; use serde::Serialize; use std::collections::BTreeMap; @@ -375,6 +449,14 @@ mod test { use std::path::Path; use std::str::FromStr; + #[test] + fn test_parse_star() { + assert_eq!( + version_parser("1.*"), + Ok((".*", Version::from_str("1").unwrap())) + ); + } + #[test] fn test_parse() { let versions = [ diff --git a/crates/rattler_conda_types/src/version/segment.rs b/crates/rattler_conda_types/src/version/segment.rs index c0aec7b51..2c13f6e68 100644 --- a/crates/rattler_conda_types/src/version/segment.rs +++ b/crates/rattler_conda_types/src/version/segment.rs @@ -35,9 +35,21 @@ impl Segment { )) } + pub fn with_component_count(self, len: u16) -> Option { + // The number of components is too large. + if len > COMPONENT_COUNT_MASK { + return None; + } + + let component_mask = (len & COMPONENT_COUNT_MASK) << COMPONENT_COUNT_OFFSET; + Some(Self( + self.0 & !(COMPONENT_COUNT_MASK << COMPONENT_COUNT_OFFSET) | component_mask, + )) + } + /// Returns the number of components in this segment - pub fn len(self) -> usize { - ((self.0 >> COMPONENT_COUNT_OFFSET) & COMPONENT_COUNT_MASK) as usize + pub fn len(self) -> u16 { + (self.0 >> COMPONENT_COUNT_OFFSET) & COMPONENT_COUNT_MASK } /// Sets whether the segment starts with an implicit default `Component`. This is the case when @@ -109,6 +121,9 @@ mod test { assert_eq!(Segment::new(8191).unwrap().len(), 8191); assert_eq!(Segment::new(8192), None); + assert_eq!(Segment::new(1).unwrap().with_component_count(1337).unwrap().len(), 1337); + assert_eq!(Segment::new(1).unwrap().with_component_count(4096).unwrap().len(), 4096); + assert_eq!(Segment::new(4096).unwrap().has_implicit_default(), false); assert_eq!( Segment::new(4096) diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index e52980769..526f09251 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -70,7 +70,7 @@ expression: index_map }, ), "1@2": Error( - "expected a '.', '-', or '_'", + "encountered more characters but expected none", ), "1_": Version( Version { @@ -100,6 +100,6 @@ expression: index_map }, ), "1___": Error( - "expected a version component e.g. `2` or `rc`", + "encountered more characters but expected none", ), } diff --git a/crates/rattler_conda_types/src/version_spec/mod.rs b/crates/rattler_conda_types/src/version_spec/mod.rs index 27bbffc05..68168242e 100644 --- a/crates/rattler_conda_types/src/version_spec/mod.rs +++ b/crates/rattler_conda_types/src/version_spec/mod.rs @@ -3,6 +3,7 @@ mod constraint; pub(crate) mod version_tree; +mod parse; use crate::version_spec::constraint::{Constraint, ParseConstraintError}; use crate::version_spec::version_tree::ParseVersionTreeError; diff --git a/crates/rattler_conda_types/src/version_spec/parse.rs b/crates/rattler_conda_types/src/version_spec/parse.rs new file mode 100644 index 000000000..4dadb74f7 --- /dev/null +++ b/crates/rattler_conda_types/src/version_spec/parse.rs @@ -0,0 +1,303 @@ +use crate::version::parse::version_parser; +use crate::version_spec::constraint::Constraint; +use crate::version_spec::VersionOperator; +use crate::{ParseVersionError, ParseVersionErrorKind}; +use nom::branch::alt; +use nom::bytes::complete::{tag, take_till, take_till1, take_until, take_while, take_while1}; +use nom::character::complete::char; +use nom::combinator::{map, map_res, opt, value}; +use nom::error::{ErrorKind, ParseError}; +use nom::sequence::{delimited, terminated, tuple}; +use nom::IResult; +use thiserror::Error; + +#[derive(Debug, Clone, Error, Eq, PartialEq)] +enum ParseVersionOperatorError<'i> { + #[error("invalid operator '{0}'")] + InvalidOperator(&'i str), + #[error("expected version operator")] + ExpectedOperator, +} + +/// Parses a version operator, returns an error if the operator is not recognized or not found. +fn operator_parser(input: &str) -> IResult<&str, VersionOperator, ParseVersionOperatorError> { + // F + let (rest, operator_str) = take_while1(|c| "=!<>~".contains(c))(input).map_err( + |_: nom::Err>| { + nom::Err::Error(ParseVersionOperatorError::ExpectedOperator) + }, + )?; + + let op = match operator_str { + "==" => VersionOperator::Equals, + "!=" => VersionOperator::NotEquals, + "<=" => VersionOperator::LessEquals, + ">=" => VersionOperator::GreaterEquals, + "<" => VersionOperator::Less, + ">" => VersionOperator::Greater, + "=" => VersionOperator::StartsWith, + "~=" => VersionOperator::Compatible, + _ => { + return Err(nom::Err::Failure( + ParseVersionOperatorError::InvalidOperator(operator_str), + )) + } + }; + + Ok((rest, op)) +} + +#[derive(Debug, Clone, Error, Eq, PartialEq)] +pub enum ParseConstraintError { + #[error("'.' is incompatible with '{0}' operator'")] + GlobVersionIncompatibleWithOperator(VersionOperator), + #[error("regex constraints are not supported")] + RegexConstraintsNotSupported, + #[error("unterminated unsupported regular expression")] + UnterminatedRegex, + #[error("invalid operator '{0}'")] + InvalidOperator(String), + #[error(transparent)] + InvalidVersion(#[from] ParseVersionErrorKind), + /// Expected a version + #[error("expected a version")] + ExpectedVersion, + /// Nom error + #[error("{0:?}")] + Nom(ErrorKind), +} + +impl<'i> ParseError<&'i str> for ParseConstraintError { + fn from_error_kind(_: &'i str, kind: ErrorKind) -> Self { + ParseConstraintError::Nom(kind) + } + + fn append(_: &'i str, _: ErrorKind, other: Self) -> Self { + other + } +} + +/// Parses a regex constraint. Returns an error if no terminating `$` is found. +fn regex_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { + let (_rest, (_, _, terminator)) = + tuple((char('^'), take_while(|c| c != '$'), opt(char('$'))))(input)?; + match terminator { + Some(_) => Err(nom::Err::Failure( + ParseConstraintError::RegexConstraintsNotSupported, + )), + None => Err(nom::Err::Failure(ParseConstraintError::UnterminatedRegex)), + } +} + +/// Parses the any constraint. This matches "*" and ".*" +fn any_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { + value(Constraint::Any, terminated(tag("*"), opt(tag(".*"))))(input) +} + +/// Parses a constraint with an operator in front of it. +fn logical_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { + // Parse the preceding operator + let (input, op) = match operator_parser(input) { + Err( + nom::Err::Failure(ParseVersionOperatorError::InvalidOperator(op)) + | nom::Err::Error(ParseVersionOperatorError::InvalidOperator(op)), + ) => { + return Err(nom::Err::Failure(ParseConstraintError::InvalidOperator( + op.to_owned(), + ))) + } + Err(nom::Err::Error(e)) => (input, None), + Ok((rest, op)) => (rest, Some(op)), + _ => unreachable!(), + }; + + // Parse the version + let (input, version) = version_parser(input).map_err(|e| e.map(Into::into))?; + + // Parse an optional terminating glob pattern. + let (rest, wildcard) = opt(alt((tag("*"), tag(".*"))))(input)?; + + // Convert the operator and the wildcard to something understandable + let op = match (wildcard, op) { + // Wildcard pattern + (Some(_), Some(VersionOperator::StartsWith)) => VersionOperator::StartsWith, + (Some(_), Some(VersionOperator::GreaterEquals)) => VersionOperator::GreaterEquals, + (Some(_), Some(VersionOperator::Greater)) => VersionOperator::GreaterEquals, + (Some(_), Some(VersionOperator::NotEquals)) => VersionOperator::NotStartsWith, + (Some(glob), Some(op)) => { + tracing::warn!("Using {glob} with relational operator is superfluous and deprecated and will be removed in a future version of conda."); + op + } + (Some(_), None) => VersionOperator::StartsWith, + + // No wildcard, use the operator specified. + (None, Some(op)) => op, + + // No wildcard, and no operator + (None, None) => VersionOperator::Equals, + }; + + Ok((rest, Constraint::Comparison(op, version))) +} + +/// Parses a version constraint. +fn constraint_parse(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { + alt((regex_constraint_parser, any_constraint_parser))(input) +} + +#[cfg(test)] +mod test { + use super::*; + use crate::Version; + use std::str::FromStr; + + #[test] + fn test_operator_parser() { + assert_eq!( + operator_parser(">3.1"), + Ok(("3.1", VersionOperator::Greater)) + ); + assert_eq!( + operator_parser(">=3.1"), + Ok(("3.1", VersionOperator::GreaterEquals)) + ); + assert_eq!(operator_parser("<3.1"), Ok(("3.1", VersionOperator::Less))); + assert_eq!( + operator_parser("<=3.1"), + Ok(("3.1", VersionOperator::LessEquals)) + ); + assert_eq!( + operator_parser("==3.1"), + Ok(("3.1", VersionOperator::Equals)) + ); + assert_eq!( + operator_parser("!=3.1"), + Ok(("3.1", VersionOperator::NotEquals)) + ); + assert_eq!( + operator_parser("=3.1"), + Ok(("3.1", VersionOperator::StartsWith)) + ); + assert_eq!( + operator_parser("~=3.1"), + Ok(("3.1", VersionOperator::Compatible)) + ); + + assert_eq!( + operator_parser("<==>3.1"), + Err(nom::Err::Error(ParseVersionOperatorError::InvalidOperator( + "<==>" + ))) + ); + assert_eq!( + operator_parser("3.1"), + Err(nom::Err::Error(ParseVersionOperatorError::ExpectedOperator)) + ); + } + + #[test] + fn parse_regex_constraint() { + assert_eq!( + regex_constraint_parser("^.*"), + Err(nom::Err::Error(ParseConstraintError::UnterminatedRegex)) + ); + assert_eq!( + regex_constraint_parser("^"), + Err(nom::Err::Error(ParseConstraintError::UnterminatedRegex)) + ); + assert_eq!( + regex_constraint_parser("^$"), + Err(nom::Err::Error( + ParseConstraintError::RegexConstraintsNotSupported + )) + ); + assert_eq!( + regex_constraint_parser("^1.2.3$"), + Err(nom::Err::Error( + ParseConstraintError::RegexConstraintsNotSupported + )) + ); + } + + #[test] + fn parse_logical_constraint() { + assert_eq!( + logical_constraint_parser("3.1"), + Ok(( + "", + Constraint::Comparison(VersionOperator::Equals, Version::from_str("3.1").unwrap()) + )) + ); + + assert_eq!( + logical_constraint_parser(">3.1"), + Ok(( + "", + Constraint::Comparison(VersionOperator::Greater, Version::from_str("3.1").unwrap()) + )) + ); + + assert_eq!( + logical_constraint_parser("3.1*"), + Ok(( + "", + Constraint::Comparison( + VersionOperator::StartsWith, + Version::from_str("3.1").unwrap() + ) + )) + ); + + assert_eq!( + logical_constraint_parser("3.1.*"), + Ok(( + "", + Constraint::Comparison( + VersionOperator::StartsWith, + Version::from_str("3.1").unwrap() + ) + )) + ); + + assert_eq!( + logical_constraint_parser("~=3.1"), + Ok(( + "", + Constraint::Comparison( + VersionOperator::Compatible, + Version::from_str("3.1").unwrap() + ) + )) + ); + + assert_eq!( + logical_constraint_parser(">=3.1*"), + Ok(( + "", + Constraint::Comparison( + VersionOperator::GreaterEquals, + Version::from_str("3.1").unwrap() + ) + )) + ); + } + + #[test] + fn parse_constraint() { + // Regular expressions + assert_eq!( + constraint_parse("^1.2.3$"), + Err(nom::Err::Failure( + ParseConstraintError::RegexConstraintsNotSupported + )) + ); + assert_eq!( + constraint_parse("^1.2.3"), + Err(nom::Err::Failure(ParseConstraintError::UnterminatedRegex)) + ); + + // Any constraints + assert_eq!(constraint_parse("*"), Ok(("", Constraint::Any))); + assert_eq!(constraint_parse("*.*"), Ok(("", Constraint::Any))); + } +} From 6670166fd2d15f5af00112e59602b145121b4382 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sat, 8 Jul 2023 21:53:17 +0200 Subject: [PATCH 20/22] feat: constraint parsing --- .../rattler_conda_types/src/version/parse.rs | 29 ++-- .../src/version/segment.rs | 18 ++- ...da_types__version__parse__test__parse.snap | 8 -- .../src/version_spec/constraint.rs | 130 ++++-------------- .../src/version_spec/mod.rs | 5 +- .../src/version_spec/parse.rs | 120 ++++++++++------ 6 files changed, 139 insertions(+), 171 deletions(-) diff --git a/crates/rattler_conda_types/src/version/parse.rs b/crates/rattler_conda_types/src/version/parse.rs index 253bfcaab..7f7d02da1 100644 --- a/crates/rattler_conda_types/src/version/parse.rs +++ b/crates/rattler_conda_types/src/version/parse.rs @@ -411,36 +411,35 @@ pub fn version_parser(input: &str) -> IResult<&str, Version, ParseVersionErrorKi rest }; - return Ok(( + Ok(( rest, Version { flags, components, segments, }, - )); -} - -pub fn final_version_parser(input: &str) -> Result { - match version_parser(input) { - Ok(("", version)) => Ok(version), - Ok(_) => Err(ParseVersionErrorKind::ExpectedEof), - Err(nom::Err::Failure(e) | nom::Err::Error(e)) => Err(e), - Err(_) => unreachable!("not streaming, so no other error possible"), - } + )) } impl FromStr for Version { type Err = ParseVersionError; fn from_str(s: &str) -> Result { - final_version_parser(s).map_err(|kind| ParseVersionError::new(s, kind)) + match version_parser(s) { + Ok(("", version)) => Ok(version), + Ok(_) => Err(ParseVersionError::new( + s, + ParseVersionErrorKind::ExpectedEof, + )), + Err(nom::Err::Failure(e) | nom::Err::Error(e)) => Err(ParseVersionError::new(s, e)), + Err(_) => unreachable!("not streaming, so no other error possible"), + } } } #[cfg(test)] mod test { - use super::{final_version_parser, Version}; + use super::Version; use crate::version::parse::version_parser; use crate::version::SegmentFormatter; use serde::Serialize; @@ -493,12 +492,12 @@ mod test { let mut index_map: BTreeMap = BTreeMap::default(); for version_str in versions { - let version_or_error = match final_version_parser(version_str) { + let version_or_error = match Version::from_str(version_str) { Ok(version) => { assert_eq!(version_str, version.to_string().as_str()); VersionOrError::Version(version) } - Err(e) => VersionOrError::Error(e.to_string()), + Err(e) => VersionOrError::Error(e.kind.to_string()), }; index_map.insert(version_str.to_owned(), version_or_error); } diff --git a/crates/rattler_conda_types/src/version/segment.rs b/crates/rattler_conda_types/src/version/segment.rs index 2c13f6e68..96db0a3b8 100644 --- a/crates/rattler_conda_types/src/version/segment.rs +++ b/crates/rattler_conda_types/src/version/segment.rs @@ -121,8 +121,22 @@ mod test { assert_eq!(Segment::new(8191).unwrap().len(), 8191); assert_eq!(Segment::new(8192), None); - assert_eq!(Segment::new(1).unwrap().with_component_count(1337).unwrap().len(), 1337); - assert_eq!(Segment::new(1).unwrap().with_component_count(4096).unwrap().len(), 4096); + assert_eq!( + Segment::new(1) + .unwrap() + .with_component_count(1337) + .unwrap() + .len(), + 1337 + ); + assert_eq!( + Segment::new(1) + .unwrap() + .with_component_count(4096) + .unwrap() + .len(), + 4096 + ); assert_eq!(Segment::new(4096).unwrap().has_implicit_default(), false); assert_eq!( diff --git a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap index 623e5dff3..526f09251 100644 --- a/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +++ b/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap @@ -70,11 +70,7 @@ expression: index_map }, ), "1@2": Error( -<<<<<<< HEAD "encountered more characters but expected none", -======= - "expected a '.', '-', or '_'", ->>>>>>> upstream/main ), "1_": Version( Version { @@ -104,10 +100,6 @@ expression: index_map }, ), "1___": Error( -<<<<<<< HEAD "encountered more characters but expected none", -======= - "expected a version component e.g. `2` or `rc`", ->>>>>>> upstream/main ), } diff --git a/crates/rattler_conda_types/src/version_spec/constraint.rs b/crates/rattler_conda_types/src/version_spec/constraint.rs index 084cc84e9..85f8dc2cc 100644 --- a/crates/rattler_conda_types/src/version_spec/constraint.rs +++ b/crates/rattler_conda_types/src/version_spec/constraint.rs @@ -1,7 +1,8 @@ +use super::ParseConstraintError; use super::VersionOperator; -use crate::{ParseVersionError, Version}; +use crate::version_spec::parse::constraint_parser; +use crate::Version; use std::str::FromStr; -use thiserror::Error; /// A single version constraint (e.g. `>3.4.5` or `1.2.*`) #[allow(clippy::large_enum_variant)] @@ -14,45 +15,6 @@ pub(crate) enum Constraint { Comparison(VersionOperator, Version), } -#[derive(Debug, Clone, Error, Eq, PartialEq)] -pub enum ParseConstraintError { - #[error("cannot parse version: {0}")] - InvalidVersion(#[source] ParseVersionError), - #[error("version operator followed by a whitespace")] - OperatorFollowedByWhitespace, - #[error("'.' is incompatible with '{0}' operator'")] - GlobVersionIncompatibleWithOperator(VersionOperator), - #[error("regex constraints are not supported")] - RegexConstraintsNotSupported, - #[error("invalid operator")] - InvalidOperator, -} - -/// Parses an operator from a string. Returns the operator and the rest of the string. -fn parse_operator(s: &str) -> Option<(VersionOperator, &str)> { - if let Some(rest) = s.strip_prefix("==") { - Some((VersionOperator::Equals, rest)) - } else if let Some(rest) = s.strip_prefix("!=") { - Some((VersionOperator::NotEquals, rest)) - } else if let Some(rest) = s.strip_prefix("<=") { - Some((VersionOperator::LessEquals, rest)) - } else if let Some(rest) = s.strip_prefix(">=") { - Some((VersionOperator::GreaterEquals, rest)) - } else if let Some(rest) = s.strip_prefix("~=") { - Some((VersionOperator::Compatible, rest)) - } else if let Some(rest) = s.strip_prefix('<') { - Some((VersionOperator::Less, rest)) - } else if let Some(rest) = s.strip_prefix('>') { - Some((VersionOperator::Greater, rest)) - } else if let Some(rest) = s.strip_prefix('=') { - Some((VersionOperator::StartsWith, rest)) - } else if s.starts_with(|c: char| c.is_alphanumeric()) { - Some((VersionOperator::Equals, s)) - } else { - None - } -} - /// Returns true if the specified character is the first character of a version constraint. pub(crate) fn is_start_of_version_constraint(c: char) -> bool { matches!(c, '>' | '<' | '=' | '!' | '~') @@ -61,59 +23,12 @@ pub(crate) fn is_start_of_version_constraint(c: char) -> bool { impl FromStr for Constraint { type Err = ParseConstraintError; - fn from_str(s: &str) -> Result { - let s = s.trim(); - if s == "*" { - Ok(Constraint::Any) - } else if s.starts_with('^') || s.ends_with('$') { - Err(ParseConstraintError::RegexConstraintsNotSupported) - } else if s.starts_with(is_start_of_version_constraint) { - let (op, version_str) = - parse_operator(s).ok_or(ParseConstraintError::InvalidOperator)?; - if !version_str.starts_with(char::is_alphanumeric) { - return Err(ParseConstraintError::InvalidOperator); - } - if version_str.starts_with(char::is_whitespace) { - return Err(ParseConstraintError::OperatorFollowedByWhitespace); - } - let (version_str, op) = if let Some(version_str) = version_str - .strip_suffix(".*") - .or(version_str.strip_suffix('*')) - { - match op { - VersionOperator::StartsWith | VersionOperator::GreaterEquals => { - (version_str, op) - } - VersionOperator::Greater => (version_str, VersionOperator::GreaterEquals), - VersionOperator::NotEquals => (version_str, VersionOperator::NotStartsWith), - op => { - // return Err(ParseConstraintError::GlobVersionIncompatibleWithOperator( - // op, - // )) - tracing::warn!("Using .* with relational operator is superfluous and deprecated and will be removed in a future version of conda. Your spec was {version_str}.*, but conda is ignoring the .* and treating it as {version_str}"); - (version_str, op) - } - } - } else { - (version_str, op) - }; - Ok(Constraint::Comparison( - op, - Version::from_str(version_str).map_err(ParseConstraintError::InvalidVersion)?, - )) - } else if s.ends_with('*') { - let version_str = s.trim_end_matches('*').trim_end_matches('.'); - Ok(Constraint::Comparison( - VersionOperator::StartsWith, - Version::from_str(version_str).map_err(ParseConstraintError::InvalidVersion)?, - )) - } else if s.contains('*') { - Err(ParseConstraintError::RegexConstraintsNotSupported) - } else { - Ok(Constraint::Comparison( - VersionOperator::Equals, - Version::from_str(s).map_err(ParseConstraintError::InvalidVersion)?, - )) + fn from_str(input: &str) -> Result { + match constraint_parser(input) { + Ok(("", version)) => Ok(version), + Ok((_, _)) => Err(ParseConstraintError::ExpectedEof), + Err(nom::Err::Failure(e) | nom::Err::Error(e)) => Err(e), + Err(_) => unreachable!("not streaming, so no other error possible"), } } } @@ -143,27 +58,27 @@ mod test { fn test_invalid_op() { assert_eq!( Constraint::from_str("<>1.2.3"), - Err(ParseConstraintError::InvalidOperator) + Err(ParseConstraintError::InvalidOperator(String::from("<>"))) ); assert_eq!( Constraint::from_str("=!1.2.3"), - Err(ParseConstraintError::InvalidOperator) + Err(ParseConstraintError::InvalidOperator(String::from("=!"))) ); assert_eq!( Constraint::from_str("1.2.3"), - Err(ParseConstraintError::InvalidOperator) + Err(ParseConstraintError::InvalidOperator(String::from(""))) ); assert_eq!( Constraint::from_str("!=!1.2.3"), - Err(ParseConstraintError::InvalidOperator) + Err(ParseConstraintError::InvalidOperator(String::from("!=!"))) ); assert_eq!( Constraint::from_str("<=>1.2.3"), - Err(ParseConstraintError::InvalidOperator) + Err(ParseConstraintError::InvalidOperator(String::from("<=>"))) ); } @@ -225,6 +140,13 @@ mod test { Version::from_str("1.2.3").unwrap() )) ); + assert_eq!( + Constraint::from_str(">=1!1.2"), + Ok(Constraint::Comparison( + VersionOperator::GreaterEquals, + Version::from_str("1!1.2").unwrap() + )) + ); } #[test] @@ -289,10 +211,10 @@ mod test { Version::from_str("1.2").unwrap() )) ); - assert!(matches!( + assert_eq!( Constraint::from_str("1.2.*.*"), - Err(ParseConstraintError::InvalidVersion(_)) - )); + Err(ParseConstraintError::RegexConstraintsNotSupported) + ); } #[test] @@ -310,7 +232,7 @@ mod test { fn test_regex() { assert_eq!( Constraint::from_str("^1.2.3"), - Err(ParseConstraintError::RegexConstraintsNotSupported) + Err(ParseConstraintError::UnterminatedRegex) ); assert_eq!( Constraint::from_str("1.2.3$"), diff --git a/crates/rattler_conda_types/src/version_spec/mod.rs b/crates/rattler_conda_types/src/version_spec/mod.rs index 68168242e..7ea7a2530 100644 --- a/crates/rattler_conda_types/src/version_spec/mod.rs +++ b/crates/rattler_conda_types/src/version_spec/mod.rs @@ -2,12 +2,12 @@ //! [`crate::MatchSpec`], e.g.: `>=3.4,<4.0`. mod constraint; +pub(crate) mod parse; pub(crate) mod version_tree; -mod parse; -use crate::version_spec::constraint::{Constraint, ParseConstraintError}; use crate::version_spec::version_tree::ParseVersionTreeError; use crate::{ParseVersionError, Version}; +pub(crate) use constraint::Constraint; use serde::{Serialize, Serializer}; use std::convert::TryFrom; use std::fmt::{Display, Formatter}; @@ -16,6 +16,7 @@ use thiserror::Error; use version_tree::VersionTree; pub(crate) use constraint::is_start_of_version_constraint; +pub(crate) use parse::ParseConstraintError; /// An operator to compare two versions. #[allow(missing_docs)] diff --git a/crates/rattler_conda_types/src/version_spec/parse.rs b/crates/rattler_conda_types/src/version_spec/parse.rs index 4dadb74f7..f9cf13228 100644 --- a/crates/rattler_conda_types/src/version_spec/parse.rs +++ b/crates/rattler_conda_types/src/version_spec/parse.rs @@ -2,13 +2,15 @@ use crate::version::parse::version_parser; use crate::version_spec::constraint::Constraint; use crate::version_spec::VersionOperator; use crate::{ParseVersionError, ParseVersionErrorKind}; -use nom::branch::alt; -use nom::bytes::complete::{tag, take_till, take_till1, take_until, take_while, take_while1}; -use nom::character::complete::char; -use nom::combinator::{map, map_res, opt, value}; -use nom::error::{ErrorKind, ParseError}; -use nom::sequence::{delimited, terminated, tuple}; -use nom::IResult; +use nom::{ + branch::alt, + bytes::complete::{tag, take_while, take_while1}, + character::complete::char, + combinator::{opt, value}, + error::{ErrorKind, ParseError}, + sequence::{terminated, tuple}, + IResult, +}; use thiserror::Error; #[derive(Debug, Clone, Error, Eq, PartialEq)] @@ -21,7 +23,7 @@ enum ParseVersionOperatorError<'i> { /// Parses a version operator, returns an error if the operator is not recognized or not found. fn operator_parser(input: &str) -> IResult<&str, VersionOperator, ParseVersionOperatorError> { - // F + // Take anything that looks like an operator. let (rest, operator_str) = take_while1(|c| "=!<>~".contains(c))(input).map_err( |_: nom::Err>| { nom::Err::Error(ParseVersionOperatorError::ExpectedOperator) @@ -58,10 +60,13 @@ pub enum ParseConstraintError { #[error("invalid operator '{0}'")] InvalidOperator(String), #[error(transparent)] - InvalidVersion(#[from] ParseVersionErrorKind), + InvalidVersion(#[from] ParseVersionError), /// Expected a version #[error("expected a version")] ExpectedVersion, + /// Expected the end of the string + #[error("encountered more characters but expected none")] + ExpectedEof, /// Nom error #[error("{0:?}")] Nom(ErrorKind), @@ -96,7 +101,7 @@ fn any_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstrai /// Parses a constraint with an operator in front of it. fn logical_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { - // Parse the preceding operator + // Parse the optional preceding operator let (input, op) = match operator_parser(input) { Err( nom::Err::Failure(ParseVersionOperatorError::InvalidOperator(op)) @@ -106,43 +111,78 @@ fn logical_constraint_parser(input: &str) -> IResult<&str, Constraint, ParseCons op.to_owned(), ))) } - Err(nom::Err::Error(e)) => (input, None), + Err(nom::Err::Error(_)) => (input, None), Ok((rest, op)) => (rest, Some(op)), _ => unreachable!(), }; - // Parse the version - let (input, version) = version_parser(input).map_err(|e| e.map(Into::into))?; + // Take everything that looks like a version and use that to parse the version. Any error means + // no characters were detected that belong to the version. + let (rest, version_str) = take_while1::<_, _, (&str, ErrorKind)>(|c: char| { + c.is_alphanumeric() || "!-_.*".contains(c) + })(input) + .map_err(|_| { + nom::Err::Error(ParseConstraintError::InvalidVersion(ParseVersionError { + kind: ParseVersionErrorKind::Empty, + version: String::from(""), + })) + })?; - // Parse an optional terminating glob pattern. - let (rest, wildcard) = opt(alt((tag("*"), tag(".*"))))(input)?; + // Parse the string as a version + let (version_rest, version) = version_parser(input).map_err(|e| { + e.map(|e| { + ParseConstraintError::InvalidVersion(ParseVersionError { + kind: e, + version: String::from(""), + }) + }) + })?; // Convert the operator and the wildcard to something understandable - let op = match (wildcard, op) { - // Wildcard pattern - (Some(_), Some(VersionOperator::StartsWith)) => VersionOperator::StartsWith, - (Some(_), Some(VersionOperator::GreaterEquals)) => VersionOperator::GreaterEquals, - (Some(_), Some(VersionOperator::Greater)) => VersionOperator::GreaterEquals, - (Some(_), Some(VersionOperator::NotEquals)) => VersionOperator::NotStartsWith, - (Some(glob), Some(op)) => { + let op = match (version_rest, op) { + // The version was successfully parsed + ("", Some(op)) => op, + ("", None) => VersionOperator::Equals, + + // The version ends in a wildcard pattern + ("*" | ".*", Some(VersionOperator::StartsWith)) => VersionOperator::StartsWith, + ("*" | ".*", Some(VersionOperator::GreaterEquals)) => VersionOperator::GreaterEquals, + ("*" | ".*", Some(VersionOperator::Greater)) => VersionOperator::GreaterEquals, + ("*" | ".*", Some(VersionOperator::NotEquals)) => VersionOperator::NotStartsWith, + (glob @ "*" | glob @ ".*", Some(op)) => { tracing::warn!("Using {glob} with relational operator is superfluous and deprecated and will be removed in a future version of conda."); op } - (Some(_), None) => VersionOperator::StartsWith, + ("*" | ".*", None) => VersionOperator::StartsWith, - // No wildcard, use the operator specified. - (None, Some(op)) => op, + // The version string kinda looks like a regular expression. + (version_remainder, _) if version_str.contains('*') || version_remainder.ends_with('$') => { + return Err(nom::Err::Error( + ParseConstraintError::RegexConstraintsNotSupported, + )); + } - // No wildcard, and no operator - (None, None) => VersionOperator::Equals, + // Otherwise its just a generic error. + _ => { + return Err(nom::Err::Error(ParseConstraintError::InvalidVersion( + ParseVersionError { + version: version_str.to_owned(), + kind: ParseVersionErrorKind::ExpectedEof, + }, + ))) + } }; Ok((rest, Constraint::Comparison(op, version))) } /// Parses a version constraint. -fn constraint_parse(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { - alt((regex_constraint_parser, any_constraint_parser))(input) +pub(crate) fn constraint_parser(input: &str) -> IResult<&str, Constraint, ParseConstraintError> { + alt(( + regex_constraint_parser, + any_constraint_parser, + logical_constraint_parser, + ))(input) } #[cfg(test)] @@ -185,9 +225,9 @@ mod test { assert_eq!( operator_parser("<==>3.1"), - Err(nom::Err::Error(ParseVersionOperatorError::InvalidOperator( - "<==>" - ))) + Err(nom::Err::Failure( + ParseVersionOperatorError::InvalidOperator("<==>") + )) ); assert_eq!( operator_parser("3.1"), @@ -199,21 +239,21 @@ mod test { fn parse_regex_constraint() { assert_eq!( regex_constraint_parser("^.*"), - Err(nom::Err::Error(ParseConstraintError::UnterminatedRegex)) + Err(nom::Err::Failure(ParseConstraintError::UnterminatedRegex)) ); assert_eq!( regex_constraint_parser("^"), - Err(nom::Err::Error(ParseConstraintError::UnterminatedRegex)) + Err(nom::Err::Failure(ParseConstraintError::UnterminatedRegex)) ); assert_eq!( regex_constraint_parser("^$"), - Err(nom::Err::Error( + Err(nom::Err::Failure( ParseConstraintError::RegexConstraintsNotSupported )) ); assert_eq!( regex_constraint_parser("^1.2.3$"), - Err(nom::Err::Error( + Err(nom::Err::Failure( ParseConstraintError::RegexConstraintsNotSupported )) ); @@ -286,18 +326,18 @@ mod test { fn parse_constraint() { // Regular expressions assert_eq!( - constraint_parse("^1.2.3$"), + constraint_parser("^1.2.3$"), Err(nom::Err::Failure( ParseConstraintError::RegexConstraintsNotSupported )) ); assert_eq!( - constraint_parse("^1.2.3"), + constraint_parser("^1.2.3"), Err(nom::Err::Failure(ParseConstraintError::UnterminatedRegex)) ); // Any constraints - assert_eq!(constraint_parse("*"), Ok(("", Constraint::Any))); - assert_eq!(constraint_parse("*.*"), Ok(("", Constraint::Any))); + assert_eq!(constraint_parser("*"), Ok(("", Constraint::Any))); + assert_eq!(constraint_parser("*.*"), Ok(("", Constraint::Any))); } } From 71fd3af002747ffc0b30d9f6d045a1037e21f311 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Sat, 8 Jul 2023 22:08:35 +0200 Subject: [PATCH 21/22] feat: add benchmarks --- crates/rattler_conda_types/benches/parse.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/crates/rattler_conda_types/benches/parse.rs b/crates/rattler_conda_types/benches/parse.rs index 24012a3e7..acea3785f 100644 --- a/crates/rattler_conda_types/benches/parse.rs +++ b/crates/rattler_conda_types/benches/parse.rs @@ -8,6 +8,18 @@ fn criterion_benchmark(c: &mut Criterion) { c.bench_function("parse complex version", |b| { b.iter(|| black_box("1!1.0b2.post345.dev456+3.2.20.rc3").parse::()) }); + c.bench_function("parse logical constraint", |b| { + b.iter(|| black_box(">=3.1").parse::()) + }); + c.bench_function("parse wildcard constraint", |b| { + b.iter(|| black_box("3.1.*").parse::()) + }); + c.bench_function("parse simple version spec", |b| { + b.iter(|| black_box(">=3.1").parse::()) + }); + c.bench_function("parse complex version spec", |b| { + b.iter(|| black_box("(>=2.1.0,<3.0)|(~=3.2.1,~3.2.2.1)|(==4.1)").parse::()) + }); } criterion_group!(benches, criterion_benchmark); From b8930fc782c2b93019fb35d2c9d519a2efc8c4d7 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 10 Jul 2023 09:27:15 +0200 Subject: [PATCH 22/22] feat: test => parsing --- crates/rattler_conda_types/src/version_spec/constraint.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/rattler_conda_types/src/version_spec/constraint.rs b/crates/rattler_conda_types/src/version_spec/constraint.rs index 85f8dc2cc..889359751 100644 --- a/crates/rattler_conda_types/src/version_spec/constraint.rs +++ b/crates/rattler_conda_types/src/version_spec/constraint.rs @@ -80,6 +80,10 @@ mod test { Constraint::from_str("<=>1.2.3"), Err(ParseConstraintError::InvalidOperator(String::from("<=>"))) ); + assert_eq!( + Constraint::from_str("=>1.2.3"), + Err(ParseConstraintError::InvalidOperator(String::from("=>"))) + ); } #[test]