From bfdf6123cba6f0bb6c4fa15cc28fff9cf7f924b7 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Tue, 19 Nov 2024 23:58:32 -0500 Subject: [PATCH 01/15] feat: Allow LinkageChecker to be called via exec:java goal --- dependencies/pom.xml | 14 ++++++++++++++ .../classpath/LinkageCheckResultException.java | 2 +- .../opensource/classpath/LinkageCheckerMain.java | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 39fcb51695..aeb2efb2b5 100644 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -120,6 +120,20 @@ + + + + org.codehaus.mojo + exec-maven-plugin + 3.5.0 + + false + com.google.cloud.tools.opensource.classpath.LinkageCheckerMain + + + + + java8-incompatible-reference-check diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckResultException.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckResultException.java index d7acd68a89..3e66a5ab7d 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckResultException.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckResultException.java @@ -22,7 +22,7 @@ *

The caller of the tool can tell the existence of linkage errors by checking the exit status of * the {@link LinkageCheckerMain}. */ -final class LinkageCheckResultException extends Exception { +public final class LinkageCheckResultException extends Exception { LinkageCheckResultException(int linkageErrorCount) { super( "Found " diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java index 73102c3174..8bd7d7b094 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java @@ -33,7 +33,7 @@ /** * A tool to find linkage errors in a class path. */ -class LinkageCheckerMain { +public class LinkageCheckerMain { /** * Forms a classpath from Maven coordinates or a list of jar files and reports linkage errors in From e380975b40cceec82974fe2eddd166674d7be86c Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Fri, 13 Dec 2024 15:52:44 -0500 Subject: [PATCH 02/15] feat: Add an Source filter to check if errors come from subset of files --- .../opensource/classpath/LinkageChecker.java | 24 ++++++++++++++----- .../classpath/LinkageCheckerArguments.java | 18 ++++++++++++++ .../classpath/LinkageCheckerMain.java | 4 ++-- .../enforcer/LinkageCheckerRule.java | 2 +- .../linkagemonitor/LinkageMonitor.java | 2 +- 5 files changed, 40 insertions(+), 10 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index 12dfc715de..cac9c0c054 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -36,6 +36,7 @@ import java.util.Queue; import java.util.Set; import java.util.logging.Logger; +import java.util.stream.Collectors; import javax.annotation.Nullable; import org.apache.bcel.classfile.Field; import org.apache.bcel.classfile.FieldOrMethod; @@ -54,6 +55,7 @@ public class LinkageChecker { private final ImmutableList classPath; private final SymbolReferences symbolReferences; private final ClassReferenceGraph classReferenceGraph; + private final Artifact sourceFilter; private final ExcludedErrors excludedErrors; @VisibleForTesting @@ -66,7 +68,7 @@ public ClassReferenceGraph getClassReferenceGraph() { } public static LinkageChecker create(List classPath) throws IOException { - return create(classPath, ImmutableSet.copyOf(classPath), null); + return create(classPath, ImmutableSet.copyOf(classPath), null, null); } /** @@ -79,6 +81,7 @@ public static LinkageChecker create(List classPath) throws IOExc public static LinkageChecker create( List classPath, Iterable entryPoints, + Artifact sourceFilter, @Nullable Path exclusionFile) throws IOException { Preconditions.checkArgument(!classPath.isEmpty(), "The linkage classpath is empty."); @@ -93,6 +96,7 @@ public static LinkageChecker create( classPath, symbolReferenceMaps, classReferenceGraph, + sourceFilter, ExcludedErrors.create(exclusionFile)); } @@ -129,13 +133,13 @@ public static LinkageChecker create(Bom bom, Path exclusionFile) List artifactsInBom = classpath.subList(0, managedDependencies.size()); ImmutableSet entryPoints = ImmutableSet.copyOf(artifactsInBom); - return LinkageChecker.create(classpath, entryPoints, exclusionFile); + return LinkageChecker.create(classpath, entryPoints, null, exclusionFile); } @VisibleForTesting LinkageChecker cloneWith(SymbolReferences newSymbolMaps) { return new LinkageChecker( - classDumper, classPath, newSymbolMaps, classReferenceGraph, excludedErrors); + classDumper, classPath, newSymbolMaps, classReferenceGraph, null, excludedErrors); } private LinkageChecker( @@ -143,11 +147,13 @@ private LinkageChecker( List classPath, SymbolReferences symbolReferenceMaps, ClassReferenceGraph classReferenceGraph, + Artifact sourceFilter, ExcludedErrors excludedErrors) { this.classDumper = Preconditions.checkNotNull(classDumper); this.classPath = ImmutableList.copyOf(classPath); this.classReferenceGraph = Preconditions.checkNotNull(classReferenceGraph); this.symbolReferences = Preconditions.checkNotNull(symbolReferenceMaps); + this.sourceFilter = sourceFilter; this.excludedErrors = Preconditions.checkNotNull(excludedErrors); } @@ -161,7 +167,13 @@ public ImmutableSet findLinkageProblems() throws IOException { ImmutableSet.Builder problemToClass = ImmutableSet.builder(); // This sourceClassFile is a source of references to other symbols. - for (ClassFile classFile : symbolReferences.getClassFiles()) { + Set classFiles = symbolReferences.getClassFiles(); + if (sourceFilter != null) { + classFiles = classFiles.stream() + .filter(x -> x.getClassPathEntry().getArtifact().toString().equals(sourceFilter.toString())) + .collect(Collectors.toSet()); + } + for (ClassFile classFile : classFiles) { ImmutableSet classSymbols = symbolReferences.getClassSymbols(classFile); for (ClassSymbol classSymbol : classSymbols) { if (classSymbol instanceof SuperClassSymbol) { @@ -202,7 +214,7 @@ public ImmutableSet findLinkageProblems() throws IOException { } } - for (ClassFile classFile : symbolReferences.getClassFiles()) { + for (ClassFile classFile : classFiles) { ImmutableSet methodSymbols = symbolReferences.getMethodSymbols(classFile); ImmutableSet classFileNames = classFile.getClassPathEntry().getFileNames(); for (MethodSymbol methodSymbol : methodSymbols) { @@ -215,7 +227,7 @@ public ImmutableSet findLinkageProblems() throws IOException { } } - for (ClassFile classFile : symbolReferences.getClassFiles()) { + for (ClassFile classFile : classFiles) { ImmutableSet fieldSymbols = symbolReferences.getFieldSymbols(classFile); ImmutableSet classFileNames = classFile.getClassPathEntry().getFileNames(); for (FieldSymbol fieldSymbol : fieldSymbols) { diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java index 04a5556f86..d264e3efb4 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java @@ -25,6 +25,8 @@ import java.nio.file.Path; import java.nio.file.Paths; import java.util.Arrays; +import java.util.List; + import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; import org.apache.commons.cli.DefaultParser; @@ -124,6 +126,14 @@ private static Options configureOptions() { .build(); inputGroup.addOption(jarOption); + Option sourceFilter = + Option.builder("s") + .longOpt("source-filter") + .hasArg(true) + .desc("Source Filter") + .build(); + options.addOption(sourceFilter); + Option repositoryOption = Option.builder("m") .longOpt("maven-repositories") @@ -277,4 +287,12 @@ Path getOutputExclusionFile() { } return null; } + + Artifact getSourceFilterArtifact() { + if (commandLine.hasOption("s")) { + String mavenCoordinatesOption = commandLine.getOptionValue('s'); + return new DefaultArtifact(mavenCoordinatesOption); + } + return null; + } } diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java index 8bd7d7b094..f8639b2860 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java @@ -133,7 +133,7 @@ private static Problems checkJarFiles( ImmutableSet entryPoints = ImmutableSet.copyOf(inputClassPath); LinkageChecker linkageChecker = LinkageChecker.create( - inputClassPath, entryPoints, linkageCheckerArguments.getInputExclusionFile()); + inputClassPath, entryPoints, null, linkageCheckerArguments.getInputExclusionFile()); ImmutableSet linkageProblems = findLinkageProblems(linkageChecker, linkageCheckerArguments.getReportOnlyReachable()); @@ -161,7 +161,7 @@ private static Problems checkArtifacts( LinkageChecker linkageChecker = LinkageChecker.create( - inputClassPath, entryPoints, linkageCheckerArguments.getInputExclusionFile()); + inputClassPath, entryPoints, linkageCheckerArguments.getSourceFilterArtifact(), linkageCheckerArguments.getInputExclusionFile()); ImmutableSet linkageProblems = findLinkageProblems(linkageChecker, linkageCheckerArguments.getReportOnlyReachable()); diff --git a/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java b/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java index 81f102ad41..fca5081c76 100644 --- a/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java +++ b/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java @@ -224,7 +224,7 @@ public void execute() throws EnforcerRuleException { // findLinkageProblems immediately after create. Path exclusionFile = this.exclusionFile == null ? null : Paths.get(this.exclusionFile); - LinkageChecker linkageChecker = LinkageChecker.create(classPath, entryPoints, exclusionFile); + LinkageChecker linkageChecker = LinkageChecker.create(classPath, entryPoints, null, exclusionFile); ImmutableSet linkageProblems = linkageChecker.findLinkageProblems(); if (reportOnlyReachable) { ClassReferenceGraph classReferenceGraph = linkageChecker.getClassReferenceGraph(); diff --git a/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java b/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java index 9e492a83d4..b2823790d9 100644 --- a/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java +++ b/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java @@ -294,7 +294,7 @@ private ImmutableSet run(String groupId, String artifactId) List entryPointJars = classpath.subList(0, snapshotManagedDependencies.size()); ImmutableSet problemsInSnapshot = - LinkageChecker.create(classpath, ImmutableSet.copyOf(entryPointJars), null) + LinkageChecker.create(classpath, ImmutableSet.copyOf(entryPointJars), null, null) .findLinkageProblems(); if (problemsInBaseline.equals(problemsInSnapshot)) { From a6ea26d4b6a157d438142bf2dc2bfc9abf1a71eb Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 15 Jan 2025 16:35:59 -0500 Subject: [PATCH 03/15] chore: Source Filter takes a list of artifacts --- .../opensource/classpath/LinkageChecker.java | 15 ++++++++------- .../classpath/LinkageCheckerArguments.java | 11 +++++++---- .../classpath/ExclusionFilesIntegrationTest.java | 2 +- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index cac9c0c054..50465a9ce3 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -55,7 +55,7 @@ public class LinkageChecker { private final ImmutableList classPath; private final SymbolReferences symbolReferences; private final ClassReferenceGraph classReferenceGraph; - private final Artifact sourceFilter; + private final List sourceFilterList; private final ExcludedErrors excludedErrors; @VisibleForTesting @@ -81,7 +81,7 @@ public static LinkageChecker create(List classPath) throws IOExc public static LinkageChecker create( List classPath, Iterable entryPoints, - Artifact sourceFilter, + List sourceFilterList, @Nullable Path exclusionFile) throws IOException { Preconditions.checkArgument(!classPath.isEmpty(), "The linkage classpath is empty."); @@ -96,7 +96,7 @@ public static LinkageChecker create( classPath, symbolReferenceMaps, classReferenceGraph, - sourceFilter, + sourceFilterList, ExcludedErrors.create(exclusionFile)); } @@ -147,13 +147,13 @@ private LinkageChecker( List classPath, SymbolReferences symbolReferenceMaps, ClassReferenceGraph classReferenceGraph, - Artifact sourceFilter, + List sourceFilterList, ExcludedErrors excludedErrors) { this.classDumper = Preconditions.checkNotNull(classDumper); this.classPath = ImmutableList.copyOf(classPath); this.classReferenceGraph = Preconditions.checkNotNull(classReferenceGraph); this.symbolReferences = Preconditions.checkNotNull(symbolReferenceMaps); - this.sourceFilter = sourceFilter; + this.sourceFilterList = sourceFilterList; this.excludedErrors = Preconditions.checkNotNull(excludedErrors); } @@ -168,9 +168,10 @@ public ImmutableSet findLinkageProblems() throws IOException { // This sourceClassFile is a source of references to other symbols. Set classFiles = symbolReferences.getClassFiles(); - if (sourceFilter != null) { + if (sourceFilterList != null) { + List sourceFilterStringList = sourceFilterList.stream().map(Artifact::toString).collect(Collectors.toList()); classFiles = classFiles.stream() - .filter(x -> x.getClassPathEntry().getArtifact().toString().equals(sourceFilter.toString())) + .filter(x -> sourceFilterStringList.contains(x.getClassPathEntry().getArtifact().toString())) .collect(Collectors.toSet()); } for (ClassFile classFile : classFiles) { diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java index d264e3efb4..efb4292d17 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java @@ -26,6 +26,7 @@ import java.nio.file.Paths; import java.util.Arrays; import java.util.List; +import java.util.stream.Collectors; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; @@ -288,11 +289,13 @@ Path getOutputExclusionFile() { return null; } - Artifact getSourceFilterArtifact() { + List getSourceFilterArtifact() { if (commandLine.hasOption("s")) { - String mavenCoordinatesOption = commandLine.getOptionValue('s'); - return new DefaultArtifact(mavenCoordinatesOption); + String[] mavenCoordinatesOption = commandLine.getOptionValues("s"); + return Arrays.stream(mavenCoordinatesOption) + .map(DefaultArtifact::new) + .collect(Collectors.toList()); } - return null; + return ImmutableList.of(); } } diff --git a/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/ExclusionFilesIntegrationTest.java b/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/ExclusionFilesIntegrationTest.java index a0431398c5..c8bdf99fb4 100644 --- a/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/ExclusionFilesIntegrationTest.java +++ b/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/ExclusionFilesIntegrationTest.java @@ -58,7 +58,7 @@ public void testExclusion() classPathBuilder.resolve(ImmutableList.of(artifact), false, DependencyMediation.MAVEN); LinkageChecker linkagechecker = - LinkageChecker.create(classPathResult.getClassPath(), ImmutableList.of(), exclusionFile); + LinkageChecker.create(classPathResult.getClassPath(), ImmutableList.of(), ImmutableList.of(), exclusionFile); ImmutableSet linkageProblems = linkagechecker.findLinkageProblems(); Truth.assertThat(linkageProblems).isEmpty(); From 2c614ffdf3302b3983b28a440111c14f508f4257 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Thu, 16 Jan 2025 11:48:02 -0500 Subject: [PATCH 04/15] chore: Update source filter to take in multiple args --- .../tools/opensource/classpath/LinkageCheckerArguments.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java index efb4292d17..8e0f97bbd1 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java @@ -130,7 +130,8 @@ private static Options configureOptions() { Option sourceFilter = Option.builder("s") .longOpt("source-filter") - .hasArg(true) + .hasArgs() + .valueSeparator(',') .desc("Source Filter") .build(); options.addOption(sourceFilter); From 9e349c2333eaa07d3d454db0368d8fd428110343 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 5 Feb 2025 13:46:55 -0500 Subject: [PATCH 05/15] chore: Fix broken tests --- .../google/cloud/tools/opensource/classpath/LinkageChecker.java | 2 +- .../tools/opensource/classpath/LinkageCheckerArguments.java | 2 +- .../cloud/tools/opensource/classpath/LinkageCheckerMain.java | 2 +- .../cloud/tools/dependencies/enforcer/LinkageCheckerRule.java | 2 +- .../cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index 50465a9ce3..a4de00aee3 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -168,7 +168,7 @@ public ImmutableSet findLinkageProblems() throws IOException { // This sourceClassFile is a source of references to other symbols. Set classFiles = symbolReferences.getClassFiles(); - if (sourceFilterList != null) { + if (!sourceFilterList.isEmpty()) { List sourceFilterStringList = sourceFilterList.stream().map(Artifact::toString).collect(Collectors.toList()); classFiles = classFiles.stream() .filter(x -> sourceFilterStringList.contains(x.getClassPathEntry().getArtifact().toString())) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java index 8e0f97bbd1..be92c7f6af 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java @@ -290,7 +290,7 @@ Path getOutputExclusionFile() { return null; } - List getSourceFilterArtifact() { + List getSourceFilterArtifactList() { if (commandLine.hasOption("s")) { String[] mavenCoordinatesOption = commandLine.getOptionValues("s"); return Arrays.stream(mavenCoordinatesOption) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java index f8639b2860..c5f6af5e2e 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java @@ -161,7 +161,7 @@ private static Problems checkArtifacts( LinkageChecker linkageChecker = LinkageChecker.create( - inputClassPath, entryPoints, linkageCheckerArguments.getSourceFilterArtifact(), linkageCheckerArguments.getInputExclusionFile()); + inputClassPath, entryPoints, linkageCheckerArguments.getSourceFilterArtifactList(), linkageCheckerArguments.getInputExclusionFile()); ImmutableSet linkageProblems = findLinkageProblems(linkageChecker, linkageCheckerArguments.getReportOnlyReachable()); diff --git a/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java b/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java index fca5081c76..cd69e51907 100644 --- a/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java +++ b/enforcer-rules/src/main/java/com/google/cloud/tools/dependencies/enforcer/LinkageCheckerRule.java @@ -224,7 +224,7 @@ public void execute() throws EnforcerRuleException { // findLinkageProblems immediately after create. Path exclusionFile = this.exclusionFile == null ? null : Paths.get(this.exclusionFile); - LinkageChecker linkageChecker = LinkageChecker.create(classPath, entryPoints, null, exclusionFile); + LinkageChecker linkageChecker = LinkageChecker.create(classPath, entryPoints, ImmutableList.of(), exclusionFile); ImmutableSet linkageProblems = linkageChecker.findLinkageProblems(); if (reportOnlyReachable) { ClassReferenceGraph classReferenceGraph = linkageChecker.getClassReferenceGraph(); diff --git a/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java b/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java index b2823790d9..42cff216dd 100644 --- a/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java +++ b/linkage-monitor/src/main/java/com/google/cloud/tools/dependencies/linkagemonitor/LinkageMonitor.java @@ -294,7 +294,7 @@ private ImmutableSet run(String groupId, String artifactId) List entryPointJars = classpath.subList(0, snapshotManagedDependencies.size()); ImmutableSet problemsInSnapshot = - LinkageChecker.create(classpath, ImmutableSet.copyOf(entryPointJars), null, null) + LinkageChecker.create(classpath, ImmutableSet.copyOf(entryPointJars), ImmutableList.of(), null) .findLinkageProblems(); if (problemsInBaseline.equals(problemsInSnapshot)) { From 617169fd33a208810b468052ad75c14be29f318d Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 5 Feb 2025 14:40:27 -0500 Subject: [PATCH 06/15] chore: Add comments and update artifacts equals method --- .../opensource/classpath/LinkageChecker.java | 17 ++++++++++++++--- .../classpath/LinkageCheckerArguments.java | 8 +++++++- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index a4de00aee3..c80a5205d8 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -157,6 +157,15 @@ private LinkageChecker( this.excludedErrors = Preconditions.checkNotNull(excludedErrors); } + /** + * Two artifacts are considered equal if the Maven Coordinates (GAV) are equal + */ + private boolean areArtifactsEquals(Artifact artifact1, Artifact artifact2) { + return artifact1.getGroupId().equals(artifact2.getGroupId()) + && artifact1.getArtifactId().equals(artifact2.getArtifactId()) + && artifact1.getVersion().equals(artifact2.getVersion()); + } + /** * Searches the classpath for linkage errors. * @@ -168,11 +177,13 @@ public ImmutableSet findLinkageProblems() throws IOException { // This sourceClassFile is a source of references to other symbols. Set classFiles = symbolReferences.getClassFiles(); + + // Filter the list to only contain class files that come from the classes we are interested in if (!sourceFilterList.isEmpty()) { - List sourceFilterStringList = sourceFilterList.stream().map(Artifact::toString).collect(Collectors.toList()); + // Run through each class file and check that the class file's corresponding artifact matches + // any artifact specified in the sourceFilterList classFiles = classFiles.stream() - .filter(x -> sourceFilterStringList.contains(x.getClassPathEntry().getArtifact().toString())) - .collect(Collectors.toSet()); + .filter(x -> sourceFilterList.stream().anyMatch(y -> areArtifactsEquals(x.getClassPathEntry().getArtifact(), y))).collect(Collectors.toSet()); } for (ClassFile classFile : classFiles) { ImmutableSet classSymbols = symbolReferences.getClassSymbols(classFile); diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java index be92c7f6af..1696fe095d 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerArguments.java @@ -132,7 +132,9 @@ private static Options configureOptions() { .longOpt("source-filter") .hasArgs() .valueSeparator(',') - .desc("Source Filter") + .desc("List of maven coordinates for artifacts (separated by ','). " + + "These are artifacts whose class files are searched as the source of the " + + "potential Linkage Errors.") .build(); options.addOption(sourceFilter); @@ -290,6 +292,10 @@ Path getOutputExclusionFile() { return null; } + /** + * Returns a list of artifacts to search where Linkage Errors stem from. If the argument is not + * specified, return an empty List. + */ List getSourceFilterArtifactList() { if (commandLine.hasOption("s")) { String[] mavenCoordinatesOption = commandLine.getOptionValues("s"); From 5b8d428ad0bb3e13158be58c23e3c38de63accce Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 5 Feb 2025 14:52:45 -0500 Subject: [PATCH 07/15] chore: Fix broken tests --- .../cloud/tools/opensource/classpath/LinkageChecker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index c80a5205d8..e107430a43 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -68,7 +68,7 @@ public ClassReferenceGraph getClassReferenceGraph() { } public static LinkageChecker create(List classPath) throws IOException { - return create(classPath, ImmutableSet.copyOf(classPath), null, null); + return create(classPath, ImmutableSet.copyOf(classPath), ImmutableList.of(), null); } /** @@ -133,13 +133,13 @@ public static LinkageChecker create(Bom bom, Path exclusionFile) List artifactsInBom = classpath.subList(0, managedDependencies.size()); ImmutableSet entryPoints = ImmutableSet.copyOf(artifactsInBom); - return LinkageChecker.create(classpath, entryPoints, null, exclusionFile); + return LinkageChecker.create(classpath, entryPoints, ImmutableList.of(), exclusionFile); } @VisibleForTesting LinkageChecker cloneWith(SymbolReferences newSymbolMaps) { return new LinkageChecker( - classDumper, classPath, newSymbolMaps, classReferenceGraph, null, excludedErrors); + classDumper, classPath, newSymbolMaps, classReferenceGraph, ImmutableList.of(), excludedErrors); } private LinkageChecker( From b314e1cd95e0f1cd739f9332b4c74f69412732f0 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 5 Feb 2025 22:03:00 -0500 Subject: [PATCH 08/15] chore: Fix broken tests --- .../cloud/tools/opensource/classpath/LinkageCheckerMain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java index c5f6af5e2e..834b872cd2 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerMain.java @@ -133,7 +133,7 @@ private static Problems checkJarFiles( ImmutableSet entryPoints = ImmutableSet.copyOf(inputClassPath); LinkageChecker linkageChecker = LinkageChecker.create( - inputClassPath, entryPoints, null, linkageCheckerArguments.getInputExclusionFile()); + inputClassPath, entryPoints, ImmutableList.of(), linkageCheckerArguments.getInputExclusionFile()); ImmutableSet linkageProblems = findLinkageProblems(linkageChecker, linkageCheckerArguments.getReportOnlyReachable()); From 3701953b4de95a9cec37943f92c3d8a46cd43f28 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Mon, 10 Feb 2025 16:00:00 -0500 Subject: [PATCH 09/15] chore: Fix issues --- .../gradle/BuildStatusFunctionalTest.class | Bin 0 -> 26253 bytes .../gradle/ExclusionFileFunctionalTest.class | Bin 0 -> 16820 bytes .../gradle/LinkageCheckerPluginTest.class | Bin 0 -> 3810 bytes .../dependencies/gradle/DependencyNode.class | Bin 0 -> 3778 bytes .../gradle/LinkageCheckTask.class | Bin 0 -> 22070 bytes .../gradle/LinkageCheckerPlugin.class | Bin 0 -> 1374 bytes .../LinkageCheckerPluginExtension.class | Bin 0 -> 1736 bytes .../build/docs/javadoc/allclasses-index.html | 174 + .../build/docs/javadoc/allclasses.html | 32 + .../build/docs/javadoc/allpackages-index.html | 162 + .../dependencies/gradle/LinkageCheckTask.html | 377 + .../gradle/LinkageCheckerPlugin.html | 312 + .../gradle/LinkageCheckerPluginExtension.html | 375 + .../dependencies/gradle/package-summary.html | 176 + .../dependencies/gradle/package-tree.html | 165 + .../build/docs/javadoc/constant-values.html | 146 + .../build/docs/javadoc/deprecated-list.html | 144 + gradle-plugin/build/docs/javadoc/element-list | 1 + .../build/docs/javadoc/help-doc.html | 264 + .../build/docs/javadoc/index-all.html | 219 + gradle-plugin/build/docs/javadoc/index.html | 23 + .../docs/javadoc/jquery-ui.overrides.css | 35 + .../javadoc/jquery/external/jquery/jquery.js | 10872 +++++++++++++++ .../docs/javadoc/jquery/jquery-3.6.1.min.js | 2 + .../docs/javadoc/jquery/jquery-ui.min.css | 6 + .../docs/javadoc/jquery/jquery-ui.min.js | 6 + .../jquery/jszip-utils/dist/jszip-utils-ie.js | 56 + .../jszip-utils/dist/jszip-utils-ie.min.js | 10 + .../jquery/jszip-utils/dist/jszip-utils.js | 118 + .../jszip-utils/dist/jszip-utils.min.js | 10 + .../docs/javadoc/jquery/jszip/dist/jszip.js | 11370 ++++++++++++++++ .../javadoc/jquery/jszip/dist/jszip.min.js | 13 + .../build/docs/javadoc/member-search-index.js | 1 + .../docs/javadoc/member-search-index.zip | Bin 0 -> 425 bytes .../build/docs/javadoc/overview-tree.html | 169 + .../docs/javadoc/package-search-index.js | 1 + .../docs/javadoc/package-search-index.zip | Bin 0 -> 254 bytes .../build/docs/javadoc/resources/glass.png | Bin 0 -> 499 bytes .../build/docs/javadoc/resources/x.png | Bin 0 -> 394 bytes gradle-plugin/build/docs/javadoc/script.js | 149 + gradle-plugin/build/docs/javadoc/search.js | 326 + .../build/docs/javadoc/stylesheet.css | 910 ++ .../build/docs/javadoc/type-search-index.js | 1 + .../build/docs/javadoc/type-search-index.zip | Bin 0 -> 285 bytes ...radle-plugin-1.5.14-SNAPSHOT-groovydoc.jar | Bin 0 -> 261 bytes ...-gradle-plugin-1.5.14-SNAPSHOT-javadoc.jar | Bin 0 -> 289866 bytes ...-gradle-plugin-1.5.14-SNAPSHOT-sources.jar | Bin 0 -> 8574 bytes ...-checker-gradle-plugin-1.5.14-SNAPSHOT.jar | Bin 0 -> 13071 bytes ...ogle.cloud.tools.linkagechecker.properties | 1 + .../plugin-under-test-metadata.properties | 1 + .../pom-default.xml | 17 + .../publications/pluginMaven/module.json | 84 + .../publications/pluginMaven/pom-default.xml | 33 + .../plugin-development/validation-report.txt | 0 ...cies.gradle.BuildStatusFunctionalTest.html | 121 + ...es.gradle.ExclusionFileFunctionalTest.html | 106 + .../tests/functionalTest/css/base-style.css | 179 + .../tests/functionalTest/css/style.css | 84 + .../reports/tests/functionalTest/index.html | 143 + .../reports/tests/functionalTest/js/report.js | 194 + ...oogle.cloud.tools.dependencies.gradle.html | 113 + ...ncies.gradle.LinkageCheckerPluginTest.html | 96 + .../reports/tests/test/css/base-style.css | 179 + .../build/reports/tests/test/css/style.css | 84 + .../build/reports/tests/test/index.html | 133 + .../build/reports/tests/test/js/report.js | 194 + ...oogle.cloud.tools.dependencies.gradle.html | 103 + ...ogle.cloud.tools.linkagechecker.properties | 1 + ...ncies.gradle.BuildStatusFunctionalTest.xml | 12 + ...ies.gradle.ExclusionFileFunctionalTest.xml | 9 + .../functionalTest/binary/output.bin | 0 .../functionalTest/binary/output.bin.idx | Bin 0 -> 1 bytes .../functionalTest/binary/results.bin | Bin 0 -> 1431 bytes ...encies.gradle.LinkageCheckerPluginTest.xml | 7 + .../build/test-results/test/binary/output.bin | 0 .../test-results/test/binary/output.bin.idx | Bin 0 -> 1 bytes .../test-results/test/binary/results.bin | Bin 0 -> 263 bytes .../compileJava/source-classes-mapping.txt | 8 + .../jar_extract_10624263207379282055_tmp | Bin 0 -> 5095 bytes .../jar_extract_3144778433172582223_tmp | Bin 0 -> 5095 bytes .../jar_extract_757998314726472038_tmp | Bin 0 -> 5095 bytes gradle-plugin/build/tmp/jar/MANIFEST.MF | 2 + .../build/tmp/javadoc/javadoc.options | 10 + .../module-maven-metadata.xml | 12 + .../snapshot-maven-metadata.xml | 19 + .../publishPluginGroovyDocsJar/MANIFEST.MF | 2 + .../build/tmp/publishPluginJar/MANIFEST.MF | 2 + .../tmp/publishPluginJavaDocsJar/MANIFEST.MF | 2 + .../module-maven-metadata.xml | 12 + .../snapshot-maven-metadata.xml | 29 + 90 files changed, 28617 insertions(+) create mode 100644 gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class create mode 100644 gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class create mode 100644 gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class create mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class create mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class create mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class create mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class create mode 100644 gradle-plugin/build/docs/javadoc/allclasses-index.html create mode 100644 gradle-plugin/build/docs/javadoc/allclasses.html create mode 100644 gradle-plugin/build/docs/javadoc/allpackages-index.html create mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html create mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html create mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html create mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html create mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html create mode 100644 gradle-plugin/build/docs/javadoc/constant-values.html create mode 100644 gradle-plugin/build/docs/javadoc/deprecated-list.html create mode 100644 gradle-plugin/build/docs/javadoc/element-list create mode 100644 gradle-plugin/build/docs/javadoc/help-doc.html create mode 100644 gradle-plugin/build/docs/javadoc/index-all.html create mode 100644 gradle-plugin/build/docs/javadoc/index.html create mode 100644 gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css create mode 100644 gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-3.6.1.min.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-ui.min.css create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-ui.min.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.min.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip/dist/jszip.js create mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip/dist/jszip.min.js create mode 100644 gradle-plugin/build/docs/javadoc/member-search-index.js create mode 100644 gradle-plugin/build/docs/javadoc/member-search-index.zip create mode 100644 gradle-plugin/build/docs/javadoc/overview-tree.html create mode 100644 gradle-plugin/build/docs/javadoc/package-search-index.js create mode 100644 gradle-plugin/build/docs/javadoc/package-search-index.zip create mode 100644 gradle-plugin/build/docs/javadoc/resources/glass.png create mode 100644 gradle-plugin/build/docs/javadoc/resources/x.png create mode 100644 gradle-plugin/build/docs/javadoc/script.js create mode 100644 gradle-plugin/build/docs/javadoc/search.js create mode 100644 gradle-plugin/build/docs/javadoc/stylesheet.css create mode 100644 gradle-plugin/build/docs/javadoc/type-search-index.js create mode 100644 gradle-plugin/build/docs/javadoc/type-search-index.zip create mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar create mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-javadoc.jar create mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-sources.jar create mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar create mode 100644 gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties create mode 100644 gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties create mode 100644 gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml create mode 100644 gradle-plugin/build/publications/pluginMaven/module.json create mode 100644 gradle-plugin/build/publications/pluginMaven/pom-default.xml create mode 100644 gradle-plugin/build/reports/plugin-development/validation-report.txt create mode 100644 gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html create mode 100644 gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html create mode 100644 gradle-plugin/build/reports/tests/functionalTest/css/base-style.css create mode 100644 gradle-plugin/build/reports/tests/functionalTest/css/style.css create mode 100644 gradle-plugin/build/reports/tests/functionalTest/index.html create mode 100644 gradle-plugin/build/reports/tests/functionalTest/js/report.js create mode 100644 gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html create mode 100644 gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html create mode 100644 gradle-plugin/build/reports/tests/test/css/base-style.css create mode 100644 gradle-plugin/build/reports/tests/test/css/style.css create mode 100644 gradle-plugin/build/reports/tests/test/index.html create mode 100644 gradle-plugin/build/reports/tests/test/js/report.js create mode 100644 gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html create mode 100644 gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties create mode 100644 gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml create mode 100644 gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml create mode 100644 gradle-plugin/build/test-results/functionalTest/binary/output.bin create mode 100644 gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx create mode 100644 gradle-plugin/build/test-results/functionalTest/binary/results.bin create mode 100644 gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml create mode 100644 gradle-plugin/build/test-results/test/binary/output.bin create mode 100644 gradle-plugin/build/test-results/test/binary/output.bin.idx create mode 100644 gradle-plugin/build/test-results/test/binary/results.bin create mode 100644 gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt create mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp create mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp create mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp create mode 100644 gradle-plugin/build/tmp/jar/MANIFEST.MF create mode 100644 gradle-plugin/build/tmp/javadoc/javadoc.options create mode 100644 gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml create mode 100644 gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml create mode 100644 gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF create mode 100644 gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF create mode 100644 gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF create mode 100644 gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml create mode 100644 gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml diff --git a/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class b/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class new file mode 100644 index 0000000000000000000000000000000000000000..022fea86f4a804dd970f0e2fd3c71db32fa9c634 GIT binary patch literal 26253 zcmeHQ33y!9bw2maNHdbgvNVGQVjT-(Yw?U0?=l8#c@vhGSh5}LfHRtTlExm*3~y#^ zi$JqB3C#i_4PhxEB_y;>(?AGDW-m}kLbJ3aO_NY|l5R<$ltK~*_doaDdGltqq!_-m zUjX0x=DqvwJ?GwY{&UW~=b3N4dCvnxv{*Ys(AscfymK^>7>((j;aDOQ=}adQu~cV7 zPwMfA9uG(LROhG>is1R0Of(i5Oo!5$)cQ<3oQ@{qq1cd~O1nr1Iwh4%g!gyGLh;eg z!K5CJjzq&DZsQ^co{k!c#DNL(@dkOlb$Fj1#=BL5{AIfin(qnf97q_WopOv3BQ&lb zOc?t+jZ8cp9oIX@6A?WoN8PNaLy=HAv{I0JBpTD>Xe!7Vi^g>acs^B7eHs*RGZH-b z+NdFDuIzbVCLT?r!x;D-(#MktBVp!HEb7O^Pe@lOLS zCP}V@5s6~{_$~>mi(>d_C>Fg;H~1DNv}Ty+dp(!{(F6NJ2ST0EL?{1V$t_L?Rr69< zjcB+p7D}c1<0A<{?UJf6=3^|B;gyrKZs;R1u#3g$wAz9N*WSJ8VRN4#u^Z!!WA5Z* zK_?H`*Na(@5AaU)xlHMKf*h@FI|ZGdZJ0Jf@zhAd81LMm$8{r=)+1=$IB!%>_l07y z!Dw1vZ5W{mK|QT)drDKORx^zDDYWm*zPQpuEp&D*X*AD6XOX{_oHSpMk2`01jD{@= z1vR&}WoeSKXgxwNt<=W7w0r0bI3$Y&Qv1m%r`hgRn31GP@rKdAVK_`I@xoDCK zQ`kX*hi37>J%T)PeIekiTy9z{D8M3Kw07lY#YIa&Jx`XP<*mhI72hdI&~jQ)N6V-e z1leWGMdu3Yu0+sa*oY?6YbMe!h0CH#kTu=E%D;dS zC(zxq$n4!s1DNYvT*DY=)iwN-`lmf3#vQ?3^d!b7D`-Z z!l8AG!lAhT0Pqesb$`g8Gy&OvFq$6o#}j_b{!IA8iTFq?8cst=tA}H-F}Rol_^#om z*09i&{n2u8r%qK&jLEAtt~%B!AW?Lu`W}?^{sG#efxSt6-tl z8AihBOT-w46VQ?oU}J90*TClLAy~>WfHGz!qi;onrqfFAGDDyE>Ndw3)sa>2#c`#Bcfl;#O@b5X-Z zEf;lMc%V-_@5)PJW#2Ddi8$jAE znGN0#kg(J5rVrvyAOMpe-jAgS!)E-kpbJZ=axwB3-?2-UWt^7NM_AoI3V}CtAQaRE zR&1(51#QVXuBrBBhP;ps)=X(`^)E9v*pXXsjf^jY`_m@Xr2ian59wQ{0Q zG`pT|U}|sVrKktG7*aa~EokkZ;)H#UZss074;r!@y6F}{y*y{-EO{DsaV!*%U=H9a zk0p#WTgr{OB;&+*wy9LB)?Y%{Y^{`X+U}_L_SkNz zM!R?Sx9#-MgY-}>JwSg8_Z(7bGPFJfXp8KEd0lrXtS3z#KmB{cqvi9gWbz-ON16P; zLo`zkMAq!+A6V-j+|k#!Zg6n@jsb>{$61YML&ggqy6IbjR;sSjfS=Zu0{mf=0{X*Q zTjgh6*lPX^ssY^e_uO{_>_5Nmrtb=xmDh!v{sFh5@dJtdx+zIp1ii~HsHUG=ykxdJ z<=52?fEHLkN#AGp_yA$$hgIyy z^b;QPDVQx&Yi#;*_3w!+WyysgJx$NBAU(@7K6<6X^_r_E1=odAg9rA z)~6fpyXdu20Y^74VZWdy96LbQve82{F6B8LMbMNB9N3|Z#{E`k!7rc0#T+i0gm}Vo z^NbmLzSt$nBss(z&H16wj1(*g-|Y%^2fG4;TUKuy+_-gUL9I0+9Oa=gcv$}Q!G!4} zmu15K&R9B~O!anljsnIr!*HswcV{HSvIt0nA5En)*uh%X)zxFYI4vJr#>Ty7pd64t z0BJI)M?qGKp{^U6IBQ{fBdNhHUI2rEcB7hh}N9&#y!LD56oG)z=W_JR0<9Bn< zf6J?SG8d{m1g;XO*N53UKN^tJI6$8_8ER3e6zgj;?fih#)< zHRG9)LsBnJ{NaPE%|+IH-pWJ-q?b z6&o%&U~Ar#^1Q}|c~X}LyK^xZ#_z*EpWd54*4pguZ7zE5%@ReK8Ovjuw|X-1+}miAx4BbMfc;jN{!W(Q z?36BWI@{RIVt$eerzVKvOv_VXRDfs`%%^?Ho z*V@+R78;B88A7{t221n@0j{Lpe-L2a`e=hf-Cc&s*dFQw+KVPK>vdTf|E0n8$P0z{4SCOgWt~Wv-ybGwHxBpg_9{Ny3I! zYfIjkahz361X5$62;3{vZ!ARjJhFK2quVX!GHor``wPRSSv~$tHMSzPS7oA+dcR0UL z3$kYn1ykndv<|-v-TcdX)De`l?&oq(-PjeH(i?7Zz7Si>4cgLTdga)M3(6ze;ObNg zM>;E-=DJ<3Kd5Z86Ej9Bi?Ny)p+|_b|1f{NaZ+)O++r=y)*>#Xek|cDB!U#< zp=|R79K%cv4<$g#EFK(y;Lz5NU_8b$E|zn#LWs{=DD)O%W!^^AaCG$2jBZRQ+ERY( zvgI{k8TYp$eIN&{ISHRK;$??{j&v_tR%XMiP*qAOo2g=NGiYw(73$?eW{F9FTg5-m z<2a`p=1c@Nx@+~G~UZa09*CQCP)P$QJh$( z<;HJsPjFG!+qc~+#(6q6aWTNfW-hjHv6Txcgzpf9EzbNT0O_Xo70vMkjI+@z_u@v7 zI;IlKwcHcz#(yns%4I#kLvBaVe}X!83uGx?d;&-Zl$%r! zC&sZrc|^a5i5?WRdU`~c=+Z6zi2EAiVh0yHxhR>kC5;76wic8(3CYB`AM%ErIBfZI zNAKi9s{3vscD^mrFMVVVewFvm9u(*bSaczyD3aT@mN`ZjuHJ67&pA&v%x6u~!?9>G zr3d$MY!nQQjvD$X0H9a?4j@aecSUe3L*_|O_Hdzy%jyj%S@9%`mjk=`tBR|%X&d1EEA_gw;cSDq}XX72wg z`|u{UX7b)tIs{{17kAZ)JH=tMV~a13m_*t<9vl<9z9bD9CjGY|aFdW#^RqXuu`z zLyyQNw0abDYHPNmf*gJRrody*qbbO3SKI%#Oap74a|v(i7E=A0=Hp~YPNzqYct|`_ zC+-)I;$#Dpk23+8v{{g$SN@EmfSc(ZZ#*Wx!DD}uPgU$==jHE|X9qL8!Y(0Y2QM+X zJ3ZnF@ogUcJ4n<7=e!#L?yZk#&Q=*Q6>`xbAdR5A@XdK<-cY3%rBGl{`IV5FFyD|> z&Fm*Jrij^EG%8-R4Y-r~d7KJw`xfO48?QLX?;K2wAX!u$=!4*eEP?I(HsyMM|aN&pXd8p2bG1{0zh` zo(JA=48Bc%*C5rGt&3a0Uz^1bRvV+4aoEF@Tl^HP$hOuBxCIi6s!d|u;@^>}#vdZM z#ed?i8Q!?XFF>72baRWB@gtkwCjJXKoJc@FpbxUya*O{q7kM*MB{}EG;JkIiE&d0S zEU8@`k8nPrTfBkpvm3R)#-R8p1LPg$%%c($Cupe>lOjYi6EZt_dGbE}k>3o-NOr$R z{8%9UOw$BDJb*DNn_pYH6PJeXH1br%gvgTXh|i3)s#?vdReQugiyr}N2Qfv$ z;?io7eGDP>XdddW)#|ia9`U9)#sniNv1HOJQq<1U8o8|(auDLrqdeM4^jZxD#^F)3 zN>kk#O>t_|>NpbW&2)9lbRWLCL99EF0Jl3sMwGu88R7!cB7^14p``jf8!@`RB{M#( z8|qH&U?O9Lb(T|_iw|p@gmuKf8h@TdLOU6z@J#%wM?D))Yx}7I%8RGoe)7>tyJ-%d z;;S6h_EfyD+MUAfnz-E@Zs%*LW%GvQ$t&qJIvw=~_}eSgwLG!tzX|W+n=VY#DfqP* z{jwo$n#7)L``xsl{V;WGUf90(E($E%bqAgZtr?{UZy}Y7g4BsmbC}+0+?k77qb}-3 zEAH*9=*x-vV(zWO>+5O%IxX@pIl_A*n-_XlO;X=Ow2C`lw{Ta7cMd;a=iMNmA+dvGCKv`sq=7hVkS1bg$q;9{CjTWEnK zzX@c*-#5vp0ZiT&Os1njqjy-uU!ta>#Uy@vk9X(@y;Ebtha}-cO!%UOMHKk$6!5e- z=``D<`PHa`F3L{3b2FB~12#I$vGgAAsAH1Gk5Ixv-cdQ)=w_axWRKU7RCo<}*O1eZ zGAAyRowx%%9o~cZa|nMX@aM7~@8w76k2LD=zE{ra5&D3Jgl#N?_e0(fAE7Iq_=V@P z=yf(bcP$JYrcZdUYFIl-e|ng%bDNb21f1s8VfwQU?@c{{0O;ff_}%P0On)wWMjZ%L zSr5Elz>P`z%ZKR8&im;r7dZlf>fFPx;^APRLEZTp-FcV}Pttw3K&i%^q=&_>+h|^I z)xtnAQOy|YF|mtoBgbvz?yYXFe$XWU8x8BsaY~c_%@aZX6VoBz1@eoCYIfz3?{0Q0 z^1t1%zL5L|#R;Z65XfD3c)tT)(2rUQuU51$_LcK~uV_JRtM!k}(Iov7s@!Te?vC$%R5 z4P3vD-%o0a$|8dc%i|{GTS0t+V*8p0auhVBxWv`#G zuA7gMo1FIdKc zp&soG`X#*#Ed8+d33`S83tt}21(v@`|Ba8gpH){b?FZ_rM&j{m0MBlW2HUZRZNj@u z+i~$8(k>vzw!J#Nn?f`Uz_i^6%NrDtFiNjy5z75DAk;}f`BzMY`gK`^`b|lMI%*=+ zn^}Z9*3*Gxa4rPaybgaFau{{WbTG;%91VJ*n%F?fC!8}@bGwW~qjI3-6V;G#yT_cVJ<+vO8yG+b7Z;WKB^v45nj5k#wl!Q) z#A42^u(JrLZU<92H{h-HF?^x}quG_Yl9O>xZzD5a#7%Q!9^>9-?}OlDA={lmML)x* z{0txbj3)Y+*eN`R6DBSXK>vCn_lfW zN7h}A*B!6pbPlx>u^7rGuAOt8_c-r?U%~Y=_ZYojaG&dkiBR4r>&L6F zt-hAFRdIbUjPkYBcX3UNtDmZV$?{`9OlKVf*(Lp$xyp~Z4!%qF`mr+C_BNBYHs7(X zPdl#P(}VD4F7tJIi_2+TJD=j(gZLP}3*UF&P6wTH=`!bwba~a|bcOVZ zl2ix&Ue5YN)!)zhMAZ){pXj62?@&I`5F%UY6T$y6uUrndx~g&fN?p}C?^9Q^s%}H!@Wpa2R#+aCPxMa5h4Nn2NY@v_Kpvc}oEn^+us~1xL?y^7?-Q+R zq#G)-aNY@E!6z=5y1kiiIz`2VmG_F)G}4U~ndqA_6LusmaAntlCp)mu+?Ac*E8U`E zHp=@&ZH@H#LYA`*a$%6`6YIhM+h>6`U^M%@RkA?y5t_0EDq^REhXh^S$O_wE(FDy> zCTJE+&@8$}w2O9_Ag;H<1htEPSr1`b`4=!jsIhfPDC@b_nziS&=U{?RI}lc)6kIzz zj;9Nc=h@DMmgyKK-!TkV(R5r7_-|2Wo_N1t2dv0rH}YL4G4m59BY*f_(K)0rCy7(eOC1*Xa|R%Y*!u z(jdQ8f&4pEkn9uNSxN@E7~*0F7dvezziYZEe_x@h<)QpLXN)d6m)tvz?K}(R3&<*u z^1B=9{)#N@IRPyA#KqG_`C`H(zk2B&b7lzk{t;x6Y8xQ10bT2*CPwIkGg3}no}svV=7ieGbQw}!tg1o|{^_yqj7@BZ?xaZO<> zvDq?^uhVplWeW`9Qo0p3>Mr^;-6wX?{W$h|K)aD1cFdwj952zM(qO)eYCuPWWiVg0 z4CYhHU|#KvDuWrY4CX7A!F2`_J1FK?u0XUgOiCx*%QPM1j; zF%=VD-j)KSpDSXrtj&2J*n0bH&igUi)NM{SVk%&#gt>+Get=c@gB5Mg6eA`?Nc9{s zp-YRPaEmC6< zz${!tWxKP- zvq zbUaS8`R=5+`=Wt6#T^}o#XYy9sgOB#NX4u_NcU@5>JM zT_=^K5&si`?}>jN*)IJe#F^ND{MZ1>LbiDyu4G=FU}e{J`P=WtUutE5?_ z%x4FD;srcA=o2rYI^+{SLp9+O|Ay)^pZE_{@AZkFqq@l_eu?UvX7wGPcm=fgYC#Bk|QCZ$Q-K99IC+_>J&K?a)IO^J~3O> zC#kww)n}^uY*nLQP=mv0pZE>e3ne``J(dLFC{L1tb30Wpk~HCXP7$@tWPgvO3FmZ@ zC>+&Es&GuF$Xcm}J5SYps$Q>#-=K!a^kX`3a-fFatcKm9>aA*cER39!K{Y2sYWy8) z{GDq2U26Pys_{T4mcl14QFTbw5k&`9T28}=qGMFiv0skweM6BEQ)DC*8ITMJ0b+4Q zhM~xSs6Y;UBCW{CsNoK&`U+LQPYwTmHT(zE@E=see?*P@QB_~5#{ak){}XEbPpa{+ zQsZB(#{ZNW{~9&kXHd+3Q}y+#zE#onMMc+_6kWG5T~foKRY*ctpxXkR zVhm{VX>>n*c~kqOrroPKFY;>bcWW-Gy-3%_|7t_E?=!WKTEC{%JVuQu4{P-g;e}0) zlXp^U*mSQ}cM)Fo-Ko{Ie_dPmxSB~5a7nIniNi6kQ!L` EzgcZRz5oCK literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class b/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class new file mode 100644 index 0000000000000000000000000000000000000000..8cb67a6de57655dbd3cf156991a8bd9e7dd967d1 GIT binary patch literal 16820 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 NuNg^PQzBtk^CyL`GqV5y literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class b/gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class new file mode 100644 index 0000000000000000000000000000000000000000..6a6c1e6e9af399bf062284c18772b4aa31c5cfb2 GIT binary patch literal 3810 zcmb_f`*Ryt75=WRM2fs|oK4~+O$xYm8(DI##tltVHv!wUA&uOG$RxOiinVktZ!GVM z-Ib|%6-o<~H|0@Ec|&32%t^H!%vufNg+0L?6*V9Y7 zx~#p6jaJ=uX0;!rp%ezLTB}yEVLA2Ug@voS%GF+lLv_z}SJ$HTv*CApcZb3|yICBI z)M$0s53InhPB$#yKj$pE3i*=j)r(cPrkAXi#1=a6^kRcfZPzJo$WADvD-~LpnO0Db zE9_d)ffa5m94sY6n`v)QXXitlt6XWF& zfsF_i4(CSNF@<<ghTCEaT{&FR7D^1T8Dlm^B99LTewkVXD=p_Lm1F3VjBsAt&z|BSb$)M$t zcNZh|sg~WSX)ldC74GSn{BE$OaTkv-Xwyrsw4I_8BX3_aa16OV+>H^1!9-wI({9I; zMu8~YERb^5vzx)xTA+oelQpXuNc{IGWUH1R%(}B{O|5XULr95;LZ)_(v50%K7{hTv zutx^g+FeZVSX9bmVJVM=r92j=E6!F1?^bx==8mHh?dMk9?dZyV96q?QJG>id{=vP8#oH(XU#K zmcFpa1m+%3rZ^U2nLL8CSv-vQhY4Zrh9$NwArbtEeB2C{M{!Y1C-Z*GZ&q%e4({Ym?H}4cl3Dmo)=ea;dtdBFcehJN1b~TDqrRx-DaV zGzm*AozTA(iw2gk+y@Odtv-U^E}d;HEH;@WPwaQwX}U(!LDhhRruhCCeG|=1-^Y>% z?0y^~dnzf})p-J(SZ0JI_0baVs|x+Y(m4{B>g@>)-uA_^yBJ*3i`wHOMUxkU!&Oi7 zQf^hg@$jDKg#Zp*9cN9=~i5YLnXpO#1sWTg`W1J5CgKF&|eOO10@;N+#*M>)O#sqt(6 zI>A}4(!q7?FXjJ=!TfdHHZz*9`~^oxul$KS3culKa0U+GcD#f0Z~3>AD+8SQ%-*o} z5_W{vDq^i*4viPgJI2l78_4${9L&*mjK7Z2nb9i+^FD5$7$1!`?!SRkz2NGD0@lI&pK)~V4WzDJ$;d zZ&xiJL04xVPoZ;+S!p3L;3w%!04n6oA@kGaym^QD6vz9_&v86qexBol=Cd46n_uL3 z#(b_E8YP8Uzp;^_knp6W`PIMU>*txWZ@z}-=gc0G_`BhODbD|SV)5zNXYLie@CNpB wypA8ePKEPt!d%Bs&cB8i=cxMgSMdU~^sCJ*G0XekLVud|tndeh-GlUh04A6f-~a#s literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class new file mode 100644 index 0000000000000000000000000000000000000000..b0672c5aaec231c296db2243350236a30a4f0161 GIT binary patch literal 3778 zcmbtXTXWmg7XIW*l)8!=+>(|Qn$Q-S*aekaTS!UTx};5Ow@`;dxSkzbvDL_uk>o1iLlx3snPTHpHCWpDrd=QrO2 zxE&v4Fo^MW*n$Z;9F(tzGJHBLhhhdta8HhsC)T5caxYG1a0>Uzm-|$lR#C|yi*Y$j zOWFG~ID-dzacu?NH!9ZP@;4!)sfecIxQ>T)u<+N+M z?>LsH*Nm27*9^OA8s4&zBg<x-w3hH2ldjV|?KmWR)5vJ)tT-ohOW1Y2;=86@CyUv+NMhQNyecSAE*=)A z*>r5Z>R6Uh_4TP{v+YZtN~Y&?d&=~s?X=Ck^lczC(e_PCKjgY%;fV1>TLx>OlaPhh zGAZ|U-ErWuBRWoF>ndj57Jl2MJ9C%r&XpPM^_`GZW+t5$7U{TpBu4qE*|TJDOolAC zc9~TA4Z%3|HiXv*^C~$qI;9{}aoTRxm^5W#ZR{+An`J~b41>e9xK6`13~AVleHw1W zE)BbJlZsglRn!#pA7&zWzAIW~!*4h>Z$l4^e#~*I_oJb~#90;d8Z0ywB!~536}AQk zEe%hAQSQGmf0$Ll(gpF>;KA3>#yJ&FYIq9&QSr2fXYj0sJ5bQ@U;K|PB%WpeSMjTO zPCEH~2cnQ(4KLtDf*+CPxhrnrB6-Y+krqSH>#fUG61Wtu%3|Tiu?$|q%L;Dn7Sy!? z&EOThs-S!Y#T`>h2w}aZMXO~kC>ZJhI@h+VzR5bBj2>78n^!~A;Ro4iik5=?kspDl zYZXM@q6-gXX^rY)*dH91S+AaT*qQCRg1vF7iVfjbWIM2{##k5aD=LUxjrxs(J#mzg zAFGn_mKN0)D@fF8lcwvjn7S4qGoz>Kv=(IVJrq|T=_QZEcZs<}u-n&)&I-@a%Z_V= zpk&uyZV$%{t0h}zb~@@8%M03+Z5wXU5}qep>CrfM%e|uustZl+?9@wqxBN4{3pO!D z$f1InIEE+%V@Y{MsCw&$A2`dVww%ks(G)Ba_EoD%w!-4BIH1UU7eH*WDcMGO?u zvzUH~1B(=dUG|u;c}MbghLU43G;0a%*f`BYGA@4UA48KD-y5%-NOMtGR)yy|xgU$C z%s=#IUVi39-6%GU>io3u=2>-fj@uM|vGeAq;(Y}-tf9FZOA5AKTn>A9=N;s2H^Cnd zK8}!QA4iqHVO$S}lut91NOIng{|ZXJ@Ff!Y-CrX4IhPXH!7+yv$6=1wV;#3-xw16Q0)%1CaBm=Vp zNCyhmQ$-&}u?cw$@VJ(y2SQaVriU;>4;4y*FcW>fobxC|rthb;gf*03M9(7BZ@}+g zV_gEd%o5gr4K0Bm(DxZd;vVmThFh=^x6+$Efmtn7vtpKa2kww0e#lv}vEy50XTIWf zH(%cUBQ_Rx)7eGzb4r#!{p;7l60VYFQZWzr63sr6x}RR{qp7=A$j#8_n@O&uZAWCZ z7h9nd4to|?C7^KSRz6AZvq=1bjEby^Ex!@`ZCp$6zmX!Z6&xklX+o8J4Ca@R%Waea zS;VH?)iM}-Sj5086=4)6kikJ}J4B3!aSbM7bPPtwc$N`=XyJTB$3(vHi41e$M`TI< zW=44P$1>c7AF!n?4NHQSaLq>utV^DPH#PMsQpwe1*e*kcqfCioOyA>#af0bxX3$U4 z#ZwsPyqc2}D-oJtV(cfV>*)BM0hN-ZKBU#G@;i2tq=O1S--WRV`9a1;ax;+r4udmE z39&MhlFU?=uvG#IQ=})5nvU@>5E)J4Kp=HD{>?c@`3Lzwa)GS9fp_sH=Si;1$Q@-I Jj$sPN{{|ot_rd@G literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class new file mode 100644 index 0000000000000000000000000000000000000000..ed9cdcf1f7b57105491446a0102c8aea7fd900cb GIT binary patch literal 22070 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 DAVqU< literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class new file mode 100644 index 0000000000000000000000000000000000000000..c7b6edac59dd57ca559aeb6bc34b555476f12f62 GIT binary patch literal 1374 zcmbtUT~8B16g|_g?Z*PON}(bsDA*5SRs4!27}98rX_TY{9(AT>O2ZPGZpmIp^QE*rts@*^cZ98*!qW_wcW9rGyW9|s zW1)A2yKnUj)2=flx#L)$7?#RS=^Ddi?wH!XD^G;(*8_QqbGBeuyeN%fzT7l)3CYUbE%w0G$jHUO52Hq2Xb~vbhagXt}b4g!3~wBRkjr{M0rFFZ;`DZ@ zC}M%(#U(k0&Y*5i;)iWvm@$Mus+~-@S*}dB$_Z0FZIsrKw$I7gF7>W5fqQW>{Uo|8 zxKBNPGj6Sx@0zwzA9GT};+|K3KNcCrNVMl+*1S^Wz3nLc7D(3lE?C0wO%^(+C`Fi$J; z1{P=x4s#?ZA6T#T5u?{6UP#2hBiTnPfg_436iXK}ePrV}ItQO64ZsZoT&BltB_t`H v0S!n95{oE-<@bp0`haemass+cwe}OaFHp}Rqk1y~s2G;$NQ~%~!+GToQrB_) literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class new file mode 100644 index 0000000000000000000000000000000000000000..9ea9857fa016f67fd26c85348deb5ca9cbf753eb GIT binary patch literal 1736 zcmbtVTTc@~6h5=P(OQ9)ix)%@xs*j&FQ^a*F=;Sr8ZgxGz}vDNmWAz3vz;~YpM20n zBJsf=;EytXvs+=i6hh+5&Y834eDi%@&uoAH`T2{87HPRaee^g_IeJo{1u|6hR7KBJ z^gKr|a;?fj_}%yDm69Bi<N`vFQcMrj%c^el~Fr-0E! zqjU=^quX?+1887X?=t##(!LaG zH)5RfXPol*O(p^M2&lbkH=S8Q2*qkF(7t*)H~Ai+={1>olL+Hh)6dq-{&E UZ8=6Udqy!Ej)byJ5B-_{3;hg_wg3PC literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/docs/javadoc/allclasses-index.html b/gradle-plugin/build/docs/javadoc/allclasses-index.html new file mode 100644 index 0000000000..554a8ed656 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/allclasses-index.html @@ -0,0 +1,174 @@ + + + + + +All Classes (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + +

JavaScript is disabled on your browser.
+ +
+ +
+
+
+

All Classes

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    LinkageCheckerPlugin +
    Gradle plugin to create a "linkageCheck" in a Gradle project.
    +
    LinkageCheckerPluginExtension +
    Properties to control the behavior of the Linkage Checker plugin.
    +
    LinkageCheckTask +
    Task to run Linkage Checker for the dependencies of the Gradle project.
    +
    +
  • +
+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/allclasses.html b/gradle-plugin/build/docs/javadoc/allclasses.html new file mode 100644 index 0000000000..d040d3a75b --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/allclasses.html @@ -0,0 +1,32 @@ + + + + + +All Classes (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + +
+

All Classes

+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/allpackages-index.html b/gradle-plugin/build/docs/javadoc/allpackages-index.html new file mode 100644 index 0000000000..ecae1e2531 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/allpackages-index.html @@ -0,0 +1,162 @@ + + + + + +All Packages (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
+ +
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html new file mode 100644 index 0000000000..9c75e26a1d --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html @@ -0,0 +1,377 @@ + + + + + +LinkageCheckTask (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

Class LinkageCheckTask

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gradle.api.internal.AbstractTask
    • +
    • +
        +
      • org.gradle.api.DefaultTask
      • +
      • +
          +
        • com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Comparable<org.gradle.api.Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal, org.gradle.api.plugins.ExtensionAware, org.gradle.api.Task, org.gradle.util.Configurable<org.gradle.api.Task>
    +
    +
    +
    public class LinkageCheckTask
    +extends org.gradle.api.DefaultTask
    +
    Task to run Linkage Checker for the dependencies of the Gradle project.
    +
  • +
+
+
+
    +
  • + +
    +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from interface org.gradle.api.Task

        +org.gradle.api.Task.Namer
      • +
      +
    • +
    +
    + +
    +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.gradle.api.Task

        +TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
      • +
      +
    • +
    +
    + +
    +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + +
      Constructors 
      ConstructorDescription
      LinkageCheckTask() 
      +
    • +
    +
    + +
    +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethodDescription
      voidrun() 
      +
        +
      • + + +

        Methods inherited from class org.gradle.api.DefaultTask

        +compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService
      • +
      +
        +
      • + + +

        Methods inherited from class org.gradle.api.internal.AbstractTask

        +appendParallelSafeAction, getAsDynamicObject, getConvention, getIdentityPath, getImpliesSubProjects, getOnlyIf, getRequiredServices, getServices, getSharedResources, getStandardOutputCapture, getTaskActions, getTaskIdentity, getTemporaryDirFactory, hasTaskActions, injectIntoNewInstance, isEnabled, isHasCustomActions, prependParallelSafeAction, setImpliesSubProjects, setLoggerMessageRewriter
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface org.gradle.api.Task

        +getConvention
      • +
      +
    • +
    +
    +
  • +
+
+
+
    +
  • + +
    +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LinkageCheckTask

        +
        public LinkageCheckTask()
        +
      • +
      +
    • +
    +
    + +
    +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        run

        +
        public void run()
        +         throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      +
    • +
    +
    +
  • +
+
+
+
+ + + + diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html new file mode 100644 index 0000000000..440662635e --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html @@ -0,0 +1,312 @@ + + + + + +LinkageCheckerPlugin (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

Class LinkageCheckerPlugin

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.gradle.api.Plugin<org.gradle.api.Project>
    +
    +
    +
    public class LinkageCheckerPlugin
    +extends java.lang.Object
    +implements org.gradle.api.Plugin<org.gradle.api.Project>
    +
    Gradle plugin to create a "linkageCheck" in a Gradle project.
    +
  • +
+
+
+
    +
  • + +
    + +
    + +
    +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethodDescription
      voidapply​(org.gradle.api.Project project) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
    +
  • +
+
+
+
    +
  • + +
    +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LinkageCheckerPlugin

        +
        public LinkageCheckerPlugin()
        +
      • +
      +
    • +
    +
    + +
    +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        apply

        +
        public void apply​(org.gradle.api.Project project)
        +
        +
        Specified by:
        +
        apply in interface org.gradle.api.Plugin<org.gradle.api.Project>
        +
        +
      • +
      +
    • +
    +
    +
  • +
+
+
+
+ +
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html new file mode 100644 index 0000000000..8f06f16b10 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html @@ -0,0 +1,375 @@ + + + + + +LinkageCheckerPluginExtension (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

Class LinkageCheckerPluginExtension

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    • +
    +
  • +
+
+
    +
  • +
    +
    public class LinkageCheckerPluginExtension
    +extends java.lang.Object
    +
    Properties to control the behavior of the Linkage Checker plugin. + +

    TODO(suztomo): Implement real configuration as in go/jdd-gradle-plugin.

    +
  • +
+
+
+ +
+
+
    +
  • + +
    +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LinkageCheckerPluginExtension

        +
        public LinkageCheckerPluginExtension()
        +
      • +
      +
    • +
    +
    + +
    +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isReportOnlyReachable

        +
        public boolean isReportOnlyReachable()
        +
      • +
      + + + +
        +
      • +

        setReportOnlyReachable

        +
        public void setReportOnlyReachable​(boolean reportOnlyReachable)
        +
      • +
      + + + +
        +
      • +

        getConfigurations

        +
        public com.google.common.collect.ImmutableSet<java.lang.String> getConfigurations()
        +
      • +
      + + + +
        +
      • +

        setConfigurations

        +
        public void setConfigurations​(java.util.List<java.lang.String> configurationNames)
        +
      • +
      + + + +
        +
      • +

        getExclusionFile

        +
        public java.lang.String getExclusionFile()
        +
      • +
      + + + +
        +
      • +

        setExclusionFile

        +
        public void setExclusionFile​(java.lang.String exclusionFile)
        +
      • +
      +
    • +
    +
    +
  • +
+
+
+
+ +
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html new file mode 100644 index 0000000000..32657ee7bf --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html @@ -0,0 +1,176 @@ + + + + + +com.google.cloud.tools.dependencies.gradle (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Package com.google.cloud.tools.dependencies.gradle

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    LinkageCheckerPlugin +
    Gradle plugin to create a "linkageCheck" in a Gradle project.
    +
    LinkageCheckerPluginExtension +
    Properties to control the behavior of the Linkage Checker plugin.
    +
    LinkageCheckTask +
    Task to run Linkage Checker for the dependencies of the Gradle project.
    +
    +
  • +
+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html new file mode 100644 index 0000000000..03cb608a4f --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html @@ -0,0 +1,165 @@ + + + + + +com.google.cloud.tools.dependencies.gradle Class Hierarchy (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.google.cloud.tools.dependencies.gradle

+
+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.gradle.api.internal.AbstractTask (implements org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal) +
        +
      • org.gradle.api.DefaultTask (implements org.gradle.api.Task) + +
      • +
      +
    • +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin (implements org.gradle.api.Plugin<T>)
    • +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    • +
    +
  • +
+
+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/constant-values.html b/gradle-plugin/build/docs/javadoc/constant-values.html new file mode 100644 index 0000000000..6b804cb790 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/constant-values.html @@ -0,0 +1,146 @@ + + + + + +Constant Field Values (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Constant Field Values

+
+

Contents

+
+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/deprecated-list.html b/gradle-plugin/build/docs/javadoc/deprecated-list.html new file mode 100644 index 0000000000..fed9b39717 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/deprecated-list.html @@ -0,0 +1,144 @@ + + + + + +Deprecated List (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

Deprecated API

+

Contents

+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/element-list b/gradle-plugin/build/docs/javadoc/element-list new file mode 100644 index 0000000000..e319539711 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/element-list @@ -0,0 +1 @@ +com.google.cloud.tools.dependencies.gradle diff --git a/gradle-plugin/build/docs/javadoc/help-doc.html b/gradle-plugin/build/docs/javadoc/help-doc.html new file mode 100644 index 0000000000..ad4cd7eb9b --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/help-doc.html @@ -0,0 +1,264 @@ + + + + + +API Help (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +
    +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:

    +
      +
    • Interfaces
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
    +
  • +
  • +
    +

    Class or Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class Inheritance Diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class or Interface Declaration
    • +
    • Class or Interface Description
    • +
    +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Property Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
    +
      +
    • Field Detail
    • +
    • Property Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
    +
  • +
  • +
    +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type Declaration
    • +
    • Annotation Type Description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
    +
  • +
  • +
    +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum Declaration
    • +
    • Enum Description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
    +
  • +
  • +
    +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.
    • +
    +
    +
  • +
  • +
    +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
    +
  • +
  • +
    +

    Index

    +

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

    +
    +
  • +
  • +
    +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
    +
  • +
  • +
    +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
    +
  • +
  • +
    +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
    +
  • +
  • +
    +

    Search

    +

    You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".

    +
    +
  • +
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/index-all.html b/gradle-plugin/build/docs/javadoc/index-all.html new file mode 100644 index 0000000000..af8010023a --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/index-all.html @@ -0,0 +1,219 @@ + + + + + +Index (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) + + + + + + + + + + + + + + +
+ +
+
+
A C G I L R S 
All Classes All Packages + + +

A

+
+
apply(Project) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
+
 
+
+ + + +

C

+
+
com.google.cloud.tools.dependencies.gradle - package com.google.cloud.tools.dependencies.gradle
+
 
+
+ + + +

G

+
+
getConfigurations() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
getExclusionFile() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
+ + + +

I

+
+
isReportOnlyReachable() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
+ + + +

L

+
+
LinkageCheckerPlugin - Class in com.google.cloud.tools.dependencies.gradle
+
+
Gradle plugin to create a "linkageCheck" in a Gradle project.
+
+
LinkageCheckerPlugin() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
+
 
+
LinkageCheckerPluginExtension - Class in com.google.cloud.tools.dependencies.gradle
+
+
Properties to control the behavior of the Linkage Checker plugin.
+
+
LinkageCheckerPluginExtension() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
LinkageCheckTask - Class in com.google.cloud.tools.dependencies.gradle
+
+
Task to run Linkage Checker for the dependencies of the Gradle project.
+
+
LinkageCheckTask() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
+
 
+
+ + + +

R

+
+
run() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
+
 
+
+ + + +

S

+
+
setConfigurations(List<String>) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
setExclusionFile(String) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
setReportOnlyReachable(boolean) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
+
 
+
+A C G I L R S 
All Classes All Packages
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/index.html b/gradle-plugin/build/docs/javadoc/index.html new file mode 100644 index 0000000000..4d2af83a37 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/index.html @@ -0,0 +1,23 @@ + + + + + +linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API + + + + + + + +
+ +

com/google/cloud/tools/dependencies/gradle/package-summary.html

+
+ + diff --git a/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css b/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css new file mode 100644 index 0000000000..facf852c27 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js b/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js new file mode 100644 index 0000000000..50937333b9 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js @@ -0,0 +1,10872 @@ +/*! + * jQuery JavaScript Library v3.5.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2020-05-04T22:49Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "\r\n"; + +// inject VBScript +document.write(IEBinaryToArray_ByteStr_Script); + +global.JSZipUtils._getBinaryFromXHR = function (xhr) { + var binary = xhr.responseBody; + var byteMapping = {}; + for ( var i = 0; i < 256; i++ ) { + for ( var j = 0; j < 256; j++ ) { + byteMapping[ String.fromCharCode( i + (j << 8) ) ] = + String.fromCharCode(i) + String.fromCharCode(j); + } + } + var rawBytes = IEBinaryToArray_ByteStr(binary); + var lastChr = IEBinaryToArray_ByteStr_Last(binary); + return rawBytes.replace(/[\s\S]/g, function( match ) { + return byteMapping[match]; + }) + lastChr; +}; + +// enforcing Stuk's coding style +// vim: set shiftwidth=4 softtabstop=4: + +},{}]},{},[1]) +; diff --git a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js new file mode 100644 index 0000000000..93d8bc8ef2 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js @@ -0,0 +1,10 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js new file mode 100644 index 0000000000..775895ec92 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js @@ -0,0 +1,118 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/master/LICENSE +*/ + +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; + enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; + + output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); + + } + + return output.join(""); +}; + +// public method for decoding +exports.decode = function(input) { + var chr1, chr2, chr3; + var enc1, enc2, enc3, enc4; + var i = 0, resultIndex = 0; + + var dataUrlPrefix = "data:"; + + if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { + // This is a common error: people give a data url + // (data:image/png;base64,iVBOR...) with a {base64: true} and + // wonders why things don't work. + // We can detect that the string input looks like a data url but we + // *can't* be sure it is one: removing everything up to the comma would + // be too dangerous. + throw new Error("Invalid base64 input, it looks like a data url."); + } + + input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); + + var totalLength = input.length * 3 / 4; + if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { + totalLength--; + } + if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { + totalLength--; + } + if (totalLength % 1 !== 0) { + // totalLength is not an integer, the length does not match a valid + // base64 content. That can happen if: + // - the input is not a base64 content + // - the input is *almost* a base64 content, with a extra chars at the + // beginning or at the end + // - the input uses a base64 variant (base64url for example) + throw new Error("Invalid base64 input, bad content length."); + } + var output; + if (support.uint8array) { + output = new Uint8Array(totalLength|0); + } else { + output = new Array(totalLength|0); + } + + while (i < input.length) { + + enc1 = _keyStr.indexOf(input.charAt(i++)); + enc2 = _keyStr.indexOf(input.charAt(i++)); + enc3 = _keyStr.indexOf(input.charAt(i++)); + enc4 = _keyStr.indexOf(input.charAt(i++)); + + chr1 = (enc1 << 2) | (enc2 >> 4); + chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); + chr3 = ((enc3 & 3) << 6) | enc4; + + output[resultIndex++] = chr1; + + if (enc3 !== 64) { + output[resultIndex++] = chr2; + } + if (enc4 !== 64) { + output[resultIndex++] = chr3; + } + + } + + return output; +}; + +},{"./support":30,"./utils":32}],2:[function(require,module,exports){ +'use strict'; + +var external = require("./external"); +var DataWorker = require('./stream/DataWorker'); +var Crc32Probe = require('./stream/Crc32Probe'); +var DataLengthProbe = require('./stream/DataLengthProbe'); + +/** + * Represent a compressed object, with everything needed to decompress it. + * @constructor + * @param {number} compressedSize the size of the data compressed. + * @param {number} uncompressedSize the size of the data after decompression. + * @param {number} crc32 the crc32 of the decompressed file. + * @param {object} compression the type of compression, see lib/compressions.js. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. + */ +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { + this.compressedSize = compressedSize; + this.uncompressedSize = uncompressedSize; + this.crc32 = crc32; + this.compression = compression; + this.compressedContent = data; +} + +CompressedObject.prototype = { + /** + * Create a worker to get the uncompressed content. + * @return {GenericWorker} the worker. + */ + getContentWorker: function () { + var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) + .pipe(this.compression.uncompressWorker()) + .pipe(new DataLengthProbe("data_length")); + + var that = this; + worker.on("end", function () { + if (this.streamInfo['data_length'] !== that.uncompressedSize) { + throw new Error("Bug : uncompressed data size mismatch"); + } + }); + return worker; + }, + /** + * Create a worker to get the compressed content. + * @return {GenericWorker} the worker. + */ + getCompressedWorker: function () { + return new DataWorker(external.Promise.resolve(this.compressedContent)) + .withStreamInfo("compressedSize", this.compressedSize) + .withStreamInfo("uncompressedSize", this.uncompressedSize) + .withStreamInfo("crc32", this.crc32) + .withStreamInfo("compression", this.compression) + ; + } +}; + +/** + * Chain the given worker with other workers to compress the content with the + * given compression. + * @param {GenericWorker} uncompressedWorker the worker to pipe. + * @param {Object} compression the compression object. + * @param {Object} compressionOptions the options to use when compressing. + * @return {GenericWorker} the new worker compressing the content. + */ +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { + return uncompressedWorker + .pipe(new Crc32Probe()) + .pipe(new DataLengthProbe("uncompressedSize")) + .pipe(compression.compressWorker(compressionOptions)) + .pipe(new DataLengthProbe("compressedSize")) + .withStreamInfo("compression", compression); +}; + +module.exports = CompressedObject; + +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require("./stream/GenericWorker"); + +exports.STORE = { + magic: "\x00\x00", + compressWorker : function (compressionOptions) { + return new GenericWorker("STORE compression"); + }, + uncompressWorker : function () { + return new GenericWorker("STORE decompression"); + } +}; +exports.DEFLATE = require('./flate'); + +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); + +/** + * The following functions come from pako, from pako/lib/zlib/crc32.js + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Use ordinary array, since untyped makes no boost here +function makeTable() { + var c, table = []; + + for(var n =0; n < 256; n++){ + c = n; + for(var k =0; k < 8; k++){ + c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; +} + +// Create table on load. Just 255 signed longs. Not a problem. +var crcTable = makeTable(); + + +function crc32(crc, buf, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +// That's all for the pako functions. + +/** + * Compute the crc32 of a string. + * This is almost the same as the function crc32, but for strings. Using the + * same function for the two use cases leads to horrible performances. + * @param {Number} crc the starting value of the crc. + * @param {String} str the string to use. + * @param {Number} len the length of the string. + * @param {Number} pos the starting position for the crc32 computation. + * @return {Number} the computed crc32. + */ +function crc32str(crc, str, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +module.exports = function crc32wrapper(input, crc) { + if (typeof input === "undefined" || !input.length) { + return 0; + } + + var isArray = utils.getTypeOf(input) !== "string"; + + if(isArray) { + return crc32(crc|0, input, input.length, 0); + } else { + return crc32str(crc|0, input, input.length, 0); + } +}; + +},{"./utils":32}],5:[function(require,module,exports){ +'use strict'; +exports.base64 = false; +exports.binary = false; +exports.dir = false; +exports.createFolders = true; +exports.date = null; +exports.compression = null; +exports.compressionOptions = null; +exports.comment = null; +exports.unixPermissions = null; +exports.dosPermissions = null; + +},{}],6:[function(require,module,exports){ +/* global Promise */ +'use strict'; + +// load the global object first: +// - it should be better integrated in the system (unhandledRejection in node) +// - the environment may have a custom Promise implementation (see zone.js) +var ES6Promise = null; +if (typeof Promise !== "undefined") { + ES6Promise = Promise; +} else { + ES6Promise = require("lie"); +} + +/** + * Let the user use/change some implementations. + */ +module.exports = { + Promise: ES6Promise +}; + +},{"lie":37}],7:[function(require,module,exports){ +'use strict'; +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); + +var pako = require("pako"); +var utils = require("./utils"); +var GenericWorker = require("./stream/GenericWorker"); + +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; + +exports.magic = "\x08\x00"; + +/** + * Create a worker that uses pako to inflate/deflate. + * @constructor + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". + * @param {Object} options the options to use when (de)compressing. + */ +function FlateWorker(action, options) { + GenericWorker.call(this, "FlateWorker/" + action); + + this._pako = null; + this._pakoAction = action; + this._pakoOptions = options; + // the `meta` object from the last chunk received + // this allow this worker to pass around metadata + this.meta = {}; +} + +utils.inherits(FlateWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +FlateWorker.prototype.processChunk = function (chunk) { + this.meta = chunk.meta; + if (this._pako === null) { + this._createPako(); + } + this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); +}; + +/** + * @see GenericWorker.flush + */ +FlateWorker.prototype.flush = function () { + GenericWorker.prototype.flush.call(this); + if (this._pako === null) { + this._createPako(); + } + this._pako.push([], true); +}; +/** + * @see GenericWorker.cleanUp + */ +FlateWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this._pako = null; +}; + +/** + * Create the _pako object. + * TODO: lazy-loading this object isn't the best solution but it's the + * quickest. The best solution is to lazy-load the worker list. See also the + * issue #446. + */ +FlateWorker.prototype._createPako = function () { + this._pako = new pako[this._pakoAction]({ + raw: true, + level: this._pakoOptions.level || -1 // default compression + }); + var self = this; + this._pako.onData = function(data) { + self.push({ + data : data, + meta : self.meta + }); + }; +}; + +exports.compressWorker = function (compressionOptions) { + return new FlateWorker("Deflate", compressionOptions); +}; +exports.uncompressWorker = function () { + return new FlateWorker("Inflate", {}); +}; + +},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); +var utf8 = require('../utf8'); +var crc32 = require('../crc32'); +var signature = require('../signature'); + +/** + * Transform an integer into a string in hexadecimal. + * @private + * @param {number} dec the number to convert. + * @param {number} bytes the number of bytes to generate. + * @returns {string} the result. + */ +var decToHex = function(dec, bytes) { + var hex = "", i; + for (i = 0; i < bytes; i++) { + hex += String.fromCharCode(dec & 0xff); + dec = dec >>> 8; + } + return hex; +}; + +/** + * Generate the UNIX part of the external file attributes. + * @param {Object} unixPermissions the unix permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : + * + * TTTTsstrwxrwxrwx0000000000ADVSHR + * ^^^^____________________________ file type, see zipinfo.c (UNX_*) + * ^^^_________________________ setuid, setgid, sticky + * ^^^^^^^^^________________ permissions + * ^^^^^^^^^^______ not used ? + * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only + */ +var generateUnixExternalFileAttr = function (unixPermissions, isDir) { + + var result = unixPermissions; + if (!unixPermissions) { + // I can't use octal values in strict mode, hence the hexa. + // 040775 => 0x41fd + // 0100664 => 0x81b4 + result = isDir ? 0x41fd : 0x81b4; + } + return (result & 0xFFFF) << 16; +}; + +/** + * Generate the DOS part of the external file attributes. + * @param {Object} dosPermissions the dos permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * Bit 0 Read-Only + * Bit 1 Hidden + * Bit 2 System + * Bit 3 Volume Label + * Bit 4 Directory + * Bit 5 Archive + */ +var generateDosExternalFileAttr = function (dosPermissions, isDir) { + + // the dir flag is already set for compatibility + return (dosPermissions || 0) & 0x3F; +}; + +/** + * Generate the various parts used in the construction of the final zip file. + * @param {Object} streamInfo the hash with information about the compressed file. + * @param {Boolean} streamedContent is the content streamed ? + * @param {Boolean} streamingEnded is the stream finished ? + * @param {number} offset the current offset from the start of the zip file. + * @param {String} platform let's pretend we are this platform (change platform dependents fields) + * @param {Function} encodeFileName the function to encode the file name / comment. + * @return {Object} the zip parts. + */ +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { + var file = streamInfo['file'], + compression = streamInfo['compression'], + useCustomEncoding = encodeFileName !== utf8.utf8encode, + encodedFileName = utils.transformTo("string", encodeFileName(file.name)), + utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), + comment = file.comment, + encodedComment = utils.transformTo("string", encodeFileName(comment)), + utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), + useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, + useUTF8ForComment = utfEncodedComment.length !== comment.length, + dosTime, + dosDate, + extraFields = "", + unicodePathExtraField = "", + unicodeCommentExtraField = "", + dir = file.dir, + date = file.date; + + + var dataInfo = { + crc32 : 0, + compressedSize : 0, + uncompressedSize : 0 + }; + + // if the content is streamed, the sizes/crc32 are only available AFTER + // the end of the stream. + if (!streamedContent || streamingEnded) { + dataInfo.crc32 = streamInfo['crc32']; + dataInfo.compressedSize = streamInfo['compressedSize']; + dataInfo.uncompressedSize = streamInfo['uncompressedSize']; + } + + var bitflag = 0; + if (streamedContent) { + // Bit 3: the sizes/crc32 are set to zero in the local header. + // The correct values are put in the data descriptor immediately + // following the compressed data. + bitflag |= 0x0008; + } + if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { + // Bit 11: Language encoding flag (EFS). + bitflag |= 0x0800; + } + + + var extFileAttr = 0; + var versionMadeBy = 0; + if (dir) { + // dos or unix, we set the dos dir flag + extFileAttr |= 0x00010; + } + if(platform === "UNIX") { + versionMadeBy = 0x031E; // UNIX, version 3.0 + extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); + } else { // DOS or other, fallback to DOS + versionMadeBy = 0x0014; // DOS, version 2.0 + extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); + } + + // date + // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html + + dosTime = date.getUTCHours(); + dosTime = dosTime << 6; + dosTime = dosTime | date.getUTCMinutes(); + dosTime = dosTime << 5; + dosTime = dosTime | date.getUTCSeconds() / 2; + + dosDate = date.getUTCFullYear() - 1980; + dosDate = dosDate << 4; + dosDate = dosDate | (date.getUTCMonth() + 1); + dosDate = dosDate << 5; + dosDate = dosDate | date.getUTCDate(); + + if (useUTF8ForFileName) { + // set the unicode path extra field. unzip needs at least one extra + // field to correctly handle unicode path, so using the path is as good + // as any other information. This could improve the situation with + // other archive managers too. + // This field is usually used without the utf8 flag, with a non + // unicode path in the header (winrar, winzip). This helps (a bit) + // with the messy Windows' default compressed folders feature but + // breaks on p7zip which doesn't seek the unicode path extra field. + // So for now, UTF-8 everywhere ! + unicodePathExtraField = + // Version + decToHex(1, 1) + + // NameCRC32 + decToHex(crc32(encodedFileName), 4) + + // UnicodeName + utfEncodedFileName; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x70" + + // size + decToHex(unicodePathExtraField.length, 2) + + // content + unicodePathExtraField; + } + + if(useUTF8ForComment) { + + unicodeCommentExtraField = + // Version + decToHex(1, 1) + + // CommentCRC32 + decToHex(crc32(encodedComment), 4) + + // UnicodeName + utfEncodedComment; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x63" + + // size + decToHex(unicodeCommentExtraField.length, 2) + + // content + unicodeCommentExtraField; + } + + var header = ""; + + // version needed to extract + header += "\x0A\x00"; + // general purpose bit flag + header += decToHex(bitflag, 2); + // compression method + header += compression.magic; + // last mod file time + header += decToHex(dosTime, 2); + // last mod file date + header += decToHex(dosDate, 2); + // crc-32 + header += decToHex(dataInfo.crc32, 4); + // compressed size + header += decToHex(dataInfo.compressedSize, 4); + // uncompressed size + header += decToHex(dataInfo.uncompressedSize, 4); + // file name length + header += decToHex(encodedFileName.length, 2); + // extra field length + header += decToHex(extraFields.length, 2); + + + var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; + + var dirRecord = signature.CENTRAL_FILE_HEADER + + // version made by (00: DOS) + decToHex(versionMadeBy, 2) + + // file header (common to file and central directory) + header + + // file comment length + decToHex(encodedComment.length, 2) + + // disk number start + "\x00\x00" + + // internal file attributes TODO + "\x00\x00" + + // external file attributes + decToHex(extFileAttr, 4) + + // relative offset of local header + decToHex(offset, 4) + + // file name + encodedFileName + + // extra field + extraFields + + // file comment + encodedComment; + + return { + fileRecord: fileRecord, + dirRecord: dirRecord + }; +}; + +/** + * Generate the EOCD record. + * @param {Number} entriesCount the number of entries in the zip file. + * @param {Number} centralDirLength the length (in bytes) of the central dir. + * @param {Number} localDirLength the length (in bytes) of the local dir. + * @param {String} comment the zip file comment as a binary string. + * @param {Function} encodeFileName the function to encode the comment. + * @return {String} the EOCD record. + */ +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { + var dirEnd = ""; + var encodedComment = utils.transformTo("string", encodeFileName(comment)); + + // end of central dir signature + dirEnd = signature.CENTRAL_DIRECTORY_END + + // number of this disk + "\x00\x00" + + // number of the disk with the start of the central directory + "\x00\x00" + + // total number of entries in the central directory on this disk + decToHex(entriesCount, 2) + + // total number of entries in the central directory + decToHex(entriesCount, 2) + + // size of the central directory 4 bytes + decToHex(centralDirLength, 4) + + // offset of start of central directory with respect to the starting disk number + decToHex(localDirLength, 4) + + // .ZIP file comment length + decToHex(encodedComment.length, 2) + + // .ZIP file comment + encodedComment; + + return dirEnd; +}; + +/** + * Generate data descriptors for a file entry. + * @param {Object} streamInfo the hash generated by a worker, containing information + * on the file entry. + * @return {String} the data descriptors. + */ +var generateDataDescriptors = function (streamInfo) { + var descriptor = ""; + descriptor = signature.DATA_DESCRIPTOR + + // crc-32 4 bytes + decToHex(streamInfo['crc32'], 4) + + // compressed size 4 bytes + decToHex(streamInfo['compressedSize'], 4) + + // uncompressed size 4 bytes + decToHex(streamInfo['uncompressedSize'], 4); + + return descriptor; +}; + + +/** + * A worker to concatenate other workers to create a zip file. + * @param {Boolean} streamFiles `true` to stream the content of the files, + * `false` to accumulate it. + * @param {String} comment the comment to use. + * @param {String} platform the platform to use, "UNIX" or "DOS". + * @param {Function} encodeFileName the function to encode file names and comments. + */ +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { + GenericWorker.call(this, "ZipFileWorker"); + // The number of bytes written so far. This doesn't count accumulated chunks. + this.bytesWritten = 0; + // The comment of the zip file + this.zipComment = comment; + // The platform "generating" the zip file. + this.zipPlatform = platform; + // the function to encode file names and comments. + this.encodeFileName = encodeFileName; + // Should we stream the content of the files ? + this.streamFiles = streamFiles; + // If `streamFiles` is false, we will need to accumulate the content of the + // files to calculate sizes / crc32 (and write them *before* the content). + // This boolean indicates if we are accumulating chunks (it will change a lot + // during the lifetime of this worker). + this.accumulate = false; + // The buffer receiving chunks when accumulating content. + this.contentBuffer = []; + // The list of generated directory records. + this.dirRecords = []; + // The offset (in bytes) from the beginning of the zip file for the current source. + this.currentSourceOffset = 0; + // The total number of entries in this zip file. + this.entriesCount = 0; + // the name of the file currently being added, null when handling the end of the zip file. + // Used for the emitted metadata. + this.currentFile = null; + + + + this._sources = []; +} +utils.inherits(ZipFileWorker, GenericWorker); + +/** + * @see GenericWorker.push + */ +ZipFileWorker.prototype.push = function (chunk) { + + var currentFilePercent = chunk.meta.percent || 0; + var entriesCount = this.entriesCount; + var remainingFiles = this._sources.length; + + if(this.accumulate) { + this.contentBuffer.push(chunk); + } else { + this.bytesWritten += chunk.data.length; + + GenericWorker.prototype.push.call(this, { + data : chunk.data, + meta : { + currentFile : this.currentFile, + percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 + } + }); + } +}; + +/** + * The worker started a new source (an other worker). + * @param {Object} streamInfo the streamInfo object from the new source. + */ +ZipFileWorker.prototype.openedSource = function (streamInfo) { + this.currentSourceOffset = this.bytesWritten; + this.currentFile = streamInfo['file'].name; + + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + + // don't stream folders (because they don't have any content) + if(streamedContent) { + var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + } else { + // we need to wait for the whole file before pushing anything + this.accumulate = true; + } +}; + +/** + * The worker finished a source (an other worker). + * @param {Object} streamInfo the streamInfo object from the finished source. + */ +ZipFileWorker.prototype.closedSource = function (streamInfo) { + this.accumulate = false; + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + + this.dirRecords.push(record.dirRecord); + if(streamedContent) { + // after the streamed file, we put data descriptors + this.push({ + data : generateDataDescriptors(streamInfo), + meta : {percent:100} + }); + } else { + // the content wasn't streamed, we need to push everything now + // first the file record, then the content + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + while(this.contentBuffer.length) { + this.push(this.contentBuffer.shift()); + } + } + this.currentFile = null; +}; + +/** + * @see GenericWorker.flush + */ +ZipFileWorker.prototype.flush = function () { + + var localDirLength = this.bytesWritten; + for(var i = 0; i < this.dirRecords.length; i++) { + this.push({ + data : this.dirRecords[i], + meta : {percent:100} + }); + } + var centralDirLength = this.bytesWritten - localDirLength; + + var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); + + this.push({ + data : dirEnd, + meta : {percent:100} + }); +}; + +/** + * Prepare the next source to be read. + */ +ZipFileWorker.prototype.prepareNextSource = function () { + this.previous = this._sources.shift(); + this.openedSource(this.previous.streamInfo); + if (this.isPaused) { + this.previous.pause(); + } else { + this.previous.resume(); + } +}; + +/** + * @see GenericWorker.registerPrevious + */ +ZipFileWorker.prototype.registerPrevious = function (previous) { + this._sources.push(previous); + var self = this; + + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.closedSource(self.previous.streamInfo); + if(self._sources.length) { + self.prepareNextSource(); + } else { + self.end(); + } + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; +}; + +/** + * @see GenericWorker.resume + */ +ZipFileWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this.previous && this._sources.length) { + this.prepareNextSource(); + return true; + } + if (!this.previous && !this._sources.length && !this.generatedError) { + this.end(); + return true; + } +}; + +/** + * @see GenericWorker.error + */ +ZipFileWorker.prototype.error = function (e) { + var sources = this._sources; + if(!GenericWorker.prototype.error.call(this, e)) { + return false; + } + for(var i = 0; i < sources.length; i++) { + try { + sources[i].error(e); + } catch(e) { + // the `error` exploded, nothing to do + } + } + return true; +}; + +/** + * @see GenericWorker.lock + */ +ZipFileWorker.prototype.lock = function () { + GenericWorker.prototype.lock.call(this); + var sources = this._sources; + for(var i = 0; i < sources.length; i++) { + sources[i].lock(); + } +}; + +module.exports = ZipFileWorker; + +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ +'use strict'; + +var compressions = require('../compressions'); +var ZipFileWorker = require('./ZipFileWorker'); + +/** + * Find the compression to use. + * @param {String} fileCompression the compression defined at the file level, if any. + * @param {String} zipCompression the compression defined at the load() level. + * @return {Object} the compression object to use. + */ +var getCompression = function (fileCompression, zipCompression) { + + var compressionName = fileCompression || zipCompression; + var compression = compressions[compressionName]; + if (!compression) { + throw new Error(compressionName + " is not a valid compression method !"); + } + return compression; +}; + +/** + * Create a worker to generate a zip file. + * @param {JSZip} zip the JSZip instance at the right root level. + * @param {Object} options to generate the zip file. + * @param {String} comment the comment to use. + */ +exports.generateWorker = function (zip, options, comment) { + + var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); + var entriesCount = 0; + try { + + zip.forEach(function (relativePath, file) { + entriesCount++; + var compression = getCompression(file.options.compression, options.compression); + var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; + var dir = file.dir, date = file.date; + + file._compressWorker(compression, compressionOptions) + .withStreamInfo("file", { + name : relativePath, + dir : dir, + date : date, + comment : file.comment || "", + unixPermissions : file.unixPermissions, + dosPermissions : file.dosPermissions + }) + .pipe(zipFileWorker); + }); + zipFileWorker.entriesCount = entriesCount; + } catch (e) { + zipFileWorker.error(e); + } + + return zipFileWorker; +}; + +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ +'use strict'; + +/** + * Representation a of zip file in js + * @constructor + */ +function JSZip() { + // if this constructor is used without `new`, it adds `new` before itself: + if(!(this instanceof JSZip)) { + return new JSZip(); + } + + if(arguments.length) { + throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); + } + + // object containing the files : + // { + // "folder/" : {...}, + // "folder/data.txt" : {...} + // } + // NOTE: we use a null prototype because we do not + // want filenames like "toString" coming from a zip file + // to overwrite methods and attributes in a normal Object. + this.files = Object.create(null); + + this.comment = null; + + // Where we are in the hierarchy + this.root = ""; + this.clone = function() { + var newObj = new JSZip(); + for (var i in this) { + if (typeof this[i] !== "function") { + newObj[i] = this[i]; + } + } + return newObj; + }; +} +JSZip.prototype = require('./object'); +JSZip.prototype.loadAsync = require('./load'); +JSZip.support = require('./support'); +JSZip.defaults = require('./defaults'); + +// TODO find a better way to handle this version, +// a require('package.json').version doesn't work with webpack, see #327 +JSZip.version = "3.7.1"; + +JSZip.loadAsync = function (content, options) { + return new JSZip().loadAsync(content, options); +}; + +JSZip.external = require("./external"); +module.exports = JSZip; + +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ +'use strict'; +var utils = require('./utils'); +var external = require("./external"); +var utf8 = require('./utf8'); +var ZipEntries = require('./zipEntries'); +var Crc32Probe = require('./stream/Crc32Probe'); +var nodejsUtils = require("./nodejsUtils"); + +/** + * Check the CRC32 of an entry. + * @param {ZipEntry} zipEntry the zip entry to check. + * @return {Promise} the result. + */ +function checkEntryCRC32(zipEntry) { + return new external.Promise(function (resolve, reject) { + var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); + worker.on("error", function (e) { + reject(e); + }) + .on("end", function () { + if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { + reject(new Error("Corrupted zip : CRC32 mismatch")); + } else { + resolve(); + } + }) + .resume(); + }); +} + +module.exports = function (data, options) { + var zip = this; + options = utils.extend(options || {}, { + base64: false, + checkCRC32: false, + optimizedBinaryString: false, + createFolders: false, + decodeFileName: utf8.utf8decode + }); + + if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); + } + + return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) + .then(function (data) { + var zipEntries = new ZipEntries(options); + zipEntries.load(data); + return zipEntries; + }).then(function checkCRC32(zipEntries) { + var promises = [external.Promise.resolve(zipEntries)]; + var files = zipEntries.files; + if (options.checkCRC32) { + for (var i = 0; i < files.length; i++) { + promises.push(checkEntryCRC32(files[i])); + } + } + return external.Promise.all(promises); + }).then(function addFiles(results) { + var zipEntries = results.shift(); + var files = zipEntries.files; + for (var i = 0; i < files.length; i++) { + var input = files[i]; + zip.file(input.fileNameStr, input.decompressed, { + binary: true, + optimizedBinaryString: true, + date: input.date, + dir: input.dir, + comment: input.fileCommentStr.length ? input.fileCommentStr : null, + unixPermissions: input.unixPermissions, + dosPermissions: input.dosPermissions, + createFolders: options.createFolders + }); + } + if (zipEntries.zipComment.length) { + zip.comment = zipEntries.zipComment; + } + + return zip; + }); +}; + +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ +"use strict"; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); + +/** + * A worker that use a nodejs stream as source. + * @constructor + * @param {String} filename the name of the file entry for this stream. + * @param {Readable} stream the nodejs stream. + */ +function NodejsStreamInputAdapter(filename, stream) { + GenericWorker.call(this, "Nodejs stream input adapter for " + filename); + this._upstreamEnded = false; + this._bindStream(stream); +} + +utils.inherits(NodejsStreamInputAdapter, GenericWorker); + +/** + * Prepare the stream and bind the callbacks on it. + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. + * @param {Stream} stream the nodejs stream to use. + */ +NodejsStreamInputAdapter.prototype._bindStream = function (stream) { + var self = this; + this._stream = stream; + stream.pause(); + stream + .on("data", function (chunk) { + self.push({ + data: chunk, + meta : { + percent : 0 + } + }); + }) + .on("error", function (e) { + if(self.isPaused) { + this.generatedError = e; + } else { + self.error(e); + } + }) + .on("end", function () { + if(self.isPaused) { + self._upstreamEnded = true; + } else { + self.end(); + } + }); +}; +NodejsStreamInputAdapter.prototype.pause = function () { + if(!GenericWorker.prototype.pause.call(this)) { + return false; + } + this._stream.pause(); + return true; +}; +NodejsStreamInputAdapter.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if(this._upstreamEnded) { + this.end(); + } else { + this._stream.resume(); + } + + return true; +}; + +module.exports = NodejsStreamInputAdapter; + +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ +'use strict'; + +var Readable = require('readable-stream').Readable; + +var utils = require('../utils'); +utils.inherits(NodejsStreamOutputAdapter, Readable); + +/** +* A nodejs stream using a worker as source. +* @see the SourceWrapper in http://nodejs.org/api/stream.html +* @constructor +* @param {StreamHelper} helper the helper wrapping the worker +* @param {Object} options the nodejs stream options +* @param {Function} updateCb the update callback. +*/ +function NodejsStreamOutputAdapter(helper, options, updateCb) { + Readable.call(this, options); + this._helper = helper; + + var self = this; + helper.on("data", function (data, meta) { + if (!self.push(data)) { + self._helper.pause(); + } + if(updateCb) { + updateCb(meta); + } + }) + .on("error", function(e) { + self.emit('error', e); + }) + .on("end", function () { + self.push(null); + }); +} + + +NodejsStreamOutputAdapter.prototype._read = function() { + this._helper.resume(); +}; + +module.exports = NodejsStreamOutputAdapter; + +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ +'use strict'; + +module.exports = { + /** + * True if this is running in Nodejs, will be undefined in a browser. + * In a browser, browserify won't include this file and the whole module + * will be resolved an empty object. + */ + isNode : typeof Buffer !== "undefined", + /** + * Create a new nodejs Buffer from an existing content. + * @param {Object} data the data to pass to the constructor. + * @param {String} encoding the encoding to use. + * @return {Buffer} a new Buffer. + */ + newBufferFrom: function(data, encoding) { + if (Buffer.from && Buffer.from !== Uint8Array.from) { + return Buffer.from(data, encoding); + } else { + if (typeof data === "number") { + // Safeguard for old Node.js versions. On newer versions, + // Buffer.from(number) / Buffer(number, encoding) already throw. + throw new Error("The \"data\" argument must not be a number"); + } + return new Buffer(data, encoding); + } + }, + /** + * Create a new nodejs Buffer with the specified size. + * @param {Integer} size the size of the buffer. + * @return {Buffer} a new Buffer. + */ + allocBuffer: function (size) { + if (Buffer.alloc) { + return Buffer.alloc(size); + } else { + var buf = new Buffer(size); + buf.fill(0); + return buf; + } + }, + /** + * Find out if an object is a Buffer. + * @param {Object} b the object to test. + * @return {Boolean} true if the object is a Buffer, false otherwise. + */ + isBuffer : function(b){ + return Buffer.isBuffer(b); + }, + + isStream : function (obj) { + return obj && + typeof obj.on === "function" && + typeof obj.pause === "function" && + typeof obj.resume === "function"; + } +}; + +},{}],15:[function(require,module,exports){ +'use strict'; +var utf8 = require('./utf8'); +var utils = require('./utils'); +var GenericWorker = require('./stream/GenericWorker'); +var StreamHelper = require('./stream/StreamHelper'); +var defaults = require('./defaults'); +var CompressedObject = require('./compressedObject'); +var ZipObject = require('./zipObject'); +var generate = require("./generate"); +var nodejsUtils = require("./nodejsUtils"); +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); + + +/** + * Add a file in the current folder. + * @private + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file + * @param {Object} originalOptions the options of the file + * @return {Object} the new file. + */ +var fileAdd = function(name, data, originalOptions) { + // be sure sub folders exist + var dataType = utils.getTypeOf(data), + parent; + + + /* + * Correct options. + */ + + var o = utils.extend(originalOptions || {}, defaults); + o.date = o.date || new Date(); + if (o.compression !== null) { + o.compression = o.compression.toUpperCase(); + } + + if (typeof o.unixPermissions === "string") { + o.unixPermissions = parseInt(o.unixPermissions, 8); + } + + // UNX_IFDIR 0040000 see zipinfo.c + if (o.unixPermissions && (o.unixPermissions & 0x4000)) { + o.dir = true; + } + // Bit 4 Directory + if (o.dosPermissions && (o.dosPermissions & 0x0010)) { + o.dir = true; + } + + if (o.dir) { + name = forceTrailingSlash(name); + } + if (o.createFolders && (parent = parentFolder(name))) { + folderAdd.call(this, parent, true); + } + + var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; + if (!originalOptions || typeof originalOptions.binary === "undefined") { + o.binary = !isUnicodeString; + } + + + var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; + + if (isCompressedEmpty || o.dir || !data || data.length === 0) { + o.base64 = false; + o.binary = true; + data = ""; + o.compression = "STORE"; + dataType = "string"; + } + + /* + * Convert content to fit. + */ + + var zipObjectContent = null; + if (data instanceof CompressedObject || data instanceof GenericWorker) { + zipObjectContent = data; + } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + zipObjectContent = new NodejsStreamInputAdapter(name, data); + } else { + zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); + } + + var object = new ZipObject(name, zipObjectContent, o); + this.files[name] = object; + /* + TODO: we can't throw an exception because we have async promises + (we can have a promise of a Date() for example) but returning a + promise is useless because file(name, data) returns the JSZip + object for chaining. Should we break that to allow the user + to catch the error ? + + return external.Promise.resolve(zipObjectContent) + .then(function () { + return object; + }); + */ +}; + +/** + * Find the parent folder of the path. + * @private + * @param {string} path the path to use + * @return {string} the parent folder, or "" + */ +var parentFolder = function (path) { + if (path.slice(-1) === '/') { + path = path.substring(0, path.length - 1); + } + var lastSlash = path.lastIndexOf('/'); + return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; +}; + +/** + * Returns the path with a slash at the end. + * @private + * @param {String} path the path to check. + * @return {String} the path with a trailing slash. + */ +var forceTrailingSlash = function(path) { + // Check the name ends with a / + if (path.slice(-1) !== "/") { + path += "/"; // IE doesn't like substr(-1) + } + return path; +}; + +/** + * Add a (sub) folder in the current folder. + * @private + * @param {string} name the folder's name + * @param {boolean=} [createFolders] If true, automatically create sub + * folders. Defaults to false. + * @return {Object} the new folder. + */ +var folderAdd = function(name, createFolders) { + createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; + + name = forceTrailingSlash(name); + + // Does this folder already exist? + if (!this.files[name]) { + fileAdd.call(this, name, null, { + dir: true, + createFolders: createFolders + }); + } + return this.files[name]; +}; + +/** +* Cross-window, cross-Node-context regular expression detection +* @param {Object} object Anything +* @return {Boolean} true if the object is a regular expression, +* false otherwise +*/ +function isRegExp(object) { + return Object.prototype.toString.call(object) === "[object RegExp]"; +} + +// return the actual prototype of JSZip +var out = { + /** + * @see loadAsync + */ + load: function() { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + + /** + * Call a callback function for each entry at this folder level. + * @param {Function} cb the callback function: + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + */ + forEach: function(cb) { + var filename, relativePath, file; + /* jshint ignore:start */ + // ignore warning about unwanted properties because this.files is a null prototype object + for (filename in this.files) { + file = this.files[filename]; + relativePath = filename.slice(this.root.length, filename.length); + if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root + cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... + } + } + /* jshint ignore:end */ + }, + + /** + * Filter nested files/folders with the specified function. + * @param {Function} search the predicate to use : + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + * @return {Array} An array of matching elements. + */ + filter: function(search) { + var result = []; + this.forEach(function (relativePath, entry) { + if (search(relativePath, entry)) { // the file matches the function + result.push(entry); + } + + }); + return result; + }, + + /** + * Add a file to the zip file, or search a file. + * @param {string|RegExp} name The name of the file to add (if data is defined), + * the name of the file to find (if no data) or a regex to match files. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded + * @param {Object} o File options + * @return {JSZip|Object|Array} this JSZip object (when adding a file), + * a file (when searching by string) or an array of files (when searching by regex). + */ + file: function(name, data, o) { + if (arguments.length === 1) { + if (isRegExp(name)) { + var regexp = name; + return this.filter(function(relativePath, file) { + return !file.dir && regexp.test(relativePath); + }); + } + else { // text + var obj = this.files[this.root + name]; + if (obj && !obj.dir) { + return obj; + } else { + return null; + } + } + } + else { // more than one argument : we have data ! + name = this.root + name; + fileAdd.call(this, name, data, o); + } + return this; + }, + + /** + * Add a directory to the zip file, or search. + * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. + * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. + */ + folder: function(arg) { + if (!arg) { + return this; + } + + if (isRegExp(arg)) { + return this.filter(function(relativePath, file) { + return file.dir && arg.test(relativePath); + }); + } + + // else, name is a new folder + var name = this.root + arg; + var newFolder = folderAdd.call(this, name); + + // Allow chaining by returning a new object with this folder as the root + var ret = this.clone(); + ret.root = newFolder.name; + return ret; + }, + + /** + * Delete a file, or a directory and all sub-files, from the zip + * @param {string} name the name of the file to delete + * @return {JSZip} this JSZip object + */ + remove: function(name) { + name = this.root + name; + var file = this.files[name]; + if (!file) { + // Look for any folders + if (name.slice(-1) !== "/") { + name += "/"; + } + file = this.files[name]; + } + + if (file && !file.dir) { + // file + delete this.files[name]; + } else { + // maybe a folder, delete recursively + var kids = this.filter(function(relativePath, file) { + return file.name.slice(0, name.length) === name; + }); + for (var i = 0; i < kids.length; i++) { + delete this.files[kids[i].name]; + } + } + + return this; + }, + + /** + * Generate the complete zip file + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file + */ + generate: function(options) { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + /** + * Generate the complete zip file as an internal stream. + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {StreamHelper} the streamed zip file. + */ + generateInternalStream: function(options) { + var worker, opts = {}; + try { + opts = utils.extend(options || {}, { + streamFiles: false, + compression: "STORE", + compressionOptions : null, + type: "", + platform: "DOS", + comment: null, + mimeType: 'application/zip', + encodeFileName: utf8.utf8encode + }); + + opts.type = opts.type.toLowerCase(); + opts.compression = opts.compression.toUpperCase(); + + // "binarystring" is preferred but the internals use "string". + if(opts.type === "binarystring") { + opts.type = "string"; + } + + if (!opts.type) { + throw new Error("No output type specified."); + } + + utils.checkSupport(opts.type); + + // accept nodejs `process.platform` + if( + opts.platform === 'darwin' || + opts.platform === 'freebsd' || + opts.platform === 'linux' || + opts.platform === 'sunos' + ) { + opts.platform = "UNIX"; + } + if (opts.platform === 'win32') { + opts.platform = "DOS"; + } + + var comment = opts.comment || this.comment || ""; + worker = generate.generateWorker(this, opts, comment); + } catch (e) { + worker = new GenericWorker("error"); + worker.error(e); + } + return new StreamHelper(worker, opts.type || "string", opts.mimeType); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateAsync: function(options, onUpdate) { + return this.generateInternalStream(options).accumulate(onUpdate); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateNodeStream: function(options, onUpdate) { + options = options || {}; + if (!options.type) { + options.type = "nodebuffer"; + } + return this.generateInternalStream(options).toNodejsStream(onUpdate); + } +}; +module.exports = out; + +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ +/* + * This file is used by module bundlers (browserify/webpack/etc) when + * including a stream implementation. We use "readable-stream" to get a + * consistent behavior between nodejs versions but bundlers often have a shim + * for "stream". Using this shim greatly improve the compatibility and greatly + * reduce the final size of the bundle (only one stream implementation, not + * two). + */ +module.exports = require("stream"); + +},{"stream":undefined}],17:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function ArrayReader(data) { + DataReader.call(this, data); + for(var i = 0; i < this.data.length; i++) { + data[i] = data[i] & 0xFF; + } +} +utils.inherits(ArrayReader, DataReader); +/** + * @see DataReader.byteAt + */ +ArrayReader.prototype.byteAt = function(i) { + return this.data[this.zero + i]; +}; +/** + * @see DataReader.lastIndexOfSignature + */ +ArrayReader.prototype.lastIndexOfSignature = function(sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3); + for (var i = this.length - 4; i >= 0; --i) { + if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { + return i - this.zero; + } + } + + return -1; +}; +/** + * @see DataReader.readAndCheckSignature + */ +ArrayReader.prototype.readAndCheckSignature = function (sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3), + data = this.readData(4); + return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; +}; +/** + * @see DataReader.readData + */ +ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + return []; + } + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = ArrayReader; + +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ +'use strict'; +var utils = require('../utils'); + +function DataReader(data) { + this.data = data; // type : see implementation + this.length = data.length; + this.index = 0; + this.zero = 0; +} +DataReader.prototype = { + /** + * Check that the offset will not go too far. + * @param {string} offset the additional offset to check. + * @throws {Error} an Error if the offset is out of bounds. + */ + checkOffset: function(offset) { + this.checkIndex(this.index + offset); + }, + /** + * Check that the specified index will not be too far. + * @param {string} newIndex the index to check. + * @throws {Error} an Error if the index is out of bounds. + */ + checkIndex: function(newIndex) { + if (this.length < this.zero + newIndex || newIndex < 0) { + throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); + } + }, + /** + * Change the index. + * @param {number} newIndex The new index. + * @throws {Error} if the new index is out of the data. + */ + setIndex: function(newIndex) { + this.checkIndex(newIndex); + this.index = newIndex; + }, + /** + * Skip the next n bytes. + * @param {number} n the number of bytes to skip. + * @throws {Error} if the new index is out of the data. + */ + skip: function(n) { + this.setIndex(this.index + n); + }, + /** + * Get the byte at the specified index. + * @param {number} i the index to use. + * @return {number} a byte. + */ + byteAt: function(i) { + // see implementations + }, + /** + * Get the next number with a given byte size. + * @param {number} size the number of bytes to read. + * @return {number} the corresponding number. + */ + readInt: function(size) { + var result = 0, + i; + this.checkOffset(size); + for (i = this.index + size - 1; i >= this.index; i--) { + result = (result << 8) + this.byteAt(i); + } + this.index += size; + return result; + }, + /** + * Get the next string with a given byte size. + * @param {number} size the number of bytes to read. + * @return {string} the corresponding string. + */ + readString: function(size) { + return utils.transformTo("string", this.readData(size)); + }, + /** + * Get raw data without conversion, bytes. + * @param {number} size the number of bytes to read. + * @return {Object} the raw data, implementation specific. + */ + readData: function(size) { + // see implementations + }, + /** + * Find the last occurrence of a zip signature (4 bytes). + * @param {string} sig the signature to find. + * @return {number} the index of the last occurrence, -1 if not found. + */ + lastIndexOfSignature: function(sig) { + // see implementations + }, + /** + * Read the signature (4 bytes) at the current position and compare it with sig. + * @param {string} sig the expected signature + * @return {boolean} true if the signature matches, false otherwise. + */ + readAndCheckSignature: function(sig) { + // see implementations + }, + /** + * Get the next date. + * @return {Date} the date. + */ + readDate: function() { + var dostime = this.readInt(4); + return new Date(Date.UTC( + ((dostime >> 25) & 0x7f) + 1980, // year + ((dostime >> 21) & 0x0f) - 1, // month + (dostime >> 16) & 0x1f, // day + (dostime >> 11) & 0x1f, // hour + (dostime >> 5) & 0x3f, // minute + (dostime & 0x1f) << 1)); // second + } +}; +module.exports = DataReader; + +},{"../utils":32}],19:[function(require,module,exports){ +'use strict'; +var Uint8ArrayReader = require('./Uint8ArrayReader'); +var utils = require('../utils'); + +function NodeBufferReader(data) { + Uint8ArrayReader.call(this, data); +} +utils.inherits(NodeBufferReader, Uint8ArrayReader); + +/** + * @see DataReader.readData + */ +NodeBufferReader.prototype.readData = function(size) { + this.checkOffset(size); + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = NodeBufferReader; + +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function StringReader(data) { + DataReader.call(this, data); +} +utils.inherits(StringReader, DataReader); +/** + * @see DataReader.byteAt + */ +StringReader.prototype.byteAt = function(i) { + return this.data.charCodeAt(this.zero + i); +}; +/** + * @see DataReader.lastIndexOfSignature + */ +StringReader.prototype.lastIndexOfSignature = function(sig) { + return this.data.lastIndexOf(sig) - this.zero; +}; +/** + * @see DataReader.readAndCheckSignature + */ +StringReader.prototype.readAndCheckSignature = function (sig) { + var data = this.readData(4); + return sig === data; +}; +/** + * @see DataReader.readData + */ +StringReader.prototype.readData = function(size) { + this.checkOffset(size); + // this will work because the constructor applied the "& 0xff" mask. + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = StringReader; + +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ +'use strict'; +var ArrayReader = require('./ArrayReader'); +var utils = require('../utils'); + +function Uint8ArrayReader(data) { + ArrayReader.call(this, data); +} +utils.inherits(Uint8ArrayReader, ArrayReader); +/** + * @see DataReader.readData + */ +Uint8ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. + return new Uint8Array(0); + } + var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = Uint8ArrayReader; + +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var support = require('../support'); +var ArrayReader = require('./ArrayReader'); +var StringReader = require('./StringReader'); +var NodeBufferReader = require('./NodeBufferReader'); +var Uint8ArrayReader = require('./Uint8ArrayReader'); + +/** + * Create a reader adapted to the data. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. + * @return {DataReader} the data reader. + */ +module.exports = function (data) { + var type = utils.getTypeOf(data); + utils.checkSupport(type); + if (type === "string" && !support.uint8array) { + return new StringReader(data); + } + if (type === "nodebuffer") { + return new NodeBufferReader(data); + } + if (support.uint8array) { + return new Uint8ArrayReader(utils.transformTo("uint8array", data)); + } + return new ArrayReader(utils.transformTo("array", data)); +}; + +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ +'use strict'; +exports.LOCAL_FILE_HEADER = "PK\x03\x04"; +exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; +exports.DATA_DESCRIPTOR = "PK\x07\x08"; + +},{}],24:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var utils = require('../utils'); + +/** + * A worker which convert chunks to a specified type. + * @constructor + * @param {String} destType the destination type. + */ +function ConvertWorker(destType) { + GenericWorker.call(this, "ConvertWorker to " + destType); + this.destType = destType; +} +utils.inherits(ConvertWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +ConvertWorker.prototype.processChunk = function (chunk) { + this.push({ + data : utils.transformTo(this.destType, chunk.data), + meta : chunk.meta + }); +}; +module.exports = ConvertWorker; + +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var crc32 = require('../crc32'); +var utils = require('../utils'); + +/** + * A worker which calculate the crc32 of the data flowing through. + * @constructor + */ +function Crc32Probe() { + GenericWorker.call(this, "Crc32Probe"); + this.withStreamInfo("crc32", 0); +} +utils.inherits(Crc32Probe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Crc32Probe.prototype.processChunk = function (chunk) { + this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); + this.push(chunk); +}; +module.exports = Crc32Probe; + +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +/** + * A worker which calculate the total length of the data flowing through. + * @constructor + * @param {String} propName the name used to expose the length + */ +function DataLengthProbe(propName) { + GenericWorker.call(this, "DataLengthProbe for " + propName); + this.propName = propName; + this.withStreamInfo(propName, 0); +} +utils.inherits(DataLengthProbe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +DataLengthProbe.prototype.processChunk = function (chunk) { + if(chunk) { + var length = this.streamInfo[this.propName] || 0; + this.streamInfo[this.propName] = length + chunk.data.length; + } + GenericWorker.prototype.processChunk.call(this, chunk); +}; +module.exports = DataLengthProbe; + + +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +// the size of the generated chunks +// TODO expose this as a public variable +var DEFAULT_BLOCK_SIZE = 16 * 1024; + +/** + * A worker that reads a content and emits chunks. + * @constructor + * @param {Promise} dataP the promise of the data to split + */ +function DataWorker(dataP) { + GenericWorker.call(this, "DataWorker"); + var self = this; + this.dataIsReady = false; + this.index = 0; + this.max = 0; + this.data = null; + this.type = ""; + + this._tickScheduled = false; + + dataP.then(function (data) { + self.dataIsReady = true; + self.data = data; + self.max = data && data.length || 0; + self.type = utils.getTypeOf(data); + if(!self.isPaused) { + self._tickAndRepeat(); + } + }, function (e) { + self.error(e); + }); +} + +utils.inherits(DataWorker, GenericWorker); + +/** + * @see GenericWorker.cleanUp + */ +DataWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this.data = null; +}; + +/** + * @see GenericWorker.resume + */ +DataWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this._tickScheduled && this.dataIsReady) { + this._tickScheduled = true; + utils.delay(this._tickAndRepeat, [], this); + } + return true; +}; + +/** + * Trigger a tick a schedule an other call to this function. + */ +DataWorker.prototype._tickAndRepeat = function() { + this._tickScheduled = false; + if(this.isPaused || this.isFinished) { + return; + } + this._tick(); + if(!this.isFinished) { + utils.delay(this._tickAndRepeat, [], this); + this._tickScheduled = true; + } +}; + +/** + * Read and push a chunk. + */ +DataWorker.prototype._tick = function() { + + if(this.isPaused || this.isFinished) { + return false; + } + + var size = DEFAULT_BLOCK_SIZE; + var data = null, nextIndex = Math.min(this.max, this.index + size); + if (this.index >= this.max) { + // EOF + return this.end(); + } else { + switch(this.type) { + case "string": + data = this.data.substring(this.index, nextIndex); + break; + case "uint8array": + data = this.data.subarray(this.index, nextIndex); + break; + case "array": + case "nodebuffer": + data = this.data.slice(this.index, nextIndex); + break; + } + this.index = nextIndex; + return this.push({ + data : data, + meta : { + percent : this.max ? this.index / this.max * 100 : 0 + } + }); + } +}; + +module.exports = DataWorker; + +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ +'use strict'; + +/** + * A worker that does nothing but passing chunks to the next one. This is like + * a nodejs stream but with some differences. On the good side : + * - it works on IE 6-9 without any issue / polyfill + * - it weights less than the full dependencies bundled with browserify + * - it forwards errors (no need to declare an error handler EVERYWHERE) + * + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an + * object containing anything (`percent` for example), see each worker for more + * details. The latter is the real data (String, Uint8Array, etc). + * + * @constructor + * @param {String} name the name of the stream (mainly used for debugging purposes) + */ +function GenericWorker(name) { + // the name of the worker + this.name = name || "default"; + // an object containing metadata about the workers chain + this.streamInfo = {}; + // an error which happened when the worker was paused + this.generatedError = null; + // an object containing metadata to be merged by this worker into the general metadata + this.extraStreamInfo = {}; + // true if the stream is paused (and should not do anything), false otherwise + this.isPaused = true; + // true if the stream is finished (and should not do anything), false otherwise + this.isFinished = false; + // true if the stream is locked to prevent further structure updates (pipe), false otherwise + this.isLocked = false; + // the event listeners + this._listeners = { + 'data':[], + 'end':[], + 'error':[] + }; + // the previous worker, if any + this.previous = null; +} + +GenericWorker.prototype = { + /** + * Push a chunk to the next workers. + * @param {Object} chunk the chunk to push + */ + push : function (chunk) { + this.emit("data", chunk); + }, + /** + * End the stream. + * @return {Boolean} true if this call ended the worker, false otherwise. + */ + end : function () { + if (this.isFinished) { + return false; + } + + this.flush(); + try { + this.emit("end"); + this.cleanUp(); + this.isFinished = true; + } catch (e) { + this.emit("error", e); + } + return true; + }, + /** + * End the stream with an error. + * @param {Error} e the error which caused the premature end. + * @return {Boolean} true if this call ended the worker with an error, false otherwise. + */ + error : function (e) { + if (this.isFinished) { + return false; + } + + if(this.isPaused) { + this.generatedError = e; + } else { + this.isFinished = true; + + this.emit("error", e); + + // in the workers chain exploded in the middle of the chain, + // the error event will go downward but we also need to notify + // workers upward that there has been an error. + if(this.previous) { + this.previous.error(e); + } + + this.cleanUp(); + } + return true; + }, + /** + * Add a callback on an event. + * @param {String} name the name of the event (data, end, error) + * @param {Function} listener the function to call when the event is triggered + * @return {GenericWorker} the current object for chainability + */ + on : function (name, listener) { + this._listeners[name].push(listener); + return this; + }, + /** + * Clean any references when a worker is ending. + */ + cleanUp : function () { + this.streamInfo = this.generatedError = this.extraStreamInfo = null; + this._listeners = []; + }, + /** + * Trigger an event. This will call registered callback with the provided arg. + * @param {String} name the name of the event (data, end, error) + * @param {Object} arg the argument to call the callback with. + */ + emit : function (name, arg) { + if (this._listeners[name]) { + for(var i = 0; i < this._listeners[name].length; i++) { + this._listeners[name][i].call(this, arg); + } + } + }, + /** + * Chain a worker with an other. + * @param {Worker} next the worker receiving events from the current one. + * @return {worker} the next worker for chainability + */ + pipe : function (next) { + return next.registerPrevious(this); + }, + /** + * Same as `pipe` in the other direction. + * Using an API with `pipe(next)` is very easy. + * Implementing the API with the point of view of the next one registering + * a source is easier, see the ZipFileWorker. + * @param {Worker} previous the previous worker, sending events to this one + * @return {Worker} the current worker for chainability + */ + registerPrevious : function (previous) { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + + // sharing the streamInfo... + this.streamInfo = previous.streamInfo; + // ... and adding our own bits + this.mergeStreamInfo(); + this.previous = previous; + var self = this; + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.end(); + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; + }, + /** + * Pause the stream so it doesn't send events anymore. + * @return {Boolean} true if this call paused the worker, false otherwise. + */ + pause : function () { + if(this.isPaused || this.isFinished) { + return false; + } + this.isPaused = true; + + if(this.previous) { + this.previous.pause(); + } + return true; + }, + /** + * Resume a paused stream. + * @return {Boolean} true if this call resumed the worker, false otherwise. + */ + resume : function () { + if(!this.isPaused || this.isFinished) { + return false; + } + this.isPaused = false; + + // if true, the worker tried to resume but failed + var withError = false; + if(this.generatedError) { + this.error(this.generatedError); + withError = true; + } + if(this.previous) { + this.previous.resume(); + } + + return !withError; + }, + /** + * Flush any remaining bytes as the stream is ending. + */ + flush : function () {}, + /** + * Process a chunk. This is usually the method overridden. + * @param {Object} chunk the chunk to process. + */ + processChunk : function(chunk) { + this.push(chunk); + }, + /** + * Add a key/value to be added in the workers chain streamInfo once activated. + * @param {String} key the key to use + * @param {Object} value the associated value + * @return {Worker} the current worker for chainability + */ + withStreamInfo : function (key, value) { + this.extraStreamInfo[key] = value; + this.mergeStreamInfo(); + return this; + }, + /** + * Merge this worker's streamInfo into the chain's streamInfo. + */ + mergeStreamInfo : function () { + for(var key in this.extraStreamInfo) { + if (!this.extraStreamInfo.hasOwnProperty(key)) { + continue; + } + this.streamInfo[key] = this.extraStreamInfo[key]; + } + }, + + /** + * Lock the stream to prevent further updates on the workers chain. + * After calling this method, all calls to pipe will fail. + */ + lock: function () { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + this.isLocked = true; + if (this.previous) { + this.previous.lock(); + } + }, + + /** + * + * Pretty print the workers chain. + */ + toString : function () { + var me = "Worker " + this.name; + if (this.previous) { + return this.previous + " -> " + me; + } else { + return me; + } + } +}; + +module.exports = GenericWorker; + +},{}],29:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var ConvertWorker = require('./ConvertWorker'); +var GenericWorker = require('./GenericWorker'); +var base64 = require('../base64'); +var support = require("../support"); +var external = require("../external"); + +var NodejsStreamOutputAdapter = null; +if (support.nodestream) { + try { + NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); + } catch(e) {} +} + +/** + * Apply the final transformation of the data. If the user wants a Blob for + * example, it's easier to work with an U8intArray and finally do the + * ArrayBuffer/Blob conversion. + * @param {String} type the name of the final type + * @param {String|Uint8Array|Buffer} content the content to transform + * @param {String} mimeType the mime type of the content, if applicable. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. + */ +function transformZipOutput(type, content, mimeType) { + switch(type) { + case "blob" : + return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); + case "base64" : + return base64.encode(content); + default : + return utils.transformTo(type, content); + } +} + +/** + * Concatenate an array of data of the given type. + * @param {String} type the type of the data in the given array. + * @param {Array} dataArray the array containing the data chunks to concatenate + * @return {String|Uint8Array|Buffer} the concatenated data + * @throws Error if the asked type is unsupported + */ +function concat (type, dataArray) { + var i, index = 0, res = null, totalLength = 0; + for(i = 0; i < dataArray.length; i++) { + totalLength += dataArray[i].length; + } + switch(type) { + case "string": + return dataArray.join(""); + case "array": + return Array.prototype.concat.apply([], dataArray); + case "uint8array": + res = new Uint8Array(totalLength); + for(i = 0; i < dataArray.length; i++) { + res.set(dataArray[i], index); + index += dataArray[i].length; + } + return res; + case "nodebuffer": + return Buffer.concat(dataArray); + default: + throw new Error("concat : unsupported type '" + type + "'"); + } +} + +/** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {StreamHelper} helper the helper to use. + * @param {Function} updateCallback a callback called on each update. Called + * with one arg : + * - the metadata linked to the update received. + * @return Promise the promise for the accumulation. + */ +function accumulate(helper, updateCallback) { + return new external.Promise(function (resolve, reject){ + var dataArray = []; + var chunkType = helper._internalType, + resultType = helper._outputType, + mimeType = helper._mimeType; + helper + .on('data', function (data, meta) { + dataArray.push(data); + if(updateCallback) { + updateCallback(meta); + } + }) + .on('error', function(err) { + dataArray = []; + reject(err); + }) + .on('end', function (){ + try { + var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); + resolve(result); + } catch (e) { + reject(e); + } + dataArray = []; + }) + .resume(); + }); +} + +/** + * An helper to easily use workers outside of JSZip. + * @constructor + * @param {Worker} worker the worker to wrap + * @param {String} outputType the type of data expected by the use + * @param {String} mimeType the mime type of the content, if applicable. + */ +function StreamHelper(worker, outputType, mimeType) { + var internalType = outputType; + switch(outputType) { + case "blob": + case "arraybuffer": + internalType = "uint8array"; + break; + case "base64": + internalType = "string"; + break; + } + + try { + // the type used internally + this._internalType = internalType; + // the type used to output results + this._outputType = outputType; + // the mime type + this._mimeType = mimeType; + utils.checkSupport(internalType); + this._worker = worker.pipe(new ConvertWorker(internalType)); + // the last workers can be rewired without issues but we need to + // prevent any updates on previous workers. + worker.lock(); + } catch(e) { + this._worker = new GenericWorker("error"); + this._worker.error(e); + } +} + +StreamHelper.prototype = { + /** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {Function} updateCb the update callback. + * @return Promise the promise for the accumulation. + */ + accumulate : function (updateCb) { + return accumulate(this, updateCb); + }, + /** + * Add a listener on an event triggered on a stream. + * @param {String} evt the name of the event + * @param {Function} fn the listener + * @return {StreamHelper} the current helper. + */ + on : function (evt, fn) { + var self = this; + + if(evt === "data") { + this._worker.on(evt, function (chunk) { + fn.call(self, chunk.data, chunk.meta); + }); + } else { + this._worker.on(evt, function () { + utils.delay(fn, arguments, self); + }); + } + return this; + }, + /** + * Resume the flow of chunks. + * @return {StreamHelper} the current helper. + */ + resume : function () { + utils.delay(this._worker.resume, [], this._worker); + return this; + }, + /** + * Pause the flow of chunks. + * @return {StreamHelper} the current helper. + */ + pause : function () { + this._worker.pause(); + return this; + }, + /** + * Return a nodejs stream for this helper. + * @param {Function} updateCb the update callback. + * @return {NodejsStreamOutputAdapter} the nodejs stream. + */ + toNodejsStream : function (updateCb) { + utils.checkSupport("nodestream"); + if (this._outputType !== "nodebuffer") { + // an object stream containing blob/arraybuffer/uint8array/string + // is strange and I don't know if it would be useful. + // I you find this comment and have a good usecase, please open a + // bug report ! + throw new Error(this._outputType + " is not supported by this method"); + } + + return new NodejsStreamOutputAdapter(this, { + objectMode : this._outputType !== "nodebuffer" + }, updateCb); + } +}; + + +module.exports = StreamHelper; + +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ +'use strict'; + +exports.base64 = true; +exports.array = true; +exports.string = true; +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; +exports.nodebuffer = typeof Buffer !== "undefined"; +// contains true if JSZip can read/generate Uint8Array, false otherwise. +exports.uint8array = typeof Uint8Array !== "undefined"; + +if (typeof ArrayBuffer === "undefined") { + exports.blob = false; +} +else { + var buffer = new ArrayBuffer(0); + try { + exports.blob = new Blob([buffer], { + type: "application/zip" + }).size === 0; + } + catch (e) { + try { + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(buffer); + exports.blob = builder.getBlob('application/zip').size === 0; + } + catch (e) { + exports.blob = false; + } + } +} + +try { + exports.nodestream = !!require('readable-stream').Readable; +} catch(e) { + exports.nodestream = false; +} + +},{"readable-stream":16}],31:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var support = require('./support'); +var nodejsUtils = require('./nodejsUtils'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * The following functions come from pako, from pako/lib/utils/strings + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Table with utf8 lengths (calculated by first byte of sequence) +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, +// because max possible codepoint is 0x10ffff +var _utf8len = new Array(256); +for (var i=0; i<256; i++) { + _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); +} +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start + +// convert string to array (typed, when possible) +var string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + if (support.uint8array) { + buf = new Uint8Array(buf_len); + } else { + buf = new Array(buf_len); + } + + // convert + for (i=0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; +}; + +// Calculate max possible position in utf8 buffer, +// that will not break sequence. If that's not possible +// - (very small limits) return max size as is. +// +// buf[] - utf8 bytes array +// max - length limit (mandatory); +var utf8border = function(buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max-1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Fuckup - very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means vuffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; +}; + +// convert array to string +var buf2string = function (buf) { + var str, i, out, c, c_len; + var len = buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len*2); + + for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + // shrinkBuf(utf16buf, out) + if (utf16buf.length !== out) { + if(utf16buf.subarray) { + utf16buf = utf16buf.subarray(0, out); + } else { + utf16buf.length = out; + } + } + + // return String.fromCharCode.apply(null, utf16buf); + return utils.applyFromCharCode(utf16buf); +}; + + +// That's all for the pako functions. + + +/** + * Transform a javascript string into an array (typed if possible) of bytes, + * UTF-8 encoded. + * @param {String} str the string to encode + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. + */ +exports.utf8encode = function utf8encode(str) { + if (support.nodebuffer) { + return nodejsUtils.newBufferFrom(str, "utf-8"); + } + + return string2buf(str); +}; + + +/** + * Transform a bytes array (or a representation) representing an UTF-8 encoded + * string into a javascript string. + * @param {Array|Uint8Array|Buffer} buf the data de decode + * @return {String} the decoded string. + */ +exports.utf8decode = function utf8decode(buf) { + if (support.nodebuffer) { + return utils.transformTo("nodebuffer", buf).toString("utf-8"); + } + + buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); + + return buf2string(buf); +}; + +/** + * A worker to decode utf8 encoded binary chunks into string chunks. + * @constructor + */ +function Utf8DecodeWorker() { + GenericWorker.call(this, "utf-8 decode"); + // the last bytes if a chunk didn't end with a complete codepoint. + this.leftOver = null; +} +utils.inherits(Utf8DecodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8DecodeWorker.prototype.processChunk = function (chunk) { + + var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); + + // 1st step, re-use what's left of the previous chunk + if (this.leftOver && this.leftOver.length) { + if(support.uint8array) { + var previousData = data; + data = new Uint8Array(previousData.length + this.leftOver.length); + data.set(this.leftOver, 0); + data.set(previousData, this.leftOver.length); + } else { + data = this.leftOver.concat(data); + } + this.leftOver = null; + } + + var nextBoundary = utf8border(data); + var usableData = data; + if (nextBoundary !== data.length) { + if (support.uint8array) { + usableData = data.subarray(0, nextBoundary); + this.leftOver = data.subarray(nextBoundary, data.length); + } else { + usableData = data.slice(0, nextBoundary); + this.leftOver = data.slice(nextBoundary, data.length); + } + } + + this.push({ + data : exports.utf8decode(usableData), + meta : chunk.meta + }); +}; + +/** + * @see GenericWorker.flush + */ +Utf8DecodeWorker.prototype.flush = function () { + if(this.leftOver && this.leftOver.length) { + this.push({ + data : exports.utf8decode(this.leftOver), + meta : {} + }); + this.leftOver = null; + } +}; +exports.Utf8DecodeWorker = Utf8DecodeWorker; + +/** + * A worker to endcode string chunks into utf8 encoded binary chunks. + * @constructor + */ +function Utf8EncodeWorker() { + GenericWorker.call(this, "utf-8 encode"); +} +utils.inherits(Utf8EncodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8EncodeWorker.prototype.processChunk = function (chunk) { + this.push({ + data : exports.utf8encode(chunk.data), + meta : chunk.meta + }); +}; +exports.Utf8EncodeWorker = Utf8EncodeWorker; + +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ +'use strict'; + +var support = require('./support'); +var base64 = require('./base64'); +var nodejsUtils = require('./nodejsUtils'); +var setImmediate = require('set-immediate-shim'); +var external = require("./external"); + + +/** + * Convert a string that pass as a "binary string": it should represent a byte + * array but may have > 255 char codes. Be sure to take only the first byte + * and returns the byte array. + * @param {String} str the string to transform. + * @return {Array|Uint8Array} the string in a binary format. + */ +function string2binary(str) { + var result = null; + if (support.uint8array) { + result = new Uint8Array(str.length); + } else { + result = new Array(str.length); + } + return stringToArrayLike(str, result); +} + +/** + * Create a new blob with the given content and the given type. + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use + * an Uint8Array because the stock browser of android 4 won't accept it (it + * will be silently converted to a string, "[object Uint8Array]"). + * + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: + * when a large amount of Array is used to create the Blob, the amount of + * memory consumed is nearly 100 times the original data amount. + * + * @param {String} type the mime type of the blob. + * @return {Blob} the created blob. + */ +exports.newBlob = function(part, type) { + exports.checkSupport("blob"); + + try { + // Blob constructor + return new Blob([part], { + type: type + }); + } + catch (e) { + + try { + // deprecated, browser only, old way + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(part); + return builder.getBlob(type); + } + catch (e) { + + // well, fuck ?! + throw new Error("Bug : can't construct the Blob."); + } + } + + +}; +/** + * The identity function. + * @param {Object} input the input. + * @return {Object} the same input. + */ +function identity(input) { + return input; +} + +/** + * Fill in an array with a string. + * @param {String} str the string to use. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. + */ +function stringToArrayLike(str, array) { + for (var i = 0; i < str.length; ++i) { + array[i] = str.charCodeAt(i) & 0xFF; + } + return array; +} + +/** + * An helper for the function arrayLikeToString. + * This contains static information and functions that + * can be optimized by the browser JIT compiler. + */ +var arrayToStringHelper = { + /** + * Transform an array of int into a string, chunk by chunk. + * See the performances notes on arrayLikeToString. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @param {String} type the type of the array. + * @param {Integer} chunk the chunk size. + * @return {String} the resulting string. + * @throws Error if the chunk is too big for the stack. + */ + stringifyByChunk: function(array, type, chunk) { + var result = [], k = 0, len = array.length; + // shortcut + if (len <= chunk) { + return String.fromCharCode.apply(null, array); + } + while (k < len) { + if (type === "array" || type === "nodebuffer") { + result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); + } + else { + result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); + } + k += chunk; + } + return result.join(""); + }, + /** + * Call String.fromCharCode on every item in the array. + * This is the naive implementation, which generate A LOT of intermediate string. + * This should be used when everything else fail. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ + stringifyByChar: function(array){ + var resultStr = ""; + for(var i = 0; i < array.length; i++) { + resultStr += String.fromCharCode(array[i]); + } + return resultStr; + }, + applyCanBeUsed : { + /** + * true if the browser accepts to use String.fromCharCode on Uint8Array + */ + uint8array : (function () { + try { + return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; + } catch (e) { + return false; + } + })(), + /** + * true if the browser accepts to use String.fromCharCode on nodejs Buffer. + */ + nodebuffer : (function () { + try { + return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; + } catch (e) { + return false; + } + })() + } +}; + +/** + * Transform an array-like object to a string. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ +function arrayLikeToString(array) { + // Performances notes : + // -------------------- + // String.fromCharCode.apply(null, array) is the fastest, see + // see http://jsperf.com/converting-a-uint8array-to-a-string/2 + // but the stack is limited (and we can get huge arrays !). + // + // result += String.fromCharCode(array[i]); generate too many strings ! + // + // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 + // TODO : we now have workers that split the work. Do we still need that ? + var chunk = 65536, + type = exports.getTypeOf(array), + canUseApply = true; + if (type === "uint8array") { + canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; + } else if (type === "nodebuffer") { + canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; + } + + if (canUseApply) { + while (chunk > 1) { + try { + return arrayToStringHelper.stringifyByChunk(array, type, chunk); + } catch (e) { + chunk = Math.floor(chunk / 2); + } + } + } + + // no apply or chunk error : slow and painful algorithm + // default browser on android 4.* + return arrayToStringHelper.stringifyByChar(array); +} + +exports.applyFromCharCode = arrayLikeToString; + + +/** + * Copy the data from an array-like to an other array-like. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. + */ +function arrayLikeToArrayLike(arrayFrom, arrayTo) { + for (var i = 0; i < arrayFrom.length; i++) { + arrayTo[i] = arrayFrom[i]; + } + return arrayTo; +} + +// a matrix containing functions to transform everything into everything. +var transform = {}; + +// string to ? +transform["string"] = { + "string": identity, + "array": function(input) { + return stringToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["string"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return stringToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": function(input) { + return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); + } +}; + +// array to ? +transform["array"] = { + "string": arrayLikeToString, + "array": identity, + "arraybuffer": function(input) { + return (new Uint8Array(input)).buffer; + }, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// arraybuffer to ? +transform["arraybuffer"] = { + "string": function(input) { + return arrayLikeToString(new Uint8Array(input)); + }, + "array": function(input) { + return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); + }, + "arraybuffer": identity, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(new Uint8Array(input)); + } +}; + +// uint8array to ? +transform["uint8array"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return input.buffer; + }, + "uint8array": identity, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// nodebuffer to ? +transform["nodebuffer"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["nodebuffer"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return arrayLikeToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": identity +}; + +/** + * Transform an input into any type. + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. + * If no output type is specified, the unmodified input will be returned. + * @param {String} outputType the output type. + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. + * @throws {Error} an Error if the browser doesn't support the requested output type. + */ +exports.transformTo = function(outputType, input) { + if (!input) { + // undefined, null, etc + // an empty string won't harm. + input = ""; + } + if (!outputType) { + return input; + } + exports.checkSupport(outputType); + var inputType = exports.getTypeOf(input); + var result = transform[inputType][outputType](input); + return result; +}; + +/** + * Return the type of the input. + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. + * @param {Object} input the input to identify. + * @return {String} the (lowercase) type of the input. + */ +exports.getTypeOf = function(input) { + if (typeof input === "string") { + return "string"; + } + if (Object.prototype.toString.call(input) === "[object Array]") { + return "array"; + } + if (support.nodebuffer && nodejsUtils.isBuffer(input)) { + return "nodebuffer"; + } + if (support.uint8array && input instanceof Uint8Array) { + return "uint8array"; + } + if (support.arraybuffer && input instanceof ArrayBuffer) { + return "arraybuffer"; + } +}; + +/** + * Throw an exception if the type is not supported. + * @param {String} type the type to check. + * @throws {Error} an Error if the browser doesn't support the requested type. + */ +exports.checkSupport = function(type) { + var supported = support[type.toLowerCase()]; + if (!supported) { + throw new Error(type + " is not supported by this platform"); + } +}; + +exports.MAX_VALUE_16BITS = 65535; +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 + +/** + * Prettify a string read as binary. + * @param {string} str the string to prettify. + * @return {string} a pretty string. + */ +exports.pretty = function(str) { + var res = '', + code, i; + for (i = 0; i < (str || "").length; i++) { + code = str.charCodeAt(i); + res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); + } + return res; +}; + +/** + * Defer the call of a function. + * @param {Function} callback the function to call asynchronously. + * @param {Array} args the arguments to give to the callback. + */ +exports.delay = function(callback, args, self) { + setImmediate(function () { + callback.apply(self || null, args || []); + }); +}; + +/** + * Extends a prototype with an other, without calling a constructor with + * side effects. Inspired by nodejs' `utils.inherits` + * @param {Function} ctor the constructor to augment + * @param {Function} superCtor the parent constructor to use + */ +exports.inherits = function (ctor, superCtor) { + var Obj = function() {}; + Obj.prototype = superCtor.prototype; + ctor.prototype = new Obj(); +}; + +/** + * Merge the objects passed as parameters into a new one. + * @private + * @param {...Object} var_args All objects to merge. + * @return {Object} a new object with the data of the others. + */ +exports.extend = function() { + var result = {}, i, attr; + for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers + for (attr in arguments[i]) { + if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { + result[attr] = arguments[i][attr]; + } + } + } + return result; +}; + +/** + * Transform arbitrary content into a Promise. + * @param {String} name a name for the content being processed. + * @param {Object} inputData the content to process. + * @param {Boolean} isBinary true if the content is not an unicode string + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. + * @param {Boolean} isBase64 true if the string content is encoded with base64. + * @return {Promise} a promise in a format usable by JSZip. + */ +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { + + // if inputData is already a promise, this flatten it. + var promise = external.Promise.resolve(inputData).then(function(data) { + + + var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); + + if (isBlob && typeof FileReader !== "undefined") { + return new external.Promise(function (resolve, reject) { + var reader = new FileReader(); + + reader.onload = function(e) { + resolve(e.target.result); + }; + reader.onerror = function(e) { + reject(e.target.error); + }; + reader.readAsArrayBuffer(data); + }); + } else { + return data; + } + }); + + return promise.then(function(data) { + var dataType = exports.getTypeOf(data); + + if (!dataType) { + return external.Promise.reject( + new Error("Can't read the data of '" + name + "'. Is it " + + "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") + ); + } + // special case : it's way easier to work with Uint8Array than with ArrayBuffer + if (dataType === "arraybuffer") { + data = exports.transformTo("uint8array", data); + } else if (dataType === "string") { + if (isBase64) { + data = base64.decode(data); + } + else if (isBinary) { + // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask + if (isOptimizedBinaryString !== true) { + // this is a string, not in a base64 format. + // Be sure that this is a correct "binary string" + data = string2binary(data); + } + } + } + return data; + }); +}; + +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var sig = require('./signature'); +var ZipEntry = require('./zipEntry'); +var utf8 = require('./utf8'); +var support = require('./support'); +// class ZipEntries {{{ +/** + * All the entries in the zip file. + * @constructor + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntries(loadOptions) { + this.files = []; + this.loadOptions = loadOptions; +} +ZipEntries.prototype = { + /** + * Check that the reader is on the specified signature. + * @param {string} expectedSignature the expected signature. + * @throws {Error} if it is an other signature. + */ + checkSignature: function(expectedSignature) { + if (!this.reader.readAndCheckSignature(expectedSignature)) { + this.reader.index -= 4; + var signature = this.reader.readString(4); + throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); + } + }, + /** + * Check if the given signature is at the given index. + * @param {number} askedIndex the index to check. + * @param {string} expectedSignature the signature to expect. + * @return {boolean} true if the signature is here, false otherwise. + */ + isSignature: function(askedIndex, expectedSignature) { + var currentIndex = this.reader.index; + this.reader.setIndex(askedIndex); + var signature = this.reader.readString(4); + var result = signature === expectedSignature; + this.reader.setIndex(currentIndex); + return result; + }, + /** + * Read the end of the central directory. + */ + readBlockEndOfCentral: function() { + this.diskNumber = this.reader.readInt(2); + this.diskWithCentralDirStart = this.reader.readInt(2); + this.centralDirRecordsOnThisDisk = this.reader.readInt(2); + this.centralDirRecords = this.reader.readInt(2); + this.centralDirSize = this.reader.readInt(4); + this.centralDirOffset = this.reader.readInt(4); + + this.zipCommentLength = this.reader.readInt(2); + // warning : the encoding depends of the system locale + // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. + // On a windows machine, this field is encoded with the localized windows code page. + var zipComment = this.reader.readData(this.zipCommentLength); + var decodeParamType = support.uint8array ? "uint8array" : "array"; + // To get consistent behavior with the generation part, we will assume that + // this is utf8 encoded unless specified otherwise. + var decodeContent = utils.transformTo(decodeParamType, zipComment); + this.zipComment = this.loadOptions.decodeFileName(decodeContent); + }, + /** + * Read the end of the Zip 64 central directory. + * Not merged with the method readEndOfCentral : + * The end of central can coexist with its Zip64 brother, + * I don't want to read the wrong number of bytes ! + */ + readBlockZip64EndOfCentral: function() { + this.zip64EndOfCentralSize = this.reader.readInt(8); + this.reader.skip(4); + // this.versionMadeBy = this.reader.readString(2); + // this.versionNeeded = this.reader.readInt(2); + this.diskNumber = this.reader.readInt(4); + this.diskWithCentralDirStart = this.reader.readInt(4); + this.centralDirRecordsOnThisDisk = this.reader.readInt(8); + this.centralDirRecords = this.reader.readInt(8); + this.centralDirSize = this.reader.readInt(8); + this.centralDirOffset = this.reader.readInt(8); + + this.zip64ExtensibleData = {}; + var extraDataSize = this.zip64EndOfCentralSize - 44, + index = 0, + extraFieldId, + extraFieldLength, + extraFieldValue; + while (index < extraDataSize) { + extraFieldId = this.reader.readInt(2); + extraFieldLength = this.reader.readInt(4); + extraFieldValue = this.reader.readData(extraFieldLength); + this.zip64ExtensibleData[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Read the end of the Zip 64 central directory locator. + */ + readBlockZip64EndOfCentralLocator: function() { + this.diskWithZip64CentralDirStart = this.reader.readInt(4); + this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); + this.disksCount = this.reader.readInt(4); + if (this.disksCount > 1) { + throw new Error("Multi-volumes zip are not supported"); + } + }, + /** + * Read the local files, based on the offset read in the central part. + */ + readLocalFiles: function() { + var i, file; + for (i = 0; i < this.files.length; i++) { + file = this.files[i]; + this.reader.setIndex(file.localHeaderOffset); + this.checkSignature(sig.LOCAL_FILE_HEADER); + file.readLocalPart(this.reader); + file.handleUTF8(); + file.processAttributes(); + } + }, + /** + * Read the central directory. + */ + readCentralDir: function() { + var file; + + this.reader.setIndex(this.centralDirOffset); + while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { + file = new ZipEntry({ + zip64: this.zip64 + }, this.loadOptions); + file.readCentralPart(this.reader); + this.files.push(file); + } + + if (this.centralDirRecords !== this.files.length) { + if (this.centralDirRecords !== 0 && this.files.length === 0) { + // We expected some records but couldn't find ANY. + // This is really suspicious, as if something went wrong. + throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); + } else { + // We found some records but not all. + // Something is wrong but we got something for the user: no error here. + // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); + } + } + }, + /** + * Read the end of central directory. + */ + readEndOfCentral: function() { + var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); + if (offset < 0) { + // Check if the content is a truncated zip or complete garbage. + // A "LOCAL_FILE_HEADER" is not required at the beginning (auto + // extractible zip for example) but it can give a good hint. + // If an ajax request was used without responseType, we will also + // get unreadable data. + var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); + + if (isGarbage) { + throw new Error("Can't find end of central directory : is this a zip file ? " + + "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); + } else { + throw new Error("Corrupted zip: can't find end of central directory"); + } + + } + this.reader.setIndex(offset); + var endOfCentralDirOffset = offset; + this.checkSignature(sig.CENTRAL_DIRECTORY_END); + this.readBlockEndOfCentral(); + + + /* extract from the zip spec : + 4) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + ZIP64 format record should be created. + 5) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + */ + if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { + this.zip64 = true; + + /* + Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from + the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents + all numbers as 64-bit double precision IEEE 754 floating point numbers. + So, we have 53bits for integers and bitwise operations treat everything as 32bits. + see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators + and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 + */ + + // should look for a zip64 EOCD locator + offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + if (offset < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); + } + this.reader.setIndex(offset); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + this.readBlockZip64EndOfCentralLocator(); + + // now the zip64 EOCD record + if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { + // console.warn("ZIP64 end of central directory not where expected."); + this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + if (this.relativeOffsetEndOfZip64CentralDir < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); + } + } + this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + this.readBlockZip64EndOfCentral(); + } + + var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; + if (this.zip64) { + expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator + expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; + } + + var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; + + if (extraBytes > 0) { + // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); + if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { + // The offsets seem wrong, but we have something at the specified offset. + // So… we keep it. + } else { + // the offset is wrong, update the "zero" of the reader + // this happens if data has been prepended (crx files for example) + this.reader.zero = extraBytes; + } + } else if (extraBytes < 0) { + throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); + } + }, + prepareReader: function(data) { + this.reader = readerFor(data); + }, + /** + * Read a zip file and create ZipEntries. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. + */ + load: function(data) { + this.prepareReader(data); + this.readEndOfCentral(); + this.readCentralDir(); + this.readLocalFiles(); + } +}; +// }}} end of ZipEntries +module.exports = ZipEntries; + +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var CompressedObject = require('./compressedObject'); +var crc32fn = require('./crc32'); +var utf8 = require('./utf8'); +var compressions = require('./compressions'); +var support = require('./support'); + +var MADE_BY_DOS = 0x00; +var MADE_BY_UNIX = 0x03; + +/** + * Find a compression registered in JSZip. + * @param {string} compressionMethod the method magic to find. + * @return {Object|null} the JSZip compression object, null if none found. + */ +var findCompression = function(compressionMethod) { + for (var method in compressions) { + if (!compressions.hasOwnProperty(method)) { + continue; + } + if (compressions[method].magic === compressionMethod) { + return compressions[method]; + } + } + return null; +}; + +// class ZipEntry {{{ +/** + * An entry in the zip file. + * @constructor + * @param {Object} options Options of the current file. + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntry(options, loadOptions) { + this.options = options; + this.loadOptions = loadOptions; +} +ZipEntry.prototype = { + /** + * say if the file is encrypted. + * @return {boolean} true if the file is encrypted, false otherwise. + */ + isEncrypted: function() { + // bit 1 is set + return (this.bitFlag & 0x0001) === 0x0001; + }, + /** + * say if the file has utf-8 filename/comment. + * @return {boolean} true if the filename/comment is in utf-8, false otherwise. + */ + useUTF8: function() { + // bit 11 is set + return (this.bitFlag & 0x0800) === 0x0800; + }, + /** + * Read the local part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readLocalPart: function(reader) { + var compression, localExtraFieldsLength; + + // we already know everything from the central dir ! + // If the central dir data are false, we are doomed. + // On the bright side, the local part is scary : zip64, data descriptors, both, etc. + // The less data we get here, the more reliable this should be. + // Let's skip the whole header and dash to the data ! + reader.skip(22); + // in some zip created on windows, the filename stored in the central dir contains \ instead of /. + // Strangely, the filename here is OK. + // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes + // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... + // Search "unzip mismatching "local" filename continuing with "central" filename version" on + // the internet. + // + // I think I see the logic here : the central directory is used to display + // content and the local directory is used to extract the files. Mixing / and \ + // may be used to display \ to windows users and use / when extracting the files. + // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 + this.fileNameLength = reader.readInt(2); + localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir + // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. + this.fileName = reader.readData(this.fileNameLength); + reader.skip(localExtraFieldsLength); + + if (this.compressedSize === -1 || this.uncompressedSize === -1) { + throw new Error("Bug or corrupted zip : didn't get enough information from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); + } + + compression = findCompression(this.compressionMethod); + if (compression === null) { // no compression found + throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); + } + this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); + }, + + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readCentralPart: function(reader) { + this.versionMadeBy = reader.readInt(2); + reader.skip(2); + // this.versionNeeded = reader.readInt(2); + this.bitFlag = reader.readInt(2); + this.compressionMethod = reader.readString(2); + this.date = reader.readDate(); + this.crc32 = reader.readInt(4); + this.compressedSize = reader.readInt(4); + this.uncompressedSize = reader.readInt(4); + var fileNameLength = reader.readInt(2); + this.extraFieldsLength = reader.readInt(2); + this.fileCommentLength = reader.readInt(2); + this.diskNumberStart = reader.readInt(2); + this.internalFileAttributes = reader.readInt(2); + this.externalFileAttributes = reader.readInt(4); + this.localHeaderOffset = reader.readInt(4); + + if (this.isEncrypted()) { + throw new Error("Encrypted zip are not supported"); + } + + // will be read in the local part, see the comments there + reader.skip(fileNameLength); + this.readExtraFields(reader); + this.parseZIP64ExtraField(reader); + this.fileComment = reader.readData(this.fileCommentLength); + }, + + /** + * Parse the external file attributes and get the unix/dos permissions. + */ + processAttributes: function () { + this.unixPermissions = null; + this.dosPermissions = null; + var madeBy = this.versionMadeBy >> 8; + + // Check if we have the DOS directory flag set. + // We look for it in the DOS and UNIX permissions + // but some unknown platform could set it as a compatibility flag. + this.dir = this.externalFileAttributes & 0x0010 ? true : false; + + if(madeBy === MADE_BY_DOS) { + // first 6 bits (0 to 5) + this.dosPermissions = this.externalFileAttributes & 0x3F; + } + + if(madeBy === MADE_BY_UNIX) { + this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; + // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); + } + + // fail safe : if the name ends with a / it probably means a folder + if (!this.dir && this.fileNameStr.slice(-1) === '/') { + this.dir = true; + } + }, + + /** + * Parse the ZIP64 extra field and merge the info in the current ZipEntry. + * @param {DataReader} reader the reader to use. + */ + parseZIP64ExtraField: function(reader) { + + if (!this.extraFields[0x0001]) { + return; + } + + // should be something, preparing the extra reader + var extraReader = readerFor(this.extraFields[0x0001].value); + + // I really hope that these 64bits integer can fit in 32 bits integer, because js + // won't let us have more. + if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { + this.uncompressedSize = extraReader.readInt(8); + } + if (this.compressedSize === utils.MAX_VALUE_32BITS) { + this.compressedSize = extraReader.readInt(8); + } + if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { + this.localHeaderOffset = extraReader.readInt(8); + } + if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { + this.diskNumberStart = extraReader.readInt(4); + } + }, + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readExtraFields: function(reader) { + var end = reader.index + this.extraFieldsLength, + extraFieldId, + extraFieldLength, + extraFieldValue; + + if (!this.extraFields) { + this.extraFields = {}; + } + + while (reader.index + 4 < end) { + extraFieldId = reader.readInt(2); + extraFieldLength = reader.readInt(2); + extraFieldValue = reader.readData(extraFieldLength); + + this.extraFields[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + + reader.setIndex(end); + }, + /** + * Apply an UTF8 transformation if needed. + */ + handleUTF8: function() { + var decodeParamType = support.uint8array ? "uint8array" : "array"; + if (this.useUTF8()) { + this.fileNameStr = utf8.utf8decode(this.fileName); + this.fileCommentStr = utf8.utf8decode(this.fileComment); + } else { + var upath = this.findExtraFieldUnicodePath(); + if (upath !== null) { + this.fileNameStr = upath; + } else { + // ASCII text or unsupported code page + var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); + this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); + } + + var ucomment = this.findExtraFieldUnicodeComment(); + if (ucomment !== null) { + this.fileCommentStr = ucomment; + } else { + // ASCII text or unsupported code page + var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); + this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); + } + } + }, + + /** + * Find the unicode path declared in the extra field, if any. + * @return {String} the unicode path, null otherwise. + */ + findExtraFieldUnicodePath: function() { + var upathField = this.extraFields[0x7075]; + if (upathField) { + var extraReader = readerFor(upathField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the filename changed, this field is out of date. + if (crc32fn(this.fileName) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(upathField.length - 5)); + } + return null; + }, + + /** + * Find the unicode comment declared in the extra field, if any. + * @return {String} the unicode comment, null otherwise. + */ + findExtraFieldUnicodeComment: function() { + var ucommentField = this.extraFields[0x6375]; + if (ucommentField) { + var extraReader = readerFor(ucommentField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the comment changed, this field is out of date. + if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); + } + return null; + } +}; +module.exports = ZipEntry; + +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ +'use strict'; + +var StreamHelper = require('./stream/StreamHelper'); +var DataWorker = require('./stream/DataWorker'); +var utf8 = require('./utf8'); +var CompressedObject = require('./compressedObject'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * A simple object representing a file in the zip file. + * @constructor + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data + * @param {Object} options the options of the file + */ +var ZipObject = function(name, data, options) { + this.name = name; + this.dir = options.dir; + this.date = options.date; + this.comment = options.comment; + this.unixPermissions = options.unixPermissions; + this.dosPermissions = options.dosPermissions; + + this._data = data; + this._dataBinary = options.binary; + // keep only the compression + this.options = { + compression : options.compression, + compressionOptions : options.compressionOptions + }; +}; + +ZipObject.prototype = { + /** + * Create an internal stream for the content of this object. + * @param {String} type the type of each chunk. + * @return StreamHelper the stream. + */ + internalStream: function (type) { + var result = null, outputType = "string"; + try { + if (!type) { + throw new Error("No output type specified."); + } + outputType = type.toLowerCase(); + var askUnicodeString = outputType === "string" || outputType === "text"; + if (outputType === "binarystring" || outputType === "text") { + outputType = "string"; + } + result = this._decompressWorker(); + + var isUnicodeString = !this._dataBinary; + + if (isUnicodeString && !askUnicodeString) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + if (!isUnicodeString && askUnicodeString) { + result = result.pipe(new utf8.Utf8DecodeWorker()); + } + } catch (e) { + result = new GenericWorker("error"); + result.error(e); + } + + return new StreamHelper(result, outputType, ""); + }, + + /** + * Prepare the content in the asked type. + * @param {String} type the type of the result. + * @param {Function} onUpdate a function to call on each internal update. + * @return Promise the promise of the result. + */ + async: function (type, onUpdate) { + return this.internalStream(type).accumulate(onUpdate); + }, + + /** + * Prepare the content as a nodejs stream. + * @param {String} type the type of each chunk. + * @param {Function} onUpdate a function to call on each internal update. + * @return Stream the stream. + */ + nodeStream: function (type, onUpdate) { + return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); + }, + + /** + * Return a worker for the compressed content. + * @private + * @param {Object} compression the compression object to use. + * @param {Object} compressionOptions the options to use when compressing. + * @return Worker the worker. + */ + _compressWorker: function (compression, compressionOptions) { + if ( + this._data instanceof CompressedObject && + this._data.compression.magic === compression.magic + ) { + return this._data.getCompressedWorker(); + } else { + var result = this._decompressWorker(); + if(!this._dataBinary) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + return CompressedObject.createWorkerFrom(result, compression, compressionOptions); + } + }, + /** + * Return a worker for the decompressed content. + * @private + * @return Worker the worker. + */ + _decompressWorker : function () { + if (this._data instanceof CompressedObject) { + return this._data.getContentWorker(); + } else if (this._data instanceof GenericWorker) { + return this._data; + } else { + return new DataWorker(this._data); + } + } +}; + +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; +var removedFn = function () { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); +}; + +for(var i = 0; i < removedMethods.length; i++) { + ZipObject.prototype[removedMethods[i]] = removedFn; +} +module.exports = ZipObject; + +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ +(function (global){ +'use strict'; +var Mutation = global.MutationObserver || global.WebKitMutationObserver; + +var scheduleDrain; + +{ + if (Mutation) { + var called = 0; + var observer = new Mutation(nextTick); + var element = global.document.createTextNode(''); + observer.observe(element, { + characterData: true + }); + scheduleDrain = function () { + element.data = (called = ++called % 2); + }; + } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { + var channel = new global.MessageChannel(); + channel.port1.onmessage = nextTick; + scheduleDrain = function () { + channel.port2.postMessage(0); + }; + } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { + scheduleDrain = function () { + + // Create a + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.gradle.api.internal.AbstractTask (implements org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal) +
        +
      • org.gradle.api.DefaultTask (implements org.gradle.api.Task) + +
      • +
      +
    • +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin (implements org.gradle.api.Plugin<T>)
    • +
    • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    • +
    +
  • +
+
+
+
+
+ +
+ + diff --git a/gradle-plugin/build/docs/javadoc/package-search-index.js b/gradle-plugin/build/docs/javadoc/package-search-index.js new file mode 100644 index 0000000000..4abe63b077 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","url":"allpackages-index.html"},{"l":"com.google.cloud.tools.dependencies.gradle"}] \ No newline at end of file diff --git a/gradle-plugin/build/docs/javadoc/package-search-index.zip b/gradle-plugin/build/docs/javadoc/package-search-index.zip new file mode 100644 index 0000000000000000000000000000000000000000..f34396e212458d7fabfa0ff8c696dccded33e9ea GIT binary patch literal 254 zcmWIWW@Zs#;Nak3NUryaVn70tKz2c5a&}^Rs%~*=Vo`F2Zf0IeYK2}_aekieX-BRG z1p&8*tBdP~39qGr$iz9~)u_x3K@CjY)yywU1aW7>wijgCf=TEDx+Zq#Kz ze)aUpPmcvz`;KQmS|FwHX2H?V3%kz5nN>cz>UvV9?6qRZa_InXc8+@q6Ldgs$pGR2 iZ$>5&280ulnE1vniX;LXYgQpyN~?m&7WSRVi*?@k5) literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/docs/javadoc/resources/glass.png b/gradle-plugin/build/docs/javadoc/resources/glass.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f591f467a1c0c949bbc510156a0c1afb860a6e GIT binary patch literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/docs/javadoc/script.js b/gradle-plugin/build/docs/javadoc/script.js new file mode 100644 index 0000000000..7dc93c48e3 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/script.js @@ -0,0 +1,149 @@ +/* + * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'jquery/jszip/dist/jszip.js'); + createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils.js'); + if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0 || + window.navigator.userAgent.indexOf('Edge/') > 0) { + createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js'); + } + createElem(doc, tag, 'search.js'); + + $.get(pathtoroot + "module-search-index.zip") + .done(function() { + JSZipUtils.getBinaryContent(pathtoroot + "module-search-index.zip", function(e, data) { + JSZip.loadAsync(data).then(function(zip){ + zip.file("module-search-index.json").async("text").then(function(content){ + moduleSearchIndex = JSON.parse(content); + }); + }); + }); + }); + $.get(pathtoroot + "package-search-index.zip") + .done(function() { + JSZipUtils.getBinaryContent(pathtoroot + "package-search-index.zip", function(e, data) { + JSZip.loadAsync(data).then(function(zip){ + zip.file("package-search-index.json").async("text").then(function(content){ + packageSearchIndex = JSON.parse(content); + }); + }); + }); + }); + $.get(pathtoroot + "type-search-index.zip") + .done(function() { + JSZipUtils.getBinaryContent(pathtoroot + "type-search-index.zip", function(e, data) { + JSZip.loadAsync(data).then(function(zip){ + zip.file("type-search-index.json").async("text").then(function(content){ + typeSearchIndex = JSON.parse(content); + }); + }); + }); + }); + $.get(pathtoroot + "member-search-index.zip") + .done(function() { + JSZipUtils.getBinaryContent(pathtoroot + "member-search-index.zip", function(e, data) { + JSZip.loadAsync(data).then(function(zip){ + zip.file("member-search-index.json").async("text").then(function(content){ + memberSearchIndex = JSON.parse(content); + }); + }); + }); + }); + $.get(pathtoroot + "tag-search-index.zip") + .done(function() { + JSZipUtils.getBinaryContent(pathtoroot + "tag-search-index.zip", function(e, data) { + JSZip.loadAsync(data).then(function(zip){ + zip.file("tag-search-index.json").async("text").then(function(content){ + tagSearchIndex = JSON.parse(content); + }); + }); + }); + }); + if (!moduleSearchIndex) { + createElem(doc, tag, 'module-search-index.js'); + } + if (!packageSearchIndex) { + createElem(doc, tag, 'package-search-index.js'); + } + if (!typeSearchIndex) { + createElem(doc, tag, 'type-search-index.js'); + } + if (!memberSearchIndex) { + createElem(doc, tag, 'member-search-index.js'); + } + if (!tagSearchIndex) { + createElem(doc, tag, 'tag-search-index.js'); + } + $(window).resize(function() { + $('.navPadding').css('padding-top', $('.fixedNav').css("height")); + }); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(type) { + count = 0; + for (var key in data) { + var row = document.getElementById(key); + if ((data[key] & type) !== 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) { + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} + +function updateModuleFrame(pFrame, cFrame) { + top.packageFrame.location = pFrame; + top.classFrame.location = cFrame; +} diff --git a/gradle-plugin/build/docs/javadoc/search.js b/gradle-plugin/build/docs/javadoc/search.js new file mode 100644 index 0000000000..8492271e71 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/search.js @@ -0,0 +1,326 @@ +/* + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var noResult = {l: "No results found"}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Types"; +var catMembers = "Members"; +var catSearchTags = "SearchTags"; +var highlight = "$&"; +var camelCaseRegexp = ""; +var secondaryMatcher = ""; +function getHighlightedText(item) { + var ccMatcher = new RegExp(camelCaseRegexp); + var label = item.replace(ccMatcher, highlight); + if (label === item) { + label = item.replace(secondaryMatcher, highlight); + } + return label; +} +function getURLPrefix(ui) { + var urlPrefix=""; + if (useModuleDirectories) { + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p == item.l) { + urlPrefix = item.m + slash; + } + }); + return urlPrefix; + } else { + return urlPrefix; + } + } + return urlPrefix; +} +var watermark = 'Search'; +$(function() { + $("#search").val(''); + $("#search").prop("disabled", false); + $("#reset").prop("disabled", false); + $("#search").val(watermark).addClass('watermark'); + $("#search").blur(function() { + if ($(this).val().length == 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + $("#search").on('click keydown', function() { + if ($(this).val() == watermark) { + $(this).val('').removeClass('watermark'); + } + }); + $("#reset").click(function() { + $("#search").val(''); + $("#search").focus(); + }); + $("#search").focus(); + $("#search")[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this, + currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.l !== noResult.l && item.category !== currentCategory) { + ul.append("
  • " + item.category + "
  • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "resultItem"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "resultItem"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + if (item.category === catModules) { + label = getHighlightedText(item.l); + } else if (item.category === catPackages) { + label = (item.m) + ? getHighlightedText(item.m + "/" + item.l) + : getHighlightedText(item.l); + } else if (item.category === catTypes) { + label = (item.p) + ? getHighlightedText(item.p + "." + item.l) + : getHighlightedText(item.l); + } else if (item.category === catMembers) { + label = getHighlightedText(item.p + "." + (item.c + "." + item.l)); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l); + } else { + label = item.l; + } + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + if (item.category === catSearchTags) { + if (item.d) { + div.html(label + " (" + item.h + ")
    " + + item.d + "
    "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + div.html(label); + } + return li; + } +}); +$(function() { + $("#search").catcomplete({ + minLength: 1, + delay: 100, + source: function(request, response) { + var result = new Array(); + var presult = new Array(); + var tresult = new Array(); + var mresult = new Array(); + var tgresult = new Array(); + var secondaryresult = new Array(); + var displayCount = 0; + var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i"); + camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)"); + var camelCaseMatcher = new RegExp("^" + camelCaseRegexp); + secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i"); + + // Return the nested innermost name from the specified object + function nestedName(e) { + return e.l.substring(e.l.lastIndexOf(".") + 1); + } + + function concatResults(a1, a2) { + a1 = a1.concat(a2); + a2.length = 0; + return a1; + } + + if (moduleSearchIndex) { + var mdleCount = 0; + $.each(moduleSearchIndex, function(index, item) { + item.category = catModules; + if (exactMatcher.test(item.l)) { + result.push(item); + mdleCount++; + } else if (camelCaseMatcher.test(item.l)) { + result.push(item); + } else if (secondaryMatcher.test(item.l)) { + secondaryresult.push(item); + } + }); + displayCount = mdleCount; + result = concatResults(result, secondaryresult); + } + if (packageSearchIndex) { + var pCount = 0; + var pkg = ""; + $.each(packageSearchIndex, function(index, item) { + item.category = catPackages; + pkg = (item.m) + ? (item.m + "/" + item.l) + : item.l; + if (exactMatcher.test(item.l)) { + presult.push(item); + pCount++; + } else if (camelCaseMatcher.test(pkg)) { + presult.push(item); + } else if (secondaryMatcher.test(pkg)) { + secondaryresult.push(item); + } + }); + result = result.concat(concatResults(presult, secondaryresult)); + displayCount = (pCount > displayCount) ? pCount : displayCount; + } + if (typeSearchIndex) { + var tCount = 0; + $.each(typeSearchIndex, function(index, item) { + item.category = catTypes; + var s = nestedName(item); + if (exactMatcher.test(s)) { + tresult.push(item); + tCount++; + } else if (camelCaseMatcher.test(s)) { + tresult.push(item); + } else if (secondaryMatcher.test(item.p + "." + item.l)) { + secondaryresult.push(item); + } + }); + result = result.concat(concatResults(tresult, secondaryresult)); + displayCount = (tCount > displayCount) ? tCount : displayCount; + } + if (memberSearchIndex) { + var mCount = 0; + $.each(memberSearchIndex, function(index, item) { + item.category = catMembers; + var s = nestedName(item); + if (exactMatcher.test(s)) { + mresult.push(item); + mCount++; + } else if (camelCaseMatcher.test(s)) { + mresult.push(item); + } else if (secondaryMatcher.test(item.c + "." + item.l)) { + secondaryresult.push(item); + } + }); + result = result.concat(concatResults(mresult, secondaryresult)); + displayCount = (mCount > displayCount) ? mCount : displayCount; + } + if (tagSearchIndex) { + var tgCount = 0; + $.each(tagSearchIndex, function(index, item) { + item.category = catSearchTags; + if (exactMatcher.test(item.l)) { + tgresult.push(item); + tgCount++; + } else if (secondaryMatcher.test(item.l)) { + secondaryresult.push(item); + } + }); + result = result.concat(concatResults(tgresult, secondaryresult)); + displayCount = (tgCount > displayCount) ? tgCount : displayCount; + } + displayCount = (displayCount > 500) ? displayCount : 500; + var counter = function() { + var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0}; + var f = function(item) { + count[item.category] += 1; + return (count[item.category] <= displayCount); + }; + return f; + }(); + response(result.filter(counter)); + }, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search").empty(); + } + }, + autoFocus: true, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.l !== noResult.l) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + if (useModuleDirectories) { + url += "module-summary.html"; + } else { + url = ui.item.l + "-summary.html"; + } + } else if (ui.item.category === catPackages) { + if (ui.item.url) { + url = ui.item.url; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.url) { + url = ui.item.url; + } else if (ui.item.p === "") { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === "") { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.url) { + url += ui.item.url; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search").focus(); + } + } + }); +}); diff --git a/gradle-plugin/build/docs/javadoc/stylesheet.css b/gradle-plugin/build/docs/javadoc/stylesheet.css new file mode 100644 index 0000000000..de945eda26 --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/stylesheet.css @@ -0,0 +1,910 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +a[name]:before, a[name]:target, a[id]:before, a[id]:target { + content:""; + display:inline-block; + position:relative; + padding-top:129px; + margin-top:-129px; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} + +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.navPadding { + padding-top: 107px; +} +.fixedNav { + position:fixed; + width:100%; + z-index:999; + background-color:#ffffff; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.navListSearch { + float:right; + margin:0 0 0 0; + padding:0; +} +ul.navListSearch li { + list-style:none; + float:right; + padding: 5px 6px; + text-transform:uppercase; +} +ul.navListSearch li label { + position:relative; + right:-16px; +} +ul.subNavList li { + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Styles for page header and footer. + */ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexNav { + position:relative; + font-size:12px; + background-color:#dee3e9; +} +.indexNav ul { + margin-top:0; + padding:5px; +} +.indexNav ul li { + display:inline; + list-style-type:none; + padding-right:10px; + text-transform:uppercase; +} +.indexNav h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* + * Styles for page layout containers. + */ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer, +.allClassesContainer, .allPackagesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* + * Styles for tables. + */ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary, +.requiresSummary, .packagesSummary, .providesSummary, .usesSummary { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption, +.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.constantsSummary caption a:link, .constantsSummary caption a:visited, +.useSummary caption a:link, .useSummary caption a:visited { + color:#1f389c; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.deprecatedSummary caption a:link, +.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link, +.usesSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover, +.usesSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active, +.usesSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.deprecatedSummary caption a:visited, +.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited, +.usesSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span, +.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span, +.usesSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span, +.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span, +.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab, +.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab, +.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab, +.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd, +.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd, +.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd, +.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; +} +.rowColor th, .altColor th { + font-weight:normal; +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td, +.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th, +.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td, +.constantsSummary td { + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th, +.packagesSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + font-size:13px; +} +td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast { + font-size:13px; +} +.constantsSummary th, .packagesSummary th { + font-size:13px; +} +.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst, +.providesSummary td.colLast { + white-space:normal; + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.requiresSummary td.colFirst, .requiresSummary th.colFirst, +.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th, +.usesSummary td.colFirst, .usesSummary th.colFirst, +.providesSummary td.colFirst, .providesSummary th.colFirst, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName, +.typeSummary td.colFirst, .typeSummary th.colFirst { + vertical-align:top; +} +.packagesSummary th.colLast, .packagesSummary td.colLast { + white-space:normal; +} +td.colFirst a:link, td.colFirst a:visited, +td.colSecond a:link, td.colSecond a:visited, +th.colFirst a:link, th.colFirst a:visited, +th.colSecond a:link, th.colSecond a:visited, +th.colConstructorName a:link, th.colConstructorName a:visited, +th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, +.constantValuesContainer td a:link, .constantValuesContainer td a:visited, +.allClassesContainer td a:link, .allClassesContainer td a:visited, +.allPackagesContainer td a:link, .allPackagesContainer td a:visited { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor, .altColor th { + background-color:#FFFFFF; +} +.rowColor, .rowColor th { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +td.colLast div { + padding-top:0px; +} +td.colLast a { + padding-bottom:3px; +} +/* + * Styles for formatting effect. + */ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink, +.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType, +.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, +.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} +.deprecationBlock { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} +div.contentContainer ul.blockList li.blockList h2 { + padding-bottom:0px; +} +/* + * Styles for IFRAME. + */ +.mainContainer { + margin:0 auto; + padding:0; + height:100%; + width:100%; + position:fixed; + top:0; + left:0; +} +.leftContainer { + height:100%; + position:fixed; + width:320px; +} +.leftTop { + position:relative; + float:left; + width:315px; + top:0; + left:0; + height:30%; + border-right:6px solid #ccc; + border-bottom:6px solid #ccc; +} +.leftBottom { + position:relative; + float:left; + width:315px; + bottom:0; + left:0; + height:70%; + border-right:6px solid #ccc; + border-top:1px solid #000; +} +.rightContainer { + position:absolute; + left:320px; + top:0; + bottom:0; + height:100%; + right:0; + border-left:1px solid #000; +} +.rightIframe { + margin:0; + padding:0; + height:100%; + right:30px; + width:100%; + overflow:visible; + margin-bottom:30px; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.resultItem { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.resultHighlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; +} +#reset { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:17px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.searchTagDescResult { + font-style:italic; + font-size:11px; +} +.searchTagHolderResult { + font-style:italic; + font-size:12px; +} +.searchTagResult:before, .searchTagResult:target { + color:red; +} +.moduleGraph span { + display:none; + position:absolute; +} +.moduleGraph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.methodSignature { + white-space:normal; +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} diff --git a/gradle-plugin/build/docs/javadoc/type-search-index.js b/gradle-plugin/build/docs/javadoc/type-search-index.js new file mode 100644 index 0000000000..eb6ce73c4f --- /dev/null +++ b/gradle-plugin/build/docs/javadoc/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckerPlugin"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckerPluginExtension"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckTask"}] \ No newline at end of file diff --git a/gradle-plugin/build/docs/javadoc/type-search-index.zip b/gradle-plugin/build/docs/javadoc/type-search-index.zip new file mode 100644 index 0000000000000000000000000000000000000000..45c7b9b4f2d66627b6b1ce6d31147f309fe66562 GIT binary patch literal 285 zcmWIWW@Zs#;Nak3NUryaVn707Kz2!GL8@+XYGP4xhHhqFN@|5(R&jpb+B1e+hYbW= zF0O7_D=VuIYw$8?iHCR)N9M%VV^NEz9!RM9e&PvN-hZC=n+0FEl|L{#v})5OhqW?i zncmG`XILF~HYELmUCx#-S5M|Nc`!(`XWk1DT=8*FfqlAoq_4)cX6uTA^D`#%+W5T@ znl2vI@iXS_#;|izPgTC6o)z+ U_fmj2D;r21BM`a(>BC@60PrbXZ2$lO literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar b/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar new file mode 100644 index 0000000000000000000000000000000000000000..91c5cb28e85d8fc6eb1c91d92310b9b25f2b2682 GIT binary patch literal 261 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

    4h<}{31Cs5UVBb) z18Qq$>$r>~aVf2tf>B@D2&Vd3&t|?Xt1Y(H^9{AO*LQM~R2Zu2P@Yco|8GNu?EkUe zhR<4he4}=x1-?r8TCW!fOtPI3HdXRLc7&h2%N)ve<1SbzRl1*$)mS{5!TdI-1hhoUDRLSy>YiPzC- zK_B7S8sqOK>ze-yhmZb64b!ryF)UTAMnK4bbDSQ}_zyxX=u)$AO#)|*f1zg{{!1ZD z^cN0J{#viH(Df{ISgH~g3Qra=(8uS%tiLZVsdo4ml|D88v0kWmF09ZRebeg2tXzpJ zD(sT@q|Rf`N@6(K0Uh^0=bv$>c;4inl8w7@m;Bi-aog0)A*LtL8(s~$e;(o#mByuk zGLPodC3^6EeQ?J)u$VUHh^tOJxe)ja) zv$r1~?Yz75d-D79(W!$ua1l!6ZftJR8Wu4lmv%(EL?}u0LnFYuIrS^d5B^fm!DaRF zlG2kEu%r|69D};y@p*+>pB3~wUrvFG5&@A-BkBb58Lrtj;YpZU&alPm8CAy_o?#P$ zz>oSk^fSxqsxn*&?n6wc&F9;xe$E#p+Sep#eY`X`=eFRAI3xo;#ro&wn9gjNi>x3` z%?ahHKVJkV-+x=<>0*f$<5GMAErG>G10~D}UWt9xGU8m(_lDq(#^(%qx2K$>4f%nK zg4M1h70V{Jn|7#C9Ny#RB!rWt%7ET$ue4_)m_=VV3=x2Mh#~Vu! zH3GMvI5p~wq3A*UK30ywuoLthYHfmgEZ1ts2Ww#9K5C=a^Agx34L?x}FXA!cTa6Ob z_kqlq;DB&6+3Pq*)khAWUU5$WFEtXiQ{7_JY6T9+bI53^Y+&0dn zLRAbAJ2*d3Yp8*eXMcrRx{2)YAl;Cq&-=E6Ji?>8Jc)3gQlmfpNp1fo0A%0i-`ChW zjuH(fD~W(-jSdc^*X@dr%y2kF(s5n_ZveCiXf~WMxVZ7+9B|t@Eq%TV&?gZy9-b8+ zVgBG7#IfmhcRoT@T5ByvLGoS2IB~R}(zKw(AEpSp2ql3Q!5=*QLF6^ai?|(~BDv$* zkc%8L5lj%f$>B}iWo4BVy~FX30Z;&I>`UYqI~$W5(kUYIE!p~nxAru9^x}!>9NF$G zTgnz6305%=I1H5W6RSHZXN5pyBK8=%p)-Z;n+%5mueqRVx~g#U6o?2u$I6g8FX;}& zOy!o{VJ`UJKPR+zwb5<_IK&0v_%#qx2_a()*Qw5hxy{ zcJA|`9cH=-f|nvKm$0j*>|284<=1^`RVIqAaD+l3=%X2wUvfBQp3Ssfoi6%(h#+os z-AO1uDg!h~T+%AlmBjj-pkI*d-bIdpiVRMO*9WxyxSF59bwc33XO;{Fx>1YcD0j4P z#!JlqF{B;weYKLHBFYAte}oJ1JVTaE+*bN<5RRAmvecDEhX7nz89Yb6@>ES`ImNvf z=fDf&Su~MCG_amuFi>nFru;AR1w|RzbOdv? z#=IAut)Jzsr7)IVkko;D?(+33++SL@<04t3C>HM0*Y9X%q%SbhdTrZ9w37PI0%-H-%P;Q}laEb2hOevnzrLo!b&Q-XOn5;oCt?owKHI(f@3IG5I2moV$N?IV+_=+ZZ002N< z0RS2R003%nb!BpSFKTghWpa5fGcGnRF)nRsZZ2wbyuE3A+eXqh`u+S05#!MSW|JbF zN#18bA-o*fPCS#!9M43=(&)9iy7oGG z+&lX1yRFRcj^2JW{A4&j+8z0e;OLu;O#gX)^dj4)%eYLk^e9f3M_G9-^P@$UmU(iy zEwj9!;=lcl&xculb+S$tGA-oMb;mWrpg$S&1SlhXv+T zT+!8P9hXyge5OmQbDn$N;li$S|oHqU6${t%{02- zi!4fqWp+;eOs~Wp-CW1TH@7MEZ6ovYPQ=k&^?n`2s&O@lK)gj2H&MGEo_SO)Fcv-C z-dxJOnngKGv!#4ZH}uke;=E2ud9xSqI$AhNx9fE;q7P*h5qzkX*o)`UnFR!~i0)BU z*c*u=U*IRD*^%nvD+V#T-cL;RN0)$Mkp}lzv0NlHKYkjeyWR6(xX5K(%I9l|s(r6m zT&(v&x7FjI2#tVXCetE zv>GyAVku?1JiAWTOFs*Sn>eQqd`%NK%;in?R+=|^JB-`LJkbPAW#99{*0z(oUDsMo z(^+QVj0Rvn3(fmI=4Taoj7U6j9@TMxX_|K6`EZpI$R#Deai)5MKB|q;>tX%ZGQBFV zJ(@Z!>QLPhlwvS?TlQ|~`uMo_j(>bF&hz+=x{VbY(N9TT)i7qqQXU_VPU%lM7-Lyz zJD^L^`EX+k$S0B%Zc*7Mk%D9O)Rk5_fFKE#A%%^_D8^4bJY7n4-h&B~f8c@BAnRWbNk-?bC$hR_me?QKLSGjy(gnro{2Y-FS zL(7)S|N9D$N?n`$y<^=SNTHq4mwlhXC>&LbUT1jEgF<_FkOtG)JWO`G zW_9!;4QbE`O_jjsky#FZO><2Zhi|iFc{I|!;v)3az))PRpMOsz7!ib7sEH`A@2~n_ z#pU%d$KxA62lj{x#tpo{H1LY=p26U5V*~W!O>byIo z_Er$7ITMKVBeXwLYkQ>1&oS@z1jAX;^UDZL1ziUo&GMbb&BAk_-3xG7I}hkylR#-e zu(A%&&*wLr^6pSSCoXiT4v$UGM|5JWv&(q>{B67rU2Fgn1hmM#qE~Qy4f&F0Drg~b zU=K7#n<*NB9>Lif+@s|*GAHRIKcy*CfZQA7u+-B-BnoXp`~<-z(Kv7Ra!s_WC1m9L zzc7F!ac;bkjl;6)9}ei*eA1-gsJ|L=soPU?wxz-=nC^7x5;_?}8H8KC2z06hBBe!0 z+ii-paR8Uo!8lCJI!m5OZmQ8$j9hiMUmC1K6HD8vHJ5Uh^!sxr^XwexGEpLEI)Ln3 zy)q5tU>-xVQPnul$&49B9_Zotrm zZwc9U(4FUZH<#I(5#%bJsXOohc}#l`)7*R%2u-(mpQ*#(=xZkbjugjo^ukb^3?4_% zh=4zOC9j^p+h|0gP>^oeJD*6UuL&5KZ^@V2V=l| zo^#Bl=A2uKOPZfVT#J>s61QS2*5b7|6R~(M?nEIL;w{n8UXlFq$69**@naxIbXIJL zC9~|z8(K>M;!U)r_J}RwpQq~QYxVP6Hz^J#spR94cxOR~=NTP%O=gc-)Zf7?W*hOP z;TgX$7vESW_1oysjzI@4Y^4NSslqstC=YZYFgsF%$6&k{uOe@8Ef;U(a#zSTO)*`> z#a+7C#oIDl(dY}lqC@6x$0CVrUF?V@m-%j)6!GPnKDbVnOPTJHf;Pi$O{dB3X1gwv z&06kgbm@-J)G|xgcRMWvptctDV(E#mB5!ta@$Sj!;-b8`$S*F^i;LCV6E7prpN1Fo zk6th1!RqPY#r%FOKG}Qyuln9}$FF{=KG{*Z+X4OjaxofEjsIsg5Bi??G4iM!fAiS) z`Y-!lK=tbT+2dax?Rx*2PoqFTnTCJ!b-P1UMgRUb4;}}9+g*6g7Z)DhTzETOZ?My~ zTwKrqUPNA4HF$C1`~IJ=I@mSe_yLV`KHqu$AF1ZY!EQ+9F3_}i6ajG62J@*OGN#>G^s6Esdpm|N80Y^|$KPZuWSN z*H2%+eib&_{V@>Vo)XB3iUVho=Oz1OsGkdfH1GG!aYy3CBO)&5m5EJaO z)d0v=Lxi3!@IpIcUua2YeS+Y?Cy0L>q`L|z^$UGZuluy(7TS3Ay@W;rqP#Iu0Q)PN zhDW+cD&?{`qkT*yW^-()POV*7^-BJ}yP`3v5mf`MkAZGz(=CH3cirijKaFO;P~RWv zF7Cz8(a9IDzxwjgNg}?BPSC+5-E2#ZeRk+qO!#7Vxh=~q4N&f%RPOp>iOYY{@6qIi5UOXD(mD~~R2PsG1fZGZ7+Km;^H{>3f*B|y**s4gL8bTXq6o`_P`VC_Aq z#&>Z|pf^VWmz&^6cj9I?m6sB@tbH zE*gZLFF*ZsJlcKy@sodiBF3X9A04N=k3ae7$q4LfPNSkx65@L|UNP?5{W6%+deF}! zjS}^n!Nv9k{lkn9yO19?gKy%Eb6%^?FJWg^$hLYCYymR^1x-^d0b zAnun*9(t9a&ZBiASohZQig+rID1|b=yZ^$-IHGS9QMwuO9>o_$AnJGJ%)K|#A}c@L zFXEEOAnN%S(LGli8rpSQpWZKZt5WDz%b+Gou7F57#P8&m+Lk!RHN8teL=zfX7w7oC zl0VWcFo8|1CfCIrKG8X#dlq8FQrls6o67u|p=~x0QQF~z{{X$pl2;;03?EJ%9mh?qpA1XRH27AJ!GnHAfXkpb+)$#FL zn)#UN=ZEV-hqkjPbMxK+5wSu}y~SsDuj4C#CPpT>hdj8C=G4ZrUh<5PX@Rm>mF_q1 zZOxX%XsD~y-g5YRK|D+E>sg8YHwP1bM+ixy*7oit&%N`@A{yXX8bud{( z>)~%%lKO<;gFVnhYwA}+7FVD1X_e(qX%8=W(k%}7nzkR&`TJFp(hk47hg|C%tE&_S zjUm#`wY*wshx(cD9*yaQQQNrM+u$i2Xi4ctVF4UO@MbQMrL+Ck04g6-Y;Y&AU$iUX)MB4I9KEK9`;2w zUq&!vC#-a!1+td|I+v30as)=$>Fr9^aj0e~cQlnbF>^Jj$O$SghcPY37je2=6Ly{D zb3(6GZJSzc#KB3_LdedZKT3P1#52`BwVQ48g?tHR-=K8wfD3Z7p>xKwf$9$7+aV6B z^W<_(_?AVU4%0RmTN%f691_O2y zAqzwj<#kX`2-FF_qkNXkaTKsXpy!wP!8H*f_@C|4+uEil%Bw>O-+kiIIQI}pNXV&{ zQ9)ZlNu44Vi5Hl@pT7Ds>VPLqQA$-58^VC!zj`TB7Ed;46`UScD5IM(lwj93Mwqrv~Xgx*MBAv^dab;!F%t6cOJkdQI}ez9z6hja|TeuN1N0yyA?`T3$++lW3XsnZ5rpbX(61l5WJK4Vi(aEbwK=+;`sdAVqOqxeIb0>{ zQs%>#&$_m-rC&-STq<37=Nz`FJ%twq+DMo67J%;PKcnb4Qxjli1fY7}#_O#_7(@GntMVzJw^}Nm8rQ0FewF?lp@N#kl@=O=v2aSIo@E>!+Vb-8;9zc54daJyYd; z-u;*c6f$E)?^{Sq8oh2OKQA10)4|HI281Da;P-|q%vj46fXGQ}#|=~WsiTTA#Dawv zmWwuL$YD7DG%(dae{Sg5Lq%A*TwvgL_@kK83b{3>ka^MuK2vJkHabh`%)_A`d8hFa zA-BJI{qw%}w@*(`;!jVND6x7xfaLCPM>hqr7uoG1-cYY)^fxMhY(Z=sKfj_3D11Z|4@dA0OYT_3@x%m`9a*0pk7(mP&V4YI;&twcDAhDn-UL?`4gW-h3v78SgibCi|n~Y1UP;XgmbUY(U=~Ta-su=#ljzPrLwB-$i$J!W>P>otBX8K<7d{*HNZ$%amq5;^88@0po4Bs&BI* zLAPPcOe~gDEG^?CErMysNgDm5CViR8CU+G=N>kPaM^<(Mrj1Bmzn3cscE!QrX= z3&d!mCaHI@PlH~0=#?docRPO!wzP}+jv~KoJ}rak;W;RSa2(L=F4ib^h19wyr3$x{DiP0e7={!uCL`M1l9JPndMEfzsETdS<3eAK!x5o~Ga~P# z!ExQ1!~&g%lve#I1NRe)F+D_osML(36B?yRZGhqZSB3 z8Z|ultws$snRmmCYOVy_&(u`8B}JoTFjdxWz2}DSG0;<4w@&lW71hwfJfAige*$?%$Ekjo?aZj;NRpfAHCudl1zrU?-X=a6uA$P$&?5%30YYr-c4bFw6O zd$xtKHqmc|*hU&Ro|m9NSbv~2?I1<)!v8H0Yr_(jkurP?_^g;E*auK&(QEA?+v-YchHXrk#GA+o9=KYOv>#<)D~(q7Bh~cZU9GL^=?{PwRj!&h7C>+v zWhDyQ3;$Bdg%y@5qI*YI7JfVuiqihJklSSz(q3S+6n-wM?E#B#@Z9*#<(jQh!h7#i zFKnA5C?^USAj2}E^`0L0?c-d&O|osFhhO{lKZgqK_kte1V3AgM&(=*{61dqI!vFES zA>I;l_R*Y9e)>z;WA=Cc`!W2GoIRzBf{A1xe4?}p^da=AxL~cLsBA|5PTNHpPCeL{ z8jcZOT3)LL=#{DIqhP9gXLdB*j^^n2-{(=^$Ild9#^oneY#fA79{V0Fnp9;Uu~*e{ zY3>4i`?31=|IDfT|I;cE;^+9d+2Y<kg)Mjs(6ayt&Fby6bFsENsU9HPYkm#3eG_p49s=F3o}B!qiPPpw4<@qdE&0t zM?|&)pcM$ge(wF!-cB{37H3tYYh~Tj=|Wj)6?PeOC0A+P#^2&WY!B90H3v7qW`p9o{Tr6ZKMfZHgs)w_wG?C-hrG zP7qxYTgD=e;@O%-^zWwe;qA8yG4i-c4^#cyXiZaB2ej!^IHO&)0Ktb9}rB?w65YL`2~bQ{-n6b#W2Q&gXC&gEh+iJ_u&9Cc|Dn!}H9& zR|T%;uw@H?2czf>5tcAC!_SjBac#x%@xrn1n-z0A9sNGNjOqV0EmZX~DxwkX&n>L< zeYRSw&&2U@zfZhvtYr8JH5|>}(BdxV6Xo7xDHj+}p*nYD@_%V$f^8y}!H19HPp-Ef zCJ#dOKK?Iyj;UEvZ`EwoyqWyvAi6`-SH!0M^(u-+@Fb3wCs+G@$Du1SbL_^%-)xvr zgCp;5cM0*PqJ`)|gWGXP2twD|Qh_LaRe_@NtzRCEY#RGn5ROk{W8F#EXeJ4<5H`)` z!fmVJ-r+Y5>ZT8vbI1pcIKHL#FysiV2?yWpgRb)wmEmxww=w8KH8bITnw8=@%~T`)L6d(>6&!+C{+{494FtqK4^d{KMLA5C8A~N2u;*M;lQ4OA zvkvhB9caE&&jaI<-So@~oCpDS&?%qNdj$&2^*Ms7rh#2hi9uDBf%l zE1_(4jeU4sQ>+`id~PFI62F#Zosk0|3XF*gh7Z)C_h-X+0bZ}N`RSdZ$rtQ6wX3du z5SP84uT0-Ci%<*gcK@LV@g>^^vST>wAi^u@_r`%RItjiX5kM*hS0^$4pf#RjjE7#p zZeRI)5u3BoZh+>MQ9(kyp{}|Kb=L;3W>9B7<3R~+#$VMc;jvq*@`E^k$Yw1_oPN^f z&#U^-(c7Lq6NcP6E2a_NL*`v$`={p5?3}{W7!%l4_`8n6%G&Y&a+w^PNdq*l8RcHE z3r~A9f4JGFhZ?H-VQa?h0z@T^P0pk*`)`|Xn%mq2hq!Z)n3*I(&y3?5uN|T1tQ?F{ zM*iL`QQ`g>{ASXA8KztkAtYM0InI!i^t7C${pd*`o3;{?zDK}_2R*$~@#o8?PfCpYmG2j&S}LMmFafr>Hhyf3zwHwgq$B9}z;w98+s^2Va{ z28QdEf$2MG_PyE{BT@5s@w^Gm+obIGgS^jC9hC65vURaFT}rN#r;O#SlD!^HP2>R6L3UJZlfII`{2*-@?ho;NJ0R(&cAmr#ed7CjYFM zo8|LHW6n7eCcsy=#n;kMw~)RVnB^q|nLHBP3Ut?z^2{%7b{Gp%v}(OxAg3-diEC2-g1&uim zgH_ZcG6X@WuBVHTCVK&PnR`eZ^lJJRAUj=#w2$vN<_ev8fSjx2<12q9Hmc+uG20P+ zyb)Wv@e`_Ay~vs{0B0a#i4!>dfP;Q`|)o^Fhy zhuSitws1qxFx5RMX`=EVv|f*5Q#1H~Uc<+U&}Q(~r+^Lq9N{Py^}!^^~yBf>@AXUST|ZpakVkapNw=S~fh@ zitGRa9upj<-!I%K4YhVt({3%q3+?CeX>ok4y1|z?Nv#00fbXq}LFnHrbtx?gD=~_} z6IJDuc4Fvxdna^|@ir?(aY{()c~xbB2@}*w^)xci?NdI;gZ)DLnpq7a_t4zX!BNF~ zGqY7x1WHYC!jk$MDXt;UF0(fh%GWMGYf%@SzB6Kf=vl30>U0#Ytu}QMLvo;S-R02g z$c#intqVt30jj36>{sQV8iVllIapH^>)LR>nVq)V#nyfbNCK0C=ucF`AGQYe^RV7_ zLL&;jN~z#biCn3(Do1QyST$;uI?4nZoe$8@&k0XBT?HOf1HcuGkl=LwzQ!}5fi%ny zG|EOTsg6@*XV?hC!gyM#$Aa)3EmaZNxhM7@DwL5BO?Kyc;&8hW@35{4)6Rflo;vH= zqcu|M9N1i7mdiReO%*mJSS{JD31X_mIPr#=xtdU!r_?kZn>6ZZbV_GsVkAG}9X+_K zh|%W32`WHS002EY2-lG}VyXP`F?D%`es7{%vBUxT?)bQ}R)=*rCW1F`5eQwAUEx<-!-bB~I{syw&Eb0|#?D%*) z7zhbLx-QO#=(ZoNA;w2{x7;J!+*{RLLFfHS(arYI9i48q=z2}-xnQC7N{O!V6aB8t zQxG(5g)?v!?9IWJixq)4+=?JCURmSB@#(hz*51|ZHmDv0%zA9%mZ(*+*ozy;IO*7g z8J{%|h~(ZlP6;(JfA$u`@W2P>wV%|dsY`uY0)RV zz?CAx@y%be!meiID5_H=GYCm>cV=+=B>H^l#wpPfmVl6X)|QE*pBQ2S0lWZFK(4(1<@c8<>s36_X)AbPZxxm^i5C9^7I zLFG)IBRYWA3u&P8iO!{cAQnMDzzq8;0wu&-Fugg{3q)db&4{9Nm)sBU%*D|@fE_b)dvb^?0la5q}TDMS{#h_N=Pe&CIjZI+kCv64mwq%OdRRs2+~k%dJ$Ehp z%nf~9J*6TXczS8<=ft^kZl=vZ5BZWFSzFJgy+pfgylCxTm-+#lXkJI%tPZQ@taW8N zskA3FX@LsG;%H4;vLJ>6I^xdRgQ@@#uel2y+0dSYIXtBgNk(V$4(WU|B!X0-S5s57 zV{G@vOf_TP8ltb{g-`1N^ghrks1XVX{rx&R`Q_A~#e+ZQvtKSwE=He*9B!_>$S=~1 z)%AzSjFz)oNf8j zj<0K+a;iURh2cpb`g8!vn2pk@t2oyz1D-(^VeSurTS>>BT{Z|IA}>rcLgg@;f_s(< zdtoW8nm_zhZM&ucHyvqojL&ko-iGxe)VK-H+%*?<0OKIdPIP1co{cZNz4_g^%?aO4 z923>bILk7PjiAxkE_&u1%?5{-C3?0b4!%?ze6`vA1aX5o)_5h&43zvljT#L=3g*_N z=7r{iE2#u&pFtt{CT}Es5c7D?V#+jV#jRTJS+o{uf@I#I`mUL-Edp%vU zZ6XT}3yehaa6<+1PZZggk7GFb{uMY&eHH z?m_Z>d~D2}LBy3q743e?K`H{h&_URW^j+F_95Kek#Ufhzh`_6i(*=iYonn)QIC-j& z^mIccSs_7g@RveIFxES>?Y$E|=T#M7t0mILQO&^CWl-f;D1#er3+^FPec_kvEW$%! zJH(tN!L{J%hR98#=S>%MXatm1E2<-|CK1lYjfkdpDsYllOzj7<{(;(lA+i=st5b7` zSfqDT{mYQ(p944A*vY=CCxAN5O058E;#qX=KUZM-r2X_>5d?8nwm!!(AwolXU;}A0S~fTZ2rJacgmIU?a3de-1t(s@ z4>;EVoLdbJMp!8kyNMKPF(I3|6r7ROQex1?CKi&xE`a|ds{E{(O2e&`-uos^Mq3Ze7f2B5z0u>3Fv7i}j{JZRMP0aMj9cE+cLy6Ie( z*M2R$AQDal4!6uYB#VbTzjv8y6gG(Z0K40Zlmj1?d1gHY2_l;hl}~K#QRsuO@k)8K zS;wXHShrVI2a%sW$~mT&6NHoM5Qe~y_c>X>1d)CJ7A1g-^ zAQvKbn&_uwt%YSASbrwQrw$UQ0$*^Rr3PgxzSP772XvuDl{t$SL<5bafua1qjZTO| zb9u4;$yIeSzH$*|rMdj7^5S!zzHG=~IsBl6cL#g$=GjeB5Lu9zBo)JDmP#hN;sog> zLR+@HmT6T`sS-_sFGW?ryVEFz0w=Cv+A2juJs+M?MVB;k$N4iiq3Y8~9<|mWpF)ZW0Cji$1)gFWIM zZl<;|n?&aZ(_F*$@$m`6n^dDEMySH7HYoGL zkzL%D8E0+g0a~VdEeq@@8An@XLQ}#UsaCpUNqh8mow-y*vm$852wYTsrg?nQSzRw? zi$(ckQa01Mm}(jJW)e|yICqNHW=@R_F)jVP0w_U^J4=eXJNmjBnns)HwVdxd`wQ|&9;Q{CVx0Q~Ct_PJuKI$Pr3=oVIFhFEDr2Y&oa+mbg)iv)8^>thSvxZ1_Jk zn^*HJYO&{a5;SHq{p573w0Oub=BVc&RnDr;Imu1IHt3K6udkKaKEjBt20SNQR`LcD z4r}UvXyQi|8JB7keCiZalk-We{Vk356^&M3enpo-=x_Ud@o*vgG}DWRH3{%7(xSa$ z`c6|QIl`9&!Y^PmpqG|QtEnLRvy6&q4U(Cx@*Se5f?>i>3(39(Uu4-EFxK5~0L?@U z(B^)f#|xrEx2I9kXI7m$_*F*-GYw~qM0M9D$+U!~$Z3VxP$n@|^S;|ibf6fp_Zd`i zuag^@ZCU1J<8yayPZ}|_!?Ta(%*3w!k&v`_Igt$EDia`qKER$#?cu;ygmC;ShEe|n z%JPvrhaAVs*QM>g5^aI9 zkPlMWCh>VQ=d)(6cq6MZ&eW-ASb=gd2wo~Z2%53ATj8aHR}BmJBc!Ux$G3Y)3~`>) z#j7~IlDk)!IY}q~PQ_>0v2FYJuU-a>gCCtt4xyI@cYMZD_6$*0?B(z_&gp2RM?YF$ z9{BMziNUQcTaty`qi>Ul>T?*l8>E@+lbZJp0L>=Z#DDV){mrT`lPC_*iDLL6(VNp)PK+0OEtM&MaHA5c#+>VJ%@TLtk|?>!*+7F|N2O@1?lg$4 z9jSN9aTc}u$vRdbeo6r&|Cr9&+$6`OCxtMt9A}Dz=$5smr-E=hRqrh6c9SPc^F_V^8+0@ThJle9j-@du5&QL)Z3d zdhql4X@NR+(Ags{i?Ln=JeNJ^w~y@wuCSn`0eyiOy$kZH;g$ z_j~aJo1!^RnbXD>Q5kBXy$Xa<`N9jgoX}>-B_yw_lx=m4UVe^Sq_s@~*5J%wn}%p~rtyMlK1xTrN8Hb#!1KeY#{2gG$Q z7Ia1&5`b6L?{){Iv9?G$wYnDcFjT6SLfs04)U+y3A|lJ6En}*w=9-IL+uF(j#@s^0 z2p7?MK4cKGEOY(|eTgvMAVDZWA^^g&Ca-K{=Yh?(PDca2F`du%zB>~@?oO6ppM#!0 z1a_Jlv?*?CZ^6b~$HlX_j6WRatFaTBZ}tZc{EUKsX4i$!#drGmpW2Y&URg0bzS!?B zX6Aa1Y;^yMPG(OB|DL;;=HDGg4ArW)eB)sq5P3@)&cKbM^Dp5I9vyp4*Z(F+af;%a z?H){>nXOABugtf60uo|RIdwCHwK(`7RrP?z@itK*tPrxYpY%O%+D}65L7fECf1ZEy zwX#P*9G}Et75Cpc;Ho^D45wFFi=Dg5?bf1M7i|5~hbipO&fQ)t>)+J&+jm2?A59acuk($CLiN0gRktrLl%u#>$epYXUrza7RQFsg#QC#1+pzven2G9_JA#N1uT!kf5 zkg3eA3E67N>BofG|E*jhIg$0`XNHAlvu;GqL|?RoDH;v~nn=0sw}H?nO2)b?VReGe?4J+yU^Jr0kPC)LW8R^xF=6Qg#5hhr zyR)_HY3CBC2904XCnJI$%MSNfR4qVlHb#=$+a(k^j2SE-kPjr`z&n4Ez1oSm&k~$3NByg>(3Ri$O z7|>=*YAkRj;9b0*beUhlB0xxe8tVj}yceC|O{vBP2;n4T4O&$e7lue6{(fKRI|jnS zi6f<)5w#qsw1Oa&rgt!(f__>)z8LO;i)Ei~X7c%*U(oF?IMJ!~n#p{BF*%ciXcxd> z85YaT)%|t;*hz&P&AivyhHhWML4q&DRO|3PKYo=EP z9g>05%5FAUA(w3Omowq@D$8^T9sj?mRtIA;mH3&;tXVIor!?+P_3Ncj>EZmAkxH&s zly_@RR>vvdciR7?_VoBTk<9(suc@1ih&)}w3mne0un`m-m$>N3h(I)NM+QA2W`3Ld zZg6&YHuSN=>i=y709vzRi=(>wT;S{N&836@b?PB}BC;DSYTgNrVl+r9M95%$eB9sC zuu7@Scx`ja_jPf6yr5=KFu32IL{F&c^=^k})Ifi`+l`$Ka<1l#d%Nhb1L2PcS@4+t z`UsB}oKX285kjYkZRf`kyxdQsY_fPv6}LXtZh(dw!s$y*E_ORK3&YBEHl9xxeILL5 zaqu{uJ(-97l*RejgfL+!qqTtLMVyz>g02X)BifosSQxRDP!d!cHrep}XgFNYFz68y z!Wy!0ak`o;5c2~3xStAUH!Y8={M7tdmLwE}h?0O{;r&?q9 z%$x8TOSU{x_4?b0h-9Nhiowt1L1Qx&QDPlS1bwjOs2vE4LS*k{w!Ew59*G<7ZG_SY z7!|l=PX9%AD0^v!=*D^iwww&vyM#W3zTu{$Eo>)4Ri@`ml6oQ(!R*YH5_e&-XjSY| zD2)(4#qm69{R?p^-Sz{E}YPorM~{ zLR97&pFi6Da+58$Yx!t*aYA+d7Qc;ma&Z#}#Uf8Oa?{mWLy#ID-jSboQ(zb4iZRsoKol1CE>bk9nPNEm#1`pm1oA=>*D#R9pC(_hab*Hh(GFia|e0fxv7h-IOTAL!gdP0LmACE zln)`M56bU3?MS6$YM}F@A@EdAe^YA#D_K0B*7MRfqP#g_YHTnSg&Pq>MR-^1>@r?M zr|7X8wK`+U=DQ%+U&$fQafFK%kyN-a>&n-$f}blk(ukLWFZgz8p^HuodO+9qGYxeN zSUS_!4J});S1rA>~nxk6Ysz(>2|zf3P~`;(Jub>AHdNu`cvu|UAHgUCmP zBU;kjT~~9rJf;7Xn+J!iTH^2@r&w37pDX>#eH-0f(N&0Y|(g9NsqgwBW8<<0urTxt{MEa-1R z6D{cV$i#VGK#~RVmPHEH0Atq(TM(VLa?Qov$gV_>=)g?cBv6kKzQKw-#{u2=0_$Ki zWNv0l9fBk0SWuPuWd<{s#KxC$rg4}nT3j8l?}zZk76@3r;!M%ri<4k!X#Tk2q@xiJHdT0yn+fb<{u7X$M@&_L+ArZ zB-(Nj#Of@SnU9jwBs5uREdtp&W|5aCoBA4o(>*M|-S6@2-ew7h@xV3bU&-6b9QOUy z=$`Fpn1@5qillg*Cs$W8*Dg|ta;`M-Is)Ic$gu_DH5E{9B@h5!VMi+;ca{S}s~KO# zYOHqt^9~cBpDQ77qBP-|>6y^|fIJd%<+R>$1o)WNKIatQ(88j)6TJdGdU1b)w3KT0d@EH(+$vfoHc+Tk%Yn#kuw~;? zDIV$~2z5vLXJnlTJEPWN;8wy&g`Y+D>KsSvotiU1DP%{yCUrcDjnEMl%}g_N`~bD( zJ%UCvP%-ODI5G{)6JoS88$g2P#)ll;(QlEOeUdiz30TZK)&BxqW_1^7ow+(Y7<~kM z?%e4UD8S z*A+yF-n5LakiX$lAL$Zts#Kt$@to)nzo5fdRi&fV3{AM2Kp?}wDr#=VC2vMLH~nO~ zs%^<|HN2#?V7=&Ww-g7zT||{agkzsAMMks2bzCWxVQvviDzIjuT0vpfK1_rgxgump zI1tvtC__bsxUO|5o}tHD0^x6n9$}ix*Ozdiu%kQ6wke|IuCOb&o8#ji92oVT_5~$K zzZNl2Max(S4k|4Jq9qk3CJ-+$&-gVpEs!KskKaIW{XwLr1G1wk_~fSE-+o_=sH#wt zLyHQNs||}mLWt05n($#ex6l+B7JEFmck1rr3hqBJc6|xyYGu#z!bivU^ z1zeD>dI&0JV4o-(90*ugey&!&AZXJm78gSc!PH9vtDMW3Jpl^l@nd!`-0gbRb3nBP zk_=u*?l%pn84L&}6+pn72VkDXR!Rh#q;Sr-0yP%&_DC zNubYnJ=}s*Q-D37R&!YpZ5XleeA}iNw{4m?u-qZ7URIQ5`8XD&b6;CdVOnByEH%H~ z+D=gmQC-%N1qXUp89^A*j*r)_F$*%PC5tz1ii0six2QA<+MpD%DLFRGI$GBp$(dx; zQMBA@O|6!GBH+bptZhE>K!=i5@hu4Jt8@fgmQGpvHl8I|L5@^v@uA6V8za_pULzye zA=6i3QM84PzYcU5CH-9In_b&ejZOhh5t`YI0hz^}+J*HVP!O)Gb;$O1N!Mz#Zcoei zer3EOw;=Niro{m#HF`X_@3shS@eV`)+{={Eh%p9j8i%rxCdYPh-BGlq6E;ASLbT^* z8|`{mQ!+mIdHW5ax2AFGq48<9_dP?p&6CnxD~?O0b%0Z7cfgRDweg)#Wr%}9&m`Nv zX^arw!&DqOpFZ1OYSUW5AROK^0oh>)i4G&Mziw!wkyL5oVA4T?3LvvBg;7cn3CtlA z)%F07CXl*ZGaUclv_egc_LVHW!=%&ThdE7&6bA=Xn{WD9KfwLPG&;eEG! zoozWTJf4*KT7R{aWt^;W#f$MR@#6f^4L#RIs9pJ!x%e3uY*wk?zD?vUem!a?_tb&7 zH0|bR`udG3Oh4v{&aP#zRL9l{b>gS$lAFs`D>~tRsxJBIh8X8k<}a7d4Kv~BATdZX z{i(X-FBBed=Aq2A4np17=fpP98KAbKl~`g0s#sMjpPW)vB&jDZ*V|m*W_0v8QGS?U zYLfTFU^P$eN`P+-AKxc)EJVWHeZPU*5LbEtuwphEKPER67`)ao z`3|bQYPR?^-=$-X^ajd(rJmiLvQ^gZbe*JcP7?8yUTMP_gh8E#vtOe5E~0B=Pcwum z($~<#(!@q`mL^DRYAyrg*RrPZd~cvjsmZ{wrJJKT+ry zmat%f>aS_UQq!7Jmrw?hg2{LF_OqyRV}i)njrf%XLVKPFP8(%M{Dt(bIy{fAd>tAL zd*6!M*|yWVS!|-!U@VpqtNN~^8-K}y_Uqkle7frJRRmq`T8t5#X~t_=@eqxDh#DW%N!WMKHo&)(t(0NKN6F;X=4# zASyeLO1exmTfj+Fv`D8wIt>+Ek4>y9`-*4MrrxmDms=wA7X$+m75g&x`?ZY{P-ELh|VT5@Fp2{D*kStCut`S4dsHGQA2S?ZZ)U-4I{ z*St^_iu)A)Dj~`s(8F%qz!v-%>aukZUZTayj>ft@el0m?0;IuKgyqv5H#07>{w2y7neYIL zIE!2>TQd*NgPK*Yb%JzlnK~sx9D}z-0Mt@X+6~^YtfcLp7&q#k-!#QkV|T6S$Mpxw zQ&;6bKz!Cf1rfaCTxBZwFCnWtP8in88yICs8VC^0jai_ml2s7IZx7|GI6gKK9mQJ* z)2%rqVS}MFChNMCjlX9sPWhgN?XD>)edgZse3TqZI8ajEY`5cK2sUeT2beVnMn?;e zEaphqtWx6BW?`3ibgC!GfeVX&V6i27gwyKChLaOnz-#4Fc2r1BoeqO`r9U8|*Fra& zKcs<7Yd+jL+m$|5bMkHCAtG z-0|!m%}0i=sQNWQF8V^|l?Ke=W12xvTLHLNV7Xqi@JC#U|u z-&`$q3z}{P^RyA*S*fbeLM6aLM0!^CHgmrCjl)oKk_m9OHH+6e1J-d|IfkG*pc!(c zl{#ikIYp=t9tG%}P9HHQvkbAw1H{4kfxEg=O)zhxw0HG1A~g?tsbVrXT!M`fV{MT; zBa=X=_r}TU)w_~2Yx^u8vVA6u4A;DMw(v+_dcxgWp{MYLdHR%hv&Wm-GZTPF>z*?ibzxSl zV|vSZbl^ybLOG8(DpF$e%Mo9OQ$0J45ao`P%gH8<6-*>0*b-lM0{1ZQ#6{n8slP#u0-BCq58{V zwt>ou!w#JVs;6h!4Uuzld9Iu!Y588tmO{*uypgtFNmSGyqzW`1t;iZ!T}H^TTopx> z0Ua=k(1=qEHJC2ud+}p!PEx5Yvv$bdhG}>qBX4%Wu4EVG#YKK`kzQP^=AL-em`tz# zg66Wn^ZjY~%Wn3|1^t_|iTwqPz8(j<0Ot3~b0WcgCOhf;=#^1+1|0s22cSEy^5A^M zhWjNQ|3n2d=fIY!j_WFn)87s^$ve6J zEPKa`Rru7}x4K&~UH@pis8TWxIZYpd_jY)bq(AaahMV}Ex~ZN!PtA8xEHIK=T~a;E z-ER`%e1-T7mKu(yao_VoC-3^NHM!Y+EiRPOlU5n?Z0-xBpY9H_tIf+yK_X>)?vZO+ zm8x#|7;A6MMNz`u2F z#@jM8jk!H=`}x-i_wTPjkTp_qTc;e?T0Rw>wRbb|TNrKH+-P)Ox5CObk~i9|ahY%g}EF z9d*x+m0TwW0>#7ID@Pb@ z7mpk$m+5jQ6X}6sDQFVa;8zwz4wOXJueSFWs?NsdMlSLg&MSLgA*w$RTI5H0`6fYBk*~5pJcNMs=HmN~ zRpupA6C-}A$6)wDI(fXX1UR3I87w=0lJw&SWt1RUzL&%v@vAO^ixU~Ukt_SM^3X}6 zKV;olJXNOf1et%pnYLdB+=4Zz+w+kx6^iuf1mR#Ylkq$l_Jb4gGY!lF zp@Tr*CPi|YtP^5Cz3XJTl&L4op`)Q=FTSIX>F6X%`g{{FaEKt``ihXvkGvkC_xI7r zbLQ=zb$Tc=0X?ed!}*jkE>QwLF?X{k^MOy~&?pG{L?M5qLxKchSz+scb-58np2{lB zF(JnxLYg4b>PRITgoW-@Zx}B$*wM2JkP*|Gllb)Sleix}2|RUNnV=ZkzKyGr_EU*C zJG~Ly!9+gwZEdFTpbEmGk6N$(k*U4c{y=w8l}D&-&Xlaa<1q6N*Ihm3c$04N2Wk$B z4=ZQZ41u&pr|iQ>EjY`^mkXI70Ia9>sn;*tz+PHlpAWLZc2Eoue+8>9w$(cSy8$~) zB13phq-^W7LQL!wfp98%s1^>#e&9jzlp|DALRd=E>p9$=Kdi?9sETZEWUY=T1c;!w zJdY57?3a6_+42{t+zMT?J8NXztP>m?OMM3JkM^;_4#$4q;L4H!kw_C&XeU+ zI+V=y8P{6Bd!8=q56%%r$UJ(b8qt?dS-P_Y0W@FOMzgA)ilX3)&2_8{x(Kgkw|w=- zOHP=Gt1P=w*30@NgwH1*oE-))%5vqShSKVP8uyw~aspG)mi$RE%ntXww%jw^3|JQN zgXFM3u>xL(0gff*+!juVi)ypd1|kTdO@zxz7n8uNnxRo`p=lDr+G|qD4WU0Xj^P1s zBXh2$0q1`iv(_Zi@wO6R8!u%b0gBOzAh&-g_P08ivxp9~8h?h9tfDY6?Ur>%@UQI8oY)CY=yduo-6w)2nt23Bl*pnV`b&z!S5w`5`C&xM~?G-WK#wmqr*+i)^&?SA#1pmy6%Ys41N4>#scz;L-$q^Qo=oFVO^nX{QQ zmvf_YZhrV!ijf$1zthGOs#c@3rup^FtPZN#4<48O>aJd2QOb?hSGtcXYeMA#Yw9<7 z(%}V9J8YWTASj0>)xKBxZT10k3JzepT!ir5N}_vfbKf|RO=NNtxQ9trbkwnNFqw$) zcqY|4nHWR5usR6zyJ@{Bax~~Ir=~zXhxHtvo?!lZoaX`vx#{FcIOiQtq^-U61X(dU zJKl3p*+cz?=!;(m&Av1Jej8c@QX2rj>r38le9&py;5F^>+7hbAeCXXb$JgjI_832? z8TNH`%J|nX61fMz6CX0uD{gTrwciat9w=fWqqTX=m*2h&PM$a}8XkY^p{doosKuuW zyBLrqGAPmJCSsJ(Vkxpxg}+pRId=$|xkI2#D{|mq-YjFK zk9<>QR5{F5)vU{UENxir-7DfbluAupDpB4fr&BxcM^6Sw6l2cgKJ=y%)_n7bo>tN@ zf&fQr?I%Oc-xBqyw2(MFt9~p@=8Kvss=q3SC5|_Q8z|>0TM8X*3!<*vSKea}i4Y@1 zvrWu-oSnwTkWX2yY6D_8K3I`sUUgxGj0VnR#Ckeb04Qx$;zSd7BaRPM`c!xBP3#Qb z6??GHbyaC>c#HAG8W%-nNt`F*3Y4xqZ>>-{7P!B*XTkufprY}>FHfq6EWA_QUaRRT znkJa$Ijz}{4nE?QZS-*`KO@4Sui>FFM~>t%vB8A;`~-QPn}x<=M1_iGF!l8uz9Fzr zjtU#nTzSc72T*~c0V^u>3pD^c z_ja{(HVA0s;H}uZI`}OOFyoRs;B;kFRYOB zAP5UL?WlQdj(xE}@CYn2_oCM^ZAOL51yUu`q#-28J{A2$Q!p0@yqV5LodVC4s0Z0Y zb%6*8G-<|k+BIOKC=)i{Q95r*GjbMRD1L?|7=i5r!dt5s2p4JV$Pvd-brPy2)o6vT zfjS+seu`_0FZDBZXHU8tHoqz_yPZ5kQwl@(pim{VA zMz}Zb5nFvjXBMKKi|R?gFE$-VcGt7&qrpH_Id`~^ddYUXxSq>K=Vvs?j8KOSdB;b; zv3ufI;DJ3we6nm#AaR&~HHG$95-+SKkiS#ckbn@|aOXsUxC2ImUMESna&m?62TS0h zyW?ZL0`qQ!3weMbto}CY$lDe$H&TDP3@QhQRWsWfr0YXt?i9_g?X{>be{!yWo(sL| zYwnw|d*I9j71UJ1)hZ`|zv#%R!QV~ks0sbGijU1nHk;`==*$&ep9}R7oXdPihqs^w zQFjBSaK|&nll7u?XO@o@Zb0-UXx}3+h(& zUA;#@=yq1Ao@$CCYc4JSS$k!`fh4kCP+cN z!7Ie%{s-MQzWi14+a4T^h&#K4su)ByQ@r}kV zS4fz8%*i8hNbrbBGQ1b!qb| zCbXCxjy1qkhW1W~;XGa-DVbJ$i;>CK0Z;==$LL>Hp)X)poj=f+W7C23Mzd&;l@lqM`AE$GBU^*)LPjw+Q@ zk!Q`xO&DvTrkYy)Uc^C@?@4HA*1V|8Y97UnEwQ>2h_Y{b(~4W3u$MRpGaR-yr_j`|KvP^x`XvCyOw1Owz}wn?GUrT@_{&`;;>pk1mB_}~WYuWi zQLwBm#LY)aPGh{&C*@!;31F$tbZgIq=deBHSKL=cP5Ar(P^A_#Lyj|ehMOp*r5Fdn zq(_sKftsjoh$K)U*|6f(vc*+o`<^oBWbaV5I}cAO&8IU}G>7FZHre>#>rvgRS)Q{` zr=I2v$$cw^m?y=6A}v)dIbO_bi1 zhRF}AsYES_nMTReh-* z(|kJ!VwEDvv;IAlc3jJ$Y1ulm6D8ed{c2Ym?6pQxCZ0)^{ngP)7HjI?v+OnvsgR~~ z1wZ_L!;iTC`q68ZHwlmRFarU6`!cNzjZ__be*Vq2bY5^x>V>YTdZ(+~?;8`LBUZFmYA;hSVdw=G;NlpMztROsK*pqQENi9#J zh28{#Ec?}RV28!7;ZoBNLyH)hd7N`Nv6@6W8h_-xc1M zO0i^hCj!1B^YRz$)jp|_M|l3AHvXJHJ*e&$Rp^>Ok%P4Q=uisaR=?_&02RB7gB$j9 znKGNBpC|YUT4@HNS}rLYvx6vgh(wKw-`5#PYGEQ^tQo0^&}!#~t1D~Foxu7)%!VGA zZcN(cpq}ua(Kuc3v)Y_s84#@BSe_-W30_X8pRqhEgJ7D6ej`U34Wy3 zHN;lgK{|5A=~T|TY?P`1WCwt+sX1f+Oe^Dq0H~FqUb_-R$t*|s>~=sVb&70SYFPL5 zVUikgT52nqBEC~?OsSGm+8~E*$WaMnb)QczZu=+1dbbA{N6S(h0orAo@S_LZOdFtU z&3PEc>EmoJ_^(Rg!vGWOTBaF8ihiHK-$^^%UTb|VukB7@ww(!JveS{Qk-YFq7mRm! zgGWv}ILFn@mu>=td7!;jk32_9`qp(#t8Z#;aN_0`T*n26nD-pB>KnI)xrb_?+Ffy%2q<#-Fb^JAFs`?knJJxB*c@wF&`uE=<)uRJA5{HfH z0Kl?jHo!5~nb#2Dha))2RcAO!@p`j0r!_>&LB@{K-v^wdi8MWYJgDfn{H{Bjb4~Vx@UBRjV4L8XbCME zGKVK~fm9`hsyHXwsMb;*gjv;>TniBG8CSAtzZ!-LP2oEL#ew~8W;^fKU+tmr>#v^3 zP1x)jy>ocsb1m#Gp}%s)#r1lbG{T-hAR;}k1NjO^lQIGrN`Rqp!&UKna-ABK!_PXq zfgs!0JK`o#P6&$uo0#)h_hMc?Ec-@R;3VzbLLsabG1vNmx!B zedy}IL#NG3aU<*9K8!BZ z{c&R=^w{?J4lYO>Qctp@mm+Wu)T$#MnvBZ@lihXNDUP%pYM?dGI_z)}#Vj-kImu8w z&HCfe3c{89Lv}ivZbN#-mZ4i?*yJnL)@JYlEtzxLZn$Wz~a z1J_WMJQ`78RWQbL+EQu-~}INHdIKF+|T8K8;e1eAza74My6`{TP5^skdL+fH*bp!c*0s9 zES8ZqfkErzK)eYxyD%BA#Ei@p)LY~LKL^oBE5fw~?5UTfv}JUv)quGV9sfU~S0)tz z?btKM%a@v!*Dv^IXEFpJUjU4?Z|fcDN=-4bJ5xvJ6!-09JRR{IGkZ{ZHe*cc~e`Wxtih z6re`SxvYr0AsePFBmX*DIt@eJ408lnnW#jKu!(TK3l+hQwdyYgA;JgJD=kIaFo9T7 zYQ!cNj`Hb~@FU^OLgZxqq~}!zxX39q{V%gUD*2H~7^L+d!X#}_SqW5L8XV6ynBq*% z!x}OWY*^Ax2B`B_s?3gh_HEWaeP4x>)2Is}8>qO+JViI}IK-?9rM;-7z(mGYv(80- ziIXvlG6ypTlWfv>vM~wDk?WH9BX|$jqskF@Aw;k$7rQa$V8*7Z`jJ2&qx-X9pSY?2 zHnT)${F8@L2(F^cq;43WCetEZ*gT#Xk8jg4X7A0#sH&Np%u|^O8P7%sYdy6YMG4D=jsgK)z&^szNeT_M`sm)?o=)64LLcq#G*TEu$ckeY0t))>K?U7Bio@+Z-(KXAU z75}&kqrXo{RIeKyRi1%?%^34VE3JCndKgRqhs3tlQ|&raj=SuhcFL{t&t<`J%zWw^ zT#cXfyg@f=GSt*_qN;PShRpJ=Bsy-6raB7YXUp0x+ih4AKj=-dU0RTsB3JtehI&<5 zfjq>cpg-nl(<)W%|5`r=;|Ws5JFPKi-U;bd=d2ZBjD2H_XhFAS+qP|6w{_dLZQC|) z+qP}nwr$()o_;?jlW&w)$vOXaDyh_7d!;rOUhM*oB4N$Msa5MV+BnZ4O!#sf#Kv7Y z(o7$}jI5cDdgRA~s%|rFvd}o-QC_@_2HBdNf}eG?j;2WG-|3K#jy+q<=`i&v=3_#1oew#f&YlTA_x$PGokaMSJ= zCQ_m(HZE9F?tqpRCB~St1ibu+m`Y*JZS10PVF_^N{J^Af#2cIk){a!5XHvzf;uU|GeTkdv*d8PaLb#S-l$ zW{a&$o2v9%xj}ZOgQp;-GB(WO96I|pL>OW^?PSa3<}z7-zuuJ z>^Yq%>tA*0wMbg%!&w&9+jpGIP?>*}IKI}8X#ILIJbR|Yj56l))Vd^Gj@UPmmBk8i zd{mruiXp8#r>6dp>msDAugdCCKEKIiY-SWdf+TP9gGh&B=2q8vi|-%J^(NXDYom>q zHz=qh1wj3TVqCsS|Hxb>EYJ9|L3<)HdkK>w0;u}f*dU;QcA>+boUZ38-ISArOw)X|Cc?)^VmqqqNP6r$l9Hu^8+;q3_an-j9411YA zCPL)%nQ;upTzPiv9WURi8%t7IQ4u@;J{sz+%WN+0P{$m(yp|khYCt+R%HGO`Irx=I z-P3^ZI`f_j92YIf64zZ&A5&HSszB2Ewtci2KiIP+$?ou2z#Seq<)aO?e>HbkR#PF3 zBU;X);UrwFuzGK@L@c88_j?H~5D@u)W5;Krm9-ja#Y%M)B_Mu_Tr}I%HpGMy`;hIv zxCM^r^mJ9wrO`aEIjY+ib9MUaER2bjrlmI5ml5tU{y=M^U4$-aIZ6lu={F1Ntt_}1 zzg@k3onBwt2uZi$$R`==c5q|*Ss?2%@yYB&e`8XPMukZn&-T@5>I)*;Uw~n&kVrwr z2h_y1k2v2J9tpr!1{M2gGVhn908(;|*bZ6esav}gUq3n}zI`5mdV6)c(Zv)>dhw>* zpF-t4QqyEwuBVF&RgMo8b#pR>lZ*(z(@G)fSxGlZt^3Y&dy=!Z(q^cD%Q~PIC=JRW za)EzNPil;(P>@R4w}h2(VbW)F<)z9n+lWoXGHN@+({yIxDrEr6&{@kggpkW{sM__* z{D9K7<%|oliP>q%H->xz2-B0wWEcqBZZ(R1s*tbU?-vFZkIsZ*5 z88QIOjjQ@Bih1pfDW)zj6Mdz?6!&~~e8vywdg zP*+)RXa0FFOTbK9Q9F4@MRL!ar&OiqSgx&TIwh$XWToQ^cku3MWo!`yEcrx{hv>Oq zX8aH?TJGd^W+W2eF-&9{^jI>c1hif;dHbC&GMg{Pj^6Tg{jT1s#xh<;bE^AAPmu)rsL|5_tpgfO zCw^dF4kfKsIXzoixXTHj_mIg9ERssREZNzomBk0 z6|T0%%1z>Fa;OfqyQuu3SbL(iY}}|?bzHP-l<%`-Y`!K6f5hAU<`QuS0)dd0TnAEU zXhpuc1nc?A3yww~Zd25KZc_;1AhoRdI7isnKHG6c$OHN6$K39T0yHR{haixUx_Ydv z#bsHkUzi{G9?A)gq)kcgu%)Q^q%YH2EXwiB{&qH_9hT|rw8g@P@t;yDpij>}`& zHgR}mki^1T8pQRN62Rx11qEMW7SeYO*HSRz{$V8X^yj!VHa*i@E^{njqESmKi)OA1Wax84*oXu*V1u0TWbL^dH{{yp9(DqM?1f*@#}~z@I5w&t*4HxX5v%% zpWyez*dZ(OaM!mN)0z!mPG`VggdomxsP+pcaVrb3&yMev@w<5;AnBL%t*1q3r+$ zBxP+HH1izSj{c84>kxu3tGL$FYa?-U=B8tYS<3B$0cRQIMk5%wpxJuA@I&nWbYQ5O zghkfu(HwzqmJQ%|Qfgq!a-yyeA^8OwKpAWe#>)rF*D!MtsH@GXaF%c4W3&!;+Ua{X z2H@^{?OM8>-1>Av5)7?K8{xn0m@wo%mt+}eLSsVi%*HPGHzpoSd(`Cbjg&|AnUv?e zIsxxG4nBMBc>X`zw_dUlT6#djn`hKj=RB3|gF7|MJl2rFrKX8;i6dK%alcTIr~7@c zfxuiaestRW&m}`T-CElPt_p4n&07QsrvOy|`t4?z?)GKdu$<#~+-R{VV+!I=G+MnCC* zWU{kgkOEUBi8G{{t!QLj*K64bK01B+qhR*lxTW7%W8SG6UVh(7j5eFhaFy}2Gn;Hn z3g~aYmH=E2dvyYSJrZqev(VuSCUlZg-#+I7(PTN8fdNvQS*Hwh_qQDVuefzeF`hY0 zA(xLVmbhhHNjc1bVU;W8sKa77l>aS(L@|<7!aX-FAY^|%Aby2e9;n* zMpydI%CA8(odr$=ox0|lVFeNI_k`=FRId7b$<51ZqEUh%WJ!Sii-axg z7Y>fjlDQTQ=#hym5Ii_akHpnPNuf3|elyY0p_Xhp%D zxV~?%*maw(qIk95Ge;|df10N7$RiJK_m3uK&L%3d-W#sgn@e}-EHtOswO_9p!p4uQ<;dYnitTMQjO6E== z(-&}ZF|sL(a&D%eb!gt&-6)rB%oM;AZz&!fg|#J{MjEXrWDD!B^#5Tue@2DeH;9W} z++i;0j8kmL)HG5$TFR%RdxM^k{)~#*{*=aVefyJRqK=WF`&(Ss?_J#(;y=_fOo6XJ z8)R<*&!09b?T#&*I4uq>U^TCN5N`ImxAMG60?1oPpOM-WWHXqp-}oHsEAG+R(V3Y@ z>f2eWBK#2BeyIIE3RcT-AY-37-n~X7!vQwfY!PJ_CbN-_R%Q5bJRZ?AXPwibLovVI z{KAF&JK^pOD>w60wS3X9WZ$`E_@U?|(j{|=LOHh>Iif9BDR@0;-AvWRGa1}R3KttL zWq?TOOcp|y#^BTwNq~uQ4_t)H@;ixUeflD@(E?%B9=si&r{5(HgLMkGg31GoM=ku|#2k;m^)h0gM9+tmt z)jj8XwH%(7`^_gnP$AiC@__r#Hm_tezN0=!=7%)YhaGaM0jSQmgz{=g+yqZBSACfG@#|3iW>OYXDmeb~1sPb!8+ z*NjTW{f}jn{mf!>5=0K7?MrRnsHUAQST#4At%T|h3-wr87Rul!2qdG>Hi0lICk8L` zXG3vX&L9i3Rea-u%qDL(=xAdK#U@hmo0QSrlvb;#UqwHmw_ z0-hd9-Vlo3vMZHUlvD*x#U+Z}a0y^4PGcDxiA#wJPgr9#IUQewtTY49J~G1UM>TiTx*W<}KAJ zZ)`7d8M$Gke5fPPFrIbCD{X|1VXgPwdz;rQdK}Q7_n0bImD*_hIrt_@Mx+s>XmqX28!ydzyD>d1{aB-b$*u|v< zQvu2Kt>fF_ju5!i4-d@`AP5{}j{(Xq^!&Y5xlC`cP_5PZXGs6@0Z$j>-vA$dO zG;ySfD|l6Odf{hfp#Nl}83No0AdgYFJnl3gPW^}rn@%{~4l?Ofk%KK=YNCOUhA`R=$VQUg)wg`~2~Q1d zLGlGT$S@la{-mU}FWT>IYhL2Us`Ap2R8eN9=NO-$2_gRR6uHi}VJ*&I`QyJFvpl*A zRJBM(3xiw#D3tBNz*On2TrgNehpn z%(4#Ei!x1ms~p3#5TO)ehz7&sfDm!kier znpJ&EsY;x?wh05B0xEmL{hD7RYWa;3z=Ulto0DouU_0WapY54c=xCEoy_ay`=lpL0&?8jv{ z5DF^L?GUWsSEMqBSlshfdx)$86X?oo)e<21I6h~mK>^Mb5c#yI1-yXX7?y6opbp-) z<-RK+1(D*?=qhcc(%{LjSdS5%D~)Fuc$Zl~)XZY$!7`@JTVqFU+QrPUHKjeRxB1us zGXj#mMJoT_&juUXG%b~e#1Y&avUv9F)Ock9lCxNeT@BBVtUi^F>DX5F*^fvC7&}(h zlgmb82LkNs{Y;;l`G`Xyjc!)q#oW#BP<^uGis=BFSSrvx4nN9IO_JQpJP0#hq=$u{ zvuME4?`<4u53?$BR=+Cr?gVl*%t^~ZR&6)>)M}-yn)%_J_3)6q4gD$kuE89fVjTMns~ujvmDLb?R5GN3a&>4cM<^ zLUm91lvP}DF%xPY3QXe&1{BvaLV{+IFmmwd>48Ag{?QkgnBKCKYFR9*Gy)_8P5-n+TnfvX+NW!Cs?&rHV51zAv2F zWg?_FqY`DCS-ZyIY3%Ch14T~Dy7Sa@?*eDNX_e`#3heENLGF~N2yvw6fgwOyyHN&f z8ye?YP90He70(tYo7VPvS2>@+vs?5|geGG9US_yW4zQg6m;mf{$Qec&2DR(Lu7Eyw-BmxTczZRxn5;cg7q_hp)WWR4Yym*x89@q z6Ih7x+u(mI_Na?G8KaK-Ynn{vC{^tj;Wim#c+nO%?KY%eQ)c5xA!XV`Dr~K{d|?3G zKds-b?jOfj8!<1sGA0AGMBrbEg$a9@fpJ?bPhWz*RyC*6FD%CSfV;1H;R@=1b6?Ep z8=AycuJvA-`rN&A=_sb`Wx!Y2$uJ5ufd+8uyAfLXu7Nd3=ZMOo_CK7vT0a4w0}*OM z=OQVePVy~62b6RfYalwLYeTirKq9fSATuSI=ub~4hwDsq@4IZD0_#b2p?bw#;OAY( z8~tj8o&iU{W_5P%zFg5Fa%|m2Z&sBa@PLroBC4Op@&C}U34yq`1|tZ@l$P#mYrR{& z6cHRLb|2}}kcwbNOc3Dg^Q{MamJm7SU;_b(_;}Ie92mHpcaOw@Ap36@hH8CF!LRE2 zx!!KPjFxqeyqHE~nJMQiS5T*qb)Cv4q5=^{{q_3jHg-W(O#Twq{RVPE{MDL$b>hSS z$0fLYc!>W4{h#W}zkzjoUC6)R|5R6Y^f0%hb#^kha-;_a_g2x^lkY~RfT=@=ts!}@u zm)s&DC7p2B35d%XiZwDFI~6X?+rffLKvK5?R_NvX9ZAUOQCfjbOB{BMR%X5IudW(k zN!t}*2n!6sAHy^9kvc!n&padm&`nR%?=7QAX}-3gBupNAq4rxgBT#nI9ZQg5&UCGS zP7tC)ra;Q(#Zu^C^qb{+)HTVJ`oO%Ldt>F z;7$4Ml^iPMk5dO?{LC{efUv&g_ zGj@Q|Q7>fnj_=`%Gg~BmjZqAEh8>O#tGk+siK2MigvUZ2!Vd+qVPsh0(r#sq&MC!- zgF!<#7bj$74P_NP7$9F>jHihw$Ovk~=ZEPzZ> z@fltf4fqbGc?Z9Y<^|W7_ecFlIw6!vJwBCa^M&@jM!BaIFI9rm%$Uz9r_5MNlS;ujkJ-t%Ognm4jiAhvc=nHwno? zh5k5=Wt=%nrrk%^hDX8DWlIY_L*A6#YicgQGTttDpPmDSvHYL?*`kljyD97-n_>c( z+Ba@=j6O4Eu;ayw@|LB&89qMdm6zI7lvZO!I{nDh-90|g73!M5NoLbDJxv&x3zP!S zmXRto<+ijbEEcGeSI5Kf?=mid#&zPyz~C&6cWm3;H7T$4yFW1{5(lOuV?HNcxx^At zRe^S{FOnw{-HflQ)0Ru4aMX#H*XcdKsuJh1e_E-aU0|X#F__~ziUZn;x5rdTUkwo& z+^0>oG)`>T1qnztwS2*S`pr-*XxaqU|MvGc!}YI6%hw)GeO>`+n5aqWYdg{)Kw=+t zE_;xPgj!MV zTpCqN%vZtDO!9b+=oU!qr^BxwI|_6ZH4r4dSINc*>`Xgt!99}}>n+AqEN^$~_D_AbWQlXz8fy|Dr99P0 ze`-?rS_816Eur3<&J2Oz-)1KBMtNN-MK)92!%-dH9tLJxXQJN#Nr4g1aO!r*ersAE z>57PxkD7V)OQ3%ufE|2A;mrJ$KVHSU+@3#4%K$7(YiYMtcPrAAENQM%pSC^2A^dt@ zE0P5a85+-YZQ-W-?fLAXhCZ7X3>ul|<|nbj#(yB0o?K*r#8BU=O0yoe@>c3 zI=K6#si~)Xt`3L$4XNBV2M-SuB`1GC6db$-pN0BX%Q=!@5s}4NJ{E^p^X6~9?YviD z^KjHFptq9+=;l_V)n2xm2VyV+cgzcJW=k8R_nS+yD8Og+H5!&mbBoU(vCpQW4Ogz4 zc9J!B{_5IQ36Jln9{7x&bw}>JdGeOZcJgpcXATM#{|>R7kXM&+%ea5-zc#dMG2r$Q z;K%vOqJ@dUIz?Xp0$H`cE`ADsKS4&s+U`GG+-13wfmyVh}Cb@3*AtGosWVC&I; zO^L+Ss*zbh-QDHZT&<%y!sB>p|l|-XFLv)v3Q3U zNRdfR+>X@VlZFOGGgvNIz>y*wcA-?rfTi)aHotK@N@>GkgAKuZMYY#UE-WnnkVV!& zEy}V(T;tD_(0ODDo-{Z}3W*Vv9H3l1(cMl5LYX9%D;YgV?dHUqV=YE!_o z28L!2D92BE(mc7qwl}I|Z*&`bUp}i!u`W z+{;a+N|K^o0?xw1_}`cf8v7BmFl^;VA-(O}t@(u#4+&ro07EouqyMCuC zm5j*89|879Nr0I6ip+sgxP{tGQ&w+2g3$T-Qg1>dgZ7pV3DVM`qG`U{b*fM)Sud2* z9E7l@Q)l}@$Gy=7+Nsfu9h?U_(9jf(Pi9JJ{rWU z*Q99VavwK`aDA?Ru}zoO*l)?1U?!dRGqDwjJ9p&0tGQahq&4DE7ak~|b0Qw$;`g(| zqniLWiJK%f4ya*MZw40b(_U%*Qbu5Wbj!02&*qMIul!qpa^Gq?^91yYt2Tb%!Vhe> zKqxBrXB|GwP6zsRmR#DFX_gEh@slZ}_6>sV1w?<3V{H$_*yFKk6&gH#_uxrpOR!pL z-!8PCUdx}Wl3S~b(!D!UjDs6`I+vaeee|a=!z;rxOHx`fY+uRTi$+AA2lGL}CXh4F z8`~1R@(5M>+h{R4PFX#VOhUYDO~V-TDK_yW<6Isry<}7~T7_2hh%V8VkFKc~nrAk( zWU0}x+W>Q5HlOQ){B~cAZEvPB{~~O|G*G7m&OuY@Key(wZFTP0BXxoy)5s@MbI&Fm zo0{5A#x5NX$XmsAmE%mK&yt6&Vh8Al{UsgBY$K`!yi@wW?|CzuApGIzjCV64j~3I} zkgYs@@&r0DPuxuXOKAO#5VQAFYh}{F;9%si`T?#`**+_nfchW+0FjUY0F?hd&!#mu{x3qVVr~2D*x%K<_H&_XM?&>^^Of(a&Gg~|!Zsb%x4JRCY zG2bRn`02_}0v!HQN~lvT$T&iPX($rGFA6j$NwWn1%tcVm0FeO;k-UJQizUq(gr@Dw zoOvP*i!wsZ0-}$34T!SKebsQ&?VhIXJ10X2`uY$fodgR*bU88-+w&&?rpGdm?6wyJ zOi8OUA3~Jm>LTwWk7sXj)KBC4OC~HWRZxP0VtTZvdLs0MC^3MbFvaRu5k?1Th85sv z%mk{0A2dW?z7XaZ4d)74)$peOU>-ski*bS^| zoIF{{k;KYVScR`hzBU=e7Z$gI+CM(B7#SIVC!F7rE=3*kGo1Z4lDah4)lC;mF5+`& z_XZ~lcwA%dX_--A%;=Nd7w6A9e&pXgYx!Dppp@w+SDzZv7OD&^d1PUPum{>F#+Bdy zD|H0Lw!v$9bYBO8A7*#TbP`G&*?Ay*TKS8}Ej-^#)o?9Wd^o&TucuoimmU&;6C7LJE?Y>DZEWYshU;pSM(^9X%`UfT{-K2-q8LoYc91Mrp%?Y-r>?uuj4IE#3j_@ zvaW@CL(C*>+&KNt;&0R_m)*u2DsDSPkGn#~C3s#2oY}NoZW8#tfUn07RBxco&n+vC zA3Q5pPg^Tva>o<xwe z`?q~_9=GP;Iv1v9xFoNRFrl_RBN0CMY@|9wC1{*m1SK`G$8IWDU@ywyJ#p?5nMp#~ z;h7$4rSN#i93l9V`_Ucd-acNG(Qgp+cPAc69)zH4x+R#`VmzItfxK)Gd z8`A|i=w!?h7CMw3P`arO53*;*!mxVNCW4!)EW2d#r=SzgX?Xrf!OMp_=JF+?f+OnS z6;G>~K${lcE)L<24yd!M7VnF@cV9F=Z0N>8|dV*Vom)l4xV^tnYzk zU-M+@(>_+YxDzqfU!($3f-3Tmq-294MInnY4}og*Qvw(RmDL|`0{fuqW*u$Rc?sk{ z+n6h=6^ey-?J1jt^MDLNGm(r+0A$2gzET*u<60gv%<5@Mzwg$qoZS zTeB|5753;5Aubra0Znjon3w9ekaltC*9vcs#Yv@H=X9jzHm@t}b22#ukH*H3q%1Uy zfjAKm?018qMnvcAFWZvtcrLq2Mhy)uH9)(%b^isbFKzV@)Pc3N{t}XzEbtykcUslZ z#Ygi-S#I6QQ6j6bT)`T%oYtb3-L6U!ohqp{BW2nRy)=w$<+ej&3paBowBo?knYa=z z=mnb-e*^9kz7gbIt(9`r4YrNQI!Z^m)AiBUW! z51!P>&`9LAF60%3_^U6w3j1=>M~@Uo&J$o^QccU!aiJ2d9Ov7{%DM&b{*+|`Q7BH< zbCos#(G6h+j|6VEkxjH8v4Rgx!z=bJn^hfE5zRuz^6MUr5D+{g=$}47ddkmA9Lv*n25UhOty*rd0{Ph zQIRnQhWiotzU`3%tFJ9nLtsM)uo9*rd}yyE<1s9 zuou`aleQ*~XLWj4aYuVTq$YwFnQ~46Yg$t!5d>d53wEssM)K`jjWk`_ZKYr{+^9BY zU*P}gZB(u$PUwID0BN8A0BFD7W^HV3VC+EaXsqvGXhv&pV`S|1O98qPWGx36V1{}m zAW@hox*yq^wFSTe`z1OyR{z?wh(;M=|6o!Y?s#7>(*=cOo$KUeKl;?mhiV7AMCiFc z6k1%GzBH`NOd7RduHYhTK!-<4;#wRxB}XrrF<_yRJ4vaPlA1(Bj)b6=p@E>m-lJV< zfc>RPHlp!objYcx+9rHqmxpnQZ9*OS3j* z=x;n@%pn#-!sv|G28(6=)e!#y3uK$y?sdv&S)K^L!>x-}I69MJd|vePL_+ETxFW-k zb7*+jHQi|v0NCBh=o2Ey;ts>LsG!T%nmzLk}smA<2+u_K+CleJY-qNFW0AxiMe zH)@dZ5*>iLcd3GjNWE4?cp_Qyr8KIsf7%766%4YTR!0vncjjnSrx}XtkR9j_55tL^ zmRAS%jIRv&sm1p}F%}AXP_E`H>k%x0fI!|8cJS}mz3{&WY5+R;Xg=Vu$)2Ti1~DpL z6PCpHbo5;T7KJES)Ymv1k2>OAa7siP2$r>lb)72wTubZ<1%zKxp*f?ME-YEvTT^pp z9$$HSn9LMxyPOtXHxS&<4x0OQb9jy958mJy;oQ`9p;@N#cce(PEpT3IAEa+s&LiKW z0aSGlo}ksBw-|2#9GA$``imNBcs03Y=}w7mXcINYRd}AYzp3$g$@aK+t;H~A&03Y^ zT^Yfw+WLo)#Mc4`RAN)%(_}KIBRl0 zTgocuhC2PlyMLTnM!1v(iLt8oZ#qUU{s6sbY|BIXsV`o97w{H(-Yn&!xevw`}$?={O`f9z>%9#TM70~|X-G{Ll zyfXP*xg?!e(a|3##Qhdebi3A;3}#Ov=+Y?7iorl$)65i%5yba^>hn_TiAZ+qn2j;= z-Oj5#XVG;0=0IHM(H>cZXuvAM(9;^gm2nRV%K+2U;HF>t;NiFqKC;gcr)>U)s<7z_ z`e|V>ZZHGUicp%P1QPulsVx*Fr3z@4pi$^*pNcQ z5;8b}X;s1VE7AytvE$47d7vupI;5_sx>>R9Ot%-e2KYs(ozV>4gy;C-j6nFp5@%dE zREF|cGMcj-t2?%r*L=2@18=p;K`vW`98X-ez%Gd#HSi(nHjNV;(tN6fpbcs;< z9KyxYxa+j9MP5Y!airw^{c^ECqp`86O=%G!O1O1W z#X*m<{jgEk_YStErqfyt0BCJ9&e8N(Za%)A|k9-7J0%frLr zFqxWh273&%M9ss{%5vmmSf3rhZlLLgBd$cenlejy9>LWYPB-ITD0g_QTFVhba2>d%%e$y7y9?xQ zVdG*4>%>>v3KN(#)u9AV{g5+D(AD3nn;ii)K|T+dNKujobeD(OugEq$8b)*KMKs)j z5-MUHX}8sm8={6u>l%eVr6e!^ByLrRDXaNHe8XQii@>UIpvIimhj|6q@XYGrB!O2Q zSJx^hr{|MppH`X5V7SRI4xk8ay@duf+Ss&}f*TLri?+2eNvTVUl${b8-e;8uw=|b|Q zE-UHUtvK%5+&v)i-bkTOzKh~{))aSbp77lQ{f0}3Y3xmLdpJUSopLR;CB1ruyLHa! zoZKdUdM&2btsYv@iNYsddaVA~TGkx;vQ0j+<-DkggY)#)Wyz0B2BWr%8P4OnwA!?bPPjh3360cdF+oV9w7}vh>l53{~pr z=};M3YEQt7fakufbElI}b9iS_E<+`|^J#GO45NNZ(`c)e7Ue&XaaY@+*x#{`TUkh} zX(LRXIl6C^I|M#vz^xOHnQB$^Tye`WH__;x11ztkC4MwjCIin$8_z zqpEJCMvc5tAu(lZkd329V9dw@o zy}iWrf(K`P%{tzo>ZkAlMN@xqgSKn%+DG&zZ=Y!%x=&Ivfc#WqV^Wmr}S_)(L=3jHC?~| zv$W)Xq%Om0GuCvxlcb93rSTG5?6YB5LzPjzooMvDc!e#R?!n>G!Ub}z!w^m#mtzZH zgTsDD@DUl@btRH6$%%fGtQ0G`b@}r006lEicwDPR>qEI#>P%` zhK`O)IOZ|fEl(Xjp!&piNMiNTOL!W&W}P}KbU4IeEpG~sz^sDiWO(LEaHcUR-#6Z! zAunR}TlrhU`$xoYudg;b5BH)h{CxR6`<|IAm=>#w!g7iT{Q#d146lxDTPulq$tpWN zxrJq#>2b$L?b~(7#xg!5FIOCv>F9h~@L=@5ho!s@D6kqUC`lcio%9cAs;5_5GdGB3 zqsjaujEx7>U)<9VCz@+@+zvV+Pu0E zIhOJj{0~E)4!kJ@(;0JEwiD;(Z~LsZr!8pSgB{012wy^yTCj7P3R}noQ1J4=s0AUj z4%W^#<9wqI9?iaqwY0?y6GuYH&m1%Q)9q@p4vMu$PE2nyKzQSssO6vTa@CaENUTZp zqJtApJb4%8J{UZ-8IjA%qE+3n?15|!1_esU1z zH-yBOPR6|b$Dl*!*pZxKq#bHM!k?BrlPwN(U%#gMYOa3mhiKGTetwx?;06n`x2T{1 zxb`v_HxRb;apdH3B%#eO3iat;TcVLnNh`>=(t)L94gJI7nHkrrUqD80~q|B`BjHe=PtgKm9UT(E$NBrDKF1g!@ z!C2vlfNHoCqSzfaO$5}w$Ux{|Eq=gUfAn|=V;}z=c<6=4&0qlI z#b2DUg%lz^KiBxdZztj0|4NW~7jg-q#>nw+3He=nI8VrrUp+WuI2zfS_(MD=#+9>} z;fJfDmz&VZY}0|nuVwQFIwcRsn?J!ONNr3{h#zutlTV&bVa*g~m2qi#=0~U6LWM)e zDPO%L>$slcA@h<0f7lHa@q{O+8VxA=SVh^e8KuB&+x;iZL~*4*lGSb%pExY`5V6t~ z$ph|)eHe9Z_Z*CDKPW(6c-e|mM~nxzMo$AF;jm{srXs-MSR2!H)4xsTDeATD+J4pp z=4xGe?D^9F2QScqT=34w!KXSjQpj{_aGKXx3i;t`^^HKdxx6AX2Hk8BZYKqs5t_h{ z3Rle;3jxXb`F+2nBH{wYl12VNQcQ#62GJEI3>_D@pSGe#_j}bHSqEOQWU&{-br*B? zGXh6M-aLaUU4|}EqjEwt-naLqJt#e_((@go||TuzK+nVBSPXZJn7`hgI$Annd|oQ}WSDTI)ya9lPHkw2|0Yl8}6+g%L)6Q&#RRF}cndtM1aQrp57jOiVQ#Ft?-btpuF%CNYc`6NH>eM^fAiZ_)OVWny5~ zcnZNVS}|W5F}2YO4|R-pNP@6%^ThYymv7lT;2#Zw1$useZT{E zhlBdLvMVExrH?0**}uJ-Wr_nuwv zLgvC_WM$)$U8|{(k+rtHsvNsbs$~QC5gh?p&b$}Wx8j5b$M48d(6t;lI%e*kV62-_ z6=y%lh_(rNN7qljmRC9}&0XF|Zna~i z@)WXVrB3U+gWqbu#7a__G$K6*<`y>704Kl0&lfCGhwvxTpRazBqR{UJvV!@!iN}9^ z+b@sPhtVY5SusKDf5Ju@#NWyp%AH?9w9{+{*un+j%L##%ZGY&w(F}4W*ib zhEMA5E?{Emj&G+N?iqFjZ_6T#G#hmgEhfI5PbRJpQ=Mv6GUjGpQjWcr{R@E|PW)`3 zrL5DqQWi1!Yv!$c%myMdPs*zA8zFm_mP4q%RvmDDS`>Bl{H&sxZk3yy!b1y#zeSc4 zqrb5t%jHD95|<|*B3!(mpw~wW=`!n2Dqc}WFJD0wTNyl&QMojc(WreOvt3@7mYe(a z2iw4u9}h9zT4q9CzMeeQpR~LuUQ^^wNue4!5?8b(8J7`Mp2e?yENL3PeIY;JNQi<> z9caZl8w)jRjp))muLaG}fE^;=dCq(2%)`e$>FKPX4@+6nQjld)Mw?TNI?FtMmWP>N z0JI9sUYbR45T(9CYDU*KwHPD!;s7VM3DWT<~8}v2bR| zaNc9xV57vtU}U1nza_FU)RCd0i-Qwl9v_%aJEqq2af}!tWu+6PlEUt?cNRm`a}-(S zACy1N&H)J_*Jer6LzNIs75EgHWNPw$%Ld0=)6mE-cCIeJT)gO4rAwmhANixB^@b6yWP)`9U?~_cBM|FZ1l0iPvod z1p`G#kmB4Vf<2xwb?AV800eG1Dan(uW0nqVH7W0pHL-h}n|!=??k&GFNG+=yND1)3 zt_b;iZnK@ooKeuFs>jfc^e9C;$3#?5A|tAFr!rDcbZsmEmREC(@F#%%Z$>N8%l$yj z&vGV5f13w-klB~r05+jY*nvc`nO+X$(K3PEtB^XKx)79b7}E6-WD1!5{4M9lvlW_?~jm~m}bn1 zGw@DQtk3q0-9IAD^}~D8jFFdZ5SXA3pac`v@eZMdo3V%Xd~5+G6L}psI{dYQ|9n&U zP3Iqe7(NUxp#;54)`q1vBapkG03DG{w?Fxu(^ikV(zNc0V##xeNUIV!^;T25gPba5 ziWotPjVGApD;DV+B^Fo%I9`emOd99WNyA{i5~PjfG*_L1bcV077rB0i=^ZkVYg8EH z#|hY;^lOrL7;>@>>GQro%e_2lcWy0I{P`cGyaVn`1orj+L4Wmr6t1B3oo&`so!VPF6qX z;f;;s)P>q64yqww_p_HUoBQP;XAdzppU!67Sr$4X*9eX+qTrU3f%CexbJQjGO(FI} z{ZO_OwvEW1J36h~U#OWp!s}|SM5>KAJY(+YqON%pLh)uhHh{nB%R@hI3_IMZYedJj zCgD}NDmsGjn>C0{e#c!0k)jF#ssnWYead>8ZRgW)roQEQCIc6{KJK=YkVEAS;w4kk|;OjbK z1>=yWc5Yx(BXKh!Zcs}kwHS8f@Oc5tEPDfcw zrpIiC)idbP-J}mCh0V*LB!f+RaOg{4=R{0*Ml)mgTg^(wjnf%Z2*Gcy7P}n>&gpQ6 zV_!o*YL|-7ZPQGP1W^(l)n0faR-T6Tk_4 zRndp!yXbz2BQ;%{(w!9QWQ6Bxir5xS8xEWJ*arJh>+O1093A?uZ^ib2;1hkCN$~;g zO*1!C|8^tfGFa$2m%R)f&9~~H72WV}NFSk6W4=Y`D(gt3^Clb*2l;wUa&2bXy!PrnZF$wC)ff>4Xb^jV*P-f5g&b>Q$(K5)MbO*}u292T7`CXeqebha0vpvv? z{~&MR2E9?m5%TVU)y?fp8*c8tuscz`bERObKCkwHMbLPD-33%wmyIBop(P!5xf5Ases*9MCm?w)P z3-F6r-c8rQ|6>919uV)6fgY|_q`Qc>A?tHgn(WXL%J>j|CyHP{FDEl;_I?QSTNz$b zDg6U08Mz0FR`R$xn?CJ~y$@?db5>VSc97}5ZuDz2CBq-;npnp3ccNHF9CUJzZv^E< z1jz2G5=mF5a<~gM`D6TvDYyZDQIE108BGjN4Y5a2 z3sdHn>fC!1g&u%e8aMfm-aS=+{iNI$2-Ggm&0fUgw_LA{$9C%R-(Gd#UnjweAihiW zKyjjCp|ABBBmGij*HHquHYI#pz?MuxsreYJBAY6l7(hbQkB9`fgJRu28!adxhGbwL zU{8NaeRf57X#<0*%GN*kEcpw|WzsLHfzo*Ky8)Y3(}mkwd<(C={>nMt>N*I(knx)i zIu{O%sg|Ct3n_OT7Vx7Ok@Gn|RO&ZwBz&ap+35f?O^1bG!8`yWoVis5n;g}2assn4 zU)%JjGgJ5DLBNz_m{W3q&oRs>pOk^!k2>wrNsz?zbOl;)RL@KD|G0t zj?{-asG5y)Q73%swz&f7O$ZqG|&=d;-rx2 zwiFRlJJSiQccW;CMd5IRe7y05psj;XJN&ayBolG~LlXm?^gAV7Fi-{ndKb^E;0!J% z4xjONepKbcsjnk0Bb6ibjUS`pKoJuBEoTsK@ec6Rtb!GreWzQ{Gi+(d*MvB1thz%L z70oh!wR0HNEJqMhMp+w$8lQi|5q-_Ibt<3$0O&~o0APPoPG-hdcC<#ehW}AfyVS6@J!nS! zy3*|{6|n}Urrlsi;j977xtwV0YKXcg5_(dtJS9{<_X?3SOdHNZH{R!rcv&T)ZOJF2OXmXp!tI zQ3~ja$n6aZ1>+)DI~3e?Y^ig?6Y0<|&cWT&VNxTobRh=y2q;qQ2Kfrka5{b?D5x=E zLW;sY_7$J?!P(Wr+0)_U#cj%Q_2PtOgp;YV!$F-@q4-jVc&_e{mjrw`|5_Xzc(`kw z%;D;!sPGIrA!$R?s=l9mx-Dj&o`V_NFxVaiq6yR*$cch5a=1iR$x@5+H0oKgY?!>E zcyF8Z_%#AHX@d1t7&S_j$CsjnRI;oWNzr?SZsAC5!Ja6n0#yasKsK`aA^EgLW?Hgv zb7v2{UbLDc{PWLn-kqztahsnXhBOCf5*pweI|J(FG4ZAdT`WWLLzWn92Wg4VY3mOjJG`_p?fk_P);;**a*cq?|6$(^VCJ31Ls zxp)8a?nG_{CCFD^YdX_>=O%T^goc+B52hq19UEo{#yq#|gz#Bo${@%s$&wKck z?e)sk>oWb!c9SkJJA5IBwg+ZOW?27B^A6d-k_rv9P_ZY^v^TBn1^){4p-R!l!X$W?7KScw87`Y->#C%PT0p{2_}cnYQf z`M#Wd(V{M!^3YE55>;h`hl7AA+ULjvp1s9d;~YEbTcTdz99;)TK!rSR;AUb_Gb`q6 zVsE&U3@q+H9ROOuZJ5xe&olbI5H6mC9t!iqy-G^=+Y)``pf!71A*O(x1IV}=Hi6mQ zR-uwT0pn?#1Yq|=-Yf21&}({xDIZ|pA(h#MxM1FfudJqwfj=#=`^Z}`c8P$vq&o!~whGW0bk z(hTR)=y{lw+LAqmCfj@`ty7ExhCBKLq?R^aB-J*Sw)86$s^wyVemajNJEuR z;|&{+;qnzxR#X7>N==SZWrU#eMyd`F+g}a73MD}YQ$~T`{H7!ufe$YxPRuXX>NOko zBtC@yDrR3G4Ddu={l?2$ZbHdR)^qty9H*kzT)D!Ec5X7}$Z_?NnzUgsuA|R1-PDIr z-b6%`x-gm48yGOoqy^svqX4$%)?fP|f`E2HPhnJ6By4)BZ9L*&-|&kYB9K&X_CDg- zWyX}a8i!T0636aO|5c0^RPS-X!rMjoF=@nVKYhe|P~OqTYZR1>MAYD^6urH9@=&a? z7HaEgXmnOB_^!kSmLnV@4lqhio?EOjksj)>X5vJpYhgWvN_VZmQ^n^Vko2F{^(rk^ zt5yYRR!^_Vyy79a^~gDs8}I7GKYe(OxDER_^8rm+KH0;6Er;xyvc?TvyL`pr7XvA4 z8^Is(c_Qob&iAAR)Xu>JA!{W>QhEF_@0sRMY<#JlT~e!kMW#lXlSHh?XzQ5a6QtiU z{qfx!$+D(!7%|TzxKLXoPzNnhm7ptM!GN2sQ4v~INHKO>1y57_6+s?rL!gp3*&{sH zLsMl}`BAD+dct{4uDP{Tok#H-D{*aCSV1~KGN)Y~za@HX?1@9vQu~-}{ge7{-T~C< zACmyoFW87v{_1U*JVOt&EQP=>K6c=5`%^zQxAJlYsnd5=JxR5H>T?`FwQwAka!z94 zwml*ZZd$Ao@x@aGC7$u~Z zG)h4_wT@3BHW=ujKZv5>!>_(8_(pMV7{VQ{(^C~ zf`r|RKeu>s+*xl&l{3IN_D#m_rKo)NVeUOETOHzScgg|a+5Yds%>cBJozu- zK}+xO-pJoi_5&H}AEnL=c-8Xg?ohjy+Yc=DpntWxhhcK#cfNLGpc*+_&5K=>_nK&U z86wsu^)SbV3e5o|z2x_!)INQnN|HtsBlhvwX`rmE4994Mv6e^j`DKhACN$ z*|}-XD}H$|FGty8Y7GheSDi4j(X}KTTk7 z{xF#O811z^Tk{aiy%Hl+?5Y_y@&%vDqV8j8nd02E-nromXN6V38g!5fU^l!Y>Du$~ z&hN`kP|ty;M|GBGF=rajo`SupkX}{T8+MeXaM&woJ&*(Wlcukv#$hs#wgqYZX@#aU zKz0s@<&J~(ckGx-tWJ*s@X_KUaC4WP>FFN0^z?rJv`9z5gpgWW-oB@cu*b z&Hi9~s6UJT5B%&uF}{C5XqRgLWchz2v$>Epa8lz1?0^BLSVH4iEZJ{s7>w}z+@gk| zKs4oWhcnpEYwqroq2~D_Ne#V~k3O=peaDiJkr2_CZmu@2>`y*UQqzVM^!=?9>TU8A zJMKJ5g6O1ORE=`qF<5kOE( zyW~xRa{Lm6ZQqBKcru)i%oNGwxPYCJogHu=cQ=-_Z0)JhxdTrQC|W7oMj#RKa;2+* zj`%9#Yc(S%ro$OFPFIrVu2IDsogl6~A*2!|wA_3J+K(LPjWzzbUg8=#Y&a39T%LS{ z-l>R)e&Vt~k#!=50}Uo|Bb+>5qkAngH^*k3ywN4N_8L+b~8lD%Rnz8o_ z>@i2frn9G~tVWQUos5`Ykl7asUicp-&?<&g%#gxheQ3T^cT?Ilh+*@gOio_(~$fX1$ z!C-{KL%mA|@X%S(u%g2S9-(B#x96Ae@tR+zg*T;E+&`%6ElrVB5GEWb7+X55MEika@vE_g{&oGv*9 zqRZjarlWPHMi(8KI?`h&3bwOxyUMdQf^70A;;@SrpRns9bG%yj}zV0s@eahANP(*F=cp-G`ZwOv3}9Vi=d>;gSIU4A)4{F+V= zHLQb55v1V^WJEVcq9SZ0`W5YgTaS@I+<1z4#KNYonOK3El<_NvdCS#6)Ot45YDc=5 zeRC~i>5Mf%Q&$`SoMGVT>0%A1pciEkymIE&c_T2v{UO@iWacf=k$qR|`MOrx@0ib| zotbyQW`c>P?W@^xPUqF(s=hkFvCH6ur@7;^O1ra#E^DnDoA?-4WKW!p{!XX_#Ut** zEdwaYUIWmP3tR?G&>--t@8RKO@phFyG(RT~cjB&|HiAvZRAwnLW!9;}I#P01V+$@Y z5C|vOk_%$_{I^+80_n4kLsTHA37u0JLY#(iO0Ep&$x*|U8&hk*cbgMIV*BzmAzNC!gajV%rdI0((#;- z{vL!>uQCFhSFMhbHAFh3YHx5>{xp$CBq&g<=zCL_`tdX0mycVRq@uTvi9_Qx$^P4L z`oSWZK2(pUALQT7Vop_cVc3^*&J0dnr*={_2v~#Unsl|MGpoITTx%I{V)J9tCYDfs zp;?nBfeTFs!%wvey@QXdf!_R=t2t?DP)SY2x?+*d2I2@J9}JC^q0~2)HbMq7K%+A-}sx0 zE=`4LW2>7{KI_3i>mo$Dvbu@Kg}#@8nstagqgPBPTolF?3Sv^0itC5=PEkp>e5;SB zS~CKEhe~5~|IyRUg#}xOdz%;5)h7OtAZ6WItKbSae1`}}q-d9z+T`~&()Ut_aDpm) zhm2?5{Cd!PPG$FXyl*v7XL(PDa0ykfwzDOuOv}c$_L1(k{Wbl+MvF|uABVV~D8cf> zexv++I=R^y|2y?vH7NiUzq&C>0dWyR7 zb$y$39g1%CXOq`$apioy z($9NINa}(il0j(CHGH1eLAOaL=3*Yk(@0S2UM>xE)o9YTo^3~;59D4Zdb6fU7%$;g zPvN)z++O?q88iN6Jq_`gnGF$2EhI>eoYJ9GKT9Mu9hQzB?;AwZY8oBnicdE-beIY= zGb~E%z)4h4a6jRL8#gdfAzQEzLvDz}%gfU~Tz5Nm%F4;d%S}WsIsh+94Du`Tb`my> z7U%cQwsx&r66hmB zMC8Z){UO-bQ64lond*GatF?p4rZjXWhZ+A_RJ>Kf{{0EMJi@&fF_h_4A)6GaT@2%P z86%<*APjlPdzyHQDg8X|M>%DNz9@M!0&VU+7J}U0a#mvfCr_#-l0-rNtZ&ZT=dm326CJQxzOuqjydjhVl;}{7D*ZBv*NoZ z{jz$$DxlFPJtxFa>cs~;Kq$s!OZF2cG8heD>G|Svf(zzu3_i@^Ll30@06R<>6S=h`TohV-fOuo{JG2Rz zJY@UvuT2IK5J09ZbqDKl2RiIZCxIF2KqGEkBDx6j5Ox?Lw(cB;rLb`7qQ}YbuAjxX z0O#g!;f6eF4}2K90QHV&h2~0nqvU~DIPj5tX7%Ov@V;pJ{IaPIIi0WOC?Lq83D_5X-Ob&g}92E4#%TMfLx4j~aA0%BR@444D z(1Ms0xdEsLD<5**P;_ETI_?kS0NLkbjMpT_?#O?_%^D6k_2T2wdAp5mAIr&Uc%@a7 zBOGpdU12To;%HxzdIghhuu- z+z-*qMa-xN$0v-Bi}f4B!J?TdYc!30-OCd{Sd}PHOa^8)oy04Iv|+uD-QGrMMQP2N zd0YXy;O2F|nSz>`)?xEo&>Z%|@T>HF&0L$Dlxu%g_^EWdGN(1*&q%E97l~BRRlvQK ze!-H(Q!sBqD>A>DItW^ zQr~KWq?0zKD7s)qv>9DR!5G;fZ*1DC8KVb?Rm>8 zHLZL8(I$1cB@c_8Yl-*p=*Wb~#T>)}YMUh&Ah#ux6O1C;e-u=L=G+LoAE`lVG8!~Y z8gnanClO^R)G>~sXhC+lq%PYB%9aiJItIesAP=!>2Pvxok{PrIV2g znH&DvqitC8cP|~;1TKg-e+;LdqLrl}w?Q!Fm$x>UP)vRElSo&uTgb)p7z*cXtxoha zpY1JLFTY`Ee?kX}e~nCfT3C}MJ&ZG{rXtO%dAp|Lb_W1QhZG~Wk0Hrva`LNm8F zRe~xmQIe$mEkvoQVUd@vuFk@GD^?y6-5lz=O#!5WEQfLgwmiMF%4_-k!CON^X+0!)W?Ma81hTL_-h_1rs}O ze~qlrO1%SSgqQLiOR6(b86r-gpQZ^osL8-mch8fi2(+v zosQ~EkhC2w)l8hxBAn4&FyRh+Il3!%5by*iazJR^Bh!ahO54PXy3cxnv%KoK7FbE9&?qCP*mYMSgIticGbdSZe5z zNYnMSMDo?!VpL-Ea4gQ_OPYdv(s7XGMz7QjVX=h+XC_XN6W@N`6D|GZ08P28YI z!N2;y#7f^1<{;xcE>fE-S~pQNm8;RyH|@zxe^W~w$x@DYnsHEdXX+gJ7U=d}m8@wuRuS9OF&L!ocgM^o)6u&%H-bK7!<+;tY ze@684)kFbBFX@&d3aDx53u_Zo=30;6n`N6HgpLPG(o zJ!k2v)L(6Pzt|R$1@WL^3h#4>uVf$PL>&yFZDBgDa*+7K!+bB>bmTHMaowTjOZ^nC z9;>Sfjfy+@77VL$+=hMH3diYQjh28cG@ zH>ydqAWitVC*7DTC2=P71C5d}EvuKu$V2kA$)#*Bh?V!%GwBYahL$q--LArtyTylm zua39HBn6PCB#PkrySU|j}!n1bs&T1!m zzy;m7FWAuP!mRgWW-@$p+-H(Aa^}^b+-(QDrh0#&Q=ijB*om@lZaykZ^7fcWX!YCI zvrlbhiO!&xvPt(xqdj)6E?U5sOV|URKM6Uz+E%!(Fov;56pJY#8?&2MQ&P8`v$A3Q z>TKYTnU4@=c${&ky3gRMcSBtPqfiz$)ne9d?MONJ!%|PUBxXPr0S(s(u`txQWGO>H z5V2iwmoJsR4q0rN=;A8Rf9%*^H~786)LB|m{!DIC!t2`LW&YZ#quAq9oLZou-(%K3 zh`_edz|AMBkrx$jc^Bs-A9>m>t5gUowe?)OZJR%0o118VZ84k*qM9_oNG_apZU-#9U`CQyo?+}!PsAjlQGi8eZ`p9#Wkz2+F@#acT z=!xh4@O#n}bXN+HwMRUngZFxB;LM07y5#Nqn+|`c(XjcJAG~)a=mh1 z-F3Bk-ra?_^Y|_=Sam8!_*erD?g1WxkMp^<`bQ>+KvfESUUhopQrl`P=qN(Y9Lv3O z_8IK`DG$E00-aI&qybqj&qHApg3Ny2W5h}1j_+LJI!lVCFW4zi`?TvaKl{k#B@>pS zWksL49GI4vk`=D3Uf7?|La7NL0`(cn*P2d}rBmXa3p8psh) zI*n;0ypcpZ{xoZ0Vss6~=D}Devosm6Bg{NVGJeAZO}*G57&G!$CI~F36)!{P>4fq! zsyObWxcS@(vN?k|2{4e99fpR}8c8S=o)p*LU4sV7JX!N*R|YyenH#Ap#E>we=|I;l zEN6^_e{3*mxdZ z)%3@u<336`N;j{40RJYY7b`(>8U(?dfG}#t4Y*%e-+C9?@%Lhg4ryq`@SlXbuyYU< znYEX6o6u%&_aRF)=WFa3Kn1}Z9-p#l>|d*`@5luiFli=oqtyXQs| z`i~LxJ~DpG6`;sn_j*t>%TMRQ4)O9+|50Xv;}bto1b=?=TUbLZJh_y8p^le!TUXiy%2fv#lIXPH{CWcrz`jCP9^M)h6 z)Zl@3=m2q>((8M>z05*M*T&t?il);e7`B#LUkmH$NkeRq?F}*xGT5CzfyfMekc|zX zCaS>R;26b_Oc7L)lfd5BcTNlhrX>T43OajnFaKAjK=cUKo^pe=vjKyXte8&rh5?%_ z<>WGfG}2>PG$V`?t{{*Ut}TcNPXK_jsK2~^tG4OiGUy@7)*D-@LqMU&h;MwIARDE( zfzp(CbZTsXqbacDJG_XQhOF`VrA$RS)FB;bb%YHc0SG{xj*ijbL0+XX76zg;##wT) z%GoF9e5svS>3N~Oh5vmFaZDOyCpk*|E}CtxMim;aX63Fk}@UZiw~9evl{V45+zeC3ioA|HabqYPMPTB z`O6basGibQz9gx#eXa{1+|u)7*R09(@_Bal@DvliNIi=K(YeR6w9Xb>;=YG_p1ZW^kGf`- zf`aj<>r`Fin{myEP_@r0x2-j=nfM7E@?m51FWxblKSkcoMQKb;Ikc4tRvM@SoQV>B zO_J5qA=mGwtN_*E0gEUlh~8w*u3UHVX%FW#T1s#jG(6BHB-FVL3=C<;%ajO-FQyq; z$H*a6vCmbTRm7F+;~|Ve+TP(9?-dcZU_+(Z?>yp>%F<5~Z=REV`U|tp(Fg1)q^=nLkVW?sDy)Oj&?a_qB+Mxixi zZxk(>-+n>WSCY9;=cof|f+-4?p3T_es4WSUbleY`<*nshI%=rLy1a-5+nyt!4e1n3 zRnmwZ)I??=Y4`=ZlGQmCnrsPiS0M)86Q$?`H1d#9xRwipTj8;-2^&7*tflE9Bm{#l zv~}HKtYRb|WNpwt&@xLS9 zBw2dHm1Y#y`}pBQrNPX3{pMC32BcU`#V6MaxW?|82FOhv#+yj#?>Fs12$?XiRVuoQ z!tl^^lfeb>Ok{{{x~!z)1(4%{U{=}mbq%QgvSHrGLVdw%Fgy`PSR=`yKImPrK^7hD zySWE#*kYGU0{2@x$hOgaO*ysY9?_A^Oq>fkViaeqq9;QSG~Dl=4joD^2A!U61{mjY znm4ZNzvKoC=7VJs4QCo(J26qhu%YKjT<|O5^o8!V1^G=WU`09~-RvU1YtlvE-IdnE zp3_7pU-?x!a*#s`~D2OwyFR5G<=EHFDo= zP{*_MMi{aCy04l1y>6@Suv7K!nA~%^0N>$@uj}*i^0uGz_BcXxy!8MmhE zgy)5Zg}&ik*-bi5(`9t0KCu?)KrwnyL>8R~UNjFeJr*ZqA4A3jrH0r^l>_9ie0?M} zx~V3;07X0>FoA+l(44eRgjN5MLSmXGY&8cLLURf=_ND>uFH4_eWfup&&eTqP*|D2F zqw`wRLu(wmv|^HZuFHCQ%$_rk0+J<~rOi_+V?4+U&FzJYimSX+aFWncC8=j--s|o@ z&|Gh#v=a}B8W2T9!!=?o5RUF&lrh5bQ}5Z=&sg6Qc-xcA$&X!-@i}y#3n`IfN$(3& ztvv^~&kF%i@zi9b@M#vR1wdnp+DQ@bR%LkdOlFU9m{0tawst2vc+^xbp>Gi-U9r^G z_))sqn%?XSTBYG=l4c8_bKib5V`H}?*QKo!>J>kd6z=t-K)jLsv{|6``1|adr$fjR zaRXt)k<}tznR?rOeuu`??4=%Y8-d zMn^tFVW%zPnh%pgic(w(7?Ykr;g;-|swJjV2Y|`U422n$199BXmNuv)uW z-QX%6)XqeSA?(5WK+d0ZK&pl?!pB07Cn2jKNiYJNP?mZN;mw4R*VG>YFgd}2NyUr; z1h3N=ei)zI38R;?b63HJ1W_)(o_bY9%U+EuZA+Chz zoi>S>Y;c-1U??V5Yf>YnlGIS<0tL^KX=3$!7pop+4;eeZ+P8@VQ55uX%U_D}T!An% z6xp+f-DOaCElA03@_M(ae|-Yvt2sj%Hp=R#zus8UPO=Y2$mC46qr<1&wPQ0qergps z=v;(H@w9I=e%VTMfnQ$R0b_Ny1Y&m9&KiQ?p#U5reihh>VKc7pSBS1cUP5l?^^h;ubSDd@t8|L*?!qWDUi zzGyRo%S)#ttbC%@^ZT!fykfdF_N)SUvJ(I5TA&#Kd4B8-!Ab+cIuE8{@kuB?Xw&VY zt7Lu62xROIG9~L+DJ$!h7C#k}DNe=MkmR@PqaE()L1{zdu0Uq6#0D7sQ5RAOs&GOB zlI^h`mKDu<4VrFJ$R#uvkPrg8rKKmkdm-Wz#--y-b`0GBf3n`nzF&M@a3LedqL+H9 z1H0~!z@+FbFm9bUV6RA5S+3tFR&PbVQ?xwr&TNYBYoG({Es)b=fE!acM8oKDPt63E zOF%u~K=VUkc?Mb;EIb#oGGWw1oT6DWu%Dn$xd$421R zC2IJx296qZgvjJaKei~w0Y<0v@kW5F_@N}w`a;MYgn&1FX@Nt4EGFHTkrmk3mq(>G z;SlEMwO#p5bxYek$Qy0z?Vnc8wfIt5k*Q2-t5B&_lvmp3MV}BNPtggA0OKT{JhaKTM90U5XbV{T7fOtOJo` zl`aB*6M$*(txM4Do<-A5Bz=b1SX4Pg4j(6+9$pumzQjv;^K)bCe9e{OKuP)UxaDH0 z)@c&jbh*Vm;W(tG4eHYs9^-8R5S1QNC0lVCIw*ugm4;bs7L+R_u79{s&aT?yB(rW# zpBxJQ!W_%sj zNtMfuL~eq>tOAiOTa4CpXFL^ItuazJuy(VY~W-B{|To z5-i7^A6<4Qu+uvww7a?#Yei`u8)fpgsBmy)L&!_ED-=g(0$tdko<7c+2gduNVfEqO znFrg}ZJ?m3t*o|ALQWQ8?I3{{=@x%Wt}6v9u2XLrvY%6^?->o8&V&rhvjtrQe81Ig{;*DQ|*Q<~@zs@mB`7Rd3;XTPU-Bk8+Bu15jQ}<2^-X z%q+iysw~3)wn05wr3&22IR>XxMbEj1cx-Kt`|i{9Z$jF!QP8l#)S{VA5JuN!-k?k$ zxj$%@#X?0r6d7K>b>iZy*j}#m>PRKkAfHH{LI1O3uFH@aY5EzeZ~XNVee3g%TL9B} z{FQjC+y3MN{bGOry?^xW^LX@Kytnn|HHTOQJM$pr`^scf5S_2>Tgu>Td0B6t|6j!! zK8e8V?GH$3`;!Lc|34FFcKU|@$RW}?I$K-oJGlK*m#O}DzvMUf` zA|y&8Q>K(#AUN}pGu0gFL*yr#Jx>is1v-m2XV!ZqG4>N`_TCiwjAeWK#@Fd7D9JO-om zkaP8#iNu)S{~!@H&}MlFS71zf=~S&u#&Vwq1j z6e}qaKX%@yM(=Ur-bDSs@icA`)ddbwG%SspZ9(lJ<1`VBYc&hY#5PN@oio zQNmO!rtgv(h>;dZwgeNi(L0`~+mak9m5pZ9fs0k2%sZmXDe)TdU~Wl`K2kHa;l)+# z+KvoloK3p6_T19RZ1$X@ue%`IQy6;O=ZIbZGxXc|1KB zly+T}1vKMT=~&_!y%21pW_Q1BlArc$aAr{rYM($4Q=$d-xK(`BMO{22+Mwci3&Z(M zmr?$4GDvql*u3upqcm)O7`{Mh$ApYz_=kSjbRZ+)UUxR!EyRIlB7&@9?Wf5=ePO5X zVSUKHR=}IL(5`e3FwbP{YOnYWO$xI}+imdN)zV*5d`yNPc+e5ui!b_jJW=yWax3 zhb#@9G8>k{6O~D}7S>$66Y{o3Eynbx z%_o#AiFwW?2pZ_sp9}R0B{+Fm`~$rRO=_E0#(i5k2g^yR{|CbBUl$VA3L{XT%b%rDBSpjVW~-u$Eh4MaJTfo zUQXOIQlECY;P~ADEfZ*ON`-=iGZD7;*foU@IsR z7<+w_BY%iwnF4_MUOE6to?T5b0Y+d*O!_fc&068%=m|UGT>Pe z=k@Y8r22I)*s8qqe+m1sNdmfq=>ZwY`5s3!!Hr7wkw8&c+j^?-H0Dy%MEF~Fd|b}k z@*U^CV!MWfD0X;)8ywO}Ds?Pc*%=`3L5I&pj7$%-Vw z&H3C_X4zS9)ZR=OPQW`31XY{cLw7jsV!F+cAM9NWAXC9{Ui|&Uo59HOq=?>UKm8+q z1N@nW$JZ{j%;YL$w@y5zMmAA%da9v|kKh@p5#JLY=QaB-O=xJ+Dpe-!IF9JX2TwKy zwoC{Gn8bvLnIu#ok{=ovQiavw#Z-(yLm{Zi*8-gLJ`-WxCvUuv60pc_LzB&VYnJ@m zhtsUZdJtVIZ`Z`6Fn&HZ^db~+ywRvF*oA2fG}8f;ktz3ZR8QN%iGW118XEoFFX! zjwlLQ;gZ|;+{ESP^Z9)~zt?@7$Gv}?=kqnr`+d$m=e%F9*WGjSe)=t!oyHXGZc$?p z!zdn$8=%)o%Fas{%h$djq^P0KX^h$Qt-r8c+)+_%G6*J5A>k8_S_StCSe*TsmS7TY zYF+9s?%&BShxL4Vlu4ghgPx^0Zcres8@mgZ(Ro9CF;_Km;Xb>4Z&I~Nr>r#vpCN;t z_Ln_dyz_qM&TX>{SKP(3_{+fM!kClU2JVS;-i=yd_bWxug)P3I-@jUey4k9LQs~7d zHogcn9^82EL7XjVQ2VLh#{Cu)EhvJRmXE$B3`b--%@>mahj&nHLrBfGX4!DWku1t* zVWUL7nntaHUfMOny!XPbP4QhnpOI9Ow2C~ImQFXIZ7^{~jrn*Y%=T5jRsoS6ZjcK2 zTH1c(*V3uMcIZpi);ek7Obc%st4Tajp_@Fh%{Ka(ORTK&jiJ~Wlr^{#n+!kfD(>%Q zrdMyXffjhar6`Z@%7B}eFD3J%czD&+D5P%7fXxFF)l)r_W!JePoQhh8-1}Zz<+G-y zpDBNhEz)+))c{n6VM#!_Wu{_&mL#kB8%yKh72HvoT+Sb??ZeKSg#lGmvdYwx;#B!& z?;hXJ>wogqrQ+fk;uX!>JXzggZ#cM}#q69OZ#1>3Z#sV$Dpb1PswwlJAh$j?!YlsbUInIA^Nd;+ls%%h;)#@6 zb=#MyF#Bb%Tc}VuTS7NMQjNy1sON`xgg>#Be==~?@~y}TUOT5$pQKUnydoJAWr{z) z%REM9x@KHL!RxP_>X%uGmfP-+o7WlN?Y%VcedSe|k2`k}iO&p6k-w@)$eGSo-E)v{ z-;yc=K-M9XNyT|0C7c-vE2~veTG{uE5|_Ct@$dEM>6=s2J{C_49wc@XEHn0CwD+vO zZXbOipyElW?8jX{5w0sk9{U=vXx5aCAIfp(eainnmwC0>SGFLM{jF;?_f8tDZp>p#>P*MlJo}e);$>Ng{Nr{YA;6F~1Gjw%%wKOKf`weV933yHj31-sv^a zGv5BA9ts;4n10dXvjp2q@zJRVt_IaU7uc4*=yis=li?-Myl}*#`7|2)^X>B;+c&^X?MNlKRULpKGC3q*6zxJPWk;cL zkx6s799_{`^SrENw+1D1PPUTEQvM`t+yBvAI;F^ZS>&w&RtCHW-#%1dcpwJNmH5(q zmjeIY-Y9f*ajIRgh_up3*R;wEJQx(N@X~~+-)wYEZ*~SfC);4>A(P7W?rVJ0G3uL- zLm6Iaq<&4#$XuJ_r~4wyu_K!EgMs@zo{ z7x((2+}<`f$CbC1c|uH5A1i!ykKE5(?|e8+9BvWr&@Ev5DYik}U9`JyK>*^f5)`J? z>c%n{ImB*8yGYzV`!H{l*@DeP#a9Lm6^o2@K2`xD`*vgBW4Ru+P4FwOC5>Z5|Mpwh z;&yy{^q%#zi92g^YYTKJ&h6kidaZ6VZ91ra(%RF9%Z2jsxRmB*xA(H*J$+_rS0dPm z!*+vTj??Ro;YAzLQUVH54kuOIUN-@8CiZM z=rar-){jMI)f!|QHqLdoOZE+vGD9o=J8hr@r{J7Af0INEOo{`wpi;r_vTGI#{T`n_ z^^)r#>O~di%PUqXkbUXD7Gs9`n~AQ%ik{y$nvrf$(!J_b{*!>PQ>5q8ewpqMoF&XY zl&gkq9d~?}1-`63RwB9{W>2%8_cqJxWtKSf>qwW4u~qTR!_qxwml|Xwg{HhxEQN8;_ZQXqUJW=JI}ZZAS%tz?~2D z5u1v{IG5L^HXxPT#t3m#wfwpI#>_SR-2?i1(S1UWu4}-PUoTodGNRa+Xa%N}W)G4$ zm?9NfaBE^ipBKehtY~vJ;&%b$mxz59KN+2ks;$zQ0UI9v&sHw8)(+bAqSPM9U!ECHH?MqM}$hcEMF z=KnPq(GmUV(v%3z_|48U9P-ITD}vfvdejmbJR^Sic^f+8$z^6;*%^(mf=cyj?ThIR zg8fbC2O^BQ@nj{kCMjaim~v9S#cL(V@(g{bSK|=Ke)Yrls$P(N9xu!`K}R6kZKVq$ zbt(V4(OVV%?|nAgIi(e8m6sZ*B?#WsseiKZpD67&sIl+M;$sVDWhChrifq58@L{wz z8LujCYH#=+#&n}_W?{dJK#7P`XFF50)(ugM%;_~qtgbYDiV5BWD&g}h&ncw6)o)CQ zm%eC1IoOf3d zBoF)?qbiYB6H*z`8nKL>9Cm-+NgzW^X@aw>+=OMwBl@{MW6Idb>KLVd@UUMR4+iZb z6?z>G)6`-}ifrWTn4eX&jX|YXIq0TmKdRm9eIhBU!uyEigBX7$@sEy+-%tmbH>hf? zl!g5lo_N(TQJ01olw6>c@thG4t_g)IaXq)pFA{ys`SMeLqinrUng!HN1QRuu_ndSl zM{U0yj)?Dy1m4y@Y9owZKnrWnc5ei=ZTk^+aXTBRqA8O6j@+0Cdi~^jx&U2QggLXV z0S8;?)J;!eru~&dGA9Mt*)^`Of1i3H+7dSH51ZAo8@6k94k9rAL8hwF@p*-+Ijb6qE^$LfU7DD$L) zRZP!Gg}x|L4UG{AW$nN?mmI`EcR8F{RP2n*JEe{<;UuqplkMsreRo#9_onDu5+(JN zBn=^se@4e{+WlfLqwmwTL0m5Kl3;!}e8J$6q3ckz1yf>-*|ESVogR1gRT&g;495=N zq$VC+ckd4FS@9-p^wyc!?w=?mzm+mEg|*o8j6`*?V%EY8?6_Swf}19CI#?CkX}b`YG-UgF)xh7WP*+obUoHu_if!tt21ak`>p#2N)j#bV80p2m298UC}eNidBOVpe6_ zlnOEZ(S%mN9~9)>p~~hvblpy4gtYK|b5_U?ySCsKYT+^GA)`@qN89*m#n|F*t1$T{ zkG>RaE73u1{_Qu0d@1EC@EtPNp08=@l5(gtQ>-&1pADXxYYThJZlvE2Tr>XCznM!# zuC@w`Hp?ci^uOaDM#piVI9G;kLr9^JJ|X-2J=!^DV$O7(q{#{DgsbJ{96vZ)|8g*m zsz!ZBZ03<{<=j{d5yk6gt57bU(i%kDBYr_`!#V1{uGJ0ENEy!JfA)kS{T2IwnW+}E zH&IvOUQKC&eU@3`Qy&f@0&3QjwgT*TLtX?SvHk0Q!MnOG~2CP}e#s--NDCq zU(4!40#H||fE_4+4W7_?DB!?Lz|SL?s+5|doUE2Mm#W-x2DoCbwIHKeVCi`QuwMKm zg9pH1>geF=W(*W*@G!P>|J~9DnIZXdUz7`wQ2QL%;A_Ya1soUwJOMkcwGz;D9hoFx zt!QEx*!?b0#{np|eAdpAmh5LO+u`Iz5Rjhr19H8vHzntJ0}}MA(LDt{nl~`P&@`WaFQe*Xo+;t zYo62HnhWlRi?taLN1$^6G6}j>_m4`z3K+1#`^_H;IB*>Z$f=f`62}YMs;tuhlm>_e zydK7(fCFcUPs?{cg@R#sUBC_qdK%|J!vh4x1~5Q=g_08}v+?Ub6xoS&h4ETDAPTX7 zGT=xa2{c`nc0#b z0d7YC8@vg1A~@oK`;oKoQEo>S0&GdQdoG!prhQ9ut((Lr=aCcwjjLH(x*zex_hfT9A(ql9i~CxY1< z1d_asf)p4JOSD6WevcANBh98Q$mE?NBoc!9JsOY_m&;!Jbg?e zcQHorb}#)a-h-aT$bm#|I*OomU;Edzr(2BNVG%+7aTD#-KLvjdIONuX2oA0-v}2W? zPCc6a#aYcqA*TzCX^{CNL zRLVj|A{W3yAd3LxspYVcDUhq8ASlKe&`+(Ag3N$im;}L)%7_j+Xsdb3bb;@7c!~rr zoxcS>k?pwAeersIJ;dIP1QjDZPfyaIe0fmNl(6~!*f=h6BO>hey2ol^q*hgmOy*HD8 zUe=rSpI-NN^;&1|-F0u(samy_<)EMuAt2!4AsA{UbReDr^2hBd5S}gt33U-h8AZvL zP!P(0NvsAz9uhny;6Ghhe@;{oQIwICP*Z18kUUcu9+H=1WST&cW274$9;;Dho@QI! zT-${F6IrsJz19={->T40ZBqxkzX<-EgY-v^rGtZ|t@$rgpZzt})Yie(?3V!CzXP~9 zIM_P>5=QyoVP@uz=Jsah_NG?mzviI-A2}?YjLrV0+feRl=F3kn&mZ>bz5O#Pc`JJx zV@q=}pt-4yxs$T3tEH8_golf{y|a~rJ(IPuo3XFDp+h<|I%rGn-D!e4t-7ymgRFL% zJy4}cw7Dc2m9V$GD%CE|LapO=G{`ol`Wwu%mHUU~)YaiYwv-a5O3(HxN6*)u0K>#j zFx@_a7dz9~!=3??Mu>^>DuK(S^0GXgMu{J+V)~p&{!`?PkN&)(g;dx^tG;kC3qqg_vN6Bk%XsdH0n`l^ zJzp@f<}tT66Af5{8%(Ct&91W)Qp&6|zDOjGqjW5ww-g1SWm)T*Rpo=DjBjCQDbE8x z_;TYU?!Ton`V#eR z!OqqN-A$OX#;)%Bpc6HQSYGq)iR&hd;!c|}igMXS#b`Q2svRd$E4+-iGxmW4gj z8@5H(j%vMY=TGrQ0X1IXS30pCa>(}5VR4%DDsuYkA$B~ek1ZV4IDE@Sr=o7MDw}%5 zR}X5QHR1MoImK_ZHHs#%gA!U7nA zqY6Jd1a;hI#iL>3b<3y6Cz>1?`v|m$=$1=Fet0#^8Xgi9yir7`IbMXwcrDO9&8%1{ z$QnQb%$P>(pXWdp6(%C>*`EbS+p0)h9ja8zMW7 z_hDkGg_KBVQvzIcL{$ooJ#}z4U%XwyO|L9%L0M9o-P>_e8Jb3m^u=e{vzHn zOtv%6jIhnDJ!3L&JkH1Ta#S)YH_lAabL}k14cQN__1`?oyG(DsiR$rGihR7i+=lXJ9(4jJfQI*G?{y+7yc}WF zGL9mpRpDkyDnP+Pb&8ZvmEGLz0@e9hZZ)1r4mta(YLLvR*!L1fvFm_-#PZcNU%yVi za~m}f^Cj(NvtPuKh!tG0#3wR_-hjidBeHL(K>^B^O;~!t@O)n#? zE?PYx_E5|gZKo=VI}#>X4HK#6IS@IDa1^By`@rkQXFpyT7UU{vi{##|4HZi#;>5b4joX0j7Gg|3DJ>tGOl5ue|I$dPFnC<=+tr)k%lrIujk5r+SsRW zuC1U>xhKZbR%ba^VNZ-rLrYYR8jnk{_gx(Gt~eQyZqCdpeje>egJ#iE34dX=l$Ms` zEc#mCvz!ZObLMI4fFh2~rS~{)#aa<;ck@G$UK=|?r{r(9)6tRosDk3AC~I$U6Nn!U z0D2JWh{sr@E5m6n7Fo!LuBWtfl+TZ5?W8r)6ngAfM%&5Q~JaTP&r zVsdBruQ!uUBoY=%3jt&%@Vs2CX}C;w$~PQQ!WmA%D&nnK)SzRh!Ew?S7!7Gp91OMQ z_>}Lhh^9nKGi{-}pKAqL#jWUwBStlKTC$sRJ{o2@xXfpY2y}L3hX6WRGvSYv+V7GTxLtI@VwzAt~j-_M$tOgiOekO=s%+O zHS%3P;vv&n-{&InV$u*YRxCRC^w0FPlt``jZ*T-KudAGsM!1UXOr^$k(cklb z^}Er+sjC^DIX%CPgSHbFe~C5-W^8jvL*>)I-*&qKQdReFVahJd`&aH2=|gjGyE|Tn z>Pxsnm8^ZNw8-ITc>5(_Ww0_y0p>!_d~*dtbujF!f<|IyWYOvXn)JBBeJ(}Fmzl6v z-j~kvt|2||mmK0phmlKq*Vl2_&u6JJ4|uY6Y=u$z+d(S|$}IW=GqoKORoRmr<2ueCp#EAsBu4 zSKFpSWIrdY*Ej4esFDvkm3&U}VQfkrJr^UxXaT>KtA?ia+&cjs@xVbK_@R|2T)x?f zqFJEw3p{%R819<&-nVg6O<0tz_{`z`uz$mLX{u7j+V!PfAj}wxrZq8aFi~1NzA)G1 zLg&MJ9L@1S#PGbK_qx2!3SPy0UXpKC

    {sAc;I-cY8xsDj~hQd(Y=`>^FSE5W_YtOniadS7ew19cY z2yth2NvG6ix)y8Vr_P3^3jJ!e&soNTRLd|Pfo3q!h7R~I0mVUvP$l>srV@SEB^b<_ zxNpz(sccd!zsX|{eUH+D?8;Z2No=*Zj<&>+$X?2T&|Bw8Co-(A8N&B=_3?D$ks=k! z(7!)fTgSfLx$X&FKP#=7l5;!p&(M3 z<5wVVAD-~aoi-@6yL$XZu_~n#EhZ_WA%_puTuCFg1}avSsyacjatR{3{4;rKuIg_b z0=pBz1VsA>fGh`ebZIt&Sh_wLO?E3iT#14;^#n-GZ(&$;1{(Y$z2G*1&blJ&0(6fx zMn=wb@=zgd>NsA(MccIJ=C5h3A+{g(vm^HPI{Qn2CD0_!?_~`t*VhTz;{x#%k0-o6 z&evFsfENT|wft@zhxaA1_>LFJ0G^RO>)Rn=AM}!syHZ^q^v+n1A9X0XqVs$GJPff( z=SMmKy$Ep0rj+{p&@@Wg(WN>}o~oq-kREm*TTq$D4Y~vY;7r){B71eAbgfl7RKu-z z|7rGk4f<3Mc^6VlyJtH(^$ZaeEEea~-3>c#{trFM0?4WWBOTr{SgPRkT8rv+e8wRz@vCUI80Hq=MNR&lVYQmZs~KhE;JVO)=l!GCB%F#8p@dpOTSDqa^aIpA1! zx}QY+mgNqpowItS`faE5V5S~xf^yO2jo$^l&qkcYD5{@#y!ow#4ahm)8pF}d=*@hd z5Ug4$D&V_UN%CNt@a5zgW~bFvA!|HDTEnG|P*ljEsG=uxtgdQ?{Uh zwVbPVl63}qh~KA^wp94zFF2*x_PDdyO5*H%FMas!WXL9)V8p}WOH$1NGHikD6zk#q z>QF`C&yBFa-4_$c$4QV~H2ff{GSS5c|N{_PLc;rxqU09B{0sDbP>4+ZDb5I3xmp7r% z;m{=e$(2|(P%Nk_V$^IYR(dAL0s8V*@25?-f`F2_P{u@9rM%<39ca1*REZGC0XP1K zfg{KkHb&6?J^j#aXLAM9b_VSjtjM4P8KqvLJ+7+yWzl51w>Wup$m|o>-J+^ zQta-wghk$>1YBzFEsstXxdKG|Cw3z!2qh6oCalrEVbkP;4;6M7v5`B^Jb<1&{8L~AD^4S$4PXZjH5*r9tJ5E!V@^KFzy4U@QH2>9<|4LgB|m}Y~a+7 zX6lVAA*UEVrU{%#`c<#nl%xicydX>cPRhzGblf-xHW@0Ji&?3=G190b$9JTB0mlExvyZ(@Ppi^o%&VR z5=2_`BBC;e>`%&rPuq$N*H}ws&l59+5vO8PXZxmqgq+n zxHt|kYmWK+q};^L2%M2fg69zA-BhQ$P<3mGcr(CP5r>Ic$qmSOwle)owK;j{`}`3$ zXEAZ8QZXS>Z8R|$(?r2;7G)bk!D3T>?`C8CJR}a2TwWPJ*sJ4-s3f9sgo!;Q`M)l!~cLxm~Apw5`_Wpw~Wg+SVOjE{HbI9^KMj*YF69q(}Xd*w$uMTTKJ zuSLOR@=ymkNzk^3VYVHnJf_BZ!5Y;1JE7+_{Ir~_bQv!W8C=>rrK=P(C8g~56Y#Xw znAqF7FLXWu3A^IKo41OmptYDfvTZVbLiC1MM+hg6ipuA#hB#1ZC;duhcDVgxLR<18 z-}v^*`^UI!L!<(&Upsz?yJ&9e$2s#CyyoxvcH`~1`eGl-`n}LW+O|>^mA4~}!-l^~ zV4ITtrwmfg_PEOkS?00NV(Kzsq1GBb z;g!`atd*M`J=y7z9oSO&*q7xAO2I6|Kew`(M8ffilS>^~@nyM(RO&4hu3ki9XiJ!z4lpIN_xHc0eF z2LbN5WgnLJE`-yaRNmIUo|BHx?tAhQ@(C>oS!KV){~BX$% z17{H>;i&SS6;7-!R!j3f1$hseM)RC9$9+7Mb00AzynreF`I5|*{A36d=kz^L>7mEy zM(iVfdycfpZ5n(uIamRB8!pV}4G}Tv9^`+IkuMTn{E=Uj%imQO>G0&M+{jUrN*qNe z^scz&VrjRKP}^)DPlC;r1sR%3twRfDJU12QHuwA2j-&XMO*)U-wpD!t2lH!&9-rZT z*0hZ6ajQdVuDe;5F8a}<9x9(jc6RPM3cXa#F>yo07xcB{;<>b-Y=n$qaU7-&SgzV0 zisI$B7BqPzZRFK*DDJKQogQ@St$IK%IScIk#805t_#9lrc-AK zne{0!cE_0#>a{;L4 zq}TY$!nF~m<5-rit?b-;-ekn-&1UriCm*~+{S^3KNfhA#7CR4_I$O7;f!)1_%=qnr zK3t{HN(~#p^LZ?*@=P>O&|x64NoH?|M13F9Yu7$!sw$RvyY+#O81!&BIia2D-rMH7 zbeEQoG9oK9T?i8}aO&4qz7!P${R1`wa2Ud9o#SL7A6*N!_pynlO^_)>9c}?z7Kz&@ z?Y544(EN7chKU5Rz};9awID7eLX}iF@Mi?C+WlKgnKpAHY7PUBU}ko=XWbmxRXlbr zja;iO^FW_?^txLp_}61RxbViR+T_RmNzxQr>AHnfB6%8+U=IUB1`5bIcf1tJ-8Pr* zJuG6k*Nc#(ANI@o&x&*S&|a_dNxfv-b{+u)!M}Hw&KtotYPQZny7H&Tnd|I~33=ZN zS|-0VigFb`X8TOqGq!JLq&DZoGI`xO#+8SW{)+WhS1|y>HMm!=WCsP7f6Im8WHeQ` z)Ha$mAV1n-c)loWcWo-6E7FkAiAqoq%yAII!HJ^)AmXZmyOLDeu7^!>vfzWeP64*> zkVW8lA;%(P$g``Q8mK1X&o;olQxt#k{*AlCB@1qrEUTLqu7Z2bmn6vJ)9-)~#;?zK z9%f;aH8I`x44amN2iPkP`9|zY`Hu39Yl&T=v!SG`O2}&FgVsV!UY^FjVo;X6+^!I6 zq4KCILb5zEDrw>+xY7ESSI;J(U2)mmlkt2>SMTb2X+2ItcaNWh9)Vc#KCD#A24u;U~GhFS#u<9vvM znb01q5p1*EXF>VWGWXMm__Em}Fv|B$e={Re)}`4O1RXT1&{OrC$d&N>jv}jH_5dvg zsBt<+b-nrnQhxrPuT zIb7FIpSAf=>ZOsjuo8XiD5Mn;6-&Jn0I!RsOwjROVyi^8Sh6V40d&>!xLngxTZr;N zs)i zbLHw78o=zm$e}|!PbH+zOHj!3RVZZk1E<9g6DVv~z*WK*<%0<6mj2f+Ez>Rtj44+K zVkC3(s##NkRbdry==Pvuxr4Tf8OS z*~AP4f)Ic>p>L_JECZp2#m87)_Dd3=AOo^w&p3{PCiqc@k%Nh%mcVwW9Q9b~Q_ylS z&E@VI(f1bEckEi{C2Mh|I_iTBS)NXL;XcL>f^AHk;H{H}vGtYV6IRJ@_QsoFlno6P zyYHbH?`z7GdSpj)AHqLmitM4#`=ByZ5h+HZT@ zuecZvJrdE*=_~HmjjKCT?Xc=n@iYwAxeQF)JSld{_%nIzNb+JcR2ELHDU}@MNUh15 z!g@T0dZ1fJa|f*nZ8)x83n%eN7qGde4|B^+)QM@xZ!{1fuK*mT3M7EaZw#FhkVMi7 z1!O$%=cE%4k%Xa1Uuy1(!Sl^!K)$LWK~iqkZUF{+2Xp|+AHclS3=y2VG@@}k0E{@k zOpUU0-B}TfIqztrV>^F1vk>F_UVk~DbOJfM1Fk#+nxOx_Om?>5P#UUzXJZSYk!X)z`m#EpMbxcx4(k_FmHd4AMnek=Kll# z-OBwH3FW^yetXW0fd5MJ7i0HVj6aOs-{Z&Mdi_5#{$ca}O#HLW`!DKz|JHv-{O1$A zzc+nVY3{^--+N&j|$__N~AhR1&tv*7-b;@{XGKWqJb82TTrqo?uw kUk1`&#=zh7?%zkF%5pGIzB~j3^3!MG$-;>u`tj@k05T%jXaE2J literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar b/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..95ddba84924a236cc7f7341e11adb77f7458756e GIT binary patch literal 13071 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 literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties b/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties new file mode 100644 index 0000000000..9248ace26a --- /dev/null +++ b/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties @@ -0,0 +1 @@ +implementation-class=com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties b/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties new file mode 100644 index 0000000000..b3489d209b --- /dev/null +++ b/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties @@ -0,0 +1 @@ +implementation-classpath=/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/java/main\:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/groovy/main\:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/resources/main\:/Users/lawrenceqiu/.m2/repository/com/google/cloud/tools/dependencies/1.5.14-SNAPSHOT/dependencies-1.5.14-SNAPSHOT.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-compat/3.6.3/2a8242398efbfd533ffe36147864c34a326666da/maven-compat-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-core/3.6.3/eca800aa73e750ec9a880eb224f0bb68f5b7873b/maven-core-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/4.2.1/41e5ab52ec65e60b6c0ced947becf7ba96402645/guice-4.2.1-no_aop.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/30.1.1-jre/87e0fd1df874ea3cbe577702fe6f17068b790fd8/guava-30.1.1-jre.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-resolver-provider/3.6.3/115240b65c1d0e9745cb2012b977afc3d1795f94/maven-resolver-provider-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-http/1.7.1/4cda5dfeeeafaa0b80cc75cad51c311af4b04e0c/maven-resolver-transport-http-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-file/1.7.1/d00b990b9686a2a9364c7712d6d629f151b85d60/maven-resolver-transport-file-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-connector-basic/1.7.1/a0714a12c07469dbf5236dd7ed81e0b0407bec0c/maven-resolver-connector-basic-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-impl/1.4.1/1658cfa27978c5949c3a92086514a22ca85394e4/maven-resolver-impl-1.4.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-spi/1.7.1/f6a48723bf7729925bdc1f354bb22f453fe2f754/maven-resolver-spi-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-util/1.7.1/931ea5585c5d19feeef98948994ab8eb80cdb81a/maven-resolver-util-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-api/1.7.1/c28ce68ba2b71272be80f40ecc79d81c75aa8d40/maven-resolver-api-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.bcel/bcel/6.6.1/8f9809672f3eed6627a53578ef00bff5f48a2a27/bcel-6.6.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.relaxng/jing/20181222/d847e7f2685866a0a3783508669a881313a959ab/jing-20181222.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/isorelax/isorelax/20030108/b21859c352bd959ea22d06b2fe8c93b2e24531b9/isorelax-20030108.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-cli/commons-cli/1.4/c51c00206bb913cd8612b24abd9fa98ae89719b1/commons-cli-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.8.0/6b83e4a33220272c3a08991498ba9dc09519f190/checker-qual-3.8.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.5.1/562d366678b89ce5d6b6b82c1a073880341e3fba/error_prone_annotations-2.5.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-plugin-api/3.6.3/63fe5967b9c4c1b6fa6004be76e1c939e8bd1d6/maven-plugin-api-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model-builder/3.6.3/4ef1d56f53d3e0a9003b7cc82c89af9878321e82/maven-model-builder-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.6.3/f8ff8032903882376e8d000c51e3e16d20fc7df7/maven-artifact-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.12.0/c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e/commons-lang3-3.12.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model/3.6.3/61c7848dce2fbf7f7ab0fdc8e8a7cc9da5dd7827/maven-model-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings-builder/3.6.3/756d46810b8cc7b2b98585ccc787854cdfde7fd9/maven-settings-builder-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings/3.6.3/bbf4e06dcdb0bb33d1546c080df5c8d92b535d30/maven-settings-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-builder-support/3.6.3/e9a37af390009a525d8faa6b18bd682123f85f9e/maven-builder-support-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-repository-metadata/3.6.3/14d28071c85e76b656c46c465db91d394d6f48f0/maven-repository-metadata-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.shared/maven-shared-utils/3.2.1/8dd4dfb1d2d8b6969f6462790f82670bcd35ce2/maven-shared-utils-3.2.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.plexus/0.3.4/f1335a3b7bc3fd23f67da88bd60cd5d4c3304ef3/org.eclipse.sisu.plexus-0.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.inject/0.3.4/fc3be144183f54dc6f5c55e34462c1c2d89d7d96/org.eclipse.sisu.inject-0.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.enterprise/cdi-api/1.0/44c453f60909dfc223552ace63e05c694215156b/cdi-api-1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.inject/javax.inject/1/6975da39a7040257bd51d21a231b76c915872d38/javax.inject-1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.wagon/wagon-provider-api/3.3.4/7a99fdaa534aa8c01f01a447fe1c7af5cfc7b0d5/wagon-provider-api-3.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-sec-dispatcher/1.4/43fde524e9b94c883727a9fddb8669181b890ea7/plexus-sec-dispatcher-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.2.1/13b015768e0d04849d2794e4c47eb02d01a0de32/plexus-utils-3.2.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-classworlds/2.6.0/8587e80fcb38e70b70fae8d5914b6376bfad6259/plexus-classworlds-2.6.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-component-annotations/2.1.0/2f2147a6cc6a119a1b51a96f31d45c557f6244b9/plexus-component-annotations-2.1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-interpolation/1.25/3b37b3335e6a97e11e690bbdc22ade1a5deb74d6/plexus-interpolation-1.25.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.30/b5a4b6d16ab13e34a88fae84c35cd5d68cac922c/slf4j-api-1.7.30.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.14/9dd1a631c082d92ecd4bd8fd4cf55026c720a8c1/httpcore-4.4.14.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.11/3acb4705652e16236558f0f4f2192cc33c3bd189/commons-codec-1.11.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/net.sf.saxon/Saxon-HE/9.6.0-4/5f94b2ac10eab043e1ad90d05f5bc34727bd94c6/Saxon-HE-9.6.0-4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.9.1/7bc7e49ddfe4fb5f193ed37ecc96c12292c8ceb6/xercesImpl-2.9.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xml-apis/xml-apis/1.3.04/90b215f48fe42776c8c7f6e3509ec54e84fd65ef/xml-apis-1.3.04.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/aopalliance/aopalliance/1.0/235ba8b489512805ac13a8f9ea77a1ca5ebe3e8/aopalliance-1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-cipher/1.4/50ade46f23bb38cd984b4ec560c46223432aac38/plexus-cipher-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.annotation/jsr250-api/1.0/5025422767732a1ab45d93abfea846513d742dcf/jsr250-api-1.0.jar diff --git a/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml b/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml new file mode 100644 index 0000000000..9e350ba029 --- /dev/null +++ b/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + com.google.cloud.tools.linkagechecker + com.google.cloud.tools.linkagechecker.gradle.plugin + 1.5.14-SNAPSHOT + pom + Linkage Checker + Tool to verify the compatibility of the class paths of Gradle projects + + + com.google.cloud.tools + linkage-checker-gradle-plugin + 1.5.14-SNAPSHOT + + + diff --git a/gradle-plugin/build/publications/pluginMaven/module.json b/gradle-plugin/build/publications/pluginMaven/module.json new file mode 100644 index 0000000000..5f0f2fe50b --- /dev/null +++ b/gradle-plugin/build/publications/pluginMaven/module.json @@ -0,0 +1,84 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "com.google.cloud.tools", + "module": "linkage-checker-gradle-plugin", + "version": "1.5.14-SNAPSHOT", + "attributes": { + "org.gradle.status": "integration" + } + }, + "createdBy": { + "gradle": { + "version": "6.8.3", + "buildId": "js6ggcowlbaebiiubwhk7n6pw4" + } + }, + "variants": [ + { + "name": "apiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.jvm.version": 8, + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api" + }, + "files": [ + { + "name": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", + "url": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", + "size": 13071, + "sha512": "91515003e335b3fb9cc6394551a1984cb0b4b1d685a860411d1cefeae60c7b34666dd2bfbd5157d61ce3f418e899b8f9e8a4f573b489b6060c87ba42dd602f32", + "sha256": "94e620b3e7759253747a67a7dcb9850837f4f9f687fcb4dd3c8d7e1465437e73", + "sha1": "e6c81b398debf7429fa8f21e6fb830509f4c74bf", + "md5": "eeffc520dd849ef52395bc5d7b50284a" + } + ] + }, + { + "name": "runtimeElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.jvm.version": 8, + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "com.google.cloud.tools", + "module": "dependencies", + "version": { + "requires": "1.5.14-SNAPSHOT" + } + }, + { + "group": "com.google.guava", + "module": "guava", + "version": { + "requires": "30.1-jre" + } + }, + { + "group": "org.apache.maven.resolver", + "module": "maven-resolver-api", + "version": { + "requires": "1.7.1" + } + } + ], + "files": [ + { + "name": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", + "url": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", + "size": 13071, + "sha512": "91515003e335b3fb9cc6394551a1984cb0b4b1d685a860411d1cefeae60c7b34666dd2bfbd5157d61ce3f418e899b8f9e8a4f573b489b6060c87ba42dd602f32", + "sha256": "94e620b3e7759253747a67a7dcb9850837f4f9f687fcb4dd3c8d7e1465437e73", + "sha1": "e6c81b398debf7429fa8f21e6fb830509f4c74bf", + "md5": "eeffc520dd849ef52395bc5d7b50284a" + } + ] + } + ] +} diff --git a/gradle-plugin/build/publications/pluginMaven/pom-default.xml b/gradle-plugin/build/publications/pluginMaven/pom-default.xml new file mode 100644 index 0000000000..0fe61cf037 --- /dev/null +++ b/gradle-plugin/build/publications/pluginMaven/pom-default.xml @@ -0,0 +1,33 @@ + + + + + + + + 4.0.0 + com.google.cloud.tools + linkage-checker-gradle-plugin + 1.5.14-SNAPSHOT + + + com.google.cloud.tools + dependencies + 1.5.14-SNAPSHOT + runtime + + + com.google.guava + guava + 30.1-jre + runtime + + + org.apache.maven.resolver + maven-resolver-api + 1.7.1 + runtime + + + diff --git a/gradle-plugin/build/reports/plugin-development/validation-report.txt b/gradle-plugin/build/reports/plugin-development/validation-report.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html new file mode 100644 index 0000000000..64076d2e34 --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html @@ -0,0 +1,121 @@ + + + + + +Test results - Class com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest + + + + + +
    +

    Class com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest

    +
    +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    6
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    8.265s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Tests

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TestDurationResult
    can handle artifacts with classifiers 1.002spassed
    can handle artifacts with classifiers with transitive dependencies1.163spassed
    can handle artifacts with pom packaging0.551spassed
    can invalidate incompatible dependencies in a project1.593spassed
    can suppress duplicate outputs on circular dependencies3.632spassed
    can validate a project with no dependency conflicts0.324spassed
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html new file mode 100644 index 0000000000..62722b81fb --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html @@ -0,0 +1,106 @@ + + + + + +Test results - Class com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest + + + + + +
    +

    Class com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest

    + +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    3
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    8.949s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Tests

    + + + + + + + + + + + + + + + + + + + + + + + +
    TestDurationResult
    can pass the build by suppressing all linkage errors1.175spassed
    can suppress linkage errors listed in exclusion files (absolute path)2.029spassed
    can suppress linkage errors listed in exclusion files (relative path)5.745spassed
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css b/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css new file mode 100644 index 0000000000..4afa73e3dd --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css @@ -0,0 +1,179 @@ + +body { + margin: 0; + padding: 0; + font-family: sans-serif; + font-size: 12pt; +} + +body, a, a:visited { + color: #303030; +} + +#content { + padding-left: 50px; + padding-right: 50px; + padding-top: 30px; + padding-bottom: 30px; +} + +#content h1 { + font-size: 160%; + margin-bottom: 10px; +} + +#footer { + margin-top: 100px; + font-size: 80%; + white-space: nowrap; +} + +#footer, #footer a { + color: #a0a0a0; +} + +#line-wrapping-toggle { + vertical-align: middle; +} + +#label-for-line-wrapping-toggle { + vertical-align: middle; +} + +ul { + margin-left: 0; +} + +h1, h2, h3 { + white-space: nowrap; +} + +h2 { + font-size: 120%; +} + +ul.tabLinks { + padding-left: 0; + padding-top: 10px; + padding-bottom: 10px; + overflow: auto; + min-width: 800px; + width: auto !important; + width: 800px; +} + +ul.tabLinks li { + float: left; + height: 100%; + list-style: none; + padding-left: 10px; + padding-right: 10px; + padding-top: 5px; + padding-bottom: 5px; + margin-bottom: 0; + -moz-border-radius: 7px; + border-radius: 7px; + margin-right: 25px; + border: solid 1px #d4d4d4; + background-color: #f0f0f0; +} + +ul.tabLinks li:hover { + background-color: #fafafa; +} + +ul.tabLinks li.selected { + background-color: #c5f0f5; + border-color: #c5f0f5; +} + +ul.tabLinks a { + font-size: 120%; + display: block; + outline: none; + text-decoration: none; + margin: 0; + padding: 0; +} + +ul.tabLinks li h2 { + margin: 0; + padding: 0; +} + +div.tab { +} + +div.selected { + display: block; +} + +div.deselected { + display: none; +} + +div.tab table { + min-width: 350px; + width: auto !important; + width: 350px; + border-collapse: collapse; +} + +div.tab th, div.tab table { + border-bottom: solid #d0d0d0 1px; +} + +div.tab th { + text-align: left; + white-space: nowrap; + padding-left: 6em; +} + +div.tab th:first-child { + padding-left: 0; +} + +div.tab td { + white-space: nowrap; + padding-left: 6em; + padding-top: 5px; + padding-bottom: 5px; +} + +div.tab td:first-child { + padding-left: 0; +} + +div.tab td.numeric, div.tab th.numeric { + text-align: right; +} + +span.code { + display: inline-block; + margin-top: 0em; + margin-bottom: 1em; +} + +span.code pre { + font-size: 11pt; + padding-top: 10px; + padding-bottom: 10px; + padding-left: 10px; + padding-right: 10px; + margin: 0; + background-color: #f7f7f7; + border: solid 1px #d0d0d0; + min-width: 700px; + width: auto !important; + width: 700px; +} + +span.wrapped pre { + word-wrap: break-word; + white-space: pre-wrap; + word-break: break-all; +} + +label.hidden { + display: none; +} \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/functionalTest/css/style.css b/gradle-plugin/build/reports/tests/functionalTest/css/style.css new file mode 100644 index 0000000000..3dc4913e7a --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/css/style.css @@ -0,0 +1,84 @@ + +#summary { + margin-top: 30px; + margin-bottom: 40px; +} + +#summary table { + border-collapse: collapse; +} + +#summary td { + vertical-align: top; +} + +.breadcrumbs, .breadcrumbs a { + color: #606060; +} + +.infoBox { + width: 110px; + padding-top: 15px; + padding-bottom: 15px; + text-align: center; +} + +.infoBox p { + margin: 0; +} + +.counter, .percent { + font-size: 120%; + font-weight: bold; + margin-bottom: 8px; +} + +#duration { + width: 125px; +} + +#successRate, .summaryGroup { + border: solid 2px #d0d0d0; + -moz-border-radius: 10px; + border-radius: 10px; +} + +#successRate { + width: 140px; + margin-left: 35px; +} + +#successRate .percent { + font-size: 180%; +} + +.success, .success a { + color: #008000; +} + +div.success, #successRate.success { + background-color: #bbd9bb; + border-color: #008000; +} + +.failures, .failures a { + color: #b60808; +} + +.skipped, .skipped a { + color: #c09853; +} + +div.failures, #successRate.failures { + background-color: #ecdada; + border-color: #b60808; +} + +ul.linkList { + padding-left: 0; +} + +ul.linkList li { + list-style: none; + margin-bottom: 5px; +} diff --git a/gradle-plugin/build/reports/tests/functionalTest/index.html b/gradle-plugin/build/reports/tests/functionalTest/index.html new file mode 100644 index 0000000000..349fd3751f --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/index.html @@ -0,0 +1,143 @@ + + + + + +Test results - Test Summary + + + + + +
    +

    Test Summary

    +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    9
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    17.214s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Packages

    + + + + + + + + + + + + + + + + + + + + + +
    PackageTestsFailuresIgnoredDurationSuccess rate
    +com.google.cloud.tools.dependencies.gradle +90017.214s100%
    +
    +
    +

    Classes

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ClassTestsFailuresIgnoredDurationSuccess rate
    +com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest +6008.265s100%
    +com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest +3008.949s100%
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/functionalTest/js/report.js b/gradle-plugin/build/reports/tests/functionalTest/js/report.js new file mode 100644 index 0000000000..83bab4a19f --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/js/report.js @@ -0,0 +1,194 @@ +(function (window, document) { + "use strict"; + + var tabs = {}; + + function changeElementClass(element, classValue) { + if (element.getAttribute("className")) { + element.setAttribute("className", classValue); + } else { + element.setAttribute("class", classValue); + } + } + + function getClassAttribute(element) { + if (element.getAttribute("className")) { + return element.getAttribute("className"); + } else { + return element.getAttribute("class"); + } + } + + function addClass(element, classValue) { + changeElementClass(element, getClassAttribute(element) + " " + classValue); + } + + function removeClass(element, classValue) { + changeElementClass(element, getClassAttribute(element).replace(classValue, "")); + } + + function initTabs() { + var container = document.getElementById("tabs"); + + tabs.tabs = findTabs(container); + tabs.titles = findTitles(tabs.tabs); + tabs.headers = findHeaders(container); + tabs.select = select; + tabs.deselectAll = deselectAll; + tabs.select(0); + + return true; + } + + function getCheckBox() { + return document.getElementById("line-wrapping-toggle"); + } + + function getLabelForCheckBox() { + return document.getElementById("label-for-line-wrapping-toggle"); + } + + function findCodeBlocks() { + var spans = document.getElementById("tabs").getElementsByTagName("span"); + var codeBlocks = []; + for (var i = 0; i < spans.length; ++i) { + if (spans[i].className.indexOf("code") >= 0) { + codeBlocks.push(spans[i]); + } + } + return codeBlocks; + } + + function forAllCodeBlocks(operation) { + var codeBlocks = findCodeBlocks(); + + for (var i = 0; i < codeBlocks.length; ++i) { + operation(codeBlocks[i], "wrapped"); + } + } + + function toggleLineWrapping() { + var checkBox = getCheckBox(); + + if (checkBox.checked) { + forAllCodeBlocks(addClass); + } else { + forAllCodeBlocks(removeClass); + } + } + + function initControls() { + if (findCodeBlocks().length > 0) { + var checkBox = getCheckBox(); + var label = getLabelForCheckBox(); + + checkBox.onclick = toggleLineWrapping; + checkBox.checked = false; + + removeClass(label, "hidden"); + } + } + + function switchTab() { + var id = this.id.substr(1); + + for (var i = 0; i < tabs.tabs.length; i++) { + if (tabs.tabs[i].id === id) { + tabs.select(i); + break; + } + } + + return false; + } + + function select(i) { + this.deselectAll(); + + changeElementClass(this.tabs[i], "tab selected"); + changeElementClass(this.headers[i], "selected"); + + while (this.headers[i].firstChild) { + this.headers[i].removeChild(this.headers[i].firstChild); + } + + var h2 = document.createElement("H2"); + + h2.appendChild(document.createTextNode(this.titles[i])); + this.headers[i].appendChild(h2); + } + + function deselectAll() { + for (var i = 0; i < this.tabs.length; i++) { + changeElementClass(this.tabs[i], "tab deselected"); + changeElementClass(this.headers[i], "deselected"); + + while (this.headers[i].firstChild) { + this.headers[i].removeChild(this.headers[i].firstChild); + } + + var a = document.createElement("A"); + + a.setAttribute("id", "ltab" + i); + a.setAttribute("href", "#tab" + i); + a.onclick = switchTab; + a.appendChild(document.createTextNode(this.titles[i])); + + this.headers[i].appendChild(a); + } + } + + function findTabs(container) { + return findChildElements(container, "DIV", "tab"); + } + + function findHeaders(container) { + var owner = findChildElements(container, "UL", "tabLinks"); + return findChildElements(owner[0], "LI", null); + } + + function findTitles(tabs) { + var titles = []; + + for (var i = 0; i < tabs.length; i++) { + var tab = tabs[i]; + var header = findChildElements(tab, "H2", null)[0]; + + header.parentNode.removeChild(header); + + if (header.innerText) { + titles.push(header.innerText); + } else { + titles.push(header.textContent); + } + } + + return titles; + } + + function findChildElements(container, name, targetClass) { + var elements = []; + var children = container.childNodes; + + for (var i = 0; i < children.length; i++) { + var child = children.item(i); + + if (child.nodeType === 1 && child.nodeName === name) { + if (targetClass && child.className.indexOf(targetClass) < 0) { + continue; + } + + elements.push(child); + } + } + + return elements; + } + + // Entry point. + + window.onload = function() { + initTabs(); + initControls(); + }; +} (window, window.document)); \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html b/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html new file mode 100644 index 0000000000..f7b02268bc --- /dev/null +++ b/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html @@ -0,0 +1,113 @@ + + + + + +Test results - Package com.google.cloud.tools.dependencies.gradle + + + + + +
    +

    Package com.google.cloud.tools.dependencies.gradle

    + +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    9
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    17.214s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Classes

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ClassTestsFailuresIgnoredDurationSuccess rate
    +BuildStatusFunctionalTest +6008.265s100%
    +ExclusionFileFunctionalTest +3008.949s100%
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html b/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html new file mode 100644 index 0000000000..9a73df49a5 --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html @@ -0,0 +1,96 @@ + + + + + +Test results - Class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest + + + + + +
    +

    Class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest

    + +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    1
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    1.091s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Tests

    + + + + + + + + + + + + + +
    TestDurationResult
    linkage_checker_plugin_should_add_task_to_project1.091spassed
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/test/css/base-style.css b/gradle-plugin/build/reports/tests/test/css/base-style.css new file mode 100644 index 0000000000..4afa73e3dd --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/css/base-style.css @@ -0,0 +1,179 @@ + +body { + margin: 0; + padding: 0; + font-family: sans-serif; + font-size: 12pt; +} + +body, a, a:visited { + color: #303030; +} + +#content { + padding-left: 50px; + padding-right: 50px; + padding-top: 30px; + padding-bottom: 30px; +} + +#content h1 { + font-size: 160%; + margin-bottom: 10px; +} + +#footer { + margin-top: 100px; + font-size: 80%; + white-space: nowrap; +} + +#footer, #footer a { + color: #a0a0a0; +} + +#line-wrapping-toggle { + vertical-align: middle; +} + +#label-for-line-wrapping-toggle { + vertical-align: middle; +} + +ul { + margin-left: 0; +} + +h1, h2, h3 { + white-space: nowrap; +} + +h2 { + font-size: 120%; +} + +ul.tabLinks { + padding-left: 0; + padding-top: 10px; + padding-bottom: 10px; + overflow: auto; + min-width: 800px; + width: auto !important; + width: 800px; +} + +ul.tabLinks li { + float: left; + height: 100%; + list-style: none; + padding-left: 10px; + padding-right: 10px; + padding-top: 5px; + padding-bottom: 5px; + margin-bottom: 0; + -moz-border-radius: 7px; + border-radius: 7px; + margin-right: 25px; + border: solid 1px #d4d4d4; + background-color: #f0f0f0; +} + +ul.tabLinks li:hover { + background-color: #fafafa; +} + +ul.tabLinks li.selected { + background-color: #c5f0f5; + border-color: #c5f0f5; +} + +ul.tabLinks a { + font-size: 120%; + display: block; + outline: none; + text-decoration: none; + margin: 0; + padding: 0; +} + +ul.tabLinks li h2 { + margin: 0; + padding: 0; +} + +div.tab { +} + +div.selected { + display: block; +} + +div.deselected { + display: none; +} + +div.tab table { + min-width: 350px; + width: auto !important; + width: 350px; + border-collapse: collapse; +} + +div.tab th, div.tab table { + border-bottom: solid #d0d0d0 1px; +} + +div.tab th { + text-align: left; + white-space: nowrap; + padding-left: 6em; +} + +div.tab th:first-child { + padding-left: 0; +} + +div.tab td { + white-space: nowrap; + padding-left: 6em; + padding-top: 5px; + padding-bottom: 5px; +} + +div.tab td:first-child { + padding-left: 0; +} + +div.tab td.numeric, div.tab th.numeric { + text-align: right; +} + +span.code { + display: inline-block; + margin-top: 0em; + margin-bottom: 1em; +} + +span.code pre { + font-size: 11pt; + padding-top: 10px; + padding-bottom: 10px; + padding-left: 10px; + padding-right: 10px; + margin: 0; + background-color: #f7f7f7; + border: solid 1px #d0d0d0; + min-width: 700px; + width: auto !important; + width: 700px; +} + +span.wrapped pre { + word-wrap: break-word; + white-space: pre-wrap; + word-break: break-all; +} + +label.hidden { + display: none; +} \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/test/css/style.css b/gradle-plugin/build/reports/tests/test/css/style.css new file mode 100644 index 0000000000..3dc4913e7a --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/css/style.css @@ -0,0 +1,84 @@ + +#summary { + margin-top: 30px; + margin-bottom: 40px; +} + +#summary table { + border-collapse: collapse; +} + +#summary td { + vertical-align: top; +} + +.breadcrumbs, .breadcrumbs a { + color: #606060; +} + +.infoBox { + width: 110px; + padding-top: 15px; + padding-bottom: 15px; + text-align: center; +} + +.infoBox p { + margin: 0; +} + +.counter, .percent { + font-size: 120%; + font-weight: bold; + margin-bottom: 8px; +} + +#duration { + width: 125px; +} + +#successRate, .summaryGroup { + border: solid 2px #d0d0d0; + -moz-border-radius: 10px; + border-radius: 10px; +} + +#successRate { + width: 140px; + margin-left: 35px; +} + +#successRate .percent { + font-size: 180%; +} + +.success, .success a { + color: #008000; +} + +div.success, #successRate.success { + background-color: #bbd9bb; + border-color: #008000; +} + +.failures, .failures a { + color: #b60808; +} + +.skipped, .skipped a { + color: #c09853; +} + +div.failures, #successRate.failures { + background-color: #ecdada; + border-color: #b60808; +} + +ul.linkList { + padding-left: 0; +} + +ul.linkList li { + list-style: none; + margin-bottom: 5px; +} diff --git a/gradle-plugin/build/reports/tests/test/index.html b/gradle-plugin/build/reports/tests/test/index.html new file mode 100644 index 0000000000..75d112a07d --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/index.html @@ -0,0 +1,133 @@ + + + + + +Test results - Test Summary + + + + + +
    +

    Test Summary

    +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    1
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    1.091s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Packages

    + + + + + + + + + + + + + + + + + + + + + +
    PackageTestsFailuresIgnoredDurationSuccess rate
    +com.google.cloud.tools.dependencies.gradle +1001.091s100%
    +
    +
    +

    Classes

    + + + + + + + + + + + + + + + + + + + + + +
    ClassTestsFailuresIgnoredDurationSuccess rate
    +com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest +1001.091s100%
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/reports/tests/test/js/report.js b/gradle-plugin/build/reports/tests/test/js/report.js new file mode 100644 index 0000000000..83bab4a19f --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/js/report.js @@ -0,0 +1,194 @@ +(function (window, document) { + "use strict"; + + var tabs = {}; + + function changeElementClass(element, classValue) { + if (element.getAttribute("className")) { + element.setAttribute("className", classValue); + } else { + element.setAttribute("class", classValue); + } + } + + function getClassAttribute(element) { + if (element.getAttribute("className")) { + return element.getAttribute("className"); + } else { + return element.getAttribute("class"); + } + } + + function addClass(element, classValue) { + changeElementClass(element, getClassAttribute(element) + " " + classValue); + } + + function removeClass(element, classValue) { + changeElementClass(element, getClassAttribute(element).replace(classValue, "")); + } + + function initTabs() { + var container = document.getElementById("tabs"); + + tabs.tabs = findTabs(container); + tabs.titles = findTitles(tabs.tabs); + tabs.headers = findHeaders(container); + tabs.select = select; + tabs.deselectAll = deselectAll; + tabs.select(0); + + return true; + } + + function getCheckBox() { + return document.getElementById("line-wrapping-toggle"); + } + + function getLabelForCheckBox() { + return document.getElementById("label-for-line-wrapping-toggle"); + } + + function findCodeBlocks() { + var spans = document.getElementById("tabs").getElementsByTagName("span"); + var codeBlocks = []; + for (var i = 0; i < spans.length; ++i) { + if (spans[i].className.indexOf("code") >= 0) { + codeBlocks.push(spans[i]); + } + } + return codeBlocks; + } + + function forAllCodeBlocks(operation) { + var codeBlocks = findCodeBlocks(); + + for (var i = 0; i < codeBlocks.length; ++i) { + operation(codeBlocks[i], "wrapped"); + } + } + + function toggleLineWrapping() { + var checkBox = getCheckBox(); + + if (checkBox.checked) { + forAllCodeBlocks(addClass); + } else { + forAllCodeBlocks(removeClass); + } + } + + function initControls() { + if (findCodeBlocks().length > 0) { + var checkBox = getCheckBox(); + var label = getLabelForCheckBox(); + + checkBox.onclick = toggleLineWrapping; + checkBox.checked = false; + + removeClass(label, "hidden"); + } + } + + function switchTab() { + var id = this.id.substr(1); + + for (var i = 0; i < tabs.tabs.length; i++) { + if (tabs.tabs[i].id === id) { + tabs.select(i); + break; + } + } + + return false; + } + + function select(i) { + this.deselectAll(); + + changeElementClass(this.tabs[i], "tab selected"); + changeElementClass(this.headers[i], "selected"); + + while (this.headers[i].firstChild) { + this.headers[i].removeChild(this.headers[i].firstChild); + } + + var h2 = document.createElement("H2"); + + h2.appendChild(document.createTextNode(this.titles[i])); + this.headers[i].appendChild(h2); + } + + function deselectAll() { + for (var i = 0; i < this.tabs.length; i++) { + changeElementClass(this.tabs[i], "tab deselected"); + changeElementClass(this.headers[i], "deselected"); + + while (this.headers[i].firstChild) { + this.headers[i].removeChild(this.headers[i].firstChild); + } + + var a = document.createElement("A"); + + a.setAttribute("id", "ltab" + i); + a.setAttribute("href", "#tab" + i); + a.onclick = switchTab; + a.appendChild(document.createTextNode(this.titles[i])); + + this.headers[i].appendChild(a); + } + } + + function findTabs(container) { + return findChildElements(container, "DIV", "tab"); + } + + function findHeaders(container) { + var owner = findChildElements(container, "UL", "tabLinks"); + return findChildElements(owner[0], "LI", null); + } + + function findTitles(tabs) { + var titles = []; + + for (var i = 0; i < tabs.length; i++) { + var tab = tabs[i]; + var header = findChildElements(tab, "H2", null)[0]; + + header.parentNode.removeChild(header); + + if (header.innerText) { + titles.push(header.innerText); + } else { + titles.push(header.textContent); + } + } + + return titles; + } + + function findChildElements(container, name, targetClass) { + var elements = []; + var children = container.childNodes; + + for (var i = 0; i < children.length; i++) { + var child = children.item(i); + + if (child.nodeType === 1 && child.nodeName === name) { + if (targetClass && child.className.indexOf(targetClass) < 0) { + continue; + } + + elements.push(child); + } + } + + return elements; + } + + // Entry point. + + window.onload = function() { + initTabs(); + initControls(); + }; +} (window, window.document)); \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html b/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html new file mode 100644 index 0000000000..12880b0294 --- /dev/null +++ b/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html @@ -0,0 +1,103 @@ + + + + + +Test results - Package com.google.cloud.tools.dependencies.gradle + + + + + +
    +

    Package com.google.cloud.tools.dependencies.gradle

    + +
    + + + + + +
    +
    + + + + + + + +
    +
    +
    1
    +

    tests

    +
    +
    +
    +
    0
    +

    failures

    +
    +
    +
    +
    0
    +

    ignored

    +
    +
    +
    +
    1.091s
    +

    duration

    +
    +
    +
    +
    +
    +
    100%
    +

    successful

    +
    +
    +
    +
    + +
    +

    Classes

    + + + + + + + + + + + + + + + + + + + +
    ClassTestsFailuresIgnoredDurationSuccess rate
    +LinkageCheckerPluginTest +1001.091s100%
    +
    +
    + +
    + + diff --git a/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties b/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties new file mode 100644 index 0000000000..9248ace26a --- /dev/null +++ b/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties @@ -0,0 +1 @@ +implementation-class=com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml new file mode 100644 index 0000000000..4bff5268b7 --- /dev/null +++ b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml new file mode 100644 index 0000000000..b6d2b3b88f --- /dev/null +++ b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gradle-plugin/build/test-results/functionalTest/binary/output.bin b/gradle-plugin/build/test-results/functionalTest/binary/output.bin new file mode 100644 index 0000000000..e69de29bb2 diff --git a/gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx b/gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx new file mode 100644 index 0000000000000000000000000000000000000000..f76dd238ade08917e6712764a16a22005a50573d GIT binary patch literal 1 IcmZPo000310RR91 literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/test-results/functionalTest/binary/results.bin b/gradle-plugin/build/test-results/functionalTest/binary/results.bin new file mode 100644 index 0000000000000000000000000000000000000000..89dd04c0e1ed2a23775afd247de4f808ea807296 GIT binary patch literal 1431 zcmb_cJ8l#~5Ut%cHU=bLfS^K<(1?fwAmIamFVNdlJ6opRJ?f9aXCOu52zG)*00_qz zNE}#11W1sAKxicnK=rm6v`7duY&N6mdhgZi_hvL4z8Pq@Q#H;thAM4bs;lUn2~|xk z*_y0o3RUA(E#Gh5*Cqvac9RWlCaa@7E3-u*E(-@>@NjnU`1@$^dZ3lXklNN$2x!>e zRSh9|?|gm@k!oa%^ivd0L{-2mo{WmTOW3M7y}BeAm|ZK31H7N>;c#HPmaUS}iQ29+_tx!G$79<3MJlTWbv>R)1XGpo82RZL+q zM9V=rRrO`{+|z8vt}hDj88Z0HxGv?_pTZ(wJzth)>hcyOAzk00Q|i@b05f2dO{_m}V4rPwCf u+*#D@bu!8?_}+I8o?I@DeA|GF2Y)uZbvx2PEq^O%+gZ=S{z?I#-GCozULU3a literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml b/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml new file mode 100644 index 0000000000..f649203720 --- /dev/null +++ b/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gradle-plugin/build/test-results/test/binary/output.bin b/gradle-plugin/build/test-results/test/binary/output.bin new file mode 100644 index 0000000000..e69de29bb2 diff --git a/gradle-plugin/build/test-results/test/binary/output.bin.idx b/gradle-plugin/build/test-results/test/binary/output.bin.idx new file mode 100644 index 0000000000000000000000000000000000000000..f76dd238ade08917e6712764a16a22005a50573d GIT binary patch literal 1 IcmZPo000310RR91 literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/test-results/test/binary/results.bin b/gradle-plugin/build/test-results/test/binary/results.bin new file mode 100644 index 0000000000000000000000000000000000000000..42071fe49ee6b3f239de3ca5b5e68bbf1db7df9d GIT binary patch literal 263 zcmb`=y$u2}42IzZ8m7q-v=kKdR%BbbBPNdWvk5bx6XmS{3$X!+On^lF>HVIq-8?Po z#Rb(M>`=6mYpPNmappvvaOUbl@$}gbbBaFjeqxMVj?%-NPF&kxPK>eF*K$*9R~ZiA gfFOS*sFQXf@I=sjjnEWw(KBQFy)cj60Pm}L1GGG5qW}N^ literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt b/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt new file mode 100644 index 0000000000..ceb6be1bc4 --- /dev/null +++ b/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt @@ -0,0 +1,8 @@ +com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.java + com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension +com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java + com.google.cloud.tools.dependencies.gradle.LinkageCheckTask +com/google/cloud/tools/dependencies/gradle/DependencyNode.java + com.google.cloud.tools.dependencies.gradle.DependencyNode +com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.java + com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp new file mode 100644 index 0000000000000000000000000000000000000000..ce11b29adefae5544a132e8bd48a0fc9db4f9bcc GIT binary patch literal 5095 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 OcMf#nJ@_K#(e*$0Qt=M} literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp new file mode 100644 index 0000000000000000000000000000000000000000..ce11b29adefae5544a132e8bd48a0fc9db4f9bcc GIT binary patch literal 5095 zcmc&&`*#~h8NFjGSy@ry#LmkpG@IbqvZX}CDbUu&t?M{J;G`k49o!VkT3*X*uXfGu z%CUJr%KQDMr3K3S%_*GYl;*VICpd>c1I~ee0(!VJyOLJ6l!Tv}bFw=-^UXK+`|h1@ zM*jP2FTV=l9R85Pag;PHCSj(~fu$7gM|lsHVWrT6l@wNCYpA5q1t$d;Ye{@SgO`M# z!d__}pei5h8g8VpflWE%gGqcyzCWD8NAOYU@?%MSJc&=p<|n)GDLmc9)~7XmM#E&;Q48V-+ zm9A*gRkX^E5mY^{bN|@P!!6CmGea{oG|psV!;`k*`=jmrCW6g1x;(IBg23VCaA+5W zba=b*7*`$Vx(~Dm)_O_^x65$@6)Q7vumyDH{7`IuJT39CRG?$omX;FT-eO>sRxcTA zDhv&u6UgmYt?hit`~kGNHgcHYB*HX&dSo2KZrw8guv9*oP z$aFlz!7x9G8&9Xg#>zkphCT-WJKt?6h-GSki%|Jjag}pL|t&Am#S!U;G ztI@IHkk;9_-WmXBN83%35KdmLI)PO&=Pci%h_4u)Q85G4n{ddtlD@Cu3xqloK}{DN z$Mh79Cbx{<s(=JbHcW%sZ7nqj^LAHB|ECBsiIr;O6CPi)zGHect$3ZG&d_LCLmc@U9X&9 zsj@=ny{Z&Yp4Qj6V+f{S4XVn!B-MAr^;V^olx4oSRt+3$bu^8Wc#}Y0`e|cYaHtAv zQDUnX0D(qZmnpGiS@3nkGj-RoH+93d-5chjZaMm3uxvVm`hv|Pz|ZN1v#3{$O`ZEd zUodsY^aEw*TZ^1aTTiFjE2b0p65N;5_zJ$N;cIDp9m8pS1K-r}tu(%k?+8422iUVt zgrN>PtXfl^=X%ofcQt%3jc4#I&kWYF%#dC(oDe;6Rs9gX(S%>%%pI02%2RH__f1b` zLoFmQ7;aeIUD5|-EsHXtSE_zcPeRq^5&!)(p2PEL`~W|sCL3ER)VqcsrSSrOoW@V^ zQ-MdOHb{s}U0CdP_zzrt*;qGqdB*93r~JX3zEBPHGSe=<()byEuHhGH{1U%P<55iT zM2JDHE4dwBf%B~(?3i~~9M>_S;n!*W2ER>1#|dtocGm^g@o=ajuM?N}u$=P5nkCTN zNLT%c)bKmr7vgn)XC2k>dx5i&&Asn+0*RNuV&D;oDlol@D|3^BbnFEY90pcR27nGYPw^EHJZ1%M)D%N{gzK1%Uc%@uM3`A zX?;0)LSQJKhtOfHFxRushW$8s%z)+*;kb?IQ4m31`4yVr8o-Bq&= zV61iNzaC3W4am+eft2MJ96vCe5|830oz-SB?;1(H%&IPliC?xNDK-_5u#cAwdGH&Q z;zM!Lq8WEVSNE&8$c@tQHOpQs86Gc$$-?F0%*5r%Dc*zHO1@@Jl^==ISYwWN9RdAr zJ2P>DzhaKdOAh*E@n9>>HV-vE`}vjUTkySW_$I`QY;@ohpSx9OKL*&A6KH@zWca3} zF-$8t`2lpQvD7Ve%=dKOMB+Ak;~u7B9#WBqtg^`|Pp2bKSLmsO{mq^_V_2S4o(_jr zktf>Yj0)k+oEzelJ!k1VTxEo2x zy@js%Z0;sfw{tIHk4#8HfjGvL0A((?jBZ#sh83p3W=bjwm>xQ=0~?Bf$zQKScnbkE zAj+|~64=}5u?rplLAQnn4@QU|;=sdodP-bg=B2NWcseT)OPC@nVRA4`(>{eDAi^pU zuE)~V7okeAUt$SYPC|q$^LrFyQHq+0NJo^$iFi8ZxkjlZ;_XzIh(#%T#@Q1R@d#Ty zM2S%f=XuIW5;4GFnDV{zJ^OB=`*tq7h5fn277pYRub^kXGh2KKz1Oz0@G_Hf3;Xa2 zdhsfb;x-xjON@nqItv4MOrhdRn8f*rg-}FtY>KGDu?rlNd{EH)BFGo<4tCtvL7Qnd zI&g`t%LP1+D{Q>GgsXf#ieePg3%o2RXg8AmD~4qx2cN}B72Ba*DwtexKEZAZ?J&bS zA_E@Ip5DUIMtnWW!#^nHe-gyMDCB>uxQ0W|^|(grag8XQNr{Z82s>j8$g!D5T-hkD zSrykw_0y*wSqJ6{xYiWj6AbSWm4HrMpL6D-0Sl1GQfW+=GWSYLndDq z8eV4FN}%uFB_O(y5c{!D^q^Pt;;1-?Q{vF;B!TPqAc13dmcV`6Bp@r14rj&b z*HZ#XytiJAj*~$7Px~X@@F%=cVivIqeTK}wk9{3@3h(E84@V9D=T2F`yV%jgp#naS OcMf#nJ@_K#(e*$0Qt=M} literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp new file mode 100644 index 0000000000000000000000000000000000000000..ce11b29adefae5544a132e8bd48a0fc9db4f9bcc GIT binary patch literal 5095 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 OcMf#nJ@_K#(e*$0Qt=M} literal 0 HcmV?d00001 diff --git a/gradle-plugin/build/tmp/jar/MANIFEST.MF b/gradle-plugin/build/tmp/jar/MANIFEST.MF new file mode 100644 index 0000000000..58630c02ef --- /dev/null +++ b/gradle-plugin/build/tmp/jar/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/gradle-plugin/build/tmp/javadoc/javadoc.options b/gradle-plugin/build/tmp/javadoc/javadoc.options new file mode 100644 index 0000000000..30160c9991 --- /dev/null +++ b/gradle-plugin/build/tmp/javadoc/javadoc.options @@ -0,0 +1,10 @@ +-classpath '/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/java/main:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/groovy/main:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/resources/main:/Users/lawrenceqiu/.gradle/caches/6.8.3/generated-gradle-jars/gradle-api-6.8.3.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/groovy-all-1.3-2.5.12.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-common-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-jdk7-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-jdk8-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-reflect-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/gradle-installation-beacon-6.8.3.jar:/Users/lawrenceqiu/.m2/repository/com/google/cloud/tools/dependencies/1.5.14-SNAPSHOT/dependencies-1.5.14-SNAPSHOT.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-compat/3.6.3/2a8242398efbfd533ffe36147864c34a326666da/maven-compat-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-core/3.6.3/eca800aa73e750ec9a880eb224f0bb68f5b7873b/maven-core-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/4.2.1/41e5ab52ec65e60b6c0ced947becf7ba96402645/guice-4.2.1-no_aop.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/30.1.1-jre/87e0fd1df874ea3cbe577702fe6f17068b790fd8/guava-30.1.1-jre.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-resolver-provider/3.6.3/115240b65c1d0e9745cb2012b977afc3d1795f94/maven-resolver-provider-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-http/1.7.1/4cda5dfeeeafaa0b80cc75cad51c311af4b04e0c/maven-resolver-transport-http-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-file/1.7.1/d00b990b9686a2a9364c7712d6d629f151b85d60/maven-resolver-transport-file-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-connector-basic/1.7.1/a0714a12c07469dbf5236dd7ed81e0b0407bec0c/maven-resolver-connector-basic-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-impl/1.4.1/1658cfa27978c5949c3a92086514a22ca85394e4/maven-resolver-impl-1.4.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-spi/1.7.1/f6a48723bf7729925bdc1f354bb22f453fe2f754/maven-resolver-spi-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-util/1.7.1/931ea5585c5d19feeef98948994ab8eb80cdb81a/maven-resolver-util-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-api/1.7.1/c28ce68ba2b71272be80f40ecc79d81c75aa8d40/maven-resolver-api-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.bcel/bcel/6.6.1/8f9809672f3eed6627a53578ef00bff5f48a2a27/bcel-6.6.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.relaxng/jing/20181222/d847e7f2685866a0a3783508669a881313a959ab/jing-20181222.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/isorelax/isorelax/20030108/b21859c352bd959ea22d06b2fe8c93b2e24531b9/isorelax-20030108.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-cli/commons-cli/1.4/c51c00206bb913cd8612b24abd9fa98ae89719b1/commons-cli-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.8.0/6b83e4a33220272c3a08991498ba9dc09519f190/checker-qual-3.8.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.5.1/562d366678b89ce5d6b6b82c1a073880341e3fba/error_prone_annotations-2.5.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-plugin-api/3.6.3/63fe5967b9c4c1b6fa6004be76e1c939e8bd1d6/maven-plugin-api-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model-builder/3.6.3/4ef1d56f53d3e0a9003b7cc82c89af9878321e82/maven-model-builder-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.6.3/f8ff8032903882376e8d000c51e3e16d20fc7df7/maven-artifact-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.12.0/c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e/commons-lang3-3.12.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model/3.6.3/61c7848dce2fbf7f7ab0fdc8e8a7cc9da5dd7827/maven-model-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings-builder/3.6.3/756d46810b8cc7b2b98585ccc787854cdfde7fd9/maven-settings-builder-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings/3.6.3/bbf4e06dcdb0bb33d1546c080df5c8d92b535d30/maven-settings-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-builder-support/3.6.3/e9a37af390009a525d8faa6b18bd682123f85f9e/maven-builder-support-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-repository-metadata/3.6.3/14d28071c85e76b656c46c465db91d394d6f48f0/maven-repository-metadata-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.shared/maven-shared-utils/3.2.1/8dd4dfb1d2d8b6969f6462790f82670bcd35ce2/maven-shared-utils-3.2.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.plexus/0.3.4/f1335a3b7bc3fd23f67da88bd60cd5d4c3304ef3/org.eclipse.sisu.plexus-0.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.inject/0.3.4/fc3be144183f54dc6f5c55e34462c1c2d89d7d96/org.eclipse.sisu.inject-0.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.enterprise/cdi-api/1.0/44c453f60909dfc223552ace63e05c694215156b/cdi-api-1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.inject/javax.inject/1/6975da39a7040257bd51d21a231b76c915872d38/javax.inject-1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.wagon/wagon-provider-api/3.3.4/7a99fdaa534aa8c01f01a447fe1c7af5cfc7b0d5/wagon-provider-api-3.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-sec-dispatcher/1.4/43fde524e9b94c883727a9fddb8669181b890ea7/plexus-sec-dispatcher-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.2.1/13b015768e0d04849d2794e4c47eb02d01a0de32/plexus-utils-3.2.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-classworlds/2.6.0/8587e80fcb38e70b70fae8d5914b6376bfad6259/plexus-classworlds-2.6.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-component-annotations/2.1.0/2f2147a6cc6a119a1b51a96f31d45c557f6244b9/plexus-component-annotations-2.1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-interpolation/1.25/3b37b3335e6a97e11e690bbdc22ade1a5deb74d6/plexus-interpolation-1.25.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.30/b5a4b6d16ab13e34a88fae84c35cd5d68cac922c/slf4j-api-1.7.30.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.14/9dd1a631c082d92ecd4bd8fd4cf55026c720a8c1/httpcore-4.4.14.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.11/3acb4705652e16236558f0f4f2192cc33c3bd189/commons-codec-1.11.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/net.sf.saxon/Saxon-HE/9.6.0-4/5f94b2ac10eab043e1ad90d05f5bc34727bd94c6/Saxon-HE-9.6.0-4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.9.1/7bc7e49ddfe4fb5f193ed37ecc96c12292c8ceb6/xercesImpl-2.9.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xml-apis/xml-apis/1.3.04/90b215f48fe42776c8c7f6e3509ec54e84fd65ef/xml-apis-1.3.04.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/aopalliance/aopalliance/1.0/235ba8b489512805ac13a8f9ea77a1ca5ebe3e8/aopalliance-1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-cipher/1.4/50ade46f23bb38cd984b4ec560c46223432aac38/plexus-cipher-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.annotation/jsr250-api/1.0/5025422767732a1ab45d93abfea846513d742dcf/jsr250-api-1.0.jar' +-d '/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/docs/javadoc' +-doctitle 'linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API' +-notimestamp +-quiet +-windowtitle 'linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API' +'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.java' +'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.java' +'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/DependencyNode.java' +'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java' diff --git a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml new file mode 100644 index 0000000000..1f68de234e --- /dev/null +++ b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml @@ -0,0 +1,12 @@ + + + com.google.cloud.tools.linkagechecker + com.google.cloud.tools.linkagechecker.gradle.plugin + + 1.5.14-SNAPSHOT + + 1.5.14-SNAPSHOT + + 20250210205929 + + diff --git a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml new file mode 100644 index 0000000000..c9b5abac02 --- /dev/null +++ b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml @@ -0,0 +1,19 @@ + + + com.google.cloud.tools.linkagechecker + com.google.cloud.tools.linkagechecker.gradle.plugin + 1.5.14-SNAPSHOT + + + true + + 20250210205929 + + + pom + 1.5.14-SNAPSHOT + 20250210205929 + + + + diff --git a/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF new file mode 100644 index 0000000000..58630c02ef --- /dev/null +++ b/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF new file mode 100644 index 0000000000..58630c02ef --- /dev/null +++ b/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF new file mode 100644 index 0000000000..58630c02ef --- /dev/null +++ b/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml new file mode 100644 index 0000000000..e81cb2641e --- /dev/null +++ b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml @@ -0,0 +1,12 @@ + + + com.google.cloud.tools + linkage-checker-gradle-plugin + + 1.5.14-SNAPSHOT + + 1.5.14-SNAPSHOT + + 20250210205929 + + diff --git a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml new file mode 100644 index 0000000000..b31b8115e7 --- /dev/null +++ b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml @@ -0,0 +1,29 @@ + + + com.google.cloud.tools + linkage-checker-gradle-plugin + 1.5.14-SNAPSHOT + + + true + + 20250210205929 + + + jar + 1.5.14-SNAPSHOT + 20250210205929 + + + pom + 1.5.14-SNAPSHOT + 20250210205929 + + + module + 1.5.14-SNAPSHOT + 20250210205929 + + + + From 5b4ccf2b33bd0b6fafae5d5d4352655c43a52839 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Mon, 10 Feb 2025 16:11:44 -0500 Subject: [PATCH 10/15] chore: Fix issues --- .../cloud/tools/dependencies/gradle/LinkageCheckTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java b/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java index fbb1cd2010..1526af1edf 100644 --- a/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java +++ b/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java @@ -145,7 +145,7 @@ private boolean findLinkageErrors(Configuration configuration) throws IOExceptio } // TODO(suztomo): Specify correct entry points if reportOnlyReachable is true. - LinkageChecker linkageChecker = LinkageChecker.create(classPath, classPath, exclusionFile); + LinkageChecker linkageChecker = LinkageChecker.create(classPath, classPath, ImmutableList.of(), exclusionFile); ImmutableSet linkageProblems = linkageChecker.findLinkageProblems(); From e904de3a2e39c5f53606a3b89bbd7cc2cbf14b30 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Mon, 10 Feb 2025 16:30:49 -0500 Subject: [PATCH 11/15] Revert "chore: Fix issues" This reverts commit 3701953b4de95a9cec37943f92c3d8a46cd43f28. --- .../gradle/BuildStatusFunctionalTest.class | Bin 26253 -> 0 bytes .../gradle/ExclusionFileFunctionalTest.class | Bin 16820 -> 0 bytes .../gradle/LinkageCheckerPluginTest.class | Bin 3810 -> 0 bytes .../dependencies/gradle/DependencyNode.class | Bin 3778 -> 0 bytes .../gradle/LinkageCheckTask.class | Bin 22070 -> 0 bytes .../gradle/LinkageCheckerPlugin.class | Bin 1374 -> 0 bytes .../LinkageCheckerPluginExtension.class | Bin 1736 -> 0 bytes .../build/docs/javadoc/allclasses-index.html | 174 - .../build/docs/javadoc/allclasses.html | 32 - .../build/docs/javadoc/allpackages-index.html | 162 - .../dependencies/gradle/LinkageCheckTask.html | 377 - .../gradle/LinkageCheckerPlugin.html | 312 - .../gradle/LinkageCheckerPluginExtension.html | 375 - .../dependencies/gradle/package-summary.html | 176 - .../dependencies/gradle/package-tree.html | 165 - .../build/docs/javadoc/constant-values.html | 146 - .../build/docs/javadoc/deprecated-list.html | 144 - gradle-plugin/build/docs/javadoc/element-list | 1 - .../build/docs/javadoc/help-doc.html | 264 - .../build/docs/javadoc/index-all.html | 219 - gradle-plugin/build/docs/javadoc/index.html | 23 - .../docs/javadoc/jquery-ui.overrides.css | 35 - .../javadoc/jquery/external/jquery/jquery.js | 10872 --------------- .../docs/javadoc/jquery/jquery-3.6.1.min.js | 2 - .../docs/javadoc/jquery/jquery-ui.min.css | 6 - .../docs/javadoc/jquery/jquery-ui.min.js | 6 - .../jquery/jszip-utils/dist/jszip-utils-ie.js | 56 - .../jszip-utils/dist/jszip-utils-ie.min.js | 10 - .../jquery/jszip-utils/dist/jszip-utils.js | 118 - .../jszip-utils/dist/jszip-utils.min.js | 10 - .../docs/javadoc/jquery/jszip/dist/jszip.js | 11370 ---------------- .../javadoc/jquery/jszip/dist/jszip.min.js | 13 - .../build/docs/javadoc/member-search-index.js | 1 - .../docs/javadoc/member-search-index.zip | Bin 425 -> 0 bytes .../build/docs/javadoc/overview-tree.html | 169 - .../docs/javadoc/package-search-index.js | 1 - .../docs/javadoc/package-search-index.zip | Bin 254 -> 0 bytes .../build/docs/javadoc/resources/glass.png | Bin 499 -> 0 bytes .../build/docs/javadoc/resources/x.png | Bin 394 -> 0 bytes gradle-plugin/build/docs/javadoc/script.js | 149 - gradle-plugin/build/docs/javadoc/search.js | 326 - .../build/docs/javadoc/stylesheet.css | 910 -- .../build/docs/javadoc/type-search-index.js | 1 - .../build/docs/javadoc/type-search-index.zip | Bin 285 -> 0 bytes ...radle-plugin-1.5.14-SNAPSHOT-groovydoc.jar | Bin 261 -> 0 bytes ...-gradle-plugin-1.5.14-SNAPSHOT-javadoc.jar | Bin 289866 -> 0 bytes ...-gradle-plugin-1.5.14-SNAPSHOT-sources.jar | Bin 8574 -> 0 bytes ...-checker-gradle-plugin-1.5.14-SNAPSHOT.jar | Bin 13071 -> 0 bytes ...ogle.cloud.tools.linkagechecker.properties | 1 - .../plugin-under-test-metadata.properties | 1 - .../pom-default.xml | 17 - .../publications/pluginMaven/module.json | 84 - .../publications/pluginMaven/pom-default.xml | 33 - .../plugin-development/validation-report.txt | 0 ...cies.gradle.BuildStatusFunctionalTest.html | 121 - ...es.gradle.ExclusionFileFunctionalTest.html | 106 - .../tests/functionalTest/css/base-style.css | 179 - .../tests/functionalTest/css/style.css | 84 - .../reports/tests/functionalTest/index.html | 143 - .../reports/tests/functionalTest/js/report.js | 194 - ...oogle.cloud.tools.dependencies.gradle.html | 113 - ...ncies.gradle.LinkageCheckerPluginTest.html | 96 - .../reports/tests/test/css/base-style.css | 179 - .../build/reports/tests/test/css/style.css | 84 - .../build/reports/tests/test/index.html | 133 - .../build/reports/tests/test/js/report.js | 194 - ...oogle.cloud.tools.dependencies.gradle.html | 103 - ...ogle.cloud.tools.linkagechecker.properties | 1 - ...ncies.gradle.BuildStatusFunctionalTest.xml | 12 - ...ies.gradle.ExclusionFileFunctionalTest.xml | 9 - .../functionalTest/binary/output.bin | 0 .../functionalTest/binary/output.bin.idx | Bin 1 -> 0 bytes .../functionalTest/binary/results.bin | Bin 1431 -> 0 bytes ...encies.gradle.LinkageCheckerPluginTest.xml | 7 - .../build/test-results/test/binary/output.bin | 0 .../test-results/test/binary/output.bin.idx | Bin 1 -> 0 bytes .../test-results/test/binary/results.bin | Bin 263 -> 0 bytes .../compileJava/source-classes-mapping.txt | 8 - .../jar_extract_10624263207379282055_tmp | Bin 5095 -> 0 bytes .../jar_extract_3144778433172582223_tmp | Bin 5095 -> 0 bytes .../jar_extract_757998314726472038_tmp | Bin 5095 -> 0 bytes gradle-plugin/build/tmp/jar/MANIFEST.MF | 2 - .../build/tmp/javadoc/javadoc.options | 10 - .../module-maven-metadata.xml | 12 - .../snapshot-maven-metadata.xml | 19 - .../publishPluginGroovyDocsJar/MANIFEST.MF | 2 - .../build/tmp/publishPluginJar/MANIFEST.MF | 2 - .../tmp/publishPluginJavaDocsJar/MANIFEST.MF | 2 - .../module-maven-metadata.xml | 12 - .../snapshot-maven-metadata.xml | 29 - 90 files changed, 28617 deletions(-) delete mode 100644 gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class delete mode 100644 gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class delete mode 100644 gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class delete mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class delete mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class delete mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class delete mode 100644 gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class delete mode 100644 gradle-plugin/build/docs/javadoc/allclasses-index.html delete mode 100644 gradle-plugin/build/docs/javadoc/allclasses.html delete mode 100644 gradle-plugin/build/docs/javadoc/allpackages-index.html delete mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html delete mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html delete mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html delete mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html delete mode 100644 gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html delete mode 100644 gradle-plugin/build/docs/javadoc/constant-values.html delete mode 100644 gradle-plugin/build/docs/javadoc/deprecated-list.html delete mode 100644 gradle-plugin/build/docs/javadoc/element-list delete mode 100644 gradle-plugin/build/docs/javadoc/help-doc.html delete mode 100644 gradle-plugin/build/docs/javadoc/index-all.html delete mode 100644 gradle-plugin/build/docs/javadoc/index.html delete mode 100644 gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-3.6.1.min.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-ui.min.css delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jquery-ui.min.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.min.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip/dist/jszip.js delete mode 100644 gradle-plugin/build/docs/javadoc/jquery/jszip/dist/jszip.min.js delete mode 100644 gradle-plugin/build/docs/javadoc/member-search-index.js delete mode 100644 gradle-plugin/build/docs/javadoc/member-search-index.zip delete mode 100644 gradle-plugin/build/docs/javadoc/overview-tree.html delete mode 100644 gradle-plugin/build/docs/javadoc/package-search-index.js delete mode 100644 gradle-plugin/build/docs/javadoc/package-search-index.zip delete mode 100644 gradle-plugin/build/docs/javadoc/resources/glass.png delete mode 100644 gradle-plugin/build/docs/javadoc/resources/x.png delete mode 100644 gradle-plugin/build/docs/javadoc/script.js delete mode 100644 gradle-plugin/build/docs/javadoc/search.js delete mode 100644 gradle-plugin/build/docs/javadoc/stylesheet.css delete mode 100644 gradle-plugin/build/docs/javadoc/type-search-index.js delete mode 100644 gradle-plugin/build/docs/javadoc/type-search-index.zip delete mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar delete mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-javadoc.jar delete mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-sources.jar delete mode 100644 gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar delete mode 100644 gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties delete mode 100644 gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties delete mode 100644 gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml delete mode 100644 gradle-plugin/build/publications/pluginMaven/module.json delete mode 100644 gradle-plugin/build/publications/pluginMaven/pom-default.xml delete mode 100644 gradle-plugin/build/reports/plugin-development/validation-report.txt delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/css/base-style.css delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/css/style.css delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/index.html delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/js/report.js delete mode 100644 gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html delete mode 100644 gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html delete mode 100644 gradle-plugin/build/reports/tests/test/css/base-style.css delete mode 100644 gradle-plugin/build/reports/tests/test/css/style.css delete mode 100644 gradle-plugin/build/reports/tests/test/index.html delete mode 100644 gradle-plugin/build/reports/tests/test/js/report.js delete mode 100644 gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html delete mode 100644 gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties delete mode 100644 gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml delete mode 100644 gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml delete mode 100644 gradle-plugin/build/test-results/functionalTest/binary/output.bin delete mode 100644 gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx delete mode 100644 gradle-plugin/build/test-results/functionalTest/binary/results.bin delete mode 100644 gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml delete mode 100644 gradle-plugin/build/test-results/test/binary/output.bin delete mode 100644 gradle-plugin/build/test-results/test/binary/output.bin.idx delete mode 100644 gradle-plugin/build/test-results/test/binary/results.bin delete mode 100644 gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt delete mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp delete mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp delete mode 100644 gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp delete mode 100644 gradle-plugin/build/tmp/jar/MANIFEST.MF delete mode 100644 gradle-plugin/build/tmp/javadoc/javadoc.options delete mode 100644 gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml delete mode 100644 gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml delete mode 100644 gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF delete mode 100644 gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF delete mode 100644 gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF delete mode 100644 gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml delete mode 100644 gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml diff --git a/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class b/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/BuildStatusFunctionalTest.class deleted file mode 100644 index 022fea86f4a804dd970f0e2fd3c71db32fa9c634..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26253 zcmeHQ33y!9bw2maNHdbgvNVGQVjT-(Yw?U0?=l8#c@vhGSh5}LfHRtTlExm*3~y#^ zi$JqB3C#i_4PhxEB_y;>(?AGDW-m}kLbJ3aO_NY|l5R<$ltK~*_doaDdGltqq!_-m zUjX0x=DqvwJ?GwY{&UW~=b3N4dCvnxv{*Ys(AscfymK^>7>((j;aDOQ=}adQu~cV7 zPwMfA9uG(LROhG>is1R0Of(i5Oo!5$)cQ<3oQ@{qq1cd~O1nr1Iwh4%g!gyGLh;eg z!K5CJjzq&DZsQ^co{k!c#DNL(@dkOlb$Fj1#=BL5{AIfin(qnf97q_WopOv3BQ&lb zOc?t+jZ8cp9oIX@6A?WoN8PNaLy=HAv{I0JBpTD>Xe!7Vi^g>acs^B7eHs*RGZH-b z+NdFDuIzbVCLT?r!x;D-(#MktBVp!HEb7O^Pe@lOLS zCP}V@5s6~{_$~>mi(>d_C>Fg;H~1DNv}Ty+dp(!{(F6NJ2ST0EL?{1V$t_L?Rr69< zjcB+p7D}c1<0A<{?UJf6=3^|B;gyrKZs;R1u#3g$wAz9N*WSJ8VRN4#u^Z!!WA5Z* zK_?H`*Na(@5AaU)xlHMKf*h@FI|ZGdZJ0Jf@zhAd81LMm$8{r=)+1=$IB!%>_l07y z!Dw1vZ5W{mK|QT)drDKORx^zDDYWm*zPQpuEp&D*X*AD6XOX{_oHSpMk2`01jD{@= z1vR&}WoeSKXgxwNt<=W7w0r0bI3$Y&Qv1m%r`hgRn31GP@rKdAVK_`I@xoDCK zQ`kX*hi37>J%T)PeIekiTy9z{D8M3Kw07lY#YIa&Jx`XP<*mhI72hdI&~jQ)N6V-e z1leWGMdu3Yu0+sa*oY?6YbMe!h0CH#kTu=E%D;dS zC(zxq$n4!s1DNYvT*DY=)iwN-`lmf3#vQ?3^d!b7D`-Z z!l8AG!lAhT0Pqesb$`g8Gy&OvFq$6o#}j_b{!IA8iTFq?8cst=tA}H-F}Rol_^#om z*09i&{n2u8r%qK&jLEAtt~%B!AW?Lu`W}?^{sG#efxSt6-tl z8AihBOT-w46VQ?oU}J90*TClLAy~>WfHGz!qi;onrqfFAGDDyE>Ndw3)sa>2#c`#Bcfl;#O@b5X-Z zEf;lMc%V-_@5)PJW#2Ddi8$jAE znGN0#kg(J5rVrvyAOMpe-jAgS!)E-kpbJZ=axwB3-?2-UWt^7NM_AoI3V}CtAQaRE zR&1(51#QVXuBrBBhP;ps)=X(`^)E9v*pXXsjf^jY`_m@Xr2ian59wQ{0Q zG`pT|U}|sVrKktG7*aa~EokkZ;)H#UZss074;r!@y6F}{y*y{-EO{DsaV!*%U=H9a zk0p#WTgr{OB;&+*wy9LB)?Y%{Y^{`X+U}_L_SkNz zM!R?Sx9#-MgY-}>JwSg8_Z(7bGPFJfXp8KEd0lrXtS3z#KmB{cqvi9gWbz-ON16P; zLo`zkMAq!+A6V-j+|k#!Zg6n@jsb>{$61YML&ggqy6IbjR;sSjfS=Zu0{mf=0{X*Q zTjgh6*lPX^ssY^e_uO{_>_5Nmrtb=xmDh!v{sFh5@dJtdx+zIp1ii~HsHUG=ykxdJ z<=52?fEHLkN#AGp_yA$$hgIyy z^b;QPDVQx&Yi#;*_3w!+WyysgJx$NBAU(@7K6<6X^_r_E1=odAg9rA z)~6fpyXdu20Y^74VZWdy96LbQve82{F6B8LMbMNB9N3|Z#{E`k!7rc0#T+i0gm}Vo z^NbmLzSt$nBss(z&H16wj1(*g-|Y%^2fG4;TUKuy+_-gUL9I0+9Oa=gcv$}Q!G!4} zmu15K&R9B~O!anljsnIr!*HswcV{HSvIt0nA5En)*uh%X)zxFYI4vJr#>Ty7pd64t z0BJI)M?qGKp{^U6IBQ{fBdNhHUI2rEcB7hh}N9&#y!LD56oG)z=W_JR0<9Bn< zf6J?SG8d{m1g;XO*N53UKN^tJI6$8_8ER3e6zgj;?fih#)< zHRG9)LsBnJ{NaPE%|+IH-pWJ-q?b z6&o%&U~Ar#^1Q}|c~X}LyK^xZ#_z*EpWd54*4pguZ7zE5%@ReK8Ovjuw|X-1+}miAx4BbMfc;jN{!W(Q z?36BWI@{RIVt$eerzVKvOv_VXRDfs`%%^?Ho z*V@+R78;B88A7{t221n@0j{Lpe-L2a`e=hf-Cc&s*dFQw+KVPK>vdTf|E0n8$P0z{4SCOgWt~Wv-ybGwHxBpg_9{Ny3I! zYfIjkahz361X5$62;3{vZ!ARjJhFK2quVX!GHor``wPRSSv~$tHMSzPS7oA+dcR0UL z3$kYn1ykndv<|-v-TcdX)De`l?&oq(-PjeH(i?7Zz7Si>4cgLTdga)M3(6ze;ObNg zM>;E-=DJ<3Kd5Z86Ej9Bi?Ny)p+|_b|1f{NaZ+)O++r=y)*>#Xek|cDB!U#< zp=|R79K%cv4<$g#EFK(y;Lz5NU_8b$E|zn#LWs{=DD)O%W!^^AaCG$2jBZRQ+ERY( zvgI{k8TYp$eIN&{ISHRK;$??{j&v_tR%XMiP*qAOo2g=NGiYw(73$?eW{F9FTg5-m z<2a`p=1c@Nx@+~G~UZa09*CQCP)P$QJh$( z<;HJsPjFG!+qc~+#(6q6aWTNfW-hjHv6Txcgzpf9EzbNT0O_Xo70vMkjI+@z_u@v7 zI;IlKwcHcz#(yns%4I#kLvBaVe}X!83uGx?d;&-Zl$%r! zC&sZrc|^a5i5?WRdU`~c=+Z6zi2EAiVh0yHxhR>kC5;76wic8(3CYB`AM%ErIBfZI zNAKi9s{3vscD^mrFMVVVewFvm9u(*bSaczyD3aT@mN`ZjuHJ67&pA&v%x6u~!?9>G zr3d$MY!nQQjvD$X0H9a?4j@aecSUe3L*_|O_Hdzy%jyj%S@9%`mjk=`tBR|%X&d1EEA_gw;cSDq}XX72wg z`|u{UX7b)tIs{{17kAZ)JH=tMV~a13m_*t<9vl<9z9bD9CjGY|aFdW#^RqXuu`z zLyyQNw0abDYHPNmf*gJRrody*qbbO3SKI%#Oap74a|v(i7E=A0=Hp~YPNzqYct|`_ zC+-)I;$#Dpk23+8v{{g$SN@EmfSc(ZZ#*Wx!DD}uPgU$==jHE|X9qL8!Y(0Y2QM+X zJ3ZnF@ogUcJ4n<7=e!#L?yZk#&Q=*Q6>`xbAdR5A@XdK<-cY3%rBGl{`IV5FFyD|> z&Fm*Jrij^EG%8-R4Y-r~d7KJw`xfO48?QLX?;K2wAX!u$=!4*eEP?I(HsyMM|aN&pXd8p2bG1{0zh` zo(JA=48Bc%*C5rGt&3a0Uz^1bRvV+4aoEF@Tl^HP$hOuBxCIi6s!d|u;@^>}#vdZM z#ed?i8Q!?XFF>72baRWB@gtkwCjJXKoJc@FpbxUya*O{q7kM*MB{}EG;JkIiE&d0S zEU8@`k8nPrTfBkpvm3R)#-R8p1LPg$%%c($Cupe>lOjYi6EZt_dGbE}k>3o-NOr$R z{8%9UOw$BDJb*DNn_pYH6PJeXH1br%gvgTXh|i3)s#?vdReQugiyr}N2Qfv$ z;?io7eGDP>XdddW)#|ia9`U9)#sniNv1HOJQq<1U8o8|(auDLrqdeM4^jZxD#^F)3 zN>kk#O>t_|>NpbW&2)9lbRWLCL99EF0Jl3sMwGu88R7!cB7^14p``jf8!@`RB{M#( z8|qH&U?O9Lb(T|_iw|p@gmuKf8h@TdLOU6z@J#%wM?D))Yx}7I%8RGoe)7>tyJ-%d z;;S6h_EfyD+MUAfnz-E@Zs%*LW%GvQ$t&qJIvw=~_}eSgwLG!tzX|W+n=VY#DfqP* z{jwo$n#7)L``xsl{V;WGUf90(E($E%bqAgZtr?{UZy}Y7g4BsmbC}+0+?k77qb}-3 zEAH*9=*x-vV(zWO>+5O%IxX@pIl_A*n-_XlO;X=Ow2C`lw{Ta7cMd;a=iMNmA+dvGCKv`sq=7hVkS1bg$q;9{CjTWEnK zzX@c*-#5vp0ZiT&Os1njqjy-uU!ta>#Uy@vk9X(@y;Ebtha}-cO!%UOMHKk$6!5e- z=``D<`PHa`F3L{3b2FB~12#I$vGgAAsAH1Gk5Ixv-cdQ)=w_axWRKU7RCo<}*O1eZ zGAAyRowx%%9o~cZa|nMX@aM7~@8w76k2LD=zE{ra5&D3Jgl#N?_e0(fAE7Iq_=V@P z=yf(bcP$JYrcZdUYFIl-e|ng%bDNb21f1s8VfwQU?@c{{0O;ff_}%P0On)wWMjZ%L zSr5Elz>P`z%ZKR8&im;r7dZlf>fFPx;^APRLEZTp-FcV}Pttw3K&i%^q=&_>+h|^I z)xtnAQOy|YF|mtoBgbvz?yYXFe$XWU8x8BsaY~c_%@aZX6VoBz1@eoCYIfz3?{0Q0 z^1t1%zL5L|#R;Z65XfD3c)tT)(2rUQuU51$_LcK~uV_JRtM!k}(Iov7s@!Te?vC$%R5 z4P3vD-%o0a$|8dc%i|{GTS0t+V*8p0auhVBxWv`#G zuA7gMo1FIdKc zp&soG`X#*#Ed8+d33`S83tt}21(v@`|Ba8gpH){b?FZ_rM&j{m0MBlW2HUZRZNj@u z+i~$8(k>vzw!J#Nn?f`Uz_i^6%NrDtFiNjy5z75DAk;}f`BzMY`gK`^`b|lMI%*=+ zn^}Z9*3*Gxa4rPaybgaFau{{WbTG;%91VJ*n%F?fC!8}@bGwW~qjI3-6V;G#yT_cVJ<+vO8yG+b7Z;WKB^v45nj5k#wl!Q) z#A42^u(JrLZU<92H{h-HF?^x}quG_Yl9O>xZzD5a#7%Q!9^>9-?}OlDA={lmML)x* z{0txbj3)Y+*eN`R6DBSXK>vCn_lfW zN7h}A*B!6pbPlx>u^7rGuAOt8_c-r?U%~Y=_ZYojaG&dkiBR4r>&L6F zt-hAFRdIbUjPkYBcX3UNtDmZV$?{`9OlKVf*(Lp$xyp~Z4!%qF`mr+C_BNBYHs7(X zPdl#P(}VD4F7tJIi_2+TJD=j(gZLP}3*UF&P6wTH=`!bwba~a|bcOVZ zl2ix&Ue5YN)!)zhMAZ){pXj62?@&I`5F%UY6T$y6uUrndx~g&fN?p}C?^9Q^s%}H!@Wpa2R#+aCPxMa5h4Nn2NY@v_Kpvc}oEn^+us~1xL?y^7?-Q+R zq#G)-aNY@E!6z=5y1kiiIz`2VmG_F)G}4U~ndqA_6LusmaAntlCp)mu+?Ac*E8U`E zHp=@&ZH@H#LYA`*a$%6`6YIhM+h>6`U^M%@RkA?y5t_0EDq^REhXh^S$O_wE(FDy> zCTJE+&@8$}w2O9_Ag;H<1htEPSr1`b`4=!jsIhfPDC@b_nziS&=U{?RI}lc)6kIzz zj;9Nc=h@DMmgyKK-!TkV(R5r7_-|2Wo_N1t2dv0rH}YL4G4m59BY*f_(K)0rCy7(eOC1*Xa|R%Y*!u z(jdQ8f&4pEkn9uNSxN@E7~*0F7dvezziYZEe_x@h<)QpLXN)d6m)tvz?K}(R3&<*u z^1B=9{)#N@IRPyA#KqG_`C`H(zk2B&b7lzk{t;x6Y8xQ10bT2*CPwIkGg3}no}svV=7ieGbQw}!tg1o|{^_yqj7@BZ?xaZO<> zvDq?^uhVplWeW`9Qo0p3>Mr^;-6wX?{W$h|K)aD1cFdwj952zM(qO)eYCuPWWiVg0 z4CYhHU|#KvDuWrY4CX7A!F2`_J1FK?u0XUgOiCx*%QPM1j; zF%=VD-j)KSpDSXrtj&2J*n0bH&igUi)NM{SVk%&#gt>+Get=c@gB5Mg6eA`?Nc9{s zp-YRPaEmC6< zz${!tWxKP- zvq zbUaS8`R=5+`=Wt6#T^}o#XYy9sgOB#NX4u_NcU@5>JM zT_=^K5&si`?}>jN*)IJe#F^ND{MZ1>LbiDyu4G=FU}e{J`P=WtUutE5?_ z%x4FD;srcA=o2rYI^+{SLp9+O|Ay)^pZE_{@AZkFqq@l_eu?UvX7wGPcm=fgYC#Bk|QCZ$Q-K99IC+_>J&K?a)IO^J~3O> zC#kww)n}^uY*nLQP=mv0pZE>e3ne``J(dLFC{L1tb30Wpk~HCXP7$@tWPgvO3FmZ@ zC>+&Es&GuF$Xcm}J5SYps$Q>#-=K!a^kX`3a-fFatcKm9>aA*cER39!K{Y2sYWy8) z{GDq2U26Pys_{T4mcl14QFTbw5k&`9T28}=qGMFiv0skweM6BEQ)DC*8ITMJ0b+4Q zhM~xSs6Y;UBCW{CsNoK&`U+LQPYwTmHT(zE@E=see?*P@QB_~5#{ak){}XEbPpa{+ zQsZB(#{ZNW{~9&kXHd+3Q}y+#zE#onMMc+_6kWG5T~foKRY*ctpxXkR zVhm{VX>>n*c~kqOrroPKFY;>bcWW-Gy-3%_|7t_E?=!WKTEC{%JVuQu4{P-g;e}0) zlXp^U*mSQ}cM)Fo-Ko{Ie_dPmxSB~5a7nIniNi6kQ!L` EzgcZRz5oCK diff --git a/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class b/gradle-plugin/build/classes/groovy/functionalTest/com/google/cloud/tools/dependencies/gradle/ExclusionFileFunctionalTest.class deleted file mode 100644 index 8cb67a6de57655dbd3cf156991a8bd9e7dd967d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16820 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 NuNg^PQzBtk^CyL`GqV5y diff --git a/gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class b/gradle-plugin/build/classes/groovy/test/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginTest.class deleted file mode 100644 index 6a6c1e6e9af399bf062284c18772b4aa31c5cfb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3810 zcmb_f`*Ryt75=WRM2fs|oK4~+O$xYm8(DI##tltVHv!wUA&uOG$RxOiinVktZ!GVM z-Ib|%6-o<~H|0@Ec|&32%t^H!%vufNg+0L?6*V9Y7 zx~#p6jaJ=uX0;!rp%ezLTB}yEVLA2Ug@voS%GF+lLv_z}SJ$HTv*CApcZb3|yICBI z)M$0s53InhPB$#yKj$pE3i*=j)r(cPrkAXi#1=a6^kRcfZPzJo$WADvD-~LpnO0Db zE9_d)ffa5m94sY6n`v)QXXitlt6XWF& zfsF_i4(CSNF@<<ghTCEaT{&FR7D^1T8Dlm^B99LTewkVXD=p_Lm1F3VjBsAt&z|BSb$)M$t zcNZh|sg~WSX)ldC74GSn{BE$OaTkv-Xwyrsw4I_8BX3_aa16OV+>H^1!9-wI({9I; zMu8~YERb^5vzx)xTA+oelQpXuNc{IGWUH1R%(}B{O|5XULr95;LZ)_(v50%K7{hTv zutx^g+FeZVSX9bmVJVM=r92j=E6!F1?^bx==8mHh?dMk9?dZyV96q?QJG>id{=vP8#oH(XU#K zmcFpa1m+%3rZ^U2nLL8CSv-vQhY4Zrh9$NwArbtEeB2C{M{!Y1C-Z*GZ&q%e4({Ym?H}4cl3Dmo)=ea;dtdBFcehJN1b~TDqrRx-DaV zGzm*AozTA(iw2gk+y@Odtv-U^E}d;HEH;@WPwaQwX}U(!LDhhRruhCCeG|=1-^Y>% z?0y^~dnzf})p-J(SZ0JI_0baVs|x+Y(m4{B>g@>)-uA_^yBJ*3i`wHOMUxkU!&Oi7 zQf^hg@$jDKg#Zp*9cN9=~i5YLnXpO#1sWTg`W1J5CgKF&|eOO10@;N+#*M>)O#sqt(6 zI>A}4(!q7?FXjJ=!TfdHHZz*9`~^oxul$KS3culKa0U+GcD#f0Z~3>AD+8SQ%-*o} z5_W{vDq^i*4viPgJI2l78_4${9L&*mjK7Z2nb9i+^FD5$7$1!`?!SRkz2NGD0@lI&pK)~V4WzDJ$;d zZ&xiJL04xVPoZ;+S!p3L;3w%!04n6oA@kGaym^QD6vz9_&v86qexBol=Cd46n_uL3 z#(b_E8YP8Uzp;^_knp6W`PIMU>*txWZ@z}-=gc0G_`BhODbD|SV)5zNXYLie@CNpB wypA8ePKEPt!d%Bs&cB8i=cxMgSMdU~^sCJ*G0XekLVud|tndeh-GlUh04A6f-~a#s diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/DependencyNode.class deleted file mode 100644 index b0672c5aaec231c296db2243350236a30a4f0161..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3778 zcmbtXTXWmg7XIW*l)8!=+>(|Qn$Q-S*aekaTS!UTx};5Ow@`;dxSkzbvDL_uk>o1iLlx3snPTHpHCWpDrd=QrO2 zxE&v4Fo^MW*n$Z;9F(tzGJHBLhhhdta8HhsC)T5caxYG1a0>Uzm-|$lR#C|yi*Y$j zOWFG~ID-dzacu?NH!9ZP@;4!)sfecIxQ>T)u<+N+M z?>LsH*Nm27*9^OA8s4&zBg<x-w3hH2ldjV|?KmWR)5vJ)tT-ohOW1Y2;=86@CyUv+NMhQNyecSAE*=)A z*>r5Z>R6Uh_4TP{v+YZtN~Y&?d&=~s?X=Ck^lczC(e_PCKjgY%;fV1>TLx>OlaPhh zGAZ|U-ErWuBRWoF>ndj57Jl2MJ9C%r&XpPM^_`GZW+t5$7U{TpBu4qE*|TJDOolAC zc9~TA4Z%3|HiXv*^C~$qI;9{}aoTRxm^5W#ZR{+An`J~b41>e9xK6`13~AVleHw1W zE)BbJlZsglRn!#pA7&zWzAIW~!*4h>Z$l4^e#~*I_oJb~#90;d8Z0ywB!~536}AQk zEe%hAQSQGmf0$Ll(gpF>;KA3>#yJ&FYIq9&QSr2fXYj0sJ5bQ@U;K|PB%WpeSMjTO zPCEH~2cnQ(4KLtDf*+CPxhrnrB6-Y+krqSH>#fUG61Wtu%3|Tiu?$|q%L;Dn7Sy!? z&EOThs-S!Y#T`>h2w}aZMXO~kC>ZJhI@h+VzR5bBj2>78n^!~A;Ro4iik5=?kspDl zYZXM@q6-gXX^rY)*dH91S+AaT*qQCRg1vF7iVfjbWIM2{##k5aD=LUxjrxs(J#mzg zAFGn_mKN0)D@fF8lcwvjn7S4qGoz>Kv=(IVJrq|T=_QZEcZs<}u-n&)&I-@a%Z_V= zpk&uyZV$%{t0h}zb~@@8%M03+Z5wXU5}qep>CrfM%e|uustZl+?9@wqxBN4{3pO!D z$f1InIEE+%V@Y{MsCw&$A2`dVww%ks(G)Ba_EoD%w!-4BIH1UU7eH*WDcMGO?u zvzUH~1B(=dUG|u;c}MbghLU43G;0a%*f`BYGA@4UA48KD-y5%-NOMtGR)yy|xgU$C z%s=#IUVi39-6%GU>io3u=2>-fj@uM|vGeAq;(Y}-tf9FZOA5AKTn>A9=N;s2H^Cnd zK8}!QA4iqHVO$S}lut91NOIng{|ZXJ@Ff!Y-CrX4IhPXH!7+yv$6=1wV;#3-xw16Q0)%1CaBm=Vp zNCyhmQ$-&}u?cw$@VJ(y2SQaVriU;>4;4y*FcW>fobxC|rthb;gf*03M9(7BZ@}+g zV_gEd%o5gr4K0Bm(DxZd;vVmThFh=^x6+$Efmtn7vtpKa2kww0e#lv}vEy50XTIWf zH(%cUBQ_Rx)7eGzb4r#!{p;7l60VYFQZWzr63sr6x}RR{qp7=A$j#8_n@O&uZAWCZ z7h9nd4to|?C7^KSRz6AZvq=1bjEby^Ex!@`ZCp$6zmX!Z6&xklX+o8J4Ca@R%Waea zS;VH?)iM}-Sj5086=4)6kikJ}J4B3!aSbM7bPPtwc$N`=XyJTB$3(vHi41e$M`TI< zW=44P$1>c7AF!n?4NHQSaLq>utV^DPH#PMsQpwe1*e*kcqfCioOyA>#af0bxX3$U4 z#ZwsPyqc2}D-oJtV(cfV>*)BM0hN-ZKBU#G@;i2tq=O1S--WRV`9a1;ax;+r4udmE z39&MhlFU?=uvG#IQ=})5nvU@>5E)J4Kp=HD{>?c@`3Lzwa)GS9fp_sH=Si;1$Q@-I Jj$sPN{{|ot_rd@G diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.class deleted file mode 100644 index ed9cdcf1f7b57105491446a0102c8aea7fd900cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22070 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 DAVqU< diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.class deleted file mode 100644 index c7b6edac59dd57ca559aeb6bc34b555476f12f62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1374 zcmbtUT~8B16g|_g?Z*PON}(bsDA*5SRs4!27}98rX_TY{9(AT>O2ZPGZpmIp^QE*rts@*^cZ98*!qW_wcW9rGyW9|s zW1)A2yKnUj)2=flx#L)$7?#RS=^Ddi?wH!XD^G;(*8_QqbGBeuyeN%fzT7l)3CYUbE%w0G$jHUO52Hq2Xb~vbhagXt}b4g!3~wBRkjr{M0rFFZ;`DZ@ zC}M%(#U(k0&Y*5i;)iWvm@$Mus+~-@S*}dB$_Z0FZIsrKw$I7gF7>W5fqQW>{Uo|8 zxKBNPGj6Sx@0zwzA9GT};+|K3KNcCrNVMl+*1S^Wz3nLc7D(3lE?C0wO%^(+C`Fi$J; z1{P=x4s#?ZA6T#T5u?{6UP#2hBiTnPfg_436iXK}ePrV}ItQO64ZsZoT&BltB_t`H v0S!n95{oE-<@bp0`haemass+cwe}OaFHp}Rqk1y~s2G;$NQ~%~!+GToQrB_) diff --git a/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class b/gradle-plugin/build/classes/java/main/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.class deleted file mode 100644 index 9ea9857fa016f67fd26c85348deb5ca9cbf753eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1736 zcmbtVTTc@~6h5=P(OQ9)ix)%@xs*j&FQ^a*F=;Sr8ZgxGz}vDNmWAz3vz;~YpM20n zBJsf=;EytXvs+=i6hh+5&Y834eDi%@&uoAH`T2{87HPRaee^g_IeJo{1u|6hR7KBJ z^gKr|a;?fj_}%yDm69Bi<N`vFQcMrj%c^el~Fr-0E! zqjU=^quX?+1887X?=t##(!LaG zH)5RfXPol*O(p^M2&lbkH=S8Q2*qkF(7t*)H~Ai+={1>olL+Hh)6dq-{&E UZ8=6Udqy!Ej)byJ5B-_{3;hg_wg3PC diff --git a/gradle-plugin/build/docs/javadoc/allclasses-index.html b/gradle-plugin/build/docs/javadoc/allclasses-index.html deleted file mode 100644 index 554a8ed656..0000000000 --- a/gradle-plugin/build/docs/javadoc/allclasses-index.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - -All Classes (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    All Classes

    -
    -
    -
      -
    • - - - - - - - - - - - - - - - - - - -
      Class Summary 
      ClassDescription
      LinkageCheckerPlugin -
      Gradle plugin to create a "linkageCheck" in a Gradle project.
      -
      LinkageCheckerPluginExtension -
      Properties to control the behavior of the Linkage Checker plugin.
      -
      LinkageCheckTask -
      Task to run Linkage Checker for the dependencies of the Gradle project.
      -
      -
    • -
    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/allclasses.html b/gradle-plugin/build/docs/javadoc/allclasses.html deleted file mode 100644 index d040d3a75b..0000000000 --- a/gradle-plugin/build/docs/javadoc/allclasses.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - -All Classes (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - -
    -

    All Classes

    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/allpackages-index.html b/gradle-plugin/build/docs/javadoc/allpackages-index.html deleted file mode 100644 index ecae1e2531..0000000000 --- a/gradle-plugin/build/docs/javadoc/allpackages-index.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -All Packages (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    All Packages

    -
    -
    - -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html deleted file mode 100644 index 9c75e26a1d..0000000000 --- a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - -LinkageCheckTask (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    - -
    -
    - -

    Class LinkageCheckTask

    -
    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • org.gradle.api.internal.AbstractTask
      • -
      • -
          -
        • org.gradle.api.DefaultTask
        • -
        • -
            -
          • com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
          • -
          -
        • -
        -
      • -
      -
    • -
    -
    -
      -
    • -
      -
      All Implemented Interfaces:
      -
      java.lang.Comparable<org.gradle.api.Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal, org.gradle.api.plugins.ExtensionAware, org.gradle.api.Task, org.gradle.util.Configurable<org.gradle.api.Task>
      -
      -
      -
      public class LinkageCheckTask
      -extends org.gradle.api.DefaultTask
      -
      Task to run Linkage Checker for the dependencies of the Gradle project.
      -
    • -
    -
    -
    -
      -
    • - -
      -
        -
      • - - -

        Nested Class Summary

        -
          -
        • - - -

          Nested classes/interfaces inherited from interface org.gradle.api.Task

          -org.gradle.api.Task.Namer
        • -
        -
      • -
      -
      - -
      -
        -
      • - - -

        Field Summary

        -
          -
        • - - -

          Fields inherited from interface org.gradle.api.Task

          -TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
        • -
        -
      • -
      -
      - -
      -
        -
      • - - -

        Constructor Summary

        - - - - - - - - - - -
        Constructors 
        ConstructorDescription
        LinkageCheckTask() 
        -
      • -
      -
      - -
      -
        -
      • - - -

        Method Summary

        - - - - - - - - - - - - -
        All Methods Instance Methods Concrete Methods 
        Modifier and TypeMethodDescription
        voidrun() 
        -
          -
        • - - -

          Methods inherited from class org.gradle.api.DefaultTask

          -compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService
        • -
        -
          -
        • - - -

          Methods inherited from class org.gradle.api.internal.AbstractTask

          -appendParallelSafeAction, getAsDynamicObject, getConvention, getIdentityPath, getImpliesSubProjects, getOnlyIf, getRequiredServices, getServices, getSharedResources, getStandardOutputCapture, getTaskActions, getTaskIdentity, getTemporaryDirFactory, hasTaskActions, injectIntoNewInstance, isEnabled, isHasCustomActions, prependParallelSafeAction, setImpliesSubProjects, setLoggerMessageRewriter
        • -
        -
          -
        • - - -

          Methods inherited from class java.lang.Object

          -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        • -
        -
          -
        • - - -

          Methods inherited from interface org.gradle.api.Task

          -getConvention
        • -
        -
      • -
      -
      -
    • -
    -
    -
    -
      -
    • - -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          LinkageCheckTask

          -
          public LinkageCheckTask()
          -
        • -
        -
      • -
      -
      - -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          run

          -
          public void run()
          -         throws java.io.IOException
          -
          -
          Throws:
          -
          java.io.IOException
          -
          -
        • -
        -
      • -
      -
      -
    • -
    -
    -
    -
    - - - - diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html deleted file mode 100644 index 440662635e..0000000000 --- a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - -LinkageCheckerPlugin (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    - -
    -
    - -

    Class LinkageCheckerPlugin

    -
    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
      • -
      -
    • -
    -
    -
      -
    • -
      -
      All Implemented Interfaces:
      -
      org.gradle.api.Plugin<org.gradle.api.Project>
      -
      -
      -
      public class LinkageCheckerPlugin
      -extends java.lang.Object
      -implements org.gradle.api.Plugin<org.gradle.api.Project>
      -
      Gradle plugin to create a "linkageCheck" in a Gradle project.
      -
    • -
    -
    -
    -
      -
    • - -
      - -
      - -
      -
        -
      • - - -

        Method Summary

        - - - - - - - - - - - - -
        All Methods Instance Methods Concrete Methods 
        Modifier and TypeMethodDescription
        voidapply​(org.gradle.api.Project project) 
        -
          -
        • - - -

          Methods inherited from class java.lang.Object

          -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        • -
        -
      • -
      -
      -
    • -
    -
    -
    -
      -
    • - -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          LinkageCheckerPlugin

          -
          public LinkageCheckerPlugin()
          -
        • -
        -
      • -
      -
      - -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          apply

          -
          public void apply​(org.gradle.api.Project project)
          -
          -
          Specified by:
          -
          apply in interface org.gradle.api.Plugin<org.gradle.api.Project>
          -
          -
        • -
        -
      • -
      -
      -
    • -
    -
    -
    -
    - -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html deleted file mode 100644 index 8f06f16b10..0000000000 --- a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - -LinkageCheckerPluginExtension (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    - -
    -
    - -

    Class LinkageCheckerPluginExtension

    -
    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
      • -
      -
    • -
    -
    -
      -
    • -
      -
      public class LinkageCheckerPluginExtension
      -extends java.lang.Object
      -
      Properties to control the behavior of the Linkage Checker plugin. - -

      TODO(suztomo): Implement real configuration as in go/jdd-gradle-plugin.

      -
    • -
    -
    -
    - -
    -
    -
      -
    • - -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          LinkageCheckerPluginExtension

          -
          public LinkageCheckerPluginExtension()
          -
        • -
        -
      • -
      -
      - -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          isReportOnlyReachable

          -
          public boolean isReportOnlyReachable()
          -
        • -
        - - - -
          -
        • -

          setReportOnlyReachable

          -
          public void setReportOnlyReachable​(boolean reportOnlyReachable)
          -
        • -
        - - - -
          -
        • -

          getConfigurations

          -
          public com.google.common.collect.ImmutableSet<java.lang.String> getConfigurations()
          -
        • -
        - - - -
          -
        • -

          setConfigurations

          -
          public void setConfigurations​(java.util.List<java.lang.String> configurationNames)
          -
        • -
        - - - -
          -
        • -

          getExclusionFile

          -
          public java.lang.String getExclusionFile()
          -
        • -
        - - - -
          -
        • -

          setExclusionFile

          -
          public void setExclusionFile​(java.lang.String exclusionFile)
          -
        • -
        -
      • -
      -
      -
    • -
    -
    -
    -
    - -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html deleted file mode 100644 index 32657ee7bf..0000000000 --- a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-summary.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - -com.google.cloud.tools.dependencies.gradle (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Package com.google.cloud.tools.dependencies.gradle

    -
    -
    -
      -
    • - - - - - - - - - - - - - - - - - - - - -
      Class Summary 
      ClassDescription
      LinkageCheckerPlugin -
      Gradle plugin to create a "linkageCheck" in a Gradle project.
      -
      LinkageCheckerPluginExtension -
      Properties to control the behavior of the Linkage Checker plugin.
      -
      LinkageCheckTask -
      Task to run Linkage Checker for the dependencies of the Gradle project.
      -
      -
    • -
    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html b/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html deleted file mode 100644 index 03cb608a4f..0000000000 --- a/gradle-plugin/build/docs/javadoc/com/google/cloud/tools/dependencies/gradle/package-tree.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - -com.google.cloud.tools.dependencies.gradle Class Hierarchy (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For Package com.google.cloud.tools.dependencies.gradle

    -
    -
    -
    -

    Class Hierarchy

    -
      -
    • java.lang.Object -
        -
      • org.gradle.api.internal.AbstractTask (implements org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal) -
          -
        • org.gradle.api.DefaultTask (implements org.gradle.api.Task) - -
        • -
        -
      • -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin (implements org.gradle.api.Plugin<T>)
      • -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
      • -
      -
    • -
    -
    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/constant-values.html b/gradle-plugin/build/docs/javadoc/constant-values.html deleted file mode 100644 index 6b804cb790..0000000000 --- a/gradle-plugin/build/docs/javadoc/constant-values.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Constant Field Values (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Constant Field Values

    -
    -

    Contents

    -
    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/deprecated-list.html b/gradle-plugin/build/docs/javadoc/deprecated-list.html deleted file mode 100644 index fed9b39717..0000000000 --- a/gradle-plugin/build/docs/javadoc/deprecated-list.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - -Deprecated List (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Deprecated API

    -

    Contents

    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/element-list b/gradle-plugin/build/docs/javadoc/element-list deleted file mode 100644 index e319539711..0000000000 --- a/gradle-plugin/build/docs/javadoc/element-list +++ /dev/null @@ -1 +0,0 @@ -com.google.cloud.tools.dependencies.gradle diff --git a/gradle-plugin/build/docs/javadoc/help-doc.html b/gradle-plugin/build/docs/javadoc/help-doc.html deleted file mode 100644 index ad4cd7eb9b..0000000000 --- a/gradle-plugin/build/docs/javadoc/help-doc.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - -API Help (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    How This API Document Is Organized

    -
    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    -
    -
    -
      -
    • -
      -

      Package

      -

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:

      -
        -
      • Interfaces
      • -
      • Classes
      • -
      • Enums
      • -
      • Exceptions
      • -
      • Errors
      • -
      • Annotation Types
      • -
      -
      -
    • -
    • -
      -

      Class or Interface

      -

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      -
        -
      • Class Inheritance Diagram
      • -
      • Direct Subclasses
      • -
      • All Known Subinterfaces
      • -
      • All Known Implementing Classes
      • -
      • Class or Interface Declaration
      • -
      • Class or Interface Description
      • -
      -
      -
        -
      • Nested Class Summary
      • -
      • Field Summary
      • -
      • Property Summary
      • -
      • Constructor Summary
      • -
      • Method Summary
      • -
      -
      -
        -
      • Field Detail
      • -
      • Property Detail
      • -
      • Constructor Detail
      • -
      • Method Detail
      • -
      -

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

      -
      -
    • -
    • -
      -

      Annotation Type

      -

      Each annotation type has its own separate page with the following sections:

      -
        -
      • Annotation Type Declaration
      • -
      • Annotation Type Description
      • -
      • Required Element Summary
      • -
      • Optional Element Summary
      • -
      • Element Detail
      • -
      -
      -
    • -
    • -
      -

      Enum

      -

      Each enum has its own separate page with the following sections:

      -
        -
      • Enum Declaration
      • -
      • Enum Description
      • -
      • Enum Constant Summary
      • -
      • Enum Constant Detail
      • -
      -
      -
    • -
    • -
      -

      Tree (Class Hierarchy)

      -

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

      -
        -
      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • -
      • When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.
      • -
      -
      -
    • -
    • -
      -

      Deprecated API

      -

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

      -
      -
    • -
    • -
      -

      Index

      -

      The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

      -
      -
    • -
    • -
      -

      All Classes

      -

      The All Classes link shows all classes and interfaces except non-static nested types.

      -
      -
    • -
    • -
      -

      Serialized Form

      -

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

      -
      -
    • -
    • -
      -

      Constant Field Values

      -

      The Constant Field Values page lists the static final fields and their values.

      -
      -
    • -
    • -
      -

      Search

      -

      You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".

      -
      -
    • -
    -
    -This help file applies to API documentation generated by the standard doclet.
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/index-all.html b/gradle-plugin/build/docs/javadoc/index-all.html deleted file mode 100644 index af8010023a..0000000000 --- a/gradle-plugin/build/docs/javadoc/index-all.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - -Index (linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API) - - - - - - - - - - - - - - -
    - -
    -
    -
    A C G I L R S 
    All Classes All Packages - - -

    A

    -
    -
    apply(Project) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
    -
     
    -
    - - - -

    C

    -
    -
    com.google.cloud.tools.dependencies.gradle - package com.google.cloud.tools.dependencies.gradle
    -
     
    -
    - - - -

    G

    -
    -
    getConfigurations() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    getExclusionFile() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    - - - -

    I

    -
    -
    isReportOnlyReachable() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    - - - -

    L

    -
    -
    LinkageCheckerPlugin - Class in com.google.cloud.tools.dependencies.gradle
    -
    -
    Gradle plugin to create a "linkageCheck" in a Gradle project.
    -
    -
    LinkageCheckerPlugin() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin
    -
     
    -
    LinkageCheckerPluginExtension - Class in com.google.cloud.tools.dependencies.gradle
    -
    -
    Properties to control the behavior of the Linkage Checker plugin.
    -
    -
    LinkageCheckerPluginExtension() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    LinkageCheckTask - Class in com.google.cloud.tools.dependencies.gradle
    -
    -
    Task to run Linkage Checker for the dependencies of the Gradle project.
    -
    -
    LinkageCheckTask() - Constructor for class com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
    -
     
    -
    - - - -

    R

    -
    -
    run() - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckTask
    -
     
    -
    - - - -

    S

    -
    -
    setConfigurations(List<String>) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    setExclusionFile(String) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    setReportOnlyReachable(boolean) - Method in class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
    -
     
    -
    -A C G I L R S 
    All Classes All Packages
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/index.html b/gradle-plugin/build/docs/javadoc/index.html deleted file mode 100644 index 4d2af83a37..0000000000 --- a/gradle-plugin/build/docs/javadoc/index.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API - - - - - - - -
    - -

    com/google/cloud/tools/dependencies/gradle/package-summary.html

    -
    - - diff --git a/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css b/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css deleted file mode 100644 index facf852c27..0000000000 --- a/gradle-plugin/build/docs/javadoc/jquery-ui.overrides.css +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -.ui-state-active, -.ui-widget-content .ui-state-active, -.ui-widget-header .ui-state-active, -a.ui-button:active, -.ui-button:active, -.ui-button.ui-state-active:hover { - /* Overrides the color of selection used in jQuery UI */ - background: #F8981D; - border: 1px solid #F8981D; -} diff --git a/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js b/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js deleted file mode 100644 index 50937333b9..0000000000 --- a/gradle-plugin/build/docs/javadoc/jquery/external/jquery/jquery.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
    " ], - col: [ 2, "", "
    " ], - tr: [ 2, "", "
    " ], - td: [ 3, "", "
    " ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( "\r\n"; - -// inject VBScript -document.write(IEBinaryToArray_ByteStr_Script); - -global.JSZipUtils._getBinaryFromXHR = function (xhr) { - var binary = xhr.responseBody; - var byteMapping = {}; - for ( var i = 0; i < 256; i++ ) { - for ( var j = 0; j < 256; j++ ) { - byteMapping[ String.fromCharCode( i + (j << 8) ) ] = - String.fromCharCode(i) + String.fromCharCode(j); - } - } - var rawBytes = IEBinaryToArray_ByteStr(binary); - var lastChr = IEBinaryToArray_ByteStr_Last(binary); - return rawBytes.replace(/[\s\S]/g, function( match ) { - return byteMapping[match]; - }) + lastChr; -}; - -// enforcing Stuk's coding style -// vim: set shiftwidth=4 softtabstop=4: - -},{}]},{},[1]) -; diff --git a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js deleted file mode 100644 index 93d8bc8ef2..0000000000 --- a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - -JSZipUtils - A collection of cross-browser utilities to go along with JSZip. - - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js b/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js deleted file mode 100644 index 775895ec92..0000000000 --- a/gradle-plugin/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js +++ /dev/null @@ -1,118 +0,0 @@ -/*! - -JSZipUtils - A collection of cross-browser utilities to go along with JSZip. - - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g - -(c) 2009-2016 Stuart Knightley -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. - -JSZip uses the library pako released under the MIT license : -https://github.com/nodeca/pako/blob/master/LICENSE -*/ - -(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; - enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); - enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; - enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; - - output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); - - } - - return output.join(""); -}; - -// public method for decoding -exports.decode = function(input) { - var chr1, chr2, chr3; - var enc1, enc2, enc3, enc4; - var i = 0, resultIndex = 0; - - var dataUrlPrefix = "data:"; - - if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { - // This is a common error: people give a data url - // (data:image/png;base64,iVBOR...) with a {base64: true} and - // wonders why things don't work. - // We can detect that the string input looks like a data url but we - // *can't* be sure it is one: removing everything up to the comma would - // be too dangerous. - throw new Error("Invalid base64 input, it looks like a data url."); - } - - input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); - - var totalLength = input.length * 3 / 4; - if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { - totalLength--; - } - if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { - totalLength--; - } - if (totalLength % 1 !== 0) { - // totalLength is not an integer, the length does not match a valid - // base64 content. That can happen if: - // - the input is not a base64 content - // - the input is *almost* a base64 content, with a extra chars at the - // beginning or at the end - // - the input uses a base64 variant (base64url for example) - throw new Error("Invalid base64 input, bad content length."); - } - var output; - if (support.uint8array) { - output = new Uint8Array(totalLength|0); - } else { - output = new Array(totalLength|0); - } - - while (i < input.length) { - - enc1 = _keyStr.indexOf(input.charAt(i++)); - enc2 = _keyStr.indexOf(input.charAt(i++)); - enc3 = _keyStr.indexOf(input.charAt(i++)); - enc4 = _keyStr.indexOf(input.charAt(i++)); - - chr1 = (enc1 << 2) | (enc2 >> 4); - chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); - chr3 = ((enc3 & 3) << 6) | enc4; - - output[resultIndex++] = chr1; - - if (enc3 !== 64) { - output[resultIndex++] = chr2; - } - if (enc4 !== 64) { - output[resultIndex++] = chr3; - } - - } - - return output; -}; - -},{"./support":30,"./utils":32}],2:[function(require,module,exports){ -'use strict'; - -var external = require("./external"); -var DataWorker = require('./stream/DataWorker'); -var Crc32Probe = require('./stream/Crc32Probe'); -var DataLengthProbe = require('./stream/DataLengthProbe'); - -/** - * Represent a compressed object, with everything needed to decompress it. - * @constructor - * @param {number} compressedSize the size of the data compressed. - * @param {number} uncompressedSize the size of the data after decompression. - * @param {number} crc32 the crc32 of the decompressed file. - * @param {object} compression the type of compression, see lib/compressions.js. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. - */ -function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { - this.compressedSize = compressedSize; - this.uncompressedSize = uncompressedSize; - this.crc32 = crc32; - this.compression = compression; - this.compressedContent = data; -} - -CompressedObject.prototype = { - /** - * Create a worker to get the uncompressed content. - * @return {GenericWorker} the worker. - */ - getContentWorker: function () { - var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) - .pipe(this.compression.uncompressWorker()) - .pipe(new DataLengthProbe("data_length")); - - var that = this; - worker.on("end", function () { - if (this.streamInfo['data_length'] !== that.uncompressedSize) { - throw new Error("Bug : uncompressed data size mismatch"); - } - }); - return worker; - }, - /** - * Create a worker to get the compressed content. - * @return {GenericWorker} the worker. - */ - getCompressedWorker: function () { - return new DataWorker(external.Promise.resolve(this.compressedContent)) - .withStreamInfo("compressedSize", this.compressedSize) - .withStreamInfo("uncompressedSize", this.uncompressedSize) - .withStreamInfo("crc32", this.crc32) - .withStreamInfo("compression", this.compression) - ; - } -}; - -/** - * Chain the given worker with other workers to compress the content with the - * given compression. - * @param {GenericWorker} uncompressedWorker the worker to pipe. - * @param {Object} compression the compression object. - * @param {Object} compressionOptions the options to use when compressing. - * @return {GenericWorker} the new worker compressing the content. - */ -CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { - return uncompressedWorker - .pipe(new Crc32Probe()) - .pipe(new DataLengthProbe("uncompressedSize")) - .pipe(compression.compressWorker(compressionOptions)) - .pipe(new DataLengthProbe("compressedSize")) - .withStreamInfo("compression", compression); -}; - -module.exports = CompressedObject; - -},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require("./stream/GenericWorker"); - -exports.STORE = { - magic: "\x00\x00", - compressWorker : function (compressionOptions) { - return new GenericWorker("STORE compression"); - }, - uncompressWorker : function () { - return new GenericWorker("STORE decompression"); - } -}; -exports.DEFLATE = require('./flate'); - -},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ -'use strict'; - -var utils = require('./utils'); - -/** - * The following functions come from pako, from pako/lib/zlib/crc32.js - * released under the MIT license, see pako https://github.com/nodeca/pako/ - */ - -// Use ordinary array, since untyped makes no boost here -function makeTable() { - var c, table = []; - - for(var n =0; n < 256; n++){ - c = n; - for(var k =0; k < 8; k++){ - c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); - } - table[n] = c; - } - - return table; -} - -// Create table on load. Just 255 signed longs. Not a problem. -var crcTable = makeTable(); - - -function crc32(crc, buf, len, pos) { - var t = crcTable, end = pos + len; - - crc = crc ^ (-1); - - for (var i = pos; i < end; i++ ) { - crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; - } - - return (crc ^ (-1)); // >>> 0; -} - -// That's all for the pako functions. - -/** - * Compute the crc32 of a string. - * This is almost the same as the function crc32, but for strings. Using the - * same function for the two use cases leads to horrible performances. - * @param {Number} crc the starting value of the crc. - * @param {String} str the string to use. - * @param {Number} len the length of the string. - * @param {Number} pos the starting position for the crc32 computation. - * @return {Number} the computed crc32. - */ -function crc32str(crc, str, len, pos) { - var t = crcTable, end = pos + len; - - crc = crc ^ (-1); - - for (var i = pos; i < end; i++ ) { - crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; - } - - return (crc ^ (-1)); // >>> 0; -} - -module.exports = function crc32wrapper(input, crc) { - if (typeof input === "undefined" || !input.length) { - return 0; - } - - var isArray = utils.getTypeOf(input) !== "string"; - - if(isArray) { - return crc32(crc|0, input, input.length, 0); - } else { - return crc32str(crc|0, input, input.length, 0); - } -}; - -},{"./utils":32}],5:[function(require,module,exports){ -'use strict'; -exports.base64 = false; -exports.binary = false; -exports.dir = false; -exports.createFolders = true; -exports.date = null; -exports.compression = null; -exports.compressionOptions = null; -exports.comment = null; -exports.unixPermissions = null; -exports.dosPermissions = null; - -},{}],6:[function(require,module,exports){ -/* global Promise */ -'use strict'; - -// load the global object first: -// - it should be better integrated in the system (unhandledRejection in node) -// - the environment may have a custom Promise implementation (see zone.js) -var ES6Promise = null; -if (typeof Promise !== "undefined") { - ES6Promise = Promise; -} else { - ES6Promise = require("lie"); -} - -/** - * Let the user use/change some implementations. - */ -module.exports = { - Promise: ES6Promise -}; - -},{"lie":37}],7:[function(require,module,exports){ -'use strict'; -var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); - -var pako = require("pako"); -var utils = require("./utils"); -var GenericWorker = require("./stream/GenericWorker"); - -var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; - -exports.magic = "\x08\x00"; - -/** - * Create a worker that uses pako to inflate/deflate. - * @constructor - * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". - * @param {Object} options the options to use when (de)compressing. - */ -function FlateWorker(action, options) { - GenericWorker.call(this, "FlateWorker/" + action); - - this._pako = null; - this._pakoAction = action; - this._pakoOptions = options; - // the `meta` object from the last chunk received - // this allow this worker to pass around metadata - this.meta = {}; -} - -utils.inherits(FlateWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -FlateWorker.prototype.processChunk = function (chunk) { - this.meta = chunk.meta; - if (this._pako === null) { - this._createPako(); - } - this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); -}; - -/** - * @see GenericWorker.flush - */ -FlateWorker.prototype.flush = function () { - GenericWorker.prototype.flush.call(this); - if (this._pako === null) { - this._createPako(); - } - this._pako.push([], true); -}; -/** - * @see GenericWorker.cleanUp - */ -FlateWorker.prototype.cleanUp = function () { - GenericWorker.prototype.cleanUp.call(this); - this._pako = null; -}; - -/** - * Create the _pako object. - * TODO: lazy-loading this object isn't the best solution but it's the - * quickest. The best solution is to lazy-load the worker list. See also the - * issue #446. - */ -FlateWorker.prototype._createPako = function () { - this._pako = new pako[this._pakoAction]({ - raw: true, - level: this._pakoOptions.level || -1 // default compression - }); - var self = this; - this._pako.onData = function(data) { - self.push({ - data : data, - meta : self.meta - }); - }; -}; - -exports.compressWorker = function (compressionOptions) { - return new FlateWorker("Deflate", compressionOptions); -}; -exports.uncompressWorker = function () { - return new FlateWorker("Inflate", {}); -}; - -},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('../stream/GenericWorker'); -var utf8 = require('../utf8'); -var crc32 = require('../crc32'); -var signature = require('../signature'); - -/** - * Transform an integer into a string in hexadecimal. - * @private - * @param {number} dec the number to convert. - * @param {number} bytes the number of bytes to generate. - * @returns {string} the result. - */ -var decToHex = function(dec, bytes) { - var hex = "", i; - for (i = 0; i < bytes; i++) { - hex += String.fromCharCode(dec & 0xff); - dec = dec >>> 8; - } - return hex; -}; - -/** - * Generate the UNIX part of the external file attributes. - * @param {Object} unixPermissions the unix permissions or null. - * @param {Boolean} isDir true if the entry is a directory, false otherwise. - * @return {Number} a 32 bit integer. - * - * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : - * - * TTTTsstrwxrwxrwx0000000000ADVSHR - * ^^^^____________________________ file type, see zipinfo.c (UNX_*) - * ^^^_________________________ setuid, setgid, sticky - * ^^^^^^^^^________________ permissions - * ^^^^^^^^^^______ not used ? - * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only - */ -var generateUnixExternalFileAttr = function (unixPermissions, isDir) { - - var result = unixPermissions; - if (!unixPermissions) { - // I can't use octal values in strict mode, hence the hexa. - // 040775 => 0x41fd - // 0100664 => 0x81b4 - result = isDir ? 0x41fd : 0x81b4; - } - return (result & 0xFFFF) << 16; -}; - -/** - * Generate the DOS part of the external file attributes. - * @param {Object} dosPermissions the dos permissions or null. - * @param {Boolean} isDir true if the entry is a directory, false otherwise. - * @return {Number} a 32 bit integer. - * - * Bit 0 Read-Only - * Bit 1 Hidden - * Bit 2 System - * Bit 3 Volume Label - * Bit 4 Directory - * Bit 5 Archive - */ -var generateDosExternalFileAttr = function (dosPermissions, isDir) { - - // the dir flag is already set for compatibility - return (dosPermissions || 0) & 0x3F; -}; - -/** - * Generate the various parts used in the construction of the final zip file. - * @param {Object} streamInfo the hash with information about the compressed file. - * @param {Boolean} streamedContent is the content streamed ? - * @param {Boolean} streamingEnded is the stream finished ? - * @param {number} offset the current offset from the start of the zip file. - * @param {String} platform let's pretend we are this platform (change platform dependents fields) - * @param {Function} encodeFileName the function to encode the file name / comment. - * @return {Object} the zip parts. - */ -var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { - var file = streamInfo['file'], - compression = streamInfo['compression'], - useCustomEncoding = encodeFileName !== utf8.utf8encode, - encodedFileName = utils.transformTo("string", encodeFileName(file.name)), - utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), - comment = file.comment, - encodedComment = utils.transformTo("string", encodeFileName(comment)), - utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), - useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, - useUTF8ForComment = utfEncodedComment.length !== comment.length, - dosTime, - dosDate, - extraFields = "", - unicodePathExtraField = "", - unicodeCommentExtraField = "", - dir = file.dir, - date = file.date; - - - var dataInfo = { - crc32 : 0, - compressedSize : 0, - uncompressedSize : 0 - }; - - // if the content is streamed, the sizes/crc32 are only available AFTER - // the end of the stream. - if (!streamedContent || streamingEnded) { - dataInfo.crc32 = streamInfo['crc32']; - dataInfo.compressedSize = streamInfo['compressedSize']; - dataInfo.uncompressedSize = streamInfo['uncompressedSize']; - } - - var bitflag = 0; - if (streamedContent) { - // Bit 3: the sizes/crc32 are set to zero in the local header. - // The correct values are put in the data descriptor immediately - // following the compressed data. - bitflag |= 0x0008; - } - if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { - // Bit 11: Language encoding flag (EFS). - bitflag |= 0x0800; - } - - - var extFileAttr = 0; - var versionMadeBy = 0; - if (dir) { - // dos or unix, we set the dos dir flag - extFileAttr |= 0x00010; - } - if(platform === "UNIX") { - versionMadeBy = 0x031E; // UNIX, version 3.0 - extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); - } else { // DOS or other, fallback to DOS - versionMadeBy = 0x0014; // DOS, version 2.0 - extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); - } - - // date - // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html - // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html - // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html - - dosTime = date.getUTCHours(); - dosTime = dosTime << 6; - dosTime = dosTime | date.getUTCMinutes(); - dosTime = dosTime << 5; - dosTime = dosTime | date.getUTCSeconds() / 2; - - dosDate = date.getUTCFullYear() - 1980; - dosDate = dosDate << 4; - dosDate = dosDate | (date.getUTCMonth() + 1); - dosDate = dosDate << 5; - dosDate = dosDate | date.getUTCDate(); - - if (useUTF8ForFileName) { - // set the unicode path extra field. unzip needs at least one extra - // field to correctly handle unicode path, so using the path is as good - // as any other information. This could improve the situation with - // other archive managers too. - // This field is usually used without the utf8 flag, with a non - // unicode path in the header (winrar, winzip). This helps (a bit) - // with the messy Windows' default compressed folders feature but - // breaks on p7zip which doesn't seek the unicode path extra field. - // So for now, UTF-8 everywhere ! - unicodePathExtraField = - // Version - decToHex(1, 1) + - // NameCRC32 - decToHex(crc32(encodedFileName), 4) + - // UnicodeName - utfEncodedFileName; - - extraFields += - // Info-ZIP Unicode Path Extra Field - "\x75\x70" + - // size - decToHex(unicodePathExtraField.length, 2) + - // content - unicodePathExtraField; - } - - if(useUTF8ForComment) { - - unicodeCommentExtraField = - // Version - decToHex(1, 1) + - // CommentCRC32 - decToHex(crc32(encodedComment), 4) + - // UnicodeName - utfEncodedComment; - - extraFields += - // Info-ZIP Unicode Path Extra Field - "\x75\x63" + - // size - decToHex(unicodeCommentExtraField.length, 2) + - // content - unicodeCommentExtraField; - } - - var header = ""; - - // version needed to extract - header += "\x0A\x00"; - // general purpose bit flag - header += decToHex(bitflag, 2); - // compression method - header += compression.magic; - // last mod file time - header += decToHex(dosTime, 2); - // last mod file date - header += decToHex(dosDate, 2); - // crc-32 - header += decToHex(dataInfo.crc32, 4); - // compressed size - header += decToHex(dataInfo.compressedSize, 4); - // uncompressed size - header += decToHex(dataInfo.uncompressedSize, 4); - // file name length - header += decToHex(encodedFileName.length, 2); - // extra field length - header += decToHex(extraFields.length, 2); - - - var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; - - var dirRecord = signature.CENTRAL_FILE_HEADER + - // version made by (00: DOS) - decToHex(versionMadeBy, 2) + - // file header (common to file and central directory) - header + - // file comment length - decToHex(encodedComment.length, 2) + - // disk number start - "\x00\x00" + - // internal file attributes TODO - "\x00\x00" + - // external file attributes - decToHex(extFileAttr, 4) + - // relative offset of local header - decToHex(offset, 4) + - // file name - encodedFileName + - // extra field - extraFields + - // file comment - encodedComment; - - return { - fileRecord: fileRecord, - dirRecord: dirRecord - }; -}; - -/** - * Generate the EOCD record. - * @param {Number} entriesCount the number of entries in the zip file. - * @param {Number} centralDirLength the length (in bytes) of the central dir. - * @param {Number} localDirLength the length (in bytes) of the local dir. - * @param {String} comment the zip file comment as a binary string. - * @param {Function} encodeFileName the function to encode the comment. - * @return {String} the EOCD record. - */ -var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { - var dirEnd = ""; - var encodedComment = utils.transformTo("string", encodeFileName(comment)); - - // end of central dir signature - dirEnd = signature.CENTRAL_DIRECTORY_END + - // number of this disk - "\x00\x00" + - // number of the disk with the start of the central directory - "\x00\x00" + - // total number of entries in the central directory on this disk - decToHex(entriesCount, 2) + - // total number of entries in the central directory - decToHex(entriesCount, 2) + - // size of the central directory 4 bytes - decToHex(centralDirLength, 4) + - // offset of start of central directory with respect to the starting disk number - decToHex(localDirLength, 4) + - // .ZIP file comment length - decToHex(encodedComment.length, 2) + - // .ZIP file comment - encodedComment; - - return dirEnd; -}; - -/** - * Generate data descriptors for a file entry. - * @param {Object} streamInfo the hash generated by a worker, containing information - * on the file entry. - * @return {String} the data descriptors. - */ -var generateDataDescriptors = function (streamInfo) { - var descriptor = ""; - descriptor = signature.DATA_DESCRIPTOR + - // crc-32 4 bytes - decToHex(streamInfo['crc32'], 4) + - // compressed size 4 bytes - decToHex(streamInfo['compressedSize'], 4) + - // uncompressed size 4 bytes - decToHex(streamInfo['uncompressedSize'], 4); - - return descriptor; -}; - - -/** - * A worker to concatenate other workers to create a zip file. - * @param {Boolean} streamFiles `true` to stream the content of the files, - * `false` to accumulate it. - * @param {String} comment the comment to use. - * @param {String} platform the platform to use, "UNIX" or "DOS". - * @param {Function} encodeFileName the function to encode file names and comments. - */ -function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { - GenericWorker.call(this, "ZipFileWorker"); - // The number of bytes written so far. This doesn't count accumulated chunks. - this.bytesWritten = 0; - // The comment of the zip file - this.zipComment = comment; - // The platform "generating" the zip file. - this.zipPlatform = platform; - // the function to encode file names and comments. - this.encodeFileName = encodeFileName; - // Should we stream the content of the files ? - this.streamFiles = streamFiles; - // If `streamFiles` is false, we will need to accumulate the content of the - // files to calculate sizes / crc32 (and write them *before* the content). - // This boolean indicates if we are accumulating chunks (it will change a lot - // during the lifetime of this worker). - this.accumulate = false; - // The buffer receiving chunks when accumulating content. - this.contentBuffer = []; - // The list of generated directory records. - this.dirRecords = []; - // The offset (in bytes) from the beginning of the zip file for the current source. - this.currentSourceOffset = 0; - // The total number of entries in this zip file. - this.entriesCount = 0; - // the name of the file currently being added, null when handling the end of the zip file. - // Used for the emitted metadata. - this.currentFile = null; - - - - this._sources = []; -} -utils.inherits(ZipFileWorker, GenericWorker); - -/** - * @see GenericWorker.push - */ -ZipFileWorker.prototype.push = function (chunk) { - - var currentFilePercent = chunk.meta.percent || 0; - var entriesCount = this.entriesCount; - var remainingFiles = this._sources.length; - - if(this.accumulate) { - this.contentBuffer.push(chunk); - } else { - this.bytesWritten += chunk.data.length; - - GenericWorker.prototype.push.call(this, { - data : chunk.data, - meta : { - currentFile : this.currentFile, - percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 - } - }); - } -}; - -/** - * The worker started a new source (an other worker). - * @param {Object} streamInfo the streamInfo object from the new source. - */ -ZipFileWorker.prototype.openedSource = function (streamInfo) { - this.currentSourceOffset = this.bytesWritten; - this.currentFile = streamInfo['file'].name; - - var streamedContent = this.streamFiles && !streamInfo['file'].dir; - - // don't stream folders (because they don't have any content) - if(streamedContent) { - var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); - this.push({ - data : record.fileRecord, - meta : {percent:0} - }); - } else { - // we need to wait for the whole file before pushing anything - this.accumulate = true; - } -}; - -/** - * The worker finished a source (an other worker). - * @param {Object} streamInfo the streamInfo object from the finished source. - */ -ZipFileWorker.prototype.closedSource = function (streamInfo) { - this.accumulate = false; - var streamedContent = this.streamFiles && !streamInfo['file'].dir; - var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); - - this.dirRecords.push(record.dirRecord); - if(streamedContent) { - // after the streamed file, we put data descriptors - this.push({ - data : generateDataDescriptors(streamInfo), - meta : {percent:100} - }); - } else { - // the content wasn't streamed, we need to push everything now - // first the file record, then the content - this.push({ - data : record.fileRecord, - meta : {percent:0} - }); - while(this.contentBuffer.length) { - this.push(this.contentBuffer.shift()); - } - } - this.currentFile = null; -}; - -/** - * @see GenericWorker.flush - */ -ZipFileWorker.prototype.flush = function () { - - var localDirLength = this.bytesWritten; - for(var i = 0; i < this.dirRecords.length; i++) { - this.push({ - data : this.dirRecords[i], - meta : {percent:100} - }); - } - var centralDirLength = this.bytesWritten - localDirLength; - - var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); - - this.push({ - data : dirEnd, - meta : {percent:100} - }); -}; - -/** - * Prepare the next source to be read. - */ -ZipFileWorker.prototype.prepareNextSource = function () { - this.previous = this._sources.shift(); - this.openedSource(this.previous.streamInfo); - if (this.isPaused) { - this.previous.pause(); - } else { - this.previous.resume(); - } -}; - -/** - * @see GenericWorker.registerPrevious - */ -ZipFileWorker.prototype.registerPrevious = function (previous) { - this._sources.push(previous); - var self = this; - - previous.on('data', function (chunk) { - self.processChunk(chunk); - }); - previous.on('end', function () { - self.closedSource(self.previous.streamInfo); - if(self._sources.length) { - self.prepareNextSource(); - } else { - self.end(); - } - }); - previous.on('error', function (e) { - self.error(e); - }); - return this; -}; - -/** - * @see GenericWorker.resume - */ -ZipFileWorker.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if (!this.previous && this._sources.length) { - this.prepareNextSource(); - return true; - } - if (!this.previous && !this._sources.length && !this.generatedError) { - this.end(); - return true; - } -}; - -/** - * @see GenericWorker.error - */ -ZipFileWorker.prototype.error = function (e) { - var sources = this._sources; - if(!GenericWorker.prototype.error.call(this, e)) { - return false; - } - for(var i = 0; i < sources.length; i++) { - try { - sources[i].error(e); - } catch(e) { - // the `error` exploded, nothing to do - } - } - return true; -}; - -/** - * @see GenericWorker.lock - */ -ZipFileWorker.prototype.lock = function () { - GenericWorker.prototype.lock.call(this); - var sources = this._sources; - for(var i = 0; i < sources.length; i++) { - sources[i].lock(); - } -}; - -module.exports = ZipFileWorker; - -},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ -'use strict'; - -var compressions = require('../compressions'); -var ZipFileWorker = require('./ZipFileWorker'); - -/** - * Find the compression to use. - * @param {String} fileCompression the compression defined at the file level, if any. - * @param {String} zipCompression the compression defined at the load() level. - * @return {Object} the compression object to use. - */ -var getCompression = function (fileCompression, zipCompression) { - - var compressionName = fileCompression || zipCompression; - var compression = compressions[compressionName]; - if (!compression) { - throw new Error(compressionName + " is not a valid compression method !"); - } - return compression; -}; - -/** - * Create a worker to generate a zip file. - * @param {JSZip} zip the JSZip instance at the right root level. - * @param {Object} options to generate the zip file. - * @param {String} comment the comment to use. - */ -exports.generateWorker = function (zip, options, comment) { - - var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); - var entriesCount = 0; - try { - - zip.forEach(function (relativePath, file) { - entriesCount++; - var compression = getCompression(file.options.compression, options.compression); - var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; - var dir = file.dir, date = file.date; - - file._compressWorker(compression, compressionOptions) - .withStreamInfo("file", { - name : relativePath, - dir : dir, - date : date, - comment : file.comment || "", - unixPermissions : file.unixPermissions, - dosPermissions : file.dosPermissions - }) - .pipe(zipFileWorker); - }); - zipFileWorker.entriesCount = entriesCount; - } catch (e) { - zipFileWorker.error(e); - } - - return zipFileWorker; -}; - -},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ -'use strict'; - -/** - * Representation a of zip file in js - * @constructor - */ -function JSZip() { - // if this constructor is used without `new`, it adds `new` before itself: - if(!(this instanceof JSZip)) { - return new JSZip(); - } - - if(arguments.length) { - throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); - } - - // object containing the files : - // { - // "folder/" : {...}, - // "folder/data.txt" : {...} - // } - // NOTE: we use a null prototype because we do not - // want filenames like "toString" coming from a zip file - // to overwrite methods and attributes in a normal Object. - this.files = Object.create(null); - - this.comment = null; - - // Where we are in the hierarchy - this.root = ""; - this.clone = function() { - var newObj = new JSZip(); - for (var i in this) { - if (typeof this[i] !== "function") { - newObj[i] = this[i]; - } - } - return newObj; - }; -} -JSZip.prototype = require('./object'); -JSZip.prototype.loadAsync = require('./load'); -JSZip.support = require('./support'); -JSZip.defaults = require('./defaults'); - -// TODO find a better way to handle this version, -// a require('package.json').version doesn't work with webpack, see #327 -JSZip.version = "3.7.1"; - -JSZip.loadAsync = function (content, options) { - return new JSZip().loadAsync(content, options); -}; - -JSZip.external = require("./external"); -module.exports = JSZip; - -},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ -'use strict'; -var utils = require('./utils'); -var external = require("./external"); -var utf8 = require('./utf8'); -var ZipEntries = require('./zipEntries'); -var Crc32Probe = require('./stream/Crc32Probe'); -var nodejsUtils = require("./nodejsUtils"); - -/** - * Check the CRC32 of an entry. - * @param {ZipEntry} zipEntry the zip entry to check. - * @return {Promise} the result. - */ -function checkEntryCRC32(zipEntry) { - return new external.Promise(function (resolve, reject) { - var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); - worker.on("error", function (e) { - reject(e); - }) - .on("end", function () { - if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { - reject(new Error("Corrupted zip : CRC32 mismatch")); - } else { - resolve(); - } - }) - .resume(); - }); -} - -module.exports = function (data, options) { - var zip = this; - options = utils.extend(options || {}, { - base64: false, - checkCRC32: false, - optimizedBinaryString: false, - createFolders: false, - decodeFileName: utf8.utf8decode - }); - - if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { - return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); - } - - return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) - .then(function (data) { - var zipEntries = new ZipEntries(options); - zipEntries.load(data); - return zipEntries; - }).then(function checkCRC32(zipEntries) { - var promises = [external.Promise.resolve(zipEntries)]; - var files = zipEntries.files; - if (options.checkCRC32) { - for (var i = 0; i < files.length; i++) { - promises.push(checkEntryCRC32(files[i])); - } - } - return external.Promise.all(promises); - }).then(function addFiles(results) { - var zipEntries = results.shift(); - var files = zipEntries.files; - for (var i = 0; i < files.length; i++) { - var input = files[i]; - zip.file(input.fileNameStr, input.decompressed, { - binary: true, - optimizedBinaryString: true, - date: input.date, - dir: input.dir, - comment: input.fileCommentStr.length ? input.fileCommentStr : null, - unixPermissions: input.unixPermissions, - dosPermissions: input.dosPermissions, - createFolders: options.createFolders - }); - } - if (zipEntries.zipComment.length) { - zip.comment = zipEntries.zipComment; - } - - return zip; - }); -}; - -},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ -"use strict"; - -var utils = require('../utils'); -var GenericWorker = require('../stream/GenericWorker'); - -/** - * A worker that use a nodejs stream as source. - * @constructor - * @param {String} filename the name of the file entry for this stream. - * @param {Readable} stream the nodejs stream. - */ -function NodejsStreamInputAdapter(filename, stream) { - GenericWorker.call(this, "Nodejs stream input adapter for " + filename); - this._upstreamEnded = false; - this._bindStream(stream); -} - -utils.inherits(NodejsStreamInputAdapter, GenericWorker); - -/** - * Prepare the stream and bind the callbacks on it. - * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. - * @param {Stream} stream the nodejs stream to use. - */ -NodejsStreamInputAdapter.prototype._bindStream = function (stream) { - var self = this; - this._stream = stream; - stream.pause(); - stream - .on("data", function (chunk) { - self.push({ - data: chunk, - meta : { - percent : 0 - } - }); - }) - .on("error", function (e) { - if(self.isPaused) { - this.generatedError = e; - } else { - self.error(e); - } - }) - .on("end", function () { - if(self.isPaused) { - self._upstreamEnded = true; - } else { - self.end(); - } - }); -}; -NodejsStreamInputAdapter.prototype.pause = function () { - if(!GenericWorker.prototype.pause.call(this)) { - return false; - } - this._stream.pause(); - return true; -}; -NodejsStreamInputAdapter.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if(this._upstreamEnded) { - this.end(); - } else { - this._stream.resume(); - } - - return true; -}; - -module.exports = NodejsStreamInputAdapter; - -},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ -'use strict'; - -var Readable = require('readable-stream').Readable; - -var utils = require('../utils'); -utils.inherits(NodejsStreamOutputAdapter, Readable); - -/** -* A nodejs stream using a worker as source. -* @see the SourceWrapper in http://nodejs.org/api/stream.html -* @constructor -* @param {StreamHelper} helper the helper wrapping the worker -* @param {Object} options the nodejs stream options -* @param {Function} updateCb the update callback. -*/ -function NodejsStreamOutputAdapter(helper, options, updateCb) { - Readable.call(this, options); - this._helper = helper; - - var self = this; - helper.on("data", function (data, meta) { - if (!self.push(data)) { - self._helper.pause(); - } - if(updateCb) { - updateCb(meta); - } - }) - .on("error", function(e) { - self.emit('error', e); - }) - .on("end", function () { - self.push(null); - }); -} - - -NodejsStreamOutputAdapter.prototype._read = function() { - this._helper.resume(); -}; - -module.exports = NodejsStreamOutputAdapter; - -},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ -'use strict'; - -module.exports = { - /** - * True if this is running in Nodejs, will be undefined in a browser. - * In a browser, browserify won't include this file and the whole module - * will be resolved an empty object. - */ - isNode : typeof Buffer !== "undefined", - /** - * Create a new nodejs Buffer from an existing content. - * @param {Object} data the data to pass to the constructor. - * @param {String} encoding the encoding to use. - * @return {Buffer} a new Buffer. - */ - newBufferFrom: function(data, encoding) { - if (Buffer.from && Buffer.from !== Uint8Array.from) { - return Buffer.from(data, encoding); - } else { - if (typeof data === "number") { - // Safeguard for old Node.js versions. On newer versions, - // Buffer.from(number) / Buffer(number, encoding) already throw. - throw new Error("The \"data\" argument must not be a number"); - } - return new Buffer(data, encoding); - } - }, - /** - * Create a new nodejs Buffer with the specified size. - * @param {Integer} size the size of the buffer. - * @return {Buffer} a new Buffer. - */ - allocBuffer: function (size) { - if (Buffer.alloc) { - return Buffer.alloc(size); - } else { - var buf = new Buffer(size); - buf.fill(0); - return buf; - } - }, - /** - * Find out if an object is a Buffer. - * @param {Object} b the object to test. - * @return {Boolean} true if the object is a Buffer, false otherwise. - */ - isBuffer : function(b){ - return Buffer.isBuffer(b); - }, - - isStream : function (obj) { - return obj && - typeof obj.on === "function" && - typeof obj.pause === "function" && - typeof obj.resume === "function"; - } -}; - -},{}],15:[function(require,module,exports){ -'use strict'; -var utf8 = require('./utf8'); -var utils = require('./utils'); -var GenericWorker = require('./stream/GenericWorker'); -var StreamHelper = require('./stream/StreamHelper'); -var defaults = require('./defaults'); -var CompressedObject = require('./compressedObject'); -var ZipObject = require('./zipObject'); -var generate = require("./generate"); -var nodejsUtils = require("./nodejsUtils"); -var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); - - -/** - * Add a file in the current folder. - * @private - * @param {string} name the name of the file - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file - * @param {Object} originalOptions the options of the file - * @return {Object} the new file. - */ -var fileAdd = function(name, data, originalOptions) { - // be sure sub folders exist - var dataType = utils.getTypeOf(data), - parent; - - - /* - * Correct options. - */ - - var o = utils.extend(originalOptions || {}, defaults); - o.date = o.date || new Date(); - if (o.compression !== null) { - o.compression = o.compression.toUpperCase(); - } - - if (typeof o.unixPermissions === "string") { - o.unixPermissions = parseInt(o.unixPermissions, 8); - } - - // UNX_IFDIR 0040000 see zipinfo.c - if (o.unixPermissions && (o.unixPermissions & 0x4000)) { - o.dir = true; - } - // Bit 4 Directory - if (o.dosPermissions && (o.dosPermissions & 0x0010)) { - o.dir = true; - } - - if (o.dir) { - name = forceTrailingSlash(name); - } - if (o.createFolders && (parent = parentFolder(name))) { - folderAdd.call(this, parent, true); - } - - var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; - if (!originalOptions || typeof originalOptions.binary === "undefined") { - o.binary = !isUnicodeString; - } - - - var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; - - if (isCompressedEmpty || o.dir || !data || data.length === 0) { - o.base64 = false; - o.binary = true; - data = ""; - o.compression = "STORE"; - dataType = "string"; - } - - /* - * Convert content to fit. - */ - - var zipObjectContent = null; - if (data instanceof CompressedObject || data instanceof GenericWorker) { - zipObjectContent = data; - } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { - zipObjectContent = new NodejsStreamInputAdapter(name, data); - } else { - zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); - } - - var object = new ZipObject(name, zipObjectContent, o); - this.files[name] = object; - /* - TODO: we can't throw an exception because we have async promises - (we can have a promise of a Date() for example) but returning a - promise is useless because file(name, data) returns the JSZip - object for chaining. Should we break that to allow the user - to catch the error ? - - return external.Promise.resolve(zipObjectContent) - .then(function () { - return object; - }); - */ -}; - -/** - * Find the parent folder of the path. - * @private - * @param {string} path the path to use - * @return {string} the parent folder, or "" - */ -var parentFolder = function (path) { - if (path.slice(-1) === '/') { - path = path.substring(0, path.length - 1); - } - var lastSlash = path.lastIndexOf('/'); - return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; -}; - -/** - * Returns the path with a slash at the end. - * @private - * @param {String} path the path to check. - * @return {String} the path with a trailing slash. - */ -var forceTrailingSlash = function(path) { - // Check the name ends with a / - if (path.slice(-1) !== "/") { - path += "/"; // IE doesn't like substr(-1) - } - return path; -}; - -/** - * Add a (sub) folder in the current folder. - * @private - * @param {string} name the folder's name - * @param {boolean=} [createFolders] If true, automatically create sub - * folders. Defaults to false. - * @return {Object} the new folder. - */ -var folderAdd = function(name, createFolders) { - createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; - - name = forceTrailingSlash(name); - - // Does this folder already exist? - if (!this.files[name]) { - fileAdd.call(this, name, null, { - dir: true, - createFolders: createFolders - }); - } - return this.files[name]; -}; - -/** -* Cross-window, cross-Node-context regular expression detection -* @param {Object} object Anything -* @return {Boolean} true if the object is a regular expression, -* false otherwise -*/ -function isRegExp(object) { - return Object.prototype.toString.call(object) === "[object RegExp]"; -} - -// return the actual prototype of JSZip -var out = { - /** - * @see loadAsync - */ - load: function() { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); - }, - - - /** - * Call a callback function for each entry at this folder level. - * @param {Function} cb the callback function: - * function (relativePath, file) {...} - * It takes 2 arguments : the relative path and the file. - */ - forEach: function(cb) { - var filename, relativePath, file; - /* jshint ignore:start */ - // ignore warning about unwanted properties because this.files is a null prototype object - for (filename in this.files) { - file = this.files[filename]; - relativePath = filename.slice(this.root.length, filename.length); - if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root - cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... - } - } - /* jshint ignore:end */ - }, - - /** - * Filter nested files/folders with the specified function. - * @param {Function} search the predicate to use : - * function (relativePath, file) {...} - * It takes 2 arguments : the relative path and the file. - * @return {Array} An array of matching elements. - */ - filter: function(search) { - var result = []; - this.forEach(function (relativePath, entry) { - if (search(relativePath, entry)) { // the file matches the function - result.push(entry); - } - - }); - return result; - }, - - /** - * Add a file to the zip file, or search a file. - * @param {string|RegExp} name The name of the file to add (if data is defined), - * the name of the file to find (if no data) or a regex to match files. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded - * @param {Object} o File options - * @return {JSZip|Object|Array} this JSZip object (when adding a file), - * a file (when searching by string) or an array of files (when searching by regex). - */ - file: function(name, data, o) { - if (arguments.length === 1) { - if (isRegExp(name)) { - var regexp = name; - return this.filter(function(relativePath, file) { - return !file.dir && regexp.test(relativePath); - }); - } - else { // text - var obj = this.files[this.root + name]; - if (obj && !obj.dir) { - return obj; - } else { - return null; - } - } - } - else { // more than one argument : we have data ! - name = this.root + name; - fileAdd.call(this, name, data, o); - } - return this; - }, - - /** - * Add a directory to the zip file, or search. - * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. - * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. - */ - folder: function(arg) { - if (!arg) { - return this; - } - - if (isRegExp(arg)) { - return this.filter(function(relativePath, file) { - return file.dir && arg.test(relativePath); - }); - } - - // else, name is a new folder - var name = this.root + arg; - var newFolder = folderAdd.call(this, name); - - // Allow chaining by returning a new object with this folder as the root - var ret = this.clone(); - ret.root = newFolder.name; - return ret; - }, - - /** - * Delete a file, or a directory and all sub-files, from the zip - * @param {string} name the name of the file to delete - * @return {JSZip} this JSZip object - */ - remove: function(name) { - name = this.root + name; - var file = this.files[name]; - if (!file) { - // Look for any folders - if (name.slice(-1) !== "/") { - name += "/"; - } - file = this.files[name]; - } - - if (file && !file.dir) { - // file - delete this.files[name]; - } else { - // maybe a folder, delete recursively - var kids = this.filter(function(relativePath, file) { - return file.name.slice(0, name.length) === name; - }); - for (var i = 0; i < kids.length; i++) { - delete this.files[kids[i].name]; - } - } - - return this; - }, - - /** - * Generate the complete zip file - * @param {Object} options the options to generate the zip file : - * - compression, "STORE" by default. - * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. - * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file - */ - generate: function(options) { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); - }, - - /** - * Generate the complete zip file as an internal stream. - * @param {Object} options the options to generate the zip file : - * - compression, "STORE" by default. - * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. - * @return {StreamHelper} the streamed zip file. - */ - generateInternalStream: function(options) { - var worker, opts = {}; - try { - opts = utils.extend(options || {}, { - streamFiles: false, - compression: "STORE", - compressionOptions : null, - type: "", - platform: "DOS", - comment: null, - mimeType: 'application/zip', - encodeFileName: utf8.utf8encode - }); - - opts.type = opts.type.toLowerCase(); - opts.compression = opts.compression.toUpperCase(); - - // "binarystring" is preferred but the internals use "string". - if(opts.type === "binarystring") { - opts.type = "string"; - } - - if (!opts.type) { - throw new Error("No output type specified."); - } - - utils.checkSupport(opts.type); - - // accept nodejs `process.platform` - if( - opts.platform === 'darwin' || - opts.platform === 'freebsd' || - opts.platform === 'linux' || - opts.platform === 'sunos' - ) { - opts.platform = "UNIX"; - } - if (opts.platform === 'win32') { - opts.platform = "DOS"; - } - - var comment = opts.comment || this.comment || ""; - worker = generate.generateWorker(this, opts, comment); - } catch (e) { - worker = new GenericWorker("error"); - worker.error(e); - } - return new StreamHelper(worker, opts.type || "string", opts.mimeType); - }, - /** - * Generate the complete zip file asynchronously. - * @see generateInternalStream - */ - generateAsync: function(options, onUpdate) { - return this.generateInternalStream(options).accumulate(onUpdate); - }, - /** - * Generate the complete zip file asynchronously. - * @see generateInternalStream - */ - generateNodeStream: function(options, onUpdate) { - options = options || {}; - if (!options.type) { - options.type = "nodebuffer"; - } - return this.generateInternalStream(options).toNodejsStream(onUpdate); - } -}; -module.exports = out; - -},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ -/* - * This file is used by module bundlers (browserify/webpack/etc) when - * including a stream implementation. We use "readable-stream" to get a - * consistent behavior between nodejs versions but bundlers often have a shim - * for "stream". Using this shim greatly improve the compatibility and greatly - * reduce the final size of the bundle (only one stream implementation, not - * two). - */ -module.exports = require("stream"); - -},{"stream":undefined}],17:[function(require,module,exports){ -'use strict'; -var DataReader = require('./DataReader'); -var utils = require('../utils'); - -function ArrayReader(data) { - DataReader.call(this, data); - for(var i = 0; i < this.data.length; i++) { - data[i] = data[i] & 0xFF; - } -} -utils.inherits(ArrayReader, DataReader); -/** - * @see DataReader.byteAt - */ -ArrayReader.prototype.byteAt = function(i) { - return this.data[this.zero + i]; -}; -/** - * @see DataReader.lastIndexOfSignature - */ -ArrayReader.prototype.lastIndexOfSignature = function(sig) { - var sig0 = sig.charCodeAt(0), - sig1 = sig.charCodeAt(1), - sig2 = sig.charCodeAt(2), - sig3 = sig.charCodeAt(3); - for (var i = this.length - 4; i >= 0; --i) { - if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { - return i - this.zero; - } - } - - return -1; -}; -/** - * @see DataReader.readAndCheckSignature - */ -ArrayReader.prototype.readAndCheckSignature = function (sig) { - var sig0 = sig.charCodeAt(0), - sig1 = sig.charCodeAt(1), - sig2 = sig.charCodeAt(2), - sig3 = sig.charCodeAt(3), - data = this.readData(4); - return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; -}; -/** - * @see DataReader.readData - */ -ArrayReader.prototype.readData = function(size) { - this.checkOffset(size); - if(size === 0) { - return []; - } - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = ArrayReader; - -},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ -'use strict'; -var utils = require('../utils'); - -function DataReader(data) { - this.data = data; // type : see implementation - this.length = data.length; - this.index = 0; - this.zero = 0; -} -DataReader.prototype = { - /** - * Check that the offset will not go too far. - * @param {string} offset the additional offset to check. - * @throws {Error} an Error if the offset is out of bounds. - */ - checkOffset: function(offset) { - this.checkIndex(this.index + offset); - }, - /** - * Check that the specified index will not be too far. - * @param {string} newIndex the index to check. - * @throws {Error} an Error if the index is out of bounds. - */ - checkIndex: function(newIndex) { - if (this.length < this.zero + newIndex || newIndex < 0) { - throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); - } - }, - /** - * Change the index. - * @param {number} newIndex The new index. - * @throws {Error} if the new index is out of the data. - */ - setIndex: function(newIndex) { - this.checkIndex(newIndex); - this.index = newIndex; - }, - /** - * Skip the next n bytes. - * @param {number} n the number of bytes to skip. - * @throws {Error} if the new index is out of the data. - */ - skip: function(n) { - this.setIndex(this.index + n); - }, - /** - * Get the byte at the specified index. - * @param {number} i the index to use. - * @return {number} a byte. - */ - byteAt: function(i) { - // see implementations - }, - /** - * Get the next number with a given byte size. - * @param {number} size the number of bytes to read. - * @return {number} the corresponding number. - */ - readInt: function(size) { - var result = 0, - i; - this.checkOffset(size); - for (i = this.index + size - 1; i >= this.index; i--) { - result = (result << 8) + this.byteAt(i); - } - this.index += size; - return result; - }, - /** - * Get the next string with a given byte size. - * @param {number} size the number of bytes to read. - * @return {string} the corresponding string. - */ - readString: function(size) { - return utils.transformTo("string", this.readData(size)); - }, - /** - * Get raw data without conversion, bytes. - * @param {number} size the number of bytes to read. - * @return {Object} the raw data, implementation specific. - */ - readData: function(size) { - // see implementations - }, - /** - * Find the last occurrence of a zip signature (4 bytes). - * @param {string} sig the signature to find. - * @return {number} the index of the last occurrence, -1 if not found. - */ - lastIndexOfSignature: function(sig) { - // see implementations - }, - /** - * Read the signature (4 bytes) at the current position and compare it with sig. - * @param {string} sig the expected signature - * @return {boolean} true if the signature matches, false otherwise. - */ - readAndCheckSignature: function(sig) { - // see implementations - }, - /** - * Get the next date. - * @return {Date} the date. - */ - readDate: function() { - var dostime = this.readInt(4); - return new Date(Date.UTC( - ((dostime >> 25) & 0x7f) + 1980, // year - ((dostime >> 21) & 0x0f) - 1, // month - (dostime >> 16) & 0x1f, // day - (dostime >> 11) & 0x1f, // hour - (dostime >> 5) & 0x3f, // minute - (dostime & 0x1f) << 1)); // second - } -}; -module.exports = DataReader; - -},{"../utils":32}],19:[function(require,module,exports){ -'use strict'; -var Uint8ArrayReader = require('./Uint8ArrayReader'); -var utils = require('../utils'); - -function NodeBufferReader(data) { - Uint8ArrayReader.call(this, data); -} -utils.inherits(NodeBufferReader, Uint8ArrayReader); - -/** - * @see DataReader.readData - */ -NodeBufferReader.prototype.readData = function(size) { - this.checkOffset(size); - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = NodeBufferReader; - -},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ -'use strict'; -var DataReader = require('./DataReader'); -var utils = require('../utils'); - -function StringReader(data) { - DataReader.call(this, data); -} -utils.inherits(StringReader, DataReader); -/** - * @see DataReader.byteAt - */ -StringReader.prototype.byteAt = function(i) { - return this.data.charCodeAt(this.zero + i); -}; -/** - * @see DataReader.lastIndexOfSignature - */ -StringReader.prototype.lastIndexOfSignature = function(sig) { - return this.data.lastIndexOf(sig) - this.zero; -}; -/** - * @see DataReader.readAndCheckSignature - */ -StringReader.prototype.readAndCheckSignature = function (sig) { - var data = this.readData(4); - return sig === data; -}; -/** - * @see DataReader.readData - */ -StringReader.prototype.readData = function(size) { - this.checkOffset(size); - // this will work because the constructor applied the "& 0xff" mask. - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = StringReader; - -},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ -'use strict'; -var ArrayReader = require('./ArrayReader'); -var utils = require('../utils'); - -function Uint8ArrayReader(data) { - ArrayReader.call(this, data); -} -utils.inherits(Uint8ArrayReader, ArrayReader); -/** - * @see DataReader.readData - */ -Uint8ArrayReader.prototype.readData = function(size) { - this.checkOffset(size); - if(size === 0) { - // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. - return new Uint8Array(0); - } - var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = Uint8ArrayReader; - -},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var support = require('../support'); -var ArrayReader = require('./ArrayReader'); -var StringReader = require('./StringReader'); -var NodeBufferReader = require('./NodeBufferReader'); -var Uint8ArrayReader = require('./Uint8ArrayReader'); - -/** - * Create a reader adapted to the data. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. - * @return {DataReader} the data reader. - */ -module.exports = function (data) { - var type = utils.getTypeOf(data); - utils.checkSupport(type); - if (type === "string" && !support.uint8array) { - return new StringReader(data); - } - if (type === "nodebuffer") { - return new NodeBufferReader(data); - } - if (support.uint8array) { - return new Uint8ArrayReader(utils.transformTo("uint8array", data)); - } - return new ArrayReader(utils.transformTo("array", data)); -}; - -},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ -'use strict'; -exports.LOCAL_FILE_HEADER = "PK\x03\x04"; -exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; -exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; -exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; -exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; -exports.DATA_DESCRIPTOR = "PK\x07\x08"; - -},{}],24:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require('./GenericWorker'); -var utils = require('../utils'); - -/** - * A worker which convert chunks to a specified type. - * @constructor - * @param {String} destType the destination type. - */ -function ConvertWorker(destType) { - GenericWorker.call(this, "ConvertWorker to " + destType); - this.destType = destType; -} -utils.inherits(ConvertWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -ConvertWorker.prototype.processChunk = function (chunk) { - this.push({ - data : utils.transformTo(this.destType, chunk.data), - meta : chunk.meta - }); -}; -module.exports = ConvertWorker; - -},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require('./GenericWorker'); -var crc32 = require('../crc32'); -var utils = require('../utils'); - -/** - * A worker which calculate the crc32 of the data flowing through. - * @constructor - */ -function Crc32Probe() { - GenericWorker.call(this, "Crc32Probe"); - this.withStreamInfo("crc32", 0); -} -utils.inherits(Crc32Probe, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Crc32Probe.prototype.processChunk = function (chunk) { - this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); - this.push(chunk); -}; -module.exports = Crc32Probe; - -},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('./GenericWorker'); - -/** - * A worker which calculate the total length of the data flowing through. - * @constructor - * @param {String} propName the name used to expose the length - */ -function DataLengthProbe(propName) { - GenericWorker.call(this, "DataLengthProbe for " + propName); - this.propName = propName; - this.withStreamInfo(propName, 0); -} -utils.inherits(DataLengthProbe, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -DataLengthProbe.prototype.processChunk = function (chunk) { - if(chunk) { - var length = this.streamInfo[this.propName] || 0; - this.streamInfo[this.propName] = length + chunk.data.length; - } - GenericWorker.prototype.processChunk.call(this, chunk); -}; -module.exports = DataLengthProbe; - - -},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('./GenericWorker'); - -// the size of the generated chunks -// TODO expose this as a public variable -var DEFAULT_BLOCK_SIZE = 16 * 1024; - -/** - * A worker that reads a content and emits chunks. - * @constructor - * @param {Promise} dataP the promise of the data to split - */ -function DataWorker(dataP) { - GenericWorker.call(this, "DataWorker"); - var self = this; - this.dataIsReady = false; - this.index = 0; - this.max = 0; - this.data = null; - this.type = ""; - - this._tickScheduled = false; - - dataP.then(function (data) { - self.dataIsReady = true; - self.data = data; - self.max = data && data.length || 0; - self.type = utils.getTypeOf(data); - if(!self.isPaused) { - self._tickAndRepeat(); - } - }, function (e) { - self.error(e); - }); -} - -utils.inherits(DataWorker, GenericWorker); - -/** - * @see GenericWorker.cleanUp - */ -DataWorker.prototype.cleanUp = function () { - GenericWorker.prototype.cleanUp.call(this); - this.data = null; -}; - -/** - * @see GenericWorker.resume - */ -DataWorker.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if (!this._tickScheduled && this.dataIsReady) { - this._tickScheduled = true; - utils.delay(this._tickAndRepeat, [], this); - } - return true; -}; - -/** - * Trigger a tick a schedule an other call to this function. - */ -DataWorker.prototype._tickAndRepeat = function() { - this._tickScheduled = false; - if(this.isPaused || this.isFinished) { - return; - } - this._tick(); - if(!this.isFinished) { - utils.delay(this._tickAndRepeat, [], this); - this._tickScheduled = true; - } -}; - -/** - * Read and push a chunk. - */ -DataWorker.prototype._tick = function() { - - if(this.isPaused || this.isFinished) { - return false; - } - - var size = DEFAULT_BLOCK_SIZE; - var data = null, nextIndex = Math.min(this.max, this.index + size); - if (this.index >= this.max) { - // EOF - return this.end(); - } else { - switch(this.type) { - case "string": - data = this.data.substring(this.index, nextIndex); - break; - case "uint8array": - data = this.data.subarray(this.index, nextIndex); - break; - case "array": - case "nodebuffer": - data = this.data.slice(this.index, nextIndex); - break; - } - this.index = nextIndex; - return this.push({ - data : data, - meta : { - percent : this.max ? this.index / this.max * 100 : 0 - } - }); - } -}; - -module.exports = DataWorker; - -},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ -'use strict'; - -/** - * A worker that does nothing but passing chunks to the next one. This is like - * a nodejs stream but with some differences. On the good side : - * - it works on IE 6-9 without any issue / polyfill - * - it weights less than the full dependencies bundled with browserify - * - it forwards errors (no need to declare an error handler EVERYWHERE) - * - * A chunk is an object with 2 attributes : `meta` and `data`. The former is an - * object containing anything (`percent` for example), see each worker for more - * details. The latter is the real data (String, Uint8Array, etc). - * - * @constructor - * @param {String} name the name of the stream (mainly used for debugging purposes) - */ -function GenericWorker(name) { - // the name of the worker - this.name = name || "default"; - // an object containing metadata about the workers chain - this.streamInfo = {}; - // an error which happened when the worker was paused - this.generatedError = null; - // an object containing metadata to be merged by this worker into the general metadata - this.extraStreamInfo = {}; - // true if the stream is paused (and should not do anything), false otherwise - this.isPaused = true; - // true if the stream is finished (and should not do anything), false otherwise - this.isFinished = false; - // true if the stream is locked to prevent further structure updates (pipe), false otherwise - this.isLocked = false; - // the event listeners - this._listeners = { - 'data':[], - 'end':[], - 'error':[] - }; - // the previous worker, if any - this.previous = null; -} - -GenericWorker.prototype = { - /** - * Push a chunk to the next workers. - * @param {Object} chunk the chunk to push - */ - push : function (chunk) { - this.emit("data", chunk); - }, - /** - * End the stream. - * @return {Boolean} true if this call ended the worker, false otherwise. - */ - end : function () { - if (this.isFinished) { - return false; - } - - this.flush(); - try { - this.emit("end"); - this.cleanUp(); - this.isFinished = true; - } catch (e) { - this.emit("error", e); - } - return true; - }, - /** - * End the stream with an error. - * @param {Error} e the error which caused the premature end. - * @return {Boolean} true if this call ended the worker with an error, false otherwise. - */ - error : function (e) { - if (this.isFinished) { - return false; - } - - if(this.isPaused) { - this.generatedError = e; - } else { - this.isFinished = true; - - this.emit("error", e); - - // in the workers chain exploded in the middle of the chain, - // the error event will go downward but we also need to notify - // workers upward that there has been an error. - if(this.previous) { - this.previous.error(e); - } - - this.cleanUp(); - } - return true; - }, - /** - * Add a callback on an event. - * @param {String} name the name of the event (data, end, error) - * @param {Function} listener the function to call when the event is triggered - * @return {GenericWorker} the current object for chainability - */ - on : function (name, listener) { - this._listeners[name].push(listener); - return this; - }, - /** - * Clean any references when a worker is ending. - */ - cleanUp : function () { - this.streamInfo = this.generatedError = this.extraStreamInfo = null; - this._listeners = []; - }, - /** - * Trigger an event. This will call registered callback with the provided arg. - * @param {String} name the name of the event (data, end, error) - * @param {Object} arg the argument to call the callback with. - */ - emit : function (name, arg) { - if (this._listeners[name]) { - for(var i = 0; i < this._listeners[name].length; i++) { - this._listeners[name][i].call(this, arg); - } - } - }, - /** - * Chain a worker with an other. - * @param {Worker} next the worker receiving events from the current one. - * @return {worker} the next worker for chainability - */ - pipe : function (next) { - return next.registerPrevious(this); - }, - /** - * Same as `pipe` in the other direction. - * Using an API with `pipe(next)` is very easy. - * Implementing the API with the point of view of the next one registering - * a source is easier, see the ZipFileWorker. - * @param {Worker} previous the previous worker, sending events to this one - * @return {Worker} the current worker for chainability - */ - registerPrevious : function (previous) { - if (this.isLocked) { - throw new Error("The stream '" + this + "' has already been used."); - } - - // sharing the streamInfo... - this.streamInfo = previous.streamInfo; - // ... and adding our own bits - this.mergeStreamInfo(); - this.previous = previous; - var self = this; - previous.on('data', function (chunk) { - self.processChunk(chunk); - }); - previous.on('end', function () { - self.end(); - }); - previous.on('error', function (e) { - self.error(e); - }); - return this; - }, - /** - * Pause the stream so it doesn't send events anymore. - * @return {Boolean} true if this call paused the worker, false otherwise. - */ - pause : function () { - if(this.isPaused || this.isFinished) { - return false; - } - this.isPaused = true; - - if(this.previous) { - this.previous.pause(); - } - return true; - }, - /** - * Resume a paused stream. - * @return {Boolean} true if this call resumed the worker, false otherwise. - */ - resume : function () { - if(!this.isPaused || this.isFinished) { - return false; - } - this.isPaused = false; - - // if true, the worker tried to resume but failed - var withError = false; - if(this.generatedError) { - this.error(this.generatedError); - withError = true; - } - if(this.previous) { - this.previous.resume(); - } - - return !withError; - }, - /** - * Flush any remaining bytes as the stream is ending. - */ - flush : function () {}, - /** - * Process a chunk. This is usually the method overridden. - * @param {Object} chunk the chunk to process. - */ - processChunk : function(chunk) { - this.push(chunk); - }, - /** - * Add a key/value to be added in the workers chain streamInfo once activated. - * @param {String} key the key to use - * @param {Object} value the associated value - * @return {Worker} the current worker for chainability - */ - withStreamInfo : function (key, value) { - this.extraStreamInfo[key] = value; - this.mergeStreamInfo(); - return this; - }, - /** - * Merge this worker's streamInfo into the chain's streamInfo. - */ - mergeStreamInfo : function () { - for(var key in this.extraStreamInfo) { - if (!this.extraStreamInfo.hasOwnProperty(key)) { - continue; - } - this.streamInfo[key] = this.extraStreamInfo[key]; - } - }, - - /** - * Lock the stream to prevent further updates on the workers chain. - * After calling this method, all calls to pipe will fail. - */ - lock: function () { - if (this.isLocked) { - throw new Error("The stream '" + this + "' has already been used."); - } - this.isLocked = true; - if (this.previous) { - this.previous.lock(); - } - }, - - /** - * - * Pretty print the workers chain. - */ - toString : function () { - var me = "Worker " + this.name; - if (this.previous) { - return this.previous + " -> " + me; - } else { - return me; - } - } -}; - -module.exports = GenericWorker; - -},{}],29:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var ConvertWorker = require('./ConvertWorker'); -var GenericWorker = require('./GenericWorker'); -var base64 = require('../base64'); -var support = require("../support"); -var external = require("../external"); - -var NodejsStreamOutputAdapter = null; -if (support.nodestream) { - try { - NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); - } catch(e) {} -} - -/** - * Apply the final transformation of the data. If the user wants a Blob for - * example, it's easier to work with an U8intArray and finally do the - * ArrayBuffer/Blob conversion. - * @param {String} type the name of the final type - * @param {String|Uint8Array|Buffer} content the content to transform - * @param {String} mimeType the mime type of the content, if applicable. - * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. - */ -function transformZipOutput(type, content, mimeType) { - switch(type) { - case "blob" : - return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); - case "base64" : - return base64.encode(content); - default : - return utils.transformTo(type, content); - } -} - -/** - * Concatenate an array of data of the given type. - * @param {String} type the type of the data in the given array. - * @param {Array} dataArray the array containing the data chunks to concatenate - * @return {String|Uint8Array|Buffer} the concatenated data - * @throws Error if the asked type is unsupported - */ -function concat (type, dataArray) { - var i, index = 0, res = null, totalLength = 0; - for(i = 0; i < dataArray.length; i++) { - totalLength += dataArray[i].length; - } - switch(type) { - case "string": - return dataArray.join(""); - case "array": - return Array.prototype.concat.apply([], dataArray); - case "uint8array": - res = new Uint8Array(totalLength); - for(i = 0; i < dataArray.length; i++) { - res.set(dataArray[i], index); - index += dataArray[i].length; - } - return res; - case "nodebuffer": - return Buffer.concat(dataArray); - default: - throw new Error("concat : unsupported type '" + type + "'"); - } -} - -/** - * Listen a StreamHelper, accumulate its content and concatenate it into a - * complete block. - * @param {StreamHelper} helper the helper to use. - * @param {Function} updateCallback a callback called on each update. Called - * with one arg : - * - the metadata linked to the update received. - * @return Promise the promise for the accumulation. - */ -function accumulate(helper, updateCallback) { - return new external.Promise(function (resolve, reject){ - var dataArray = []; - var chunkType = helper._internalType, - resultType = helper._outputType, - mimeType = helper._mimeType; - helper - .on('data', function (data, meta) { - dataArray.push(data); - if(updateCallback) { - updateCallback(meta); - } - }) - .on('error', function(err) { - dataArray = []; - reject(err); - }) - .on('end', function (){ - try { - var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); - resolve(result); - } catch (e) { - reject(e); - } - dataArray = []; - }) - .resume(); - }); -} - -/** - * An helper to easily use workers outside of JSZip. - * @constructor - * @param {Worker} worker the worker to wrap - * @param {String} outputType the type of data expected by the use - * @param {String} mimeType the mime type of the content, if applicable. - */ -function StreamHelper(worker, outputType, mimeType) { - var internalType = outputType; - switch(outputType) { - case "blob": - case "arraybuffer": - internalType = "uint8array"; - break; - case "base64": - internalType = "string"; - break; - } - - try { - // the type used internally - this._internalType = internalType; - // the type used to output results - this._outputType = outputType; - // the mime type - this._mimeType = mimeType; - utils.checkSupport(internalType); - this._worker = worker.pipe(new ConvertWorker(internalType)); - // the last workers can be rewired without issues but we need to - // prevent any updates on previous workers. - worker.lock(); - } catch(e) { - this._worker = new GenericWorker("error"); - this._worker.error(e); - } -} - -StreamHelper.prototype = { - /** - * Listen a StreamHelper, accumulate its content and concatenate it into a - * complete block. - * @param {Function} updateCb the update callback. - * @return Promise the promise for the accumulation. - */ - accumulate : function (updateCb) { - return accumulate(this, updateCb); - }, - /** - * Add a listener on an event triggered on a stream. - * @param {String} evt the name of the event - * @param {Function} fn the listener - * @return {StreamHelper} the current helper. - */ - on : function (evt, fn) { - var self = this; - - if(evt === "data") { - this._worker.on(evt, function (chunk) { - fn.call(self, chunk.data, chunk.meta); - }); - } else { - this._worker.on(evt, function () { - utils.delay(fn, arguments, self); - }); - } - return this; - }, - /** - * Resume the flow of chunks. - * @return {StreamHelper} the current helper. - */ - resume : function () { - utils.delay(this._worker.resume, [], this._worker); - return this; - }, - /** - * Pause the flow of chunks. - * @return {StreamHelper} the current helper. - */ - pause : function () { - this._worker.pause(); - return this; - }, - /** - * Return a nodejs stream for this helper. - * @param {Function} updateCb the update callback. - * @return {NodejsStreamOutputAdapter} the nodejs stream. - */ - toNodejsStream : function (updateCb) { - utils.checkSupport("nodestream"); - if (this._outputType !== "nodebuffer") { - // an object stream containing blob/arraybuffer/uint8array/string - // is strange and I don't know if it would be useful. - // I you find this comment and have a good usecase, please open a - // bug report ! - throw new Error(this._outputType + " is not supported by this method"); - } - - return new NodejsStreamOutputAdapter(this, { - objectMode : this._outputType !== "nodebuffer" - }, updateCb); - } -}; - - -module.exports = StreamHelper; - -},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ -'use strict'; - -exports.base64 = true; -exports.array = true; -exports.string = true; -exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; -exports.nodebuffer = typeof Buffer !== "undefined"; -// contains true if JSZip can read/generate Uint8Array, false otherwise. -exports.uint8array = typeof Uint8Array !== "undefined"; - -if (typeof ArrayBuffer === "undefined") { - exports.blob = false; -} -else { - var buffer = new ArrayBuffer(0); - try { - exports.blob = new Blob([buffer], { - type: "application/zip" - }).size === 0; - } - catch (e) { - try { - var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; - var builder = new Builder(); - builder.append(buffer); - exports.blob = builder.getBlob('application/zip').size === 0; - } - catch (e) { - exports.blob = false; - } - } -} - -try { - exports.nodestream = !!require('readable-stream').Readable; -} catch(e) { - exports.nodestream = false; -} - -},{"readable-stream":16}],31:[function(require,module,exports){ -'use strict'; - -var utils = require('./utils'); -var support = require('./support'); -var nodejsUtils = require('./nodejsUtils'); -var GenericWorker = require('./stream/GenericWorker'); - -/** - * The following functions come from pako, from pako/lib/utils/strings - * released under the MIT license, see pako https://github.com/nodeca/pako/ - */ - -// Table with utf8 lengths (calculated by first byte of sequence) -// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, -// because max possible codepoint is 0x10ffff -var _utf8len = new Array(256); -for (var i=0; i<256; i++) { - _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); -} -_utf8len[254]=_utf8len[254]=1; // Invalid sequence start - -// convert string to array (typed, when possible) -var string2buf = function (str) { - var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; - - // count binary size - for (m_pos = 0; m_pos < str_len; m_pos++) { - c = str.charCodeAt(m_pos); - if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { - c2 = str.charCodeAt(m_pos+1); - if ((c2 & 0xfc00) === 0xdc00) { - c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); - m_pos++; - } - } - buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; - } - - // allocate buffer - if (support.uint8array) { - buf = new Uint8Array(buf_len); - } else { - buf = new Array(buf_len); - } - - // convert - for (i=0, m_pos = 0; i < buf_len; m_pos++) { - c = str.charCodeAt(m_pos); - if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { - c2 = str.charCodeAt(m_pos+1); - if ((c2 & 0xfc00) === 0xdc00) { - c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); - m_pos++; - } - } - if (c < 0x80) { - /* one byte */ - buf[i++] = c; - } else if (c < 0x800) { - /* two bytes */ - buf[i++] = 0xC0 | (c >>> 6); - buf[i++] = 0x80 | (c & 0x3f); - } else if (c < 0x10000) { - /* three bytes */ - buf[i++] = 0xE0 | (c >>> 12); - buf[i++] = 0x80 | (c >>> 6 & 0x3f); - buf[i++] = 0x80 | (c & 0x3f); - } else { - /* four bytes */ - buf[i++] = 0xf0 | (c >>> 18); - buf[i++] = 0x80 | (c >>> 12 & 0x3f); - buf[i++] = 0x80 | (c >>> 6 & 0x3f); - buf[i++] = 0x80 | (c & 0x3f); - } - } - - return buf; -}; - -// Calculate max possible position in utf8 buffer, -// that will not break sequence. If that's not possible -// - (very small limits) return max size as is. -// -// buf[] - utf8 bytes array -// max - length limit (mandatory); -var utf8border = function(buf, max) { - var pos; - - max = max || buf.length; - if (max > buf.length) { max = buf.length; } - - // go back from last position, until start of sequence found - pos = max-1; - while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } - - // Fuckup - very small and broken sequence, - // return max, because we should return something anyway. - if (pos < 0) { return max; } - - // If we came to start of buffer - that means vuffer is too small, - // return max too. - if (pos === 0) { return max; } - - return (pos + _utf8len[buf[pos]] > max) ? pos : max; -}; - -// convert array to string -var buf2string = function (buf) { - var str, i, out, c, c_len; - var len = buf.length; - - // Reserve max possible length (2 words per char) - // NB: by unknown reasons, Array is significantly faster for - // String.fromCharCode.apply than Uint16Array. - var utf16buf = new Array(len*2); - - for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } - - // apply mask on first byte - c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; - // join the rest - while (c_len > 1 && i < len) { - c = (c << 6) | (buf[i++] & 0x3f); - c_len--; - } - - // terminated by end of string? - if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } - - if (c < 0x10000) { - utf16buf[out++] = c; - } else { - c -= 0x10000; - utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); - utf16buf[out++] = 0xdc00 | (c & 0x3ff); - } - } - - // shrinkBuf(utf16buf, out) - if (utf16buf.length !== out) { - if(utf16buf.subarray) { - utf16buf = utf16buf.subarray(0, out); - } else { - utf16buf.length = out; - } - } - - // return String.fromCharCode.apply(null, utf16buf); - return utils.applyFromCharCode(utf16buf); -}; - - -// That's all for the pako functions. - - -/** - * Transform a javascript string into an array (typed if possible) of bytes, - * UTF-8 encoded. - * @param {String} str the string to encode - * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. - */ -exports.utf8encode = function utf8encode(str) { - if (support.nodebuffer) { - return nodejsUtils.newBufferFrom(str, "utf-8"); - } - - return string2buf(str); -}; - - -/** - * Transform a bytes array (or a representation) representing an UTF-8 encoded - * string into a javascript string. - * @param {Array|Uint8Array|Buffer} buf the data de decode - * @return {String} the decoded string. - */ -exports.utf8decode = function utf8decode(buf) { - if (support.nodebuffer) { - return utils.transformTo("nodebuffer", buf).toString("utf-8"); - } - - buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); - - return buf2string(buf); -}; - -/** - * A worker to decode utf8 encoded binary chunks into string chunks. - * @constructor - */ -function Utf8DecodeWorker() { - GenericWorker.call(this, "utf-8 decode"); - // the last bytes if a chunk didn't end with a complete codepoint. - this.leftOver = null; -} -utils.inherits(Utf8DecodeWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Utf8DecodeWorker.prototype.processChunk = function (chunk) { - - var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); - - // 1st step, re-use what's left of the previous chunk - if (this.leftOver && this.leftOver.length) { - if(support.uint8array) { - var previousData = data; - data = new Uint8Array(previousData.length + this.leftOver.length); - data.set(this.leftOver, 0); - data.set(previousData, this.leftOver.length); - } else { - data = this.leftOver.concat(data); - } - this.leftOver = null; - } - - var nextBoundary = utf8border(data); - var usableData = data; - if (nextBoundary !== data.length) { - if (support.uint8array) { - usableData = data.subarray(0, nextBoundary); - this.leftOver = data.subarray(nextBoundary, data.length); - } else { - usableData = data.slice(0, nextBoundary); - this.leftOver = data.slice(nextBoundary, data.length); - } - } - - this.push({ - data : exports.utf8decode(usableData), - meta : chunk.meta - }); -}; - -/** - * @see GenericWorker.flush - */ -Utf8DecodeWorker.prototype.flush = function () { - if(this.leftOver && this.leftOver.length) { - this.push({ - data : exports.utf8decode(this.leftOver), - meta : {} - }); - this.leftOver = null; - } -}; -exports.Utf8DecodeWorker = Utf8DecodeWorker; - -/** - * A worker to endcode string chunks into utf8 encoded binary chunks. - * @constructor - */ -function Utf8EncodeWorker() { - GenericWorker.call(this, "utf-8 encode"); -} -utils.inherits(Utf8EncodeWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Utf8EncodeWorker.prototype.processChunk = function (chunk) { - this.push({ - data : exports.utf8encode(chunk.data), - meta : chunk.meta - }); -}; -exports.Utf8EncodeWorker = Utf8EncodeWorker; - -},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ -'use strict'; - -var support = require('./support'); -var base64 = require('./base64'); -var nodejsUtils = require('./nodejsUtils'); -var setImmediate = require('set-immediate-shim'); -var external = require("./external"); - - -/** - * Convert a string that pass as a "binary string": it should represent a byte - * array but may have > 255 char codes. Be sure to take only the first byte - * and returns the byte array. - * @param {String} str the string to transform. - * @return {Array|Uint8Array} the string in a binary format. - */ -function string2binary(str) { - var result = null; - if (support.uint8array) { - result = new Uint8Array(str.length); - } else { - result = new Array(str.length); - } - return stringToArrayLike(str, result); -} - -/** - * Create a new blob with the given content and the given type. - * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use - * an Uint8Array because the stock browser of android 4 won't accept it (it - * will be silently converted to a string, "[object Uint8Array]"). - * - * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: - * when a large amount of Array is used to create the Blob, the amount of - * memory consumed is nearly 100 times the original data amount. - * - * @param {String} type the mime type of the blob. - * @return {Blob} the created blob. - */ -exports.newBlob = function(part, type) { - exports.checkSupport("blob"); - - try { - // Blob constructor - return new Blob([part], { - type: type - }); - } - catch (e) { - - try { - // deprecated, browser only, old way - var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; - var builder = new Builder(); - builder.append(part); - return builder.getBlob(type); - } - catch (e) { - - // well, fuck ?! - throw new Error("Bug : can't construct the Blob."); - } - } - - -}; -/** - * The identity function. - * @param {Object} input the input. - * @return {Object} the same input. - */ -function identity(input) { - return input; -} - -/** - * Fill in an array with a string. - * @param {String} str the string to use. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). - * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. - */ -function stringToArrayLike(str, array) { - for (var i = 0; i < str.length; ++i) { - array[i] = str.charCodeAt(i) & 0xFF; - } - return array; -} - -/** - * An helper for the function arrayLikeToString. - * This contains static information and functions that - * can be optimized by the browser JIT compiler. - */ -var arrayToStringHelper = { - /** - * Transform an array of int into a string, chunk by chunk. - * See the performances notes on arrayLikeToString. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @param {String} type the type of the array. - * @param {Integer} chunk the chunk size. - * @return {String} the resulting string. - * @throws Error if the chunk is too big for the stack. - */ - stringifyByChunk: function(array, type, chunk) { - var result = [], k = 0, len = array.length; - // shortcut - if (len <= chunk) { - return String.fromCharCode.apply(null, array); - } - while (k < len) { - if (type === "array" || type === "nodebuffer") { - result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); - } - else { - result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); - } - k += chunk; - } - return result.join(""); - }, - /** - * Call String.fromCharCode on every item in the array. - * This is the naive implementation, which generate A LOT of intermediate string. - * This should be used when everything else fail. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @return {String} the result. - */ - stringifyByChar: function(array){ - var resultStr = ""; - for(var i = 0; i < array.length; i++) { - resultStr += String.fromCharCode(array[i]); - } - return resultStr; - }, - applyCanBeUsed : { - /** - * true if the browser accepts to use String.fromCharCode on Uint8Array - */ - uint8array : (function () { - try { - return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; - } catch (e) { - return false; - } - })(), - /** - * true if the browser accepts to use String.fromCharCode on nodejs Buffer. - */ - nodebuffer : (function () { - try { - return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; - } catch (e) { - return false; - } - })() - } -}; - -/** - * Transform an array-like object to a string. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @return {String} the result. - */ -function arrayLikeToString(array) { - // Performances notes : - // -------------------- - // String.fromCharCode.apply(null, array) is the fastest, see - // see http://jsperf.com/converting-a-uint8array-to-a-string/2 - // but the stack is limited (and we can get huge arrays !). - // - // result += String.fromCharCode(array[i]); generate too many strings ! - // - // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 - // TODO : we now have workers that split the work. Do we still need that ? - var chunk = 65536, - type = exports.getTypeOf(array), - canUseApply = true; - if (type === "uint8array") { - canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; - } else if (type === "nodebuffer") { - canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; - } - - if (canUseApply) { - while (chunk > 1) { - try { - return arrayToStringHelper.stringifyByChunk(array, type, chunk); - } catch (e) { - chunk = Math.floor(chunk / 2); - } - } - } - - // no apply or chunk error : slow and painful algorithm - // default browser on android 4.* - return arrayToStringHelper.stringifyByChar(array); -} - -exports.applyFromCharCode = arrayLikeToString; - - -/** - * Copy the data from an array-like to an other array-like. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. - * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. - */ -function arrayLikeToArrayLike(arrayFrom, arrayTo) { - for (var i = 0; i < arrayFrom.length; i++) { - arrayTo[i] = arrayFrom[i]; - } - return arrayTo; -} - -// a matrix containing functions to transform everything into everything. -var transform = {}; - -// string to ? -transform["string"] = { - "string": identity, - "array": function(input) { - return stringToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return transform["string"]["uint8array"](input).buffer; - }, - "uint8array": function(input) { - return stringToArrayLike(input, new Uint8Array(input.length)); - }, - "nodebuffer": function(input) { - return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); - } -}; - -// array to ? -transform["array"] = { - "string": arrayLikeToString, - "array": identity, - "arraybuffer": function(input) { - return (new Uint8Array(input)).buffer; - }, - "uint8array": function(input) { - return new Uint8Array(input); - }, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(input); - } -}; - -// arraybuffer to ? -transform["arraybuffer"] = { - "string": function(input) { - return arrayLikeToString(new Uint8Array(input)); - }, - "array": function(input) { - return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); - }, - "arraybuffer": identity, - "uint8array": function(input) { - return new Uint8Array(input); - }, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(new Uint8Array(input)); - } -}; - -// uint8array to ? -transform["uint8array"] = { - "string": arrayLikeToString, - "array": function(input) { - return arrayLikeToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return input.buffer; - }, - "uint8array": identity, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(input); - } -}; - -// nodebuffer to ? -transform["nodebuffer"] = { - "string": arrayLikeToString, - "array": function(input) { - return arrayLikeToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return transform["nodebuffer"]["uint8array"](input).buffer; - }, - "uint8array": function(input) { - return arrayLikeToArrayLike(input, new Uint8Array(input.length)); - }, - "nodebuffer": identity -}; - -/** - * Transform an input into any type. - * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. - * If no output type is specified, the unmodified input will be returned. - * @param {String} outputType the output type. - * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. - * @throws {Error} an Error if the browser doesn't support the requested output type. - */ -exports.transformTo = function(outputType, input) { - if (!input) { - // undefined, null, etc - // an empty string won't harm. - input = ""; - } - if (!outputType) { - return input; - } - exports.checkSupport(outputType); - var inputType = exports.getTypeOf(input); - var result = transform[inputType][outputType](input); - return result; -}; - -/** - * Return the type of the input. - * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. - * @param {Object} input the input to identify. - * @return {String} the (lowercase) type of the input. - */ -exports.getTypeOf = function(input) { - if (typeof input === "string") { - return "string"; - } - if (Object.prototype.toString.call(input) === "[object Array]") { - return "array"; - } - if (support.nodebuffer && nodejsUtils.isBuffer(input)) { - return "nodebuffer"; - } - if (support.uint8array && input instanceof Uint8Array) { - return "uint8array"; - } - if (support.arraybuffer && input instanceof ArrayBuffer) { - return "arraybuffer"; - } -}; - -/** - * Throw an exception if the type is not supported. - * @param {String} type the type to check. - * @throws {Error} an Error if the browser doesn't support the requested type. - */ -exports.checkSupport = function(type) { - var supported = support[type.toLowerCase()]; - if (!supported) { - throw new Error(type + " is not supported by this platform"); - } -}; - -exports.MAX_VALUE_16BITS = 65535; -exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 - -/** - * Prettify a string read as binary. - * @param {string} str the string to prettify. - * @return {string} a pretty string. - */ -exports.pretty = function(str) { - var res = '', - code, i; - for (i = 0; i < (str || "").length; i++) { - code = str.charCodeAt(i); - res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); - } - return res; -}; - -/** - * Defer the call of a function. - * @param {Function} callback the function to call asynchronously. - * @param {Array} args the arguments to give to the callback. - */ -exports.delay = function(callback, args, self) { - setImmediate(function () { - callback.apply(self || null, args || []); - }); -}; - -/** - * Extends a prototype with an other, without calling a constructor with - * side effects. Inspired by nodejs' `utils.inherits` - * @param {Function} ctor the constructor to augment - * @param {Function} superCtor the parent constructor to use - */ -exports.inherits = function (ctor, superCtor) { - var Obj = function() {}; - Obj.prototype = superCtor.prototype; - ctor.prototype = new Obj(); -}; - -/** - * Merge the objects passed as parameters into a new one. - * @private - * @param {...Object} var_args All objects to merge. - * @return {Object} a new object with the data of the others. - */ -exports.extend = function() { - var result = {}, i, attr; - for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers - for (attr in arguments[i]) { - if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { - result[attr] = arguments[i][attr]; - } - } - } - return result; -}; - -/** - * Transform arbitrary content into a Promise. - * @param {String} name a name for the content being processed. - * @param {Object} inputData the content to process. - * @param {Boolean} isBinary true if the content is not an unicode string - * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. - * @param {Boolean} isBase64 true if the string content is encoded with base64. - * @return {Promise} a promise in a format usable by JSZip. - */ -exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { - - // if inputData is already a promise, this flatten it. - var promise = external.Promise.resolve(inputData).then(function(data) { - - - var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); - - if (isBlob && typeof FileReader !== "undefined") { - return new external.Promise(function (resolve, reject) { - var reader = new FileReader(); - - reader.onload = function(e) { - resolve(e.target.result); - }; - reader.onerror = function(e) { - reject(e.target.error); - }; - reader.readAsArrayBuffer(data); - }); - } else { - return data; - } - }); - - return promise.then(function(data) { - var dataType = exports.getTypeOf(data); - - if (!dataType) { - return external.Promise.reject( - new Error("Can't read the data of '" + name + "'. Is it " + - "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") - ); - } - // special case : it's way easier to work with Uint8Array than with ArrayBuffer - if (dataType === "arraybuffer") { - data = exports.transformTo("uint8array", data); - } else if (dataType === "string") { - if (isBase64) { - data = base64.decode(data); - } - else if (isBinary) { - // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask - if (isOptimizedBinaryString !== true) { - // this is a string, not in a base64 format. - // Be sure that this is a correct "binary string" - data = string2binary(data); - } - } - } - return data; - }); -}; - -},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ -'use strict'; -var readerFor = require('./reader/readerFor'); -var utils = require('./utils'); -var sig = require('./signature'); -var ZipEntry = require('./zipEntry'); -var utf8 = require('./utf8'); -var support = require('./support'); -// class ZipEntries {{{ -/** - * All the entries in the zip file. - * @constructor - * @param {Object} loadOptions Options for loading the stream. - */ -function ZipEntries(loadOptions) { - this.files = []; - this.loadOptions = loadOptions; -} -ZipEntries.prototype = { - /** - * Check that the reader is on the specified signature. - * @param {string} expectedSignature the expected signature. - * @throws {Error} if it is an other signature. - */ - checkSignature: function(expectedSignature) { - if (!this.reader.readAndCheckSignature(expectedSignature)) { - this.reader.index -= 4; - var signature = this.reader.readString(4); - throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); - } - }, - /** - * Check if the given signature is at the given index. - * @param {number} askedIndex the index to check. - * @param {string} expectedSignature the signature to expect. - * @return {boolean} true if the signature is here, false otherwise. - */ - isSignature: function(askedIndex, expectedSignature) { - var currentIndex = this.reader.index; - this.reader.setIndex(askedIndex); - var signature = this.reader.readString(4); - var result = signature === expectedSignature; - this.reader.setIndex(currentIndex); - return result; - }, - /** - * Read the end of the central directory. - */ - readBlockEndOfCentral: function() { - this.diskNumber = this.reader.readInt(2); - this.diskWithCentralDirStart = this.reader.readInt(2); - this.centralDirRecordsOnThisDisk = this.reader.readInt(2); - this.centralDirRecords = this.reader.readInt(2); - this.centralDirSize = this.reader.readInt(4); - this.centralDirOffset = this.reader.readInt(4); - - this.zipCommentLength = this.reader.readInt(2); - // warning : the encoding depends of the system locale - // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. - // On a windows machine, this field is encoded with the localized windows code page. - var zipComment = this.reader.readData(this.zipCommentLength); - var decodeParamType = support.uint8array ? "uint8array" : "array"; - // To get consistent behavior with the generation part, we will assume that - // this is utf8 encoded unless specified otherwise. - var decodeContent = utils.transformTo(decodeParamType, zipComment); - this.zipComment = this.loadOptions.decodeFileName(decodeContent); - }, - /** - * Read the end of the Zip 64 central directory. - * Not merged with the method readEndOfCentral : - * The end of central can coexist with its Zip64 brother, - * I don't want to read the wrong number of bytes ! - */ - readBlockZip64EndOfCentral: function() { - this.zip64EndOfCentralSize = this.reader.readInt(8); - this.reader.skip(4); - // this.versionMadeBy = this.reader.readString(2); - // this.versionNeeded = this.reader.readInt(2); - this.diskNumber = this.reader.readInt(4); - this.diskWithCentralDirStart = this.reader.readInt(4); - this.centralDirRecordsOnThisDisk = this.reader.readInt(8); - this.centralDirRecords = this.reader.readInt(8); - this.centralDirSize = this.reader.readInt(8); - this.centralDirOffset = this.reader.readInt(8); - - this.zip64ExtensibleData = {}; - var extraDataSize = this.zip64EndOfCentralSize - 44, - index = 0, - extraFieldId, - extraFieldLength, - extraFieldValue; - while (index < extraDataSize) { - extraFieldId = this.reader.readInt(2); - extraFieldLength = this.reader.readInt(4); - extraFieldValue = this.reader.readData(extraFieldLength); - this.zip64ExtensibleData[extraFieldId] = { - id: extraFieldId, - length: extraFieldLength, - value: extraFieldValue - }; - } - }, - /** - * Read the end of the Zip 64 central directory locator. - */ - readBlockZip64EndOfCentralLocator: function() { - this.diskWithZip64CentralDirStart = this.reader.readInt(4); - this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); - this.disksCount = this.reader.readInt(4); - if (this.disksCount > 1) { - throw new Error("Multi-volumes zip are not supported"); - } - }, - /** - * Read the local files, based on the offset read in the central part. - */ - readLocalFiles: function() { - var i, file; - for (i = 0; i < this.files.length; i++) { - file = this.files[i]; - this.reader.setIndex(file.localHeaderOffset); - this.checkSignature(sig.LOCAL_FILE_HEADER); - file.readLocalPart(this.reader); - file.handleUTF8(); - file.processAttributes(); - } - }, - /** - * Read the central directory. - */ - readCentralDir: function() { - var file; - - this.reader.setIndex(this.centralDirOffset); - while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { - file = new ZipEntry({ - zip64: this.zip64 - }, this.loadOptions); - file.readCentralPart(this.reader); - this.files.push(file); - } - - if (this.centralDirRecords !== this.files.length) { - if (this.centralDirRecords !== 0 && this.files.length === 0) { - // We expected some records but couldn't find ANY. - // This is really suspicious, as if something went wrong. - throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); - } else { - // We found some records but not all. - // Something is wrong but we got something for the user: no error here. - // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); - } - } - }, - /** - * Read the end of central directory. - */ - readEndOfCentral: function() { - var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); - if (offset < 0) { - // Check if the content is a truncated zip or complete garbage. - // A "LOCAL_FILE_HEADER" is not required at the beginning (auto - // extractible zip for example) but it can give a good hint. - // If an ajax request was used without responseType, we will also - // get unreadable data. - var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); - - if (isGarbage) { - throw new Error("Can't find end of central directory : is this a zip file ? " + - "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); - } else { - throw new Error("Corrupted zip: can't find end of central directory"); - } - - } - this.reader.setIndex(offset); - var endOfCentralDirOffset = offset; - this.checkSignature(sig.CENTRAL_DIRECTORY_END); - this.readBlockEndOfCentral(); - - - /* extract from the zip spec : - 4) If one of the fields in the end of central directory - record is too small to hold required data, the field - should be set to -1 (0xFFFF or 0xFFFFFFFF) and the - ZIP64 format record should be created. - 5) The end of central directory record and the - Zip64 end of central directory locator record must - reside on the same disk when splitting or spanning - an archive. - */ - if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { - this.zip64 = true; - - /* - Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from - the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents - all numbers as 64-bit double precision IEEE 754 floating point numbers. - So, we have 53bits for integers and bitwise operations treat everything as 32bits. - see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators - and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 - */ - - // should look for a zip64 EOCD locator - offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); - if (offset < 0) { - throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); - } - this.reader.setIndex(offset); - this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); - this.readBlockZip64EndOfCentralLocator(); - - // now the zip64 EOCD record - if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { - // console.warn("ZIP64 end of central directory not where expected."); - this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); - if (this.relativeOffsetEndOfZip64CentralDir < 0) { - throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); - } - } - this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); - this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); - this.readBlockZip64EndOfCentral(); - } - - var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; - if (this.zip64) { - expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator - expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; - } - - var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; - - if (extraBytes > 0) { - // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); - if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { - // The offsets seem wrong, but we have something at the specified offset. - // So… we keep it. - } else { - // the offset is wrong, update the "zero" of the reader - // this happens if data has been prepended (crx files for example) - this.reader.zero = extraBytes; - } - } else if (extraBytes < 0) { - throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); - } - }, - prepareReader: function(data) { - this.reader = readerFor(data); - }, - /** - * Read a zip file and create ZipEntries. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. - */ - load: function(data) { - this.prepareReader(data); - this.readEndOfCentral(); - this.readCentralDir(); - this.readLocalFiles(); - } -}; -// }}} end of ZipEntries -module.exports = ZipEntries; - -},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ -'use strict'; -var readerFor = require('./reader/readerFor'); -var utils = require('./utils'); -var CompressedObject = require('./compressedObject'); -var crc32fn = require('./crc32'); -var utf8 = require('./utf8'); -var compressions = require('./compressions'); -var support = require('./support'); - -var MADE_BY_DOS = 0x00; -var MADE_BY_UNIX = 0x03; - -/** - * Find a compression registered in JSZip. - * @param {string} compressionMethod the method magic to find. - * @return {Object|null} the JSZip compression object, null if none found. - */ -var findCompression = function(compressionMethod) { - for (var method in compressions) { - if (!compressions.hasOwnProperty(method)) { - continue; - } - if (compressions[method].magic === compressionMethod) { - return compressions[method]; - } - } - return null; -}; - -// class ZipEntry {{{ -/** - * An entry in the zip file. - * @constructor - * @param {Object} options Options of the current file. - * @param {Object} loadOptions Options for loading the stream. - */ -function ZipEntry(options, loadOptions) { - this.options = options; - this.loadOptions = loadOptions; -} -ZipEntry.prototype = { - /** - * say if the file is encrypted. - * @return {boolean} true if the file is encrypted, false otherwise. - */ - isEncrypted: function() { - // bit 1 is set - return (this.bitFlag & 0x0001) === 0x0001; - }, - /** - * say if the file has utf-8 filename/comment. - * @return {boolean} true if the filename/comment is in utf-8, false otherwise. - */ - useUTF8: function() { - // bit 11 is set - return (this.bitFlag & 0x0800) === 0x0800; - }, - /** - * Read the local part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readLocalPart: function(reader) { - var compression, localExtraFieldsLength; - - // we already know everything from the central dir ! - // If the central dir data are false, we are doomed. - // On the bright side, the local part is scary : zip64, data descriptors, both, etc. - // The less data we get here, the more reliable this should be. - // Let's skip the whole header and dash to the data ! - reader.skip(22); - // in some zip created on windows, the filename stored in the central dir contains \ instead of /. - // Strangely, the filename here is OK. - // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes - // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... - // Search "unzip mismatching "local" filename continuing with "central" filename version" on - // the internet. - // - // I think I see the logic here : the central directory is used to display - // content and the local directory is used to extract the files. Mixing / and \ - // may be used to display \ to windows users and use / when extracting the files. - // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 - this.fileNameLength = reader.readInt(2); - localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir - // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. - this.fileName = reader.readData(this.fileNameLength); - reader.skip(localExtraFieldsLength); - - if (this.compressedSize === -1 || this.uncompressedSize === -1) { - throw new Error("Bug or corrupted zip : didn't get enough information from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); - } - - compression = findCompression(this.compressionMethod); - if (compression === null) { // no compression found - throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); - } - this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); - }, - - /** - * Read the central part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readCentralPart: function(reader) { - this.versionMadeBy = reader.readInt(2); - reader.skip(2); - // this.versionNeeded = reader.readInt(2); - this.bitFlag = reader.readInt(2); - this.compressionMethod = reader.readString(2); - this.date = reader.readDate(); - this.crc32 = reader.readInt(4); - this.compressedSize = reader.readInt(4); - this.uncompressedSize = reader.readInt(4); - var fileNameLength = reader.readInt(2); - this.extraFieldsLength = reader.readInt(2); - this.fileCommentLength = reader.readInt(2); - this.diskNumberStart = reader.readInt(2); - this.internalFileAttributes = reader.readInt(2); - this.externalFileAttributes = reader.readInt(4); - this.localHeaderOffset = reader.readInt(4); - - if (this.isEncrypted()) { - throw new Error("Encrypted zip are not supported"); - } - - // will be read in the local part, see the comments there - reader.skip(fileNameLength); - this.readExtraFields(reader); - this.parseZIP64ExtraField(reader); - this.fileComment = reader.readData(this.fileCommentLength); - }, - - /** - * Parse the external file attributes and get the unix/dos permissions. - */ - processAttributes: function () { - this.unixPermissions = null; - this.dosPermissions = null; - var madeBy = this.versionMadeBy >> 8; - - // Check if we have the DOS directory flag set. - // We look for it in the DOS and UNIX permissions - // but some unknown platform could set it as a compatibility flag. - this.dir = this.externalFileAttributes & 0x0010 ? true : false; - - if(madeBy === MADE_BY_DOS) { - // first 6 bits (0 to 5) - this.dosPermissions = this.externalFileAttributes & 0x3F; - } - - if(madeBy === MADE_BY_UNIX) { - this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; - // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); - } - - // fail safe : if the name ends with a / it probably means a folder - if (!this.dir && this.fileNameStr.slice(-1) === '/') { - this.dir = true; - } - }, - - /** - * Parse the ZIP64 extra field and merge the info in the current ZipEntry. - * @param {DataReader} reader the reader to use. - */ - parseZIP64ExtraField: function(reader) { - - if (!this.extraFields[0x0001]) { - return; - } - - // should be something, preparing the extra reader - var extraReader = readerFor(this.extraFields[0x0001].value); - - // I really hope that these 64bits integer can fit in 32 bits integer, because js - // won't let us have more. - if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { - this.uncompressedSize = extraReader.readInt(8); - } - if (this.compressedSize === utils.MAX_VALUE_32BITS) { - this.compressedSize = extraReader.readInt(8); - } - if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { - this.localHeaderOffset = extraReader.readInt(8); - } - if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { - this.diskNumberStart = extraReader.readInt(4); - } - }, - /** - * Read the central part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readExtraFields: function(reader) { - var end = reader.index + this.extraFieldsLength, - extraFieldId, - extraFieldLength, - extraFieldValue; - - if (!this.extraFields) { - this.extraFields = {}; - } - - while (reader.index + 4 < end) { - extraFieldId = reader.readInt(2); - extraFieldLength = reader.readInt(2); - extraFieldValue = reader.readData(extraFieldLength); - - this.extraFields[extraFieldId] = { - id: extraFieldId, - length: extraFieldLength, - value: extraFieldValue - }; - } - - reader.setIndex(end); - }, - /** - * Apply an UTF8 transformation if needed. - */ - handleUTF8: function() { - var decodeParamType = support.uint8array ? "uint8array" : "array"; - if (this.useUTF8()) { - this.fileNameStr = utf8.utf8decode(this.fileName); - this.fileCommentStr = utf8.utf8decode(this.fileComment); - } else { - var upath = this.findExtraFieldUnicodePath(); - if (upath !== null) { - this.fileNameStr = upath; - } else { - // ASCII text or unsupported code page - var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); - this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); - } - - var ucomment = this.findExtraFieldUnicodeComment(); - if (ucomment !== null) { - this.fileCommentStr = ucomment; - } else { - // ASCII text or unsupported code page - var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); - this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); - } - } - }, - - /** - * Find the unicode path declared in the extra field, if any. - * @return {String} the unicode path, null otherwise. - */ - findExtraFieldUnicodePath: function() { - var upathField = this.extraFields[0x7075]; - if (upathField) { - var extraReader = readerFor(upathField.value); - - // wrong version - if (extraReader.readInt(1) !== 1) { - return null; - } - - // the crc of the filename changed, this field is out of date. - if (crc32fn(this.fileName) !== extraReader.readInt(4)) { - return null; - } - - return utf8.utf8decode(extraReader.readData(upathField.length - 5)); - } - return null; - }, - - /** - * Find the unicode comment declared in the extra field, if any. - * @return {String} the unicode comment, null otherwise. - */ - findExtraFieldUnicodeComment: function() { - var ucommentField = this.extraFields[0x6375]; - if (ucommentField) { - var extraReader = readerFor(ucommentField.value); - - // wrong version - if (extraReader.readInt(1) !== 1) { - return null; - } - - // the crc of the comment changed, this field is out of date. - if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { - return null; - } - - return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); - } - return null; - } -}; -module.exports = ZipEntry; - -},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ -'use strict'; - -var StreamHelper = require('./stream/StreamHelper'); -var DataWorker = require('./stream/DataWorker'); -var utf8 = require('./utf8'); -var CompressedObject = require('./compressedObject'); -var GenericWorker = require('./stream/GenericWorker'); - -/** - * A simple object representing a file in the zip file. - * @constructor - * @param {string} name the name of the file - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data - * @param {Object} options the options of the file - */ -var ZipObject = function(name, data, options) { - this.name = name; - this.dir = options.dir; - this.date = options.date; - this.comment = options.comment; - this.unixPermissions = options.unixPermissions; - this.dosPermissions = options.dosPermissions; - - this._data = data; - this._dataBinary = options.binary; - // keep only the compression - this.options = { - compression : options.compression, - compressionOptions : options.compressionOptions - }; -}; - -ZipObject.prototype = { - /** - * Create an internal stream for the content of this object. - * @param {String} type the type of each chunk. - * @return StreamHelper the stream. - */ - internalStream: function (type) { - var result = null, outputType = "string"; - try { - if (!type) { - throw new Error("No output type specified."); - } - outputType = type.toLowerCase(); - var askUnicodeString = outputType === "string" || outputType === "text"; - if (outputType === "binarystring" || outputType === "text") { - outputType = "string"; - } - result = this._decompressWorker(); - - var isUnicodeString = !this._dataBinary; - - if (isUnicodeString && !askUnicodeString) { - result = result.pipe(new utf8.Utf8EncodeWorker()); - } - if (!isUnicodeString && askUnicodeString) { - result = result.pipe(new utf8.Utf8DecodeWorker()); - } - } catch (e) { - result = new GenericWorker("error"); - result.error(e); - } - - return new StreamHelper(result, outputType, ""); - }, - - /** - * Prepare the content in the asked type. - * @param {String} type the type of the result. - * @param {Function} onUpdate a function to call on each internal update. - * @return Promise the promise of the result. - */ - async: function (type, onUpdate) { - return this.internalStream(type).accumulate(onUpdate); - }, - - /** - * Prepare the content as a nodejs stream. - * @param {String} type the type of each chunk. - * @param {Function} onUpdate a function to call on each internal update. - * @return Stream the stream. - */ - nodeStream: function (type, onUpdate) { - return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); - }, - - /** - * Return a worker for the compressed content. - * @private - * @param {Object} compression the compression object to use. - * @param {Object} compressionOptions the options to use when compressing. - * @return Worker the worker. - */ - _compressWorker: function (compression, compressionOptions) { - if ( - this._data instanceof CompressedObject && - this._data.compression.magic === compression.magic - ) { - return this._data.getCompressedWorker(); - } else { - var result = this._decompressWorker(); - if(!this._dataBinary) { - result = result.pipe(new utf8.Utf8EncodeWorker()); - } - return CompressedObject.createWorkerFrom(result, compression, compressionOptions); - } - }, - /** - * Return a worker for the decompressed content. - * @private - * @return Worker the worker. - */ - _decompressWorker : function () { - if (this._data instanceof CompressedObject) { - return this._data.getContentWorker(); - } else if (this._data instanceof GenericWorker) { - return this._data; - } else { - return new DataWorker(this._data); - } - } -}; - -var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; -var removedFn = function () { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); -}; - -for(var i = 0; i < removedMethods.length; i++) { - ZipObject.prototype[removedMethods[i]] = removedFn; -} -module.exports = ZipObject; - -},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ -(function (global){ -'use strict'; -var Mutation = global.MutationObserver || global.WebKitMutationObserver; - -var scheduleDrain; - -{ - if (Mutation) { - var called = 0; - var observer = new Mutation(nextTick); - var element = global.document.createTextNode(''); - observer.observe(element, { - characterData: true - }); - scheduleDrain = function () { - element.data = (called = ++called % 2); - }; - } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { - var channel = new global.MessageChannel(); - channel.port1.onmessage = nextTick; - scheduleDrain = function () { - channel.port2.postMessage(0); - }; - } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { - scheduleDrain = function () { - - // Create a - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For All Packages

    -Package Hierarchies: - -
    -
    -
    -

    Class Hierarchy

    -
      -
    • java.lang.Object -
        -
      • org.gradle.api.internal.AbstractTask (implements org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal) -
          -
        • org.gradle.api.DefaultTask (implements org.gradle.api.Task) - -
        • -
        -
      • -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin (implements org.gradle.api.Plugin<T>)
      • -
      • com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension
      • -
      -
    • -
    -
    -
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/docs/javadoc/package-search-index.js b/gradle-plugin/build/docs/javadoc/package-search-index.js deleted file mode 100644 index 4abe63b077..0000000000 --- a/gradle-plugin/build/docs/javadoc/package-search-index.js +++ /dev/null @@ -1 +0,0 @@ -packageSearchIndex = [{"l":"All Packages","url":"allpackages-index.html"},{"l":"com.google.cloud.tools.dependencies.gradle"}] \ No newline at end of file diff --git a/gradle-plugin/build/docs/javadoc/package-search-index.zip b/gradle-plugin/build/docs/javadoc/package-search-index.zip deleted file mode 100644 index f34396e212458d7fabfa0ff8c696dccded33e9ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmWIWW@Zs#;Nak3NUryaVn70tKz2c5a&}^Rs%~*=Vo`F2Zf0IeYK2}_aekieX-BRG z1p&8*tBdP~39qGr$iz9~)u_x3K@CjY)yywU1aW7>wijgCf=TEDx+Zq#Kz ze)aUpPmcvz`;KQmS|FwHX2H?V3%kz5nN>cz>UvV9?6qRZa_InXc8+@q6Ldgs$pGR2 iZ$>5&280ulnE1vniX;LXYgQpyN~?m&7WSRVi*?@k5) diff --git a/gradle-plugin/build/docs/javadoc/resources/glass.png b/gradle-plugin/build/docs/javadoc/resources/glass.png deleted file mode 100644 index a7f591f467a1c0c949bbc510156a0c1afb860a6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY diff --git a/gradle-plugin/build/docs/javadoc/script.js b/gradle-plugin/build/docs/javadoc/script.js deleted file mode 100644 index 7dc93c48e3..0000000000 --- a/gradle-plugin/build/docs/javadoc/script.js +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -var moduleSearchIndex; -var packageSearchIndex; -var typeSearchIndex; -var memberSearchIndex; -var tagSearchIndex; -function loadScripts(doc, tag) { - createElem(doc, tag, 'jquery/jszip/dist/jszip.js'); - createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils.js'); - if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0 || - window.navigator.userAgent.indexOf('Edge/') > 0) { - createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js'); - } - createElem(doc, tag, 'search.js'); - - $.get(pathtoroot + "module-search-index.zip") - .done(function() { - JSZipUtils.getBinaryContent(pathtoroot + "module-search-index.zip", function(e, data) { - JSZip.loadAsync(data).then(function(zip){ - zip.file("module-search-index.json").async("text").then(function(content){ - moduleSearchIndex = JSON.parse(content); - }); - }); - }); - }); - $.get(pathtoroot + "package-search-index.zip") - .done(function() { - JSZipUtils.getBinaryContent(pathtoroot + "package-search-index.zip", function(e, data) { - JSZip.loadAsync(data).then(function(zip){ - zip.file("package-search-index.json").async("text").then(function(content){ - packageSearchIndex = JSON.parse(content); - }); - }); - }); - }); - $.get(pathtoroot + "type-search-index.zip") - .done(function() { - JSZipUtils.getBinaryContent(pathtoroot + "type-search-index.zip", function(e, data) { - JSZip.loadAsync(data).then(function(zip){ - zip.file("type-search-index.json").async("text").then(function(content){ - typeSearchIndex = JSON.parse(content); - }); - }); - }); - }); - $.get(pathtoroot + "member-search-index.zip") - .done(function() { - JSZipUtils.getBinaryContent(pathtoroot + "member-search-index.zip", function(e, data) { - JSZip.loadAsync(data).then(function(zip){ - zip.file("member-search-index.json").async("text").then(function(content){ - memberSearchIndex = JSON.parse(content); - }); - }); - }); - }); - $.get(pathtoroot + "tag-search-index.zip") - .done(function() { - JSZipUtils.getBinaryContent(pathtoroot + "tag-search-index.zip", function(e, data) { - JSZip.loadAsync(data).then(function(zip){ - zip.file("tag-search-index.json").async("text").then(function(content){ - tagSearchIndex = JSON.parse(content); - }); - }); - }); - }); - if (!moduleSearchIndex) { - createElem(doc, tag, 'module-search-index.js'); - } - if (!packageSearchIndex) { - createElem(doc, tag, 'package-search-index.js'); - } - if (!typeSearchIndex) { - createElem(doc, tag, 'type-search-index.js'); - } - if (!memberSearchIndex) { - createElem(doc, tag, 'member-search-index.js'); - } - if (!tagSearchIndex) { - createElem(doc, tag, 'tag-search-index.js'); - } - $(window).resize(function() { - $('.navPadding').css('padding-top', $('.fixedNav').css("height")); - }); -} - -function createElem(doc, tag, path) { - var script = doc.createElement(tag); - var scriptElement = doc.getElementsByTagName(tag)[0]; - script.src = pathtoroot + path; - scriptElement.parentNode.insertBefore(script, scriptElement); -} - -function show(type) { - count = 0; - for (var key in data) { - var row = document.getElementById(key); - if ((data[key] & type) !== 0) { - row.style.display = ''; - row.className = (count++ % 2) ? rowColor : altColor; - } - else - row.style.display = 'none'; - } - updateTabs(type); -} - -function updateTabs(type) { - for (var value in tabs) { - var sNode = document.getElementById(tabs[value][0]); - var spanNode = sNode.firstChild; - if (value == type) { - sNode.className = activeTableTab; - spanNode.innerHTML = tabs[value][1]; - } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; - } - } -} - -function updateModuleFrame(pFrame, cFrame) { - top.packageFrame.location = pFrame; - top.classFrame.location = cFrame; -} diff --git a/gradle-plugin/build/docs/javadoc/search.js b/gradle-plugin/build/docs/javadoc/search.js deleted file mode 100644 index 8492271e71..0000000000 --- a/gradle-plugin/build/docs/javadoc/search.js +++ /dev/null @@ -1,326 +0,0 @@ -/* - * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -var noResult = {l: "No results found"}; -var catModules = "Modules"; -var catPackages = "Packages"; -var catTypes = "Types"; -var catMembers = "Members"; -var catSearchTags = "SearchTags"; -var highlight = "$&"; -var camelCaseRegexp = ""; -var secondaryMatcher = ""; -function getHighlightedText(item) { - var ccMatcher = new RegExp(camelCaseRegexp); - var label = item.replace(ccMatcher, highlight); - if (label === item) { - label = item.replace(secondaryMatcher, highlight); - } - return label; -} -function getURLPrefix(ui) { - var urlPrefix=""; - if (useModuleDirectories) { - var slash = "/"; - if (ui.item.category === catModules) { - return ui.item.l + slash; - } else if (ui.item.category === catPackages && ui.item.m) { - return ui.item.m + slash; - } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) { - $.each(packageSearchIndex, function(index, item) { - if (item.m && ui.item.p == item.l) { - urlPrefix = item.m + slash; - } - }); - return urlPrefix; - } else { - return urlPrefix; - } - } - return urlPrefix; -} -var watermark = 'Search'; -$(function() { - $("#search").val(''); - $("#search").prop("disabled", false); - $("#reset").prop("disabled", false); - $("#search").val(watermark).addClass('watermark'); - $("#search").blur(function() { - if ($(this).val().length == 0) { - $(this).val(watermark).addClass('watermark'); - } - }); - $("#search").on('click keydown', function() { - if ($(this).val() == watermark) { - $(this).val('').removeClass('watermark'); - } - }); - $("#reset").click(function() { - $("#search").val(''); - $("#search").focus(); - }); - $("#search").focus(); - $("#search")[0].setSelectionRange(0, 0); -}); -$.widget("custom.catcomplete", $.ui.autocomplete, { - _create: function() { - this._super(); - this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); - }, - _renderMenu: function(ul, items) { - var rMenu = this, - currentCategory = ""; - rMenu.menu.bindings = $(); - $.each(items, function(index, item) { - var li; - if (item.l !== noResult.l && item.category !== currentCategory) { - ul.append("
  • " + item.category + "
  • "); - currentCategory = item.category; - } - li = rMenu._renderItemData(ul, item); - if (item.category) { - li.attr("aria-label", item.category + " : " + item.l); - li.attr("class", "resultItem"); - } else { - li.attr("aria-label", item.l); - li.attr("class", "resultItem"); - } - }); - }, - _renderItem: function(ul, item) { - var label = ""; - if (item.category === catModules) { - label = getHighlightedText(item.l); - } else if (item.category === catPackages) { - label = (item.m) - ? getHighlightedText(item.m + "/" + item.l) - : getHighlightedText(item.l); - } else if (item.category === catTypes) { - label = (item.p) - ? getHighlightedText(item.p + "." + item.l) - : getHighlightedText(item.l); - } else if (item.category === catMembers) { - label = getHighlightedText(item.p + "." + (item.c + "." + item.l)); - } else if (item.category === catSearchTags) { - label = getHighlightedText(item.l); - } else { - label = item.l; - } - var li = $("
  • ").appendTo(ul); - var div = $("
    ").appendTo(li); - if (item.category === catSearchTags) { - if (item.d) { - div.html(label + " (" + item.h + ")
    " - + item.d + "
    "); - } else { - div.html(label + " (" + item.h + ")"); - } - } else { - div.html(label); - } - return li; - } -}); -$(function() { - $("#search").catcomplete({ - minLength: 1, - delay: 100, - source: function(request, response) { - var result = new Array(); - var presult = new Array(); - var tresult = new Array(); - var mresult = new Array(); - var tgresult = new Array(); - var secondaryresult = new Array(); - var displayCount = 0; - var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i"); - camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)"); - var camelCaseMatcher = new RegExp("^" + camelCaseRegexp); - secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i"); - - // Return the nested innermost name from the specified object - function nestedName(e) { - return e.l.substring(e.l.lastIndexOf(".") + 1); - } - - function concatResults(a1, a2) { - a1 = a1.concat(a2); - a2.length = 0; - return a1; - } - - if (moduleSearchIndex) { - var mdleCount = 0; - $.each(moduleSearchIndex, function(index, item) { - item.category = catModules; - if (exactMatcher.test(item.l)) { - result.push(item); - mdleCount++; - } else if (camelCaseMatcher.test(item.l)) { - result.push(item); - } else if (secondaryMatcher.test(item.l)) { - secondaryresult.push(item); - } - }); - displayCount = mdleCount; - result = concatResults(result, secondaryresult); - } - if (packageSearchIndex) { - var pCount = 0; - var pkg = ""; - $.each(packageSearchIndex, function(index, item) { - item.category = catPackages; - pkg = (item.m) - ? (item.m + "/" + item.l) - : item.l; - if (exactMatcher.test(item.l)) { - presult.push(item); - pCount++; - } else if (camelCaseMatcher.test(pkg)) { - presult.push(item); - } else if (secondaryMatcher.test(pkg)) { - secondaryresult.push(item); - } - }); - result = result.concat(concatResults(presult, secondaryresult)); - displayCount = (pCount > displayCount) ? pCount : displayCount; - } - if (typeSearchIndex) { - var tCount = 0; - $.each(typeSearchIndex, function(index, item) { - item.category = catTypes; - var s = nestedName(item); - if (exactMatcher.test(s)) { - tresult.push(item); - tCount++; - } else if (camelCaseMatcher.test(s)) { - tresult.push(item); - } else if (secondaryMatcher.test(item.p + "." + item.l)) { - secondaryresult.push(item); - } - }); - result = result.concat(concatResults(tresult, secondaryresult)); - displayCount = (tCount > displayCount) ? tCount : displayCount; - } - if (memberSearchIndex) { - var mCount = 0; - $.each(memberSearchIndex, function(index, item) { - item.category = catMembers; - var s = nestedName(item); - if (exactMatcher.test(s)) { - mresult.push(item); - mCount++; - } else if (camelCaseMatcher.test(s)) { - mresult.push(item); - } else if (secondaryMatcher.test(item.c + "." + item.l)) { - secondaryresult.push(item); - } - }); - result = result.concat(concatResults(mresult, secondaryresult)); - displayCount = (mCount > displayCount) ? mCount : displayCount; - } - if (tagSearchIndex) { - var tgCount = 0; - $.each(tagSearchIndex, function(index, item) { - item.category = catSearchTags; - if (exactMatcher.test(item.l)) { - tgresult.push(item); - tgCount++; - } else if (secondaryMatcher.test(item.l)) { - secondaryresult.push(item); - } - }); - result = result.concat(concatResults(tgresult, secondaryresult)); - displayCount = (tgCount > displayCount) ? tgCount : displayCount; - } - displayCount = (displayCount > 500) ? displayCount : 500; - var counter = function() { - var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0}; - var f = function(item) { - count[item.category] += 1; - return (count[item.category] <= displayCount); - }; - return f; - }(); - response(result.filter(counter)); - }, - response: function(event, ui) { - if (!ui.content.length) { - ui.content.push(noResult); - } else { - $("#search").empty(); - } - }, - autoFocus: true, - position: { - collision: "flip" - }, - select: function(event, ui) { - if (ui.item.l !== noResult.l) { - var url = getURLPrefix(ui); - if (ui.item.category === catModules) { - if (useModuleDirectories) { - url += "module-summary.html"; - } else { - url = ui.item.l + "-summary.html"; - } - } else if (ui.item.category === catPackages) { - if (ui.item.url) { - url = ui.item.url; - } else { - url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; - } - } else if (ui.item.category === catTypes) { - if (ui.item.url) { - url = ui.item.url; - } else if (ui.item.p === "") { - url += ui.item.l + ".html"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; - } - } else if (ui.item.category === catMembers) { - if (ui.item.p === "") { - url += ui.item.c + ".html" + "#"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; - } - if (ui.item.url) { - url += ui.item.url; - } else { - url += ui.item.l; - } - } else if (ui.item.category === catSearchTags) { - url += ui.item.u; - } - if (top !== window) { - parent.classFrame.location = pathtoroot + url; - } else { - window.location.href = pathtoroot + url; - } - $("#search").focus(); - } - } - }); -}); diff --git a/gradle-plugin/build/docs/javadoc/stylesheet.css b/gradle-plugin/build/docs/javadoc/stylesheet.css deleted file mode 100644 index de945eda26..0000000000 --- a/gradle-plugin/build/docs/javadoc/stylesheet.css +++ /dev/null @@ -1,910 +0,0 @@ -/* - * Javadoc style sheet - */ - -@import url('resources/fonts/dejavu.css'); - -/* - * Styles for individual HTML elements. - * - * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular - * HTML element throughout the page. - */ - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; - padding:0; - height:100%; - width:100%; -} -iframe { - margin:0; - padding:0; - height:100%; - width:100%; - overflow-y:scroll; - border:none; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a[href]:hover, a[href]:focus { - text-decoration:none; - color:#bb7a2a; -} -a[name] { - color:#353833; -} -a[name]:before, a[name]:target, a[id]:before, a[id]:target { - content:""; - display:inline-block; - position:relative; - padding-top:129px; - margin-top:-129px; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; - font-style:italic; -} -h4 { - font-size:13px; -} -h5 { - font-size:12px; -} -h6 { - font-size:11px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -table tr td dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} - -/* - * Styles for HTML generated by javadoc. - * - * These are style classes that are used by the standard doclet to generate HTML documentation. - */ - -/* - * Styles for document title and copyright. - */ -.clear { - clear:both; - height:0px; - overflow:hidden; -} -.aboutLanguage { - float:right; - padding:0px 21px; - font-size:11px; - z-index:200; - margin-top:-9px; -} -.legalCopy { - margin-left:.5em; -} -.bar a, .bar a:link, .bar a:visited, .bar a:active { - color:#FFFFFF; - text-decoration:none; -} -.bar a:hover, .bar a:focus { - color:#bb7a2a; -} -.tab { - background-color:#0066FF; - color:#ffffff; - padding:8px; - width:5em; - font-weight:bold; -} -/* - * Styles for navigation bar. - */ -.bar { - background-color:#4D7A97; - color:#FFFFFF; - padding:.8em .5em .4em .8em; - height:auto;/*height:1.8em;*/ - font-size:11px; - margin:0; -} -.navPadding { - padding-top: 107px; -} -.fixedNav { - position:fixed; - width:100%; - z-index:999; - background-color:#ffffff; -} -.topNav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.bottomNav { - margin-top:10px; - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.subNav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.subNav div { - clear:left; - float:left; - padding:0 0 5px 6px; - text-transform:uppercase; -} -ul.navList, ul.subNavList { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.navList li{ - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -ul.navListSearch { - float:right; - margin:0 0 0 0; - padding:0; -} -ul.navListSearch li { - list-style:none; - float:right; - padding: 5px 6px; - text-transform:uppercase; -} -ul.navListSearch li label { - position:relative; - right:-16px; -} -ul.subNavList li { - list-style:none; - float:left; -} -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { - color:#FFFFFF; - text-decoration:none; - text-transform:uppercase; -} -.topNav a:hover, .bottomNav a:hover { - text-decoration:none; - color:#bb7a2a; - text-transform:uppercase; -} -.navBarCell1Rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skipNav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* - * Styles for page header and footer. - */ -.header, .footer { - clear:both; - margin:0 20px; - padding:5px 0 0 0; -} -.indexNav { - position:relative; - font-size:12px; - background-color:#dee3e9; -} -.indexNav ul { - margin-top:0; - padding:5px; -} -.indexNav ul li { - display:inline; - list-style-type:none; - padding-right:10px; - text-transform:uppercase; -} -.indexNav h1 { - font-size:13px; -} -.title { - color:#2c4557; - margin:10px 0; -} -.subTitle { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.footer ul { - margin:20px 0 5px 0; -} -.header ul li, .footer ul li { - list-style:none; - font-size:13px; -} -/* - * Styles for headings. - */ -div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList ul.blockList li.blockList h3 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList li.blockList h3 { - padding:0; - margin:15px 0; -} -ul.blockList li.blockList h2 { - padding:0px 0 20px 0; -} -/* - * Styles for page layout containers. - */ -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer, -.allClassesContainer, .allPackagesContainer { - clear:both; - padding:10px 20px; - position:relative; -} -.indexContainer { - margin:10px; - position:relative; - font-size:12px; -} -.indexContainer h2 { - font-size:13px; - padding:0 0 3px 0; -} -.indexContainer ul { - margin:0; - padding:0; -} -.indexContainer ul li { - list-style:none; - padding-top:2px; -} -.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { - margin:5px 0 10px 0px; - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -.serializedFormContainer dl.nameValue dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -.serializedFormContainer dl.nameValue dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* - * Styles for lists. - */ -li.circle { - list-style:circle; -} -ul.horizontal li { - display:inline; - font-size:0.9em; -} -ul.inheritance { - margin:0; - padding:0; -} -ul.inheritance li { - display:inline; - list-style:none; -} -ul.inheritance li ul.inheritance { - margin-left:15px; - padding-left:15px; - padding-top:1px; -} -ul.blockList, ul.blockListLast { - margin:10px 0 10px 0; - padding:0; -} -ul.blockList li.blockList, ul.blockListLast li.blockList { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { - padding:0px 20px 5px 10px; - border:1px solid #ededed; - background-color:#f8f8f8; -} -ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left:0; - padding-left:0; - padding-bottom:15px; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style:none; - border-bottom:none; - padding-bottom:0; -} -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top:0; - margin-bottom:1px; -} -/* - * Styles for tables. - */ -.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary, -.requiresSummary, .packagesSummary, .providesSummary, .usesSummary { - width:100%; - border-spacing:0; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; -} -.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary { - padding:0px; -} -.overviewSummary caption, .memberSummary caption, .typeSummary caption, -.useSummary caption, .constantsSummary caption, .deprecatedSummary caption, -.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0px; - padding-top:10px; - padding-left:1px; - margin:0px; - white-space:pre; -} -.constantsSummary caption a:link, .constantsSummary caption a:visited, -.useSummary caption a:link, .useSummary caption a:visited { - color:#1f389c; -} -.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, -.deprecatedSummary caption a:link, -.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link, -.usesSummary caption a:link, -.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, -.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, -.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover, -.usesSummary caption a:hover, -.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, -.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, -.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active, -.usesSummary caption a:active, -.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, -.deprecatedSummary caption a:visited, -.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited, -.usesSummary caption a:visited { - color:#FFFFFF; -} -.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, -.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span, -.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span, -.usesSummary caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span, -.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#F8981D; - height:16px; -} -.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span, -.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#4D7A97; - height:16px; -} -.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab, -.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab, -.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab, -.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab { - padding-top:0px; - padding-left:0px; - padding-right:0px; - background-image:none; - float:none; - display:inline; -} -.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, -.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd, -.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd { - display:none; - width:5px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd, -.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd, -.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - background-color:#4D7A97; - float:left; -} -.rowColor th, .altColor th { - font-weight:normal; -} -.overviewSummary td, .memberSummary td, .typeSummary td, -.useSummary td, .constantsSummary td, .deprecatedSummary td, -.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td { - text-align:left; - padding:0px 0px 12px 10px; -} -th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th, -.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td, -.constantsSummary td { - vertical-align:top; - padding-right:0px; - padding-top:8px; - padding-bottom:3px; -} -th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th, -.packagesSummary th { - background:#dee3e9; - text-align:left; - padding:8px 3px 3px 7px; -} -td.colFirst, th.colFirst { - font-size:13px; -} -td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast { - font-size:13px; -} -.constantsSummary th, .packagesSummary th { - font-size:13px; -} -.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst, -.providesSummary td.colLast { - white-space:normal; - font-size:13px; -} -.overviewSummary td.colFirst, .overviewSummary th.colFirst, -.requiresSummary td.colFirst, .requiresSummary th.colFirst, -.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th, -.usesSummary td.colFirst, .usesSummary th.colFirst, -.providesSummary td.colFirst, .providesSummary th.colFirst, -.memberSummary td.colFirst, .memberSummary th.colFirst, -.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName, -.typeSummary td.colFirst, .typeSummary th.colFirst { - vertical-align:top; -} -.packagesSummary th.colLast, .packagesSummary td.colLast { - white-space:normal; -} -td.colFirst a:link, td.colFirst a:visited, -td.colSecond a:link, td.colSecond a:visited, -th.colFirst a:link, th.colFirst a:visited, -th.colSecond a:link, th.colSecond a:visited, -th.colConstructorName a:link, th.colConstructorName a:visited, -th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, -.constantValuesContainer td a:link, .constantValuesContainer td a:visited, -.allClassesContainer td a:link, .allClassesContainer td a:visited, -.allPackagesContainer td a:link, .allPackagesContainer td a:visited { - font-weight:bold; -} -.tableSubHeadingColor { - background-color:#EEEEFF; -} -.altColor, .altColor th { - background-color:#FFFFFF; -} -.rowColor, .rowColor th { - background-color:#EEEEEF; -} -/* - * Styles for contents. - */ -.description pre { - margin-top:0; -} -.deprecatedContent { - margin:0; - padding:10px 0; -} -.docSummary { - padding:0; -} -ul.blockList ul.blockList ul.blockList li.blockList h3 { - font-style:normal; -} -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -td.colLast div { - padding-top:0px; -} -td.colLast a { - padding-bottom:3px; -} -/* - * Styles for formatting effect. - */ -.sourceLineNo { - color:green; - padding:0 30px 0 0; -} -h1.hidden { - visibility:hidden; - overflow:hidden; - font-size:10px; -} -.block { - display:block; - margin:3px 10px 2px 0px; - color:#474747; -} -.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink, -.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType, -.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, -.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink { - font-weight:bold; -} -.deprecationComment, .emphasizedPhrase, .interfaceName { - font-style:italic; -} -.deprecationBlock { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - border-style:solid; - border-width:thin; - border-radius:10px; - padding:10px; - margin-bottom:10px; - margin-right:10px; - display:inline-block; -} -div.block div.deprecationComment, div.block div.block span.emphasizedPhrase, -div.block div.block span.interfaceName { - font-style:normal; -} -div.contentContainer ul.blockList li.blockList h2 { - padding-bottom:0px; -} -/* - * Styles for IFRAME. - */ -.mainContainer { - margin:0 auto; - padding:0; - height:100%; - width:100%; - position:fixed; - top:0; - left:0; -} -.leftContainer { - height:100%; - position:fixed; - width:320px; -} -.leftTop { - position:relative; - float:left; - width:315px; - top:0; - left:0; - height:30%; - border-right:6px solid #ccc; - border-bottom:6px solid #ccc; -} -.leftBottom { - position:relative; - float:left; - width:315px; - bottom:0; - left:0; - height:70%; - border-right:6px solid #ccc; - border-top:1px solid #000; -} -.rightContainer { - position:absolute; - left:320px; - top:0; - bottom:0; - height:100%; - right:0; - border-left:1px solid #000; -} -.rightIframe { - margin:0; - padding:0; - height:100%; - right:30px; - width:100%; - overflow:visible; - margin-bottom:30px; -} -/* - * Styles specific to HTML5 elements. - */ -main, nav, header, footer, section { - display:block; -} -/* - * Styles for javadoc search. - */ -.ui-autocomplete-category { - font-weight:bold; - font-size:15px; - padding:7px 0 7px 3px; - background-color:#4D7A97; - color:#FFFFFF; -} -.resultItem { - font-size:13px; -} -.ui-autocomplete { - max-height:85%; - max-width:65%; - overflow-y:scroll; - overflow-x:scroll; - white-space:nowrap; - box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); -} -ul.ui-autocomplete { - position:fixed; - z-index:999999; - background-color: #FFFFFF; -} -ul.ui-autocomplete li { - float:left; - clear:both; - width:100%; -} -.resultHighlight { - font-weight:bold; -} -.ui-autocomplete .result-item { - font-size: inherit; -} -#search { - background-image:url('resources/glass.png'); - background-size:13px; - background-repeat:no-repeat; - background-position:2px 3px; - padding-left:20px; - position:relative; - right:-18px; -} -#reset { - background-color: rgb(255,255,255); - background-image:url('resources/x.png'); - background-position:center; - background-repeat:no-repeat; - background-size:12px; - border:0 none; - width:16px; - height:17px; - position:relative; - left:-4px; - top:-4px; - font-size:0px; -} -.watermark { - color:#545454; -} -.searchTagDescResult { - font-style:italic; - font-size:11px; -} -.searchTagHolderResult { - font-style:italic; - font-size:12px; -} -.searchTagResult:before, .searchTagResult:target { - color:red; -} -.moduleGraph span { - display:none; - position:absolute; -} -.moduleGraph:hover span { - display:block; - margin: -100px 0 0 100px; - z-index: 1; -} -.methodSignature { - white-space:normal; -} - -/* - * Styles for user-provided tables. - * - * borderless: - * No borders, vertical margins, styled caption. - * This style is provided for use with existing doc comments. - * In general, borderless tables should not be used for layout purposes. - * - * plain: - * Plain borders around table and cells, vertical margins, styled caption. - * Best for small tables or for complex tables for tables with cells that span - * rows and columns, when the "striped" style does not work well. - * - * striped: - * Borders around the table and vertical borders between cells, striped rows, - * vertical margins, styled caption. - * Best for tables that have a header row, and a body containing a series of simple rows. - */ - -table.borderless, -table.plain, -table.striped { - margin-top: 10px; - margin-bottom: 10px; -} -table.borderless > caption, -table.plain > caption, -table.striped > caption { - font-weight: bold; - font-size: smaller; -} -table.borderless th, table.borderless td, -table.plain th, table.plain td, -table.striped th, table.striped td { - padding: 2px 5px; -} -table.borderless, -table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, -table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { - border: none; -} -table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { - background-color: transparent; -} -table.plain { - border-collapse: collapse; - border: 1px solid black; -} -table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { - background-color: transparent; -} -table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, -table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { - border: 1px solid black; -} -table.striped { - border-collapse: collapse; - border: 1px solid black; -} -table.striped > thead { - background-color: #E3E3E3; -} -table.striped > thead > tr > th, table.striped > thead > tr > td { - border: 1px solid black; -} -table.striped > tbody > tr:nth-child(even) { - background-color: #EEE -} -table.striped > tbody > tr:nth-child(odd) { - background-color: #FFF -} -table.striped > tbody > tr > th, table.striped > tbody > tr > td { - border-left: 1px solid black; - border-right: 1px solid black; -} -table.striped > tbody > tr > th { - font-weight: normal; -} diff --git a/gradle-plugin/build/docs/javadoc/type-search-index.js b/gradle-plugin/build/docs/javadoc/type-search-index.js deleted file mode 100644 index eb6ce73c4f..0000000000 --- a/gradle-plugin/build/docs/javadoc/type-search-index.js +++ /dev/null @@ -1 +0,0 @@ -typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckerPlugin"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckerPluginExtension"},{"p":"com.google.cloud.tools.dependencies.gradle","l":"LinkageCheckTask"}] \ No newline at end of file diff --git a/gradle-plugin/build/docs/javadoc/type-search-index.zip b/gradle-plugin/build/docs/javadoc/type-search-index.zip deleted file mode 100644 index 45c7b9b4f2d66627b6b1ce6d31147f309fe66562..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmWIWW@Zs#;Nak3NUryaVn707Kz2!GL8@+XYGP4xhHhqFN@|5(R&jpb+B1e+hYbW= zF0O7_D=VuIYw$8?iHCR)N9M%VV^NEz9!RM9e&PvN-hZC=n+0FEl|L{#v})5OhqW?i zncmG`XILF~HYELmUCx#-S5M|Nc`!(`XWk1DT=8*FfqlAoq_4)cX6uTA^D`#%+W5T@ znl2vI@iXS_#;|izPgTC6o)z+ U_fmj2D;r21BM`a(>BC@60PrbXZ2$lO diff --git a/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar b/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT-groovydoc.jar deleted file mode 100644 index 91c5cb28e85d8fc6eb1c91d92310b9b25f2b2682..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 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

    4h<}{31Cs5UVBb) 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 diff --git a/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar b/gradle-plugin/build/libs/linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar deleted file mode 100644 index 95ddba84924a236cc7f7341e11adb77f7458756e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13071 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 diff --git a/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties b/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties deleted file mode 100644 index 9248ace26a..0000000000 --- a/gradle-plugin/build/pluginDescriptors/com.google.cloud.tools.linkagechecker.properties +++ /dev/null @@ -1 +0,0 @@ -implementation-class=com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties b/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties deleted file mode 100644 index b3489d209b..0000000000 --- a/gradle-plugin/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties +++ /dev/null @@ -1 +0,0 @@ -implementation-classpath=/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/java/main\:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/groovy/main\:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/resources/main\:/Users/lawrenceqiu/.m2/repository/com/google/cloud/tools/dependencies/1.5.14-SNAPSHOT/dependencies-1.5.14-SNAPSHOT.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-compat/3.6.3/2a8242398efbfd533ffe36147864c34a326666da/maven-compat-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-core/3.6.3/eca800aa73e750ec9a880eb224f0bb68f5b7873b/maven-core-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/4.2.1/41e5ab52ec65e60b6c0ced947becf7ba96402645/guice-4.2.1-no_aop.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/30.1.1-jre/87e0fd1df874ea3cbe577702fe6f17068b790fd8/guava-30.1.1-jre.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-resolver-provider/3.6.3/115240b65c1d0e9745cb2012b977afc3d1795f94/maven-resolver-provider-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-http/1.7.1/4cda5dfeeeafaa0b80cc75cad51c311af4b04e0c/maven-resolver-transport-http-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-file/1.7.1/d00b990b9686a2a9364c7712d6d629f151b85d60/maven-resolver-transport-file-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-connector-basic/1.7.1/a0714a12c07469dbf5236dd7ed81e0b0407bec0c/maven-resolver-connector-basic-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-impl/1.4.1/1658cfa27978c5949c3a92086514a22ca85394e4/maven-resolver-impl-1.4.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-spi/1.7.1/f6a48723bf7729925bdc1f354bb22f453fe2f754/maven-resolver-spi-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-util/1.7.1/931ea5585c5d19feeef98948994ab8eb80cdb81a/maven-resolver-util-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-api/1.7.1/c28ce68ba2b71272be80f40ecc79d81c75aa8d40/maven-resolver-api-1.7.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.bcel/bcel/6.6.1/8f9809672f3eed6627a53578ef00bff5f48a2a27/bcel-6.6.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.relaxng/jing/20181222/d847e7f2685866a0a3783508669a881313a959ab/jing-20181222.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/isorelax/isorelax/20030108/b21859c352bd959ea22d06b2fe8c93b2e24531b9/isorelax-20030108.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-cli/commons-cli/1.4/c51c00206bb913cd8612b24abd9fa98ae89719b1/commons-cli-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.8.0/6b83e4a33220272c3a08991498ba9dc09519f190/checker-qual-3.8.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.5.1/562d366678b89ce5d6b6b82c1a073880341e3fba/error_prone_annotations-2.5.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-plugin-api/3.6.3/63fe5967b9c4c1b6fa6004be76e1c939e8bd1d6/maven-plugin-api-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model-builder/3.6.3/4ef1d56f53d3e0a9003b7cc82c89af9878321e82/maven-model-builder-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.6.3/f8ff8032903882376e8d000c51e3e16d20fc7df7/maven-artifact-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.12.0/c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e/commons-lang3-3.12.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model/3.6.3/61c7848dce2fbf7f7ab0fdc8e8a7cc9da5dd7827/maven-model-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings-builder/3.6.3/756d46810b8cc7b2b98585ccc787854cdfde7fd9/maven-settings-builder-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings/3.6.3/bbf4e06dcdb0bb33d1546c080df5c8d92b535d30/maven-settings-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-builder-support/3.6.3/e9a37af390009a525d8faa6b18bd682123f85f9e/maven-builder-support-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-repository-metadata/3.6.3/14d28071c85e76b656c46c465db91d394d6f48f0/maven-repository-metadata-3.6.3.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.shared/maven-shared-utils/3.2.1/8dd4dfb1d2d8b6969f6462790f82670bcd35ce2/maven-shared-utils-3.2.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.plexus/0.3.4/f1335a3b7bc3fd23f67da88bd60cd5d4c3304ef3/org.eclipse.sisu.plexus-0.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.inject/0.3.4/fc3be144183f54dc6f5c55e34462c1c2d89d7d96/org.eclipse.sisu.inject-0.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.enterprise/cdi-api/1.0/44c453f60909dfc223552ace63e05c694215156b/cdi-api-1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.inject/javax.inject/1/6975da39a7040257bd51d21a231b76c915872d38/javax.inject-1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.wagon/wagon-provider-api/3.3.4/7a99fdaa534aa8c01f01a447fe1c7af5cfc7b0d5/wagon-provider-api-3.3.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-sec-dispatcher/1.4/43fde524e9b94c883727a9fddb8669181b890ea7/plexus-sec-dispatcher-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.2.1/13b015768e0d04849d2794e4c47eb02d01a0de32/plexus-utils-3.2.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-classworlds/2.6.0/8587e80fcb38e70b70fae8d5914b6376bfad6259/plexus-classworlds-2.6.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-component-annotations/2.1.0/2f2147a6cc6a119a1b51a96f31d45c557f6244b9/plexus-component-annotations-2.1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-interpolation/1.25/3b37b3335e6a97e11e690bbdc22ade1a5deb74d6/plexus-interpolation-1.25.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.30/b5a4b6d16ab13e34a88fae84c35cd5d68cac922c/slf4j-api-1.7.30.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.14/9dd1a631c082d92ecd4bd8fd4cf55026c720a8c1/httpcore-4.4.14.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.11/3acb4705652e16236558f0f4f2192cc33c3bd189/commons-codec-1.11.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/net.sf.saxon/Saxon-HE/9.6.0-4/5f94b2ac10eab043e1ad90d05f5bc34727bd94c6/Saxon-HE-9.6.0-4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.9.1/7bc7e49ddfe4fb5f193ed37ecc96c12292c8ceb6/xercesImpl-2.9.1.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xml-apis/xml-apis/1.3.04/90b215f48fe42776c8c7f6e3509ec54e84fd65ef/xml-apis-1.3.04.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/aopalliance/aopalliance/1.0/235ba8b489512805ac13a8f9ea77a1ca5ebe3e8/aopalliance-1.0.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-cipher/1.4/50ade46f23bb38cd984b4ec560c46223432aac38/plexus-cipher-1.4.jar\:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.annotation/jsr250-api/1.0/5025422767732a1ab45d93abfea846513d742dcf/jsr250-api-1.0.jar diff --git a/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml b/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml deleted file mode 100644 index 9e350ba029..0000000000 --- a/gradle-plugin/build/publications/linkageCheckerPluginPluginMarkerMaven/pom-default.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - 4.0.0 - com.google.cloud.tools.linkagechecker - com.google.cloud.tools.linkagechecker.gradle.plugin - 1.5.14-SNAPSHOT - pom - Linkage Checker - Tool to verify the compatibility of the class paths of Gradle projects - - - com.google.cloud.tools - linkage-checker-gradle-plugin - 1.5.14-SNAPSHOT - - - diff --git a/gradle-plugin/build/publications/pluginMaven/module.json b/gradle-plugin/build/publications/pluginMaven/module.json deleted file mode 100644 index 5f0f2fe50b..0000000000 --- a/gradle-plugin/build/publications/pluginMaven/module.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "com.google.cloud.tools", - "module": "linkage-checker-gradle-plugin", - "version": "1.5.14-SNAPSHOT", - "attributes": { - "org.gradle.status": "integration" - } - }, - "createdBy": { - "gradle": { - "version": "6.8.3", - "buildId": "js6ggcowlbaebiiubwhk7n6pw4" - } - }, - "variants": [ - { - "name": "apiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.jvm.version": 8, - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api" - }, - "files": [ - { - "name": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", - "url": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", - "size": 13071, - "sha512": "91515003e335b3fb9cc6394551a1984cb0b4b1d685a860411d1cefeae60c7b34666dd2bfbd5157d61ce3f418e899b8f9e8a4f573b489b6060c87ba42dd602f32", - "sha256": "94e620b3e7759253747a67a7dcb9850837f4f9f687fcb4dd3c8d7e1465437e73", - "sha1": "e6c81b398debf7429fa8f21e6fb830509f4c74bf", - "md5": "eeffc520dd849ef52395bc5d7b50284a" - } - ] - }, - { - "name": "runtimeElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.jvm.version": 8, - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "com.google.cloud.tools", - "module": "dependencies", - "version": { - "requires": "1.5.14-SNAPSHOT" - } - }, - { - "group": "com.google.guava", - "module": "guava", - "version": { - "requires": "30.1-jre" - } - }, - { - "group": "org.apache.maven.resolver", - "module": "maven-resolver-api", - "version": { - "requires": "1.7.1" - } - } - ], - "files": [ - { - "name": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", - "url": "linkage-checker-gradle-plugin-1.5.14-SNAPSHOT.jar", - "size": 13071, - "sha512": "91515003e335b3fb9cc6394551a1984cb0b4b1d685a860411d1cefeae60c7b34666dd2bfbd5157d61ce3f418e899b8f9e8a4f573b489b6060c87ba42dd602f32", - "sha256": "94e620b3e7759253747a67a7dcb9850837f4f9f687fcb4dd3c8d7e1465437e73", - "sha1": "e6c81b398debf7429fa8f21e6fb830509f4c74bf", - "md5": "eeffc520dd849ef52395bc5d7b50284a" - } - ] - } - ] -} diff --git a/gradle-plugin/build/publications/pluginMaven/pom-default.xml b/gradle-plugin/build/publications/pluginMaven/pom-default.xml deleted file mode 100644 index 0fe61cf037..0000000000 --- a/gradle-plugin/build/publications/pluginMaven/pom-default.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - 4.0.0 - com.google.cloud.tools - linkage-checker-gradle-plugin - 1.5.14-SNAPSHOT - - - com.google.cloud.tools - dependencies - 1.5.14-SNAPSHOT - runtime - - - com.google.guava - guava - 30.1-jre - runtime - - - org.apache.maven.resolver - maven-resolver-api - 1.7.1 - runtime - - - diff --git a/gradle-plugin/build/reports/plugin-development/validation-report.txt b/gradle-plugin/build/reports/plugin-development/validation-report.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html deleted file mode 100644 index 64076d2e34..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - -Test results - Class com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest - - - - - -
    -

    Class com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest

    -
    -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    6
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    8.265s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Tests

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TestDurationResult
    can handle artifacts with classifiers 1.002spassed
    can handle artifacts with classifiers with transitive dependencies1.163spassed
    can handle artifacts with pom packaging0.551spassed
    can invalidate incompatible dependencies in a project1.593spassed
    can suppress duplicate outputs on circular dependencies3.632spassed
    can validate a project with no dependency conflicts0.324spassed
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html b/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html deleted file mode 100644 index 62722b81fb..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/classes/com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - -Test results - Class com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest - - - - - -
    -

    Class com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest

    - -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    3
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    8.949s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Tests

    - - - - - - - - - - - - - - - - - - - - - - - -
    TestDurationResult
    can pass the build by suppressing all linkage errors1.175spassed
    can suppress linkage errors listed in exclusion files (absolute path)2.029spassed
    can suppress linkage errors listed in exclusion files (relative path)5.745spassed
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css b/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css deleted file mode 100644 index 4afa73e3dd..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/css/base-style.css +++ /dev/null @@ -1,179 +0,0 @@ - -body { - margin: 0; - padding: 0; - font-family: sans-serif; - font-size: 12pt; -} - -body, a, a:visited { - color: #303030; -} - -#content { - padding-left: 50px; - padding-right: 50px; - padding-top: 30px; - padding-bottom: 30px; -} - -#content h1 { - font-size: 160%; - margin-bottom: 10px; -} - -#footer { - margin-top: 100px; - font-size: 80%; - white-space: nowrap; -} - -#footer, #footer a { - color: #a0a0a0; -} - -#line-wrapping-toggle { - vertical-align: middle; -} - -#label-for-line-wrapping-toggle { - vertical-align: middle; -} - -ul { - margin-left: 0; -} - -h1, h2, h3 { - white-space: nowrap; -} - -h2 { - font-size: 120%; -} - -ul.tabLinks { - padding-left: 0; - padding-top: 10px; - padding-bottom: 10px; - overflow: auto; - min-width: 800px; - width: auto !important; - width: 800px; -} - -ul.tabLinks li { - float: left; - height: 100%; - list-style: none; - padding-left: 10px; - padding-right: 10px; - padding-top: 5px; - padding-bottom: 5px; - margin-bottom: 0; - -moz-border-radius: 7px; - border-radius: 7px; - margin-right: 25px; - border: solid 1px #d4d4d4; - background-color: #f0f0f0; -} - -ul.tabLinks li:hover { - background-color: #fafafa; -} - -ul.tabLinks li.selected { - background-color: #c5f0f5; - border-color: #c5f0f5; -} - -ul.tabLinks a { - font-size: 120%; - display: block; - outline: none; - text-decoration: none; - margin: 0; - padding: 0; -} - -ul.tabLinks li h2 { - margin: 0; - padding: 0; -} - -div.tab { -} - -div.selected { - display: block; -} - -div.deselected { - display: none; -} - -div.tab table { - min-width: 350px; - width: auto !important; - width: 350px; - border-collapse: collapse; -} - -div.tab th, div.tab table { - border-bottom: solid #d0d0d0 1px; -} - -div.tab th { - text-align: left; - white-space: nowrap; - padding-left: 6em; -} - -div.tab th:first-child { - padding-left: 0; -} - -div.tab td { - white-space: nowrap; - padding-left: 6em; - padding-top: 5px; - padding-bottom: 5px; -} - -div.tab td:first-child { - padding-left: 0; -} - -div.tab td.numeric, div.tab th.numeric { - text-align: right; -} - -span.code { - display: inline-block; - margin-top: 0em; - margin-bottom: 1em; -} - -span.code pre { - font-size: 11pt; - padding-top: 10px; - padding-bottom: 10px; - padding-left: 10px; - padding-right: 10px; - margin: 0; - background-color: #f7f7f7; - border: solid 1px #d0d0d0; - min-width: 700px; - width: auto !important; - width: 700px; -} - -span.wrapped pre { - word-wrap: break-word; - white-space: pre-wrap; - word-break: break-all; -} - -label.hidden { - display: none; -} \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/functionalTest/css/style.css b/gradle-plugin/build/reports/tests/functionalTest/css/style.css deleted file mode 100644 index 3dc4913e7a..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/css/style.css +++ /dev/null @@ -1,84 +0,0 @@ - -#summary { - margin-top: 30px; - margin-bottom: 40px; -} - -#summary table { - border-collapse: collapse; -} - -#summary td { - vertical-align: top; -} - -.breadcrumbs, .breadcrumbs a { - color: #606060; -} - -.infoBox { - width: 110px; - padding-top: 15px; - padding-bottom: 15px; - text-align: center; -} - -.infoBox p { - margin: 0; -} - -.counter, .percent { - font-size: 120%; - font-weight: bold; - margin-bottom: 8px; -} - -#duration { - width: 125px; -} - -#successRate, .summaryGroup { - border: solid 2px #d0d0d0; - -moz-border-radius: 10px; - border-radius: 10px; -} - -#successRate { - width: 140px; - margin-left: 35px; -} - -#successRate .percent { - font-size: 180%; -} - -.success, .success a { - color: #008000; -} - -div.success, #successRate.success { - background-color: #bbd9bb; - border-color: #008000; -} - -.failures, .failures a { - color: #b60808; -} - -.skipped, .skipped a { - color: #c09853; -} - -div.failures, #successRate.failures { - background-color: #ecdada; - border-color: #b60808; -} - -ul.linkList { - padding-left: 0; -} - -ul.linkList li { - list-style: none; - margin-bottom: 5px; -} diff --git a/gradle-plugin/build/reports/tests/functionalTest/index.html b/gradle-plugin/build/reports/tests/functionalTest/index.html deleted file mode 100644 index 349fd3751f..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/index.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - -Test results - Test Summary - - - - - -
    -

    Test Summary

    -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    9
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    17.214s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Packages

    - - - - - - - - - - - - - - - - - - - - - -
    PackageTestsFailuresIgnoredDurationSuccess rate
    -com.google.cloud.tools.dependencies.gradle -90017.214s100%
    -
    -
    -

    Classes

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ClassTestsFailuresIgnoredDurationSuccess rate
    -com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest -6008.265s100%
    -com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest -3008.949s100%
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/functionalTest/js/report.js b/gradle-plugin/build/reports/tests/functionalTest/js/report.js deleted file mode 100644 index 83bab4a19f..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/js/report.js +++ /dev/null @@ -1,194 +0,0 @@ -(function (window, document) { - "use strict"; - - var tabs = {}; - - function changeElementClass(element, classValue) { - if (element.getAttribute("className")) { - element.setAttribute("className", classValue); - } else { - element.setAttribute("class", classValue); - } - } - - function getClassAttribute(element) { - if (element.getAttribute("className")) { - return element.getAttribute("className"); - } else { - return element.getAttribute("class"); - } - } - - function addClass(element, classValue) { - changeElementClass(element, getClassAttribute(element) + " " + classValue); - } - - function removeClass(element, classValue) { - changeElementClass(element, getClassAttribute(element).replace(classValue, "")); - } - - function initTabs() { - var container = document.getElementById("tabs"); - - tabs.tabs = findTabs(container); - tabs.titles = findTitles(tabs.tabs); - tabs.headers = findHeaders(container); - tabs.select = select; - tabs.deselectAll = deselectAll; - tabs.select(0); - - return true; - } - - function getCheckBox() { - return document.getElementById("line-wrapping-toggle"); - } - - function getLabelForCheckBox() { - return document.getElementById("label-for-line-wrapping-toggle"); - } - - function findCodeBlocks() { - var spans = document.getElementById("tabs").getElementsByTagName("span"); - var codeBlocks = []; - for (var i = 0; i < spans.length; ++i) { - if (spans[i].className.indexOf("code") >= 0) { - codeBlocks.push(spans[i]); - } - } - return codeBlocks; - } - - function forAllCodeBlocks(operation) { - var codeBlocks = findCodeBlocks(); - - for (var i = 0; i < codeBlocks.length; ++i) { - operation(codeBlocks[i], "wrapped"); - } - } - - function toggleLineWrapping() { - var checkBox = getCheckBox(); - - if (checkBox.checked) { - forAllCodeBlocks(addClass); - } else { - forAllCodeBlocks(removeClass); - } - } - - function initControls() { - if (findCodeBlocks().length > 0) { - var checkBox = getCheckBox(); - var label = getLabelForCheckBox(); - - checkBox.onclick = toggleLineWrapping; - checkBox.checked = false; - - removeClass(label, "hidden"); - } - } - - function switchTab() { - var id = this.id.substr(1); - - for (var i = 0; i < tabs.tabs.length; i++) { - if (tabs.tabs[i].id === id) { - tabs.select(i); - break; - } - } - - return false; - } - - function select(i) { - this.deselectAll(); - - changeElementClass(this.tabs[i], "tab selected"); - changeElementClass(this.headers[i], "selected"); - - while (this.headers[i].firstChild) { - this.headers[i].removeChild(this.headers[i].firstChild); - } - - var h2 = document.createElement("H2"); - - h2.appendChild(document.createTextNode(this.titles[i])); - this.headers[i].appendChild(h2); - } - - function deselectAll() { - for (var i = 0; i < this.tabs.length; i++) { - changeElementClass(this.tabs[i], "tab deselected"); - changeElementClass(this.headers[i], "deselected"); - - while (this.headers[i].firstChild) { - this.headers[i].removeChild(this.headers[i].firstChild); - } - - var a = document.createElement("A"); - - a.setAttribute("id", "ltab" + i); - a.setAttribute("href", "#tab" + i); - a.onclick = switchTab; - a.appendChild(document.createTextNode(this.titles[i])); - - this.headers[i].appendChild(a); - } - } - - function findTabs(container) { - return findChildElements(container, "DIV", "tab"); - } - - function findHeaders(container) { - var owner = findChildElements(container, "UL", "tabLinks"); - return findChildElements(owner[0], "LI", null); - } - - function findTitles(tabs) { - var titles = []; - - for (var i = 0; i < tabs.length; i++) { - var tab = tabs[i]; - var header = findChildElements(tab, "H2", null)[0]; - - header.parentNode.removeChild(header); - - if (header.innerText) { - titles.push(header.innerText); - } else { - titles.push(header.textContent); - } - } - - return titles; - } - - function findChildElements(container, name, targetClass) { - var elements = []; - var children = container.childNodes; - - for (var i = 0; i < children.length; i++) { - var child = children.item(i); - - if (child.nodeType === 1 && child.nodeName === name) { - if (targetClass && child.className.indexOf(targetClass) < 0) { - continue; - } - - elements.push(child); - } - } - - return elements; - } - - // Entry point. - - window.onload = function() { - initTabs(); - initControls(); - }; -} (window, window.document)); \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html b/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html deleted file mode 100644 index f7b02268bc..0000000000 --- a/gradle-plugin/build/reports/tests/functionalTest/packages/com.google.cloud.tools.dependencies.gradle.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - -Test results - Package com.google.cloud.tools.dependencies.gradle - - - - - -
    -

    Package com.google.cloud.tools.dependencies.gradle

    - -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    9
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    17.214s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Classes

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ClassTestsFailuresIgnoredDurationSuccess rate
    -BuildStatusFunctionalTest -6008.265s100%
    -ExclusionFileFunctionalTest -3008.949s100%
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html b/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html deleted file mode 100644 index 9a73df49a5..0000000000 --- a/gradle-plugin/build/reports/tests/test/classes/com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - -Test results - Class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest - - - - - -
    -

    Class com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest

    - -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    1
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    1.091s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Tests

    - - - - - - - - - - - - - -
    TestDurationResult
    linkage_checker_plugin_should_add_task_to_project1.091spassed
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/test/css/base-style.css b/gradle-plugin/build/reports/tests/test/css/base-style.css deleted file mode 100644 index 4afa73e3dd..0000000000 --- a/gradle-plugin/build/reports/tests/test/css/base-style.css +++ /dev/null @@ -1,179 +0,0 @@ - -body { - margin: 0; - padding: 0; - font-family: sans-serif; - font-size: 12pt; -} - -body, a, a:visited { - color: #303030; -} - -#content { - padding-left: 50px; - padding-right: 50px; - padding-top: 30px; - padding-bottom: 30px; -} - -#content h1 { - font-size: 160%; - margin-bottom: 10px; -} - -#footer { - margin-top: 100px; - font-size: 80%; - white-space: nowrap; -} - -#footer, #footer a { - color: #a0a0a0; -} - -#line-wrapping-toggle { - vertical-align: middle; -} - -#label-for-line-wrapping-toggle { - vertical-align: middle; -} - -ul { - margin-left: 0; -} - -h1, h2, h3 { - white-space: nowrap; -} - -h2 { - font-size: 120%; -} - -ul.tabLinks { - padding-left: 0; - padding-top: 10px; - padding-bottom: 10px; - overflow: auto; - min-width: 800px; - width: auto !important; - width: 800px; -} - -ul.tabLinks li { - float: left; - height: 100%; - list-style: none; - padding-left: 10px; - padding-right: 10px; - padding-top: 5px; - padding-bottom: 5px; - margin-bottom: 0; - -moz-border-radius: 7px; - border-radius: 7px; - margin-right: 25px; - border: solid 1px #d4d4d4; - background-color: #f0f0f0; -} - -ul.tabLinks li:hover { - background-color: #fafafa; -} - -ul.tabLinks li.selected { - background-color: #c5f0f5; - border-color: #c5f0f5; -} - -ul.tabLinks a { - font-size: 120%; - display: block; - outline: none; - text-decoration: none; - margin: 0; - padding: 0; -} - -ul.tabLinks li h2 { - margin: 0; - padding: 0; -} - -div.tab { -} - -div.selected { - display: block; -} - -div.deselected { - display: none; -} - -div.tab table { - min-width: 350px; - width: auto !important; - width: 350px; - border-collapse: collapse; -} - -div.tab th, div.tab table { - border-bottom: solid #d0d0d0 1px; -} - -div.tab th { - text-align: left; - white-space: nowrap; - padding-left: 6em; -} - -div.tab th:first-child { - padding-left: 0; -} - -div.tab td { - white-space: nowrap; - padding-left: 6em; - padding-top: 5px; - padding-bottom: 5px; -} - -div.tab td:first-child { - padding-left: 0; -} - -div.tab td.numeric, div.tab th.numeric { - text-align: right; -} - -span.code { - display: inline-block; - margin-top: 0em; - margin-bottom: 1em; -} - -span.code pre { - font-size: 11pt; - padding-top: 10px; - padding-bottom: 10px; - padding-left: 10px; - padding-right: 10px; - margin: 0; - background-color: #f7f7f7; - border: solid 1px #d0d0d0; - min-width: 700px; - width: auto !important; - width: 700px; -} - -span.wrapped pre { - word-wrap: break-word; - white-space: pre-wrap; - word-break: break-all; -} - -label.hidden { - display: none; -} \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/test/css/style.css b/gradle-plugin/build/reports/tests/test/css/style.css deleted file mode 100644 index 3dc4913e7a..0000000000 --- a/gradle-plugin/build/reports/tests/test/css/style.css +++ /dev/null @@ -1,84 +0,0 @@ - -#summary { - margin-top: 30px; - margin-bottom: 40px; -} - -#summary table { - border-collapse: collapse; -} - -#summary td { - vertical-align: top; -} - -.breadcrumbs, .breadcrumbs a { - color: #606060; -} - -.infoBox { - width: 110px; - padding-top: 15px; - padding-bottom: 15px; - text-align: center; -} - -.infoBox p { - margin: 0; -} - -.counter, .percent { - font-size: 120%; - font-weight: bold; - margin-bottom: 8px; -} - -#duration { - width: 125px; -} - -#successRate, .summaryGroup { - border: solid 2px #d0d0d0; - -moz-border-radius: 10px; - border-radius: 10px; -} - -#successRate { - width: 140px; - margin-left: 35px; -} - -#successRate .percent { - font-size: 180%; -} - -.success, .success a { - color: #008000; -} - -div.success, #successRate.success { - background-color: #bbd9bb; - border-color: #008000; -} - -.failures, .failures a { - color: #b60808; -} - -.skipped, .skipped a { - color: #c09853; -} - -div.failures, #successRate.failures { - background-color: #ecdada; - border-color: #b60808; -} - -ul.linkList { - padding-left: 0; -} - -ul.linkList li { - list-style: none; - margin-bottom: 5px; -} diff --git a/gradle-plugin/build/reports/tests/test/index.html b/gradle-plugin/build/reports/tests/test/index.html deleted file mode 100644 index 75d112a07d..0000000000 --- a/gradle-plugin/build/reports/tests/test/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - -Test results - Test Summary - - - - - -
    -

    Test Summary

    -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    1
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    1.091s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Packages

    - - - - - - - - - - - - - - - - - - - - - -
    PackageTestsFailuresIgnoredDurationSuccess rate
    -com.google.cloud.tools.dependencies.gradle -1001.091s100%
    -
    -
    -

    Classes

    - - - - - - - - - - - - - - - - - - - - - -
    ClassTestsFailuresIgnoredDurationSuccess rate
    -com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest -1001.091s100%
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/reports/tests/test/js/report.js b/gradle-plugin/build/reports/tests/test/js/report.js deleted file mode 100644 index 83bab4a19f..0000000000 --- a/gradle-plugin/build/reports/tests/test/js/report.js +++ /dev/null @@ -1,194 +0,0 @@ -(function (window, document) { - "use strict"; - - var tabs = {}; - - function changeElementClass(element, classValue) { - if (element.getAttribute("className")) { - element.setAttribute("className", classValue); - } else { - element.setAttribute("class", classValue); - } - } - - function getClassAttribute(element) { - if (element.getAttribute("className")) { - return element.getAttribute("className"); - } else { - return element.getAttribute("class"); - } - } - - function addClass(element, classValue) { - changeElementClass(element, getClassAttribute(element) + " " + classValue); - } - - function removeClass(element, classValue) { - changeElementClass(element, getClassAttribute(element).replace(classValue, "")); - } - - function initTabs() { - var container = document.getElementById("tabs"); - - tabs.tabs = findTabs(container); - tabs.titles = findTitles(tabs.tabs); - tabs.headers = findHeaders(container); - tabs.select = select; - tabs.deselectAll = deselectAll; - tabs.select(0); - - return true; - } - - function getCheckBox() { - return document.getElementById("line-wrapping-toggle"); - } - - function getLabelForCheckBox() { - return document.getElementById("label-for-line-wrapping-toggle"); - } - - function findCodeBlocks() { - var spans = document.getElementById("tabs").getElementsByTagName("span"); - var codeBlocks = []; - for (var i = 0; i < spans.length; ++i) { - if (spans[i].className.indexOf("code") >= 0) { - codeBlocks.push(spans[i]); - } - } - return codeBlocks; - } - - function forAllCodeBlocks(operation) { - var codeBlocks = findCodeBlocks(); - - for (var i = 0; i < codeBlocks.length; ++i) { - operation(codeBlocks[i], "wrapped"); - } - } - - function toggleLineWrapping() { - var checkBox = getCheckBox(); - - if (checkBox.checked) { - forAllCodeBlocks(addClass); - } else { - forAllCodeBlocks(removeClass); - } - } - - function initControls() { - if (findCodeBlocks().length > 0) { - var checkBox = getCheckBox(); - var label = getLabelForCheckBox(); - - checkBox.onclick = toggleLineWrapping; - checkBox.checked = false; - - removeClass(label, "hidden"); - } - } - - function switchTab() { - var id = this.id.substr(1); - - for (var i = 0; i < tabs.tabs.length; i++) { - if (tabs.tabs[i].id === id) { - tabs.select(i); - break; - } - } - - return false; - } - - function select(i) { - this.deselectAll(); - - changeElementClass(this.tabs[i], "tab selected"); - changeElementClass(this.headers[i], "selected"); - - while (this.headers[i].firstChild) { - this.headers[i].removeChild(this.headers[i].firstChild); - } - - var h2 = document.createElement("H2"); - - h2.appendChild(document.createTextNode(this.titles[i])); - this.headers[i].appendChild(h2); - } - - function deselectAll() { - for (var i = 0; i < this.tabs.length; i++) { - changeElementClass(this.tabs[i], "tab deselected"); - changeElementClass(this.headers[i], "deselected"); - - while (this.headers[i].firstChild) { - this.headers[i].removeChild(this.headers[i].firstChild); - } - - var a = document.createElement("A"); - - a.setAttribute("id", "ltab" + i); - a.setAttribute("href", "#tab" + i); - a.onclick = switchTab; - a.appendChild(document.createTextNode(this.titles[i])); - - this.headers[i].appendChild(a); - } - } - - function findTabs(container) { - return findChildElements(container, "DIV", "tab"); - } - - function findHeaders(container) { - var owner = findChildElements(container, "UL", "tabLinks"); - return findChildElements(owner[0], "LI", null); - } - - function findTitles(tabs) { - var titles = []; - - for (var i = 0; i < tabs.length; i++) { - var tab = tabs[i]; - var header = findChildElements(tab, "H2", null)[0]; - - header.parentNode.removeChild(header); - - if (header.innerText) { - titles.push(header.innerText); - } else { - titles.push(header.textContent); - } - } - - return titles; - } - - function findChildElements(container, name, targetClass) { - var elements = []; - var children = container.childNodes; - - for (var i = 0; i < children.length; i++) { - var child = children.item(i); - - if (child.nodeType === 1 && child.nodeName === name) { - if (targetClass && child.className.indexOf(targetClass) < 0) { - continue; - } - - elements.push(child); - } - } - - return elements; - } - - // Entry point. - - window.onload = function() { - initTabs(); - initControls(); - }; -} (window, window.document)); \ No newline at end of file diff --git a/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html b/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html deleted file mode 100644 index 12880b0294..0000000000 --- a/gradle-plugin/build/reports/tests/test/packages/com.google.cloud.tools.dependencies.gradle.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - -Test results - Package com.google.cloud.tools.dependencies.gradle - - - - - -
    -

    Package com.google.cloud.tools.dependencies.gradle

    - -
    - - - - - -
    -
    - - - - - - - -
    -
    -
    1
    -

    tests

    -
    -
    -
    -
    0
    -

    failures

    -
    -
    -
    -
    0
    -

    ignored

    -
    -
    -
    -
    1.091s
    -

    duration

    -
    -
    -
    -
    -
    -
    100%
    -

    successful

    -
    -
    -
    -
    - -
    -

    Classes

    - - - - - - - - - - - - - - - - - - - -
    ClassTestsFailuresIgnoredDurationSuccess rate
    -LinkageCheckerPluginTest -1001.091s100%
    -
    -
    - -
    - - diff --git a/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties b/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties deleted file mode 100644 index 9248ace26a..0000000000 --- a/gradle-plugin/build/resources/main/META-INF/gradle-plugins/com.google.cloud.tools.linkagechecker.properties +++ /dev/null @@ -1 +0,0 @@ -implementation-class=com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml deleted file mode 100644 index 4bff5268b7..0000000000 --- a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.BuildStatusFunctionalTest.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml b/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml deleted file mode 100644 index b6d2b3b88f..0000000000 --- a/gradle-plugin/build/test-results/functionalTest/TEST-com.google.cloud.tools.dependencies.gradle.ExclusionFileFunctionalTest.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/gradle-plugin/build/test-results/functionalTest/binary/output.bin b/gradle-plugin/build/test-results/functionalTest/binary/output.bin deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx b/gradle-plugin/build/test-results/functionalTest/binary/output.bin.idx deleted file mode 100644 index f76dd238ade08917e6712764a16a22005a50573d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1 IcmZPo000310RR91 diff --git a/gradle-plugin/build/test-results/functionalTest/binary/results.bin b/gradle-plugin/build/test-results/functionalTest/binary/results.bin deleted file mode 100644 index 89dd04c0e1ed2a23775afd247de4f808ea807296..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1431 zcmb_cJ8l#~5Ut%cHU=bLfS^K<(1?fwAmIamFVNdlJ6opRJ?f9aXCOu52zG)*00_qz zNE}#11W1sAKxicnK=rm6v`7duY&N6mdhgZi_hvL4z8Pq@Q#H;thAM4bs;lUn2~|xk z*_y0o3RUA(E#Gh5*Cqvac9RWlCaa@7E3-u*E(-@>@NjnU`1@$^dZ3lXklNN$2x!>e zRSh9|?|gm@k!oa%^ivd0L{-2mo{WmTOW3M7y}BeAm|ZK31H7N>;c#HPmaUS}iQ29+_tx!G$79<3MJlTWbv>R)1XGpo82RZL+q zM9V=rRrO`{+|z8vt}hDj88Z0HxGv?_pTZ(wJzth)>hcyOAzk00Q|i@b05f2dO{_m}V4rPwCf u+*#D@bu!8?_}+I8o?I@DeA|GF2Y)uZbvx2PEq^O%+gZ=S{z?I#-GCozULU3a diff --git a/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml b/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml deleted file mode 100644 index f649203720..0000000000 --- a/gradle-plugin/build/test-results/test/TEST-com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginTest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/gradle-plugin/build/test-results/test/binary/output.bin b/gradle-plugin/build/test-results/test/binary/output.bin deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/gradle-plugin/build/test-results/test/binary/output.bin.idx b/gradle-plugin/build/test-results/test/binary/output.bin.idx deleted file mode 100644 index f76dd238ade08917e6712764a16a22005a50573d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1 IcmZPo000310RR91 diff --git a/gradle-plugin/build/test-results/test/binary/results.bin b/gradle-plugin/build/test-results/test/binary/results.bin deleted file mode 100644 index 42071fe49ee6b3f239de3ca5b5e68bbf1db7df9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmb`=y$u2}42IzZ8m7q-v=kKdR%BbbBPNdWvk5bx6XmS{3$X!+On^lF>HVIq-8?Po z#Rb(M>`=6mYpPNmappvvaOUbl@$}gbbBaFjeqxMVj?%-NPF&kxPK>eF*K$*9R~ZiA gfFOS*sFQXf@I=sjjnEWw(KBQFy)cj60Pm}L1GGG5qW}N^ diff --git a/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt b/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt deleted file mode 100644 index ceb6be1bc4..0000000000 --- a/gradle-plugin/build/tmp/compileJava/source-classes-mapping.txt +++ /dev/null @@ -1,8 +0,0 @@ -com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.java - com.google.cloud.tools.dependencies.gradle.LinkageCheckerPluginExtension -com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java - com.google.cloud.tools.dependencies.gradle.LinkageCheckTask -com/google/cloud/tools/dependencies/gradle/DependencyNode.java - com.google.cloud.tools.dependencies.gradle.DependencyNode -com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.java - com.google.cloud.tools.dependencies.gradle.LinkageCheckerPlugin diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_10624263207379282055_tmp deleted file mode 100644 index ce11b29adefae5544a132e8bd48a0fc9db4f9bcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5095 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 OcMf#nJ@_K#(e*$0Qt=M} diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_3144778433172582223_tmp deleted file mode 100644 index ce11b29adefae5544a132e8bd48a0fc9db4f9bcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5095 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 OcMf#nJ@_K#(e*$0Qt=M} diff --git a/gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp b/gradle-plugin/build/tmp/functionalTest/jar_extract_757998314726472038_tmp deleted file mode 100644 index ce11b29adefae5544a132e8bd48a0fc9db4f9bcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5095 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 OcMf#nJ@_K#(e*$0Qt=M} diff --git a/gradle-plugin/build/tmp/jar/MANIFEST.MF b/gradle-plugin/build/tmp/jar/MANIFEST.MF deleted file mode 100644 index 58630c02ef..0000000000 --- a/gradle-plugin/build/tmp/jar/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/gradle-plugin/build/tmp/javadoc/javadoc.options b/gradle-plugin/build/tmp/javadoc/javadoc.options deleted file mode 100644 index 30160c9991..0000000000 --- a/gradle-plugin/build/tmp/javadoc/javadoc.options +++ /dev/null @@ -1,10 +0,0 @@ --classpath '/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/java/main:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/classes/groovy/main:/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/resources/main:/Users/lawrenceqiu/.gradle/caches/6.8.3/generated-gradle-jars/gradle-api-6.8.3.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/groovy-all-1.3-2.5.12.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-common-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-jdk7-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-stdlib-jdk8-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/kotlin-reflect-1.4.20.jar:/Users/lawrenceqiu/.gradle/wrapper/dists/gradle-6.8.3-bin/7ykxq50lst7lb7wx1nijpicxn/gradle-6.8.3/lib/gradle-installation-beacon-6.8.3.jar:/Users/lawrenceqiu/.m2/repository/com/google/cloud/tools/dependencies/1.5.14-SNAPSHOT/dependencies-1.5.14-SNAPSHOT.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-compat/3.6.3/2a8242398efbfd533ffe36147864c34a326666da/maven-compat-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-core/3.6.3/eca800aa73e750ec9a880eb224f0bb68f5b7873b/maven-core-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/4.2.1/41e5ab52ec65e60b6c0ced947becf7ba96402645/guice-4.2.1-no_aop.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/30.1.1-jre/87e0fd1df874ea3cbe577702fe6f17068b790fd8/guava-30.1.1-jre.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-resolver-provider/3.6.3/115240b65c1d0e9745cb2012b977afc3d1795f94/maven-resolver-provider-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-http/1.7.1/4cda5dfeeeafaa0b80cc75cad51c311af4b04e0c/maven-resolver-transport-http-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-transport-file/1.7.1/d00b990b9686a2a9364c7712d6d629f151b85d60/maven-resolver-transport-file-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-connector-basic/1.7.1/a0714a12c07469dbf5236dd7ed81e0b0407bec0c/maven-resolver-connector-basic-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-impl/1.4.1/1658cfa27978c5949c3a92086514a22ca85394e4/maven-resolver-impl-1.4.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-spi/1.7.1/f6a48723bf7729925bdc1f354bb22f453fe2f754/maven-resolver-spi-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-util/1.7.1/931ea5585c5d19feeef98948994ab8eb80cdb81a/maven-resolver-util-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.resolver/maven-resolver-api/1.7.1/c28ce68ba2b71272be80f40ecc79d81c75aa8d40/maven-resolver-api-1.7.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.bcel/bcel/6.6.1/8f9809672f3eed6627a53578ef00bff5f48a2a27/bcel-6.6.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.relaxng/jing/20181222/d847e7f2685866a0a3783508669a881313a959ab/jing-20181222.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/isorelax/isorelax/20030108/b21859c352bd959ea22d06b2fe8c93b2e24531b9/isorelax-20030108.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-cli/commons-cli/1.4/c51c00206bb913cd8612b24abd9fa98ae89719b1/commons-cli-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.8.0/6b83e4a33220272c3a08991498ba9dc09519f190/checker-qual-3.8.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.5.1/562d366678b89ce5d6b6b82c1a073880341e3fba/error_prone_annotations-2.5.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-plugin-api/3.6.3/63fe5967b9c4c1b6fa6004be76e1c939e8bd1d6/maven-plugin-api-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model-builder/3.6.3/4ef1d56f53d3e0a9003b7cc82c89af9878321e82/maven-model-builder-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.6.3/f8ff8032903882376e8d000c51e3e16d20fc7df7/maven-artifact-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.12.0/c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e/commons-lang3-3.12.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-model/3.6.3/61c7848dce2fbf7f7ab0fdc8e8a7cc9da5dd7827/maven-model-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings-builder/3.6.3/756d46810b8cc7b2b98585ccc787854cdfde7fd9/maven-settings-builder-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-settings/3.6.3/bbf4e06dcdb0bb33d1546c080df5c8d92b535d30/maven-settings-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-builder-support/3.6.3/e9a37af390009a525d8faa6b18bd682123f85f9e/maven-builder-support-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-repository-metadata/3.6.3/14d28071c85e76b656c46c465db91d394d6f48f0/maven-repository-metadata-3.6.3.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.shared/maven-shared-utils/3.2.1/8dd4dfb1d2d8b6969f6462790f82670bcd35ce2/maven-shared-utils-3.2.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.plexus/0.3.4/f1335a3b7bc3fd23f67da88bd60cd5d4c3304ef3/org.eclipse.sisu.plexus-0.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.eclipse.sisu/org.eclipse.sisu.inject/0.3.4/fc3be144183f54dc6f5c55e34462c1c2d89d7d96/org.eclipse.sisu.inject-0.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.enterprise/cdi-api/1.0/44c453f60909dfc223552ace63e05c694215156b/cdi-api-1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.inject/javax.inject/1/6975da39a7040257bd51d21a231b76c915872d38/javax.inject-1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.maven.wagon/wagon-provider-api/3.3.4/7a99fdaa534aa8c01f01a447fe1c7af5cfc7b0d5/wagon-provider-api-3.3.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-sec-dispatcher/1.4/43fde524e9b94c883727a9fddb8669181b890ea7/plexus-sec-dispatcher-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.2.1/13b015768e0d04849d2794e4c47eb02d01a0de32/plexus-utils-3.2.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-classworlds/2.6.0/8587e80fcb38e70b70fae8d5914b6376bfad6259/plexus-classworlds-2.6.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-component-annotations/2.1.0/2f2147a6cc6a119a1b51a96f31d45c557f6244b9/plexus-component-annotations-2.1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-interpolation/1.25/3b37b3335e6a97e11e690bbdc22ade1a5deb74d6/plexus-interpolation-1.25.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.30/b5a4b6d16ab13e34a88fae84c35cd5d68cac922c/slf4j-api-1.7.30.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.14/9dd1a631c082d92ecd4bd8fd4cf55026c720a8c1/httpcore-4.4.14.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.11/3acb4705652e16236558f0f4f2192cc33c3bd189/commons-codec-1.11.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/net.sf.saxon/Saxon-HE/9.6.0-4/5f94b2ac10eab043e1ad90d05f5bc34727bd94c6/Saxon-HE-9.6.0-4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xerces/xercesImpl/2.9.1/7bc7e49ddfe4fb5f193ed37ecc96c12292c8ceb6/xercesImpl-2.9.1.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/xml-apis/xml-apis/1.3.04/90b215f48fe42776c8c7f6e3509ec54e84fd65ef/xml-apis-1.3.04.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/aopalliance/aopalliance/1.0/235ba8b489512805ac13a8f9ea77a1ca5ebe3e8/aopalliance-1.0.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/org.sonatype.plexus/plexus-cipher/1.4/50ade46f23bb38cd984b4ec560c46223432aac38/plexus-cipher-1.4.jar:/Users/lawrenceqiu/.gradle/caches/modules-2/files-2.1/javax.annotation/jsr250-api/1.0/5025422767732a1ab45d93abfea846513d742dcf/jsr250-api-1.0.jar' --d '/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/build/docs/javadoc' --doctitle 'linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API' --notimestamp --quiet --windowtitle 'linkage-checker-gradle-plugin 1.5.14-SNAPSHOT API' -'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPluginExtension.java' -'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckerPlugin.java' -'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/DependencyNode.java' -'/Users/lawrenceqiu/IdeaProjects/cloud-opensource-java/gradle-plugin/src/main/java/com/google/cloud/tools/dependencies/gradle/LinkageCheckTask.java' diff --git a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml deleted file mode 100644 index 1f68de234e..0000000000 --- a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/module-maven-metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - com.google.cloud.tools.linkagechecker - com.google.cloud.tools.linkagechecker.gradle.plugin - - 1.5.14-SNAPSHOT - - 1.5.14-SNAPSHOT - - 20250210205929 - - diff --git a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml b/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml deleted file mode 100644 index c9b5abac02..0000000000 --- a/gradle-plugin/build/tmp/publishLinkageCheckerPluginPluginMarkerMavenPublicationToMavenLocal/snapshot-maven-metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - com.google.cloud.tools.linkagechecker - com.google.cloud.tools.linkagechecker.gradle.plugin - 1.5.14-SNAPSHOT - - - true - - 20250210205929 - - - pom - 1.5.14-SNAPSHOT - 20250210205929 - - - - diff --git a/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF deleted file mode 100644 index 58630c02ef..0000000000 --- a/gradle-plugin/build/tmp/publishPluginGroovyDocsJar/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF deleted file mode 100644 index 58630c02ef..0000000000 --- a/gradle-plugin/build/tmp/publishPluginJar/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF b/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF deleted file mode 100644 index 58630c02ef..0000000000 --- a/gradle-plugin/build/tmp/publishPluginJavaDocsJar/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml deleted file mode 100644 index e81cb2641e..0000000000 --- a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/module-maven-metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - com.google.cloud.tools - linkage-checker-gradle-plugin - - 1.5.14-SNAPSHOT - - 1.5.14-SNAPSHOT - - 20250210205929 - - diff --git a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml b/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml deleted file mode 100644 index b31b8115e7..0000000000 --- a/gradle-plugin/build/tmp/publishPluginMavenPublicationToMavenLocal/snapshot-maven-metadata.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - com.google.cloud.tools - linkage-checker-gradle-plugin - 1.5.14-SNAPSHOT - - - true - - 20250210205929 - - - jar - 1.5.14-SNAPSHOT - 20250210205929 - - - pom - 1.5.14-SNAPSHOT - 20250210205929 - - - module - 1.5.14-SNAPSHOT - 20250210205929 - - - - From 3b90fd4a01de924729cb4d4b44e996fefb6f3828 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Mon, 10 Feb 2025 16:38:52 -0500 Subject: [PATCH 12/15] chore: Fix issues --- dependencies/pom.xml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/dependencies/pom.xml b/dependencies/pom.xml index aeb2efb2b5..39fcb51695 100644 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -120,20 +120,6 @@ - - - - org.codehaus.mojo - exec-maven-plugin - 3.5.0 - - false - com.google.cloud.tools.opensource.classpath.LinkageCheckerMain - - - - - java8-incompatible-reference-check From 4627d6ee675f13cc42ddc516563dc63eaae55032 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Mon, 10 Feb 2025 16:57:42 -0500 Subject: [PATCH 13/15] chore: update comments to explain why not use problemFilter --- .../cloud/tools/opensource/classpath/LinkageChecker.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index e107430a43..c80121393b 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -178,12 +178,17 @@ public ImmutableSet findLinkageProblems() throws IOException { // This sourceClassFile is a source of references to other symbols. Set classFiles = symbolReferences.getClassFiles(); - // Filter the list to only contain class files that come from the classes we are interested in + // Filtering the classFiles from the JARs (instead of using the problem filter) has additional a few + // additional benefits. 1. Reduces the total amount of linkage references to match and 2. Doesn't require + // an exclusion file to know all the possible flaky or false positive problems if (!sourceFilterList.isEmpty()) { + // Filter the list to only contain class files that come from the classes we are interested in. // Run through each class file and check that the class file's corresponding artifact matches // any artifact specified in the sourceFilterList classFiles = classFiles.stream() - .filter(x -> sourceFilterList.stream().anyMatch(y -> areArtifactsEquals(x.getClassPathEntry().getArtifact(), y))).collect(Collectors.toSet()); + .filter(x -> sourceFilterList.stream() + .anyMatch(y -> areArtifactsEquals(x.getClassPathEntry().getArtifact(), y))) + .collect(Collectors.toSet()); } for (ClassFile classFile : classFiles) { ImmutableSet classSymbols = symbolReferences.getClassSymbols(classFile); From 1b63957cb6e57db21ba17197a7a676575fd3e2eb Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 12 Feb 2025 12:14:18 -0500 Subject: [PATCH 14/15] chore: Add test for source-filter --- .../classpath/LinkageCheckerTest.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerTest.java b/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerTest.java index df2912d2d5..96556c330f 100644 --- a/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerTest.java +++ b/dependencies/src/test/java/com/google/cloud/tools/opensource/classpath/LinkageCheckerTest.java @@ -1340,4 +1340,32 @@ public void testProtectedMethodsOfObject() throws Exception { "has linkage errors that reference symbols on class")) .doesNotContain("java.lang.Object"); } + + @Test + public void testSourceFilter() throws InvalidVersionSpecificationException, IOException { + // BQ-Storage v3.9.3 contains 3 known binary incompatibilities with Protobuf-Java 4.x + DefaultArtifact sourceArtifact = new DefaultArtifact("com.google.cloud:google-cloud-bigquerystorage:3.9.3"); + ClassPathResult classPathResult = + new ClassPathBuilder() + .resolve( + ImmutableList.of( + sourceArtifact, + new DefaultArtifact("com.google.protobuf:protobuf-java:4.27.4"), + new DefaultArtifact("com.google.protobuf:protobuf-java-util:4.27.4")), + false, + DependencyMediation.MAVEN); + + ImmutableList classPath = classPathResult.getClassPath(); + LinkageChecker linkageChecker = LinkageChecker.create( + classPath, + ImmutableSet.copyOf(classPath), + ImmutableList.of(sourceArtifact), + null); + + // Without a source-filter to narrow down the linkage errors that stem from BQ-Storage, Linkage Checker + // would report 119 errors. Narrowing it down with the source filter will only report the 3 known binary + // incompatibilities + ImmutableSet problems = linkageChecker.findLinkageProblems(); + Truth.assertThat(problems.size()).isEqualTo(3); + } } From e0d1d8802ef2dbdaf911124c036ed1c25e05da97 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Thu, 20 Feb 2025 14:20:22 -0500 Subject: [PATCH 15/15] chore: Add comments about including areArtifactsEquals helper method --- .../cloud/tools/opensource/classpath/LinkageChecker.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java index c80121393b..4e4f74b572 100644 --- a/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java +++ b/dependencies/src/main/java/com/google/cloud/tools/opensource/classpath/LinkageChecker.java @@ -158,7 +158,10 @@ private LinkageChecker( } /** - * Two artifacts are considered equal if the Maven Coordinates (GAV) are equal + * Two artifacts are considered equal if only the Maven Coordinates (GAV) are equal. This is + * included instead of using Artifact.equals() because the `equals()` implementation + * of DefaultArtifact checks more fields than just the GAV Coordinates (also checks the classifier, + * file path, properties, etc are all equal). */ private boolean areArtifactsEquals(Artifact artifact1, Artifact artifact2) { return artifact1.getGroupId().equals(artifact2.getGroupId())