| 
									
										
										
										
											2016-06-04 23:20:39 +02:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | const plugins = require("./npmci.plugins"); | 
					
						
							|  |  |  | const paths = require("./npmci.paths"); | 
					
						
							|  |  |  | const NpmciEnv = require("./npmci.env"); | 
					
						
							|  |  |  | const npmci_bash_1 = require("./npmci.bash"); | 
					
						
							| 
									
										
										
										
											2016-06-04 23:20:39 +02:00
										 |  |  | exports.build = function () { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let done = plugins.q.defer(); | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |     exports.readDockerfiles() | 
					
						
							|  |  |  |         .then(exports.sortDockerfiles) | 
					
						
							|  |  |  |         .then(exports.mapDockerfiles) | 
					
						
							| 
									
										
										
										
											2016-06-05 16:43:27 +02:00
										 |  |  |         .then(exports.buildDockerfiles) | 
					
						
							| 
									
										
										
										
											2016-06-05 17:17:15 +02:00
										 |  |  |         .then(exports.pushDockerfiles) | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |         .then(() => { | 
					
						
							| 
									
										
										
										
											2016-06-05 16:43:27 +02:00
										 |  |  |         done.resolve(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-04 23:20:39 +02:00
										 |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  | exports.readDockerfiles = function () { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let done = plugins.q.defer(); | 
					
						
							|  |  |  |     let readDockerfilesArray = []; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |     plugins.gulp.src("./Dockerfile*") | 
					
						
							|  |  |  |         .pipe(plugins.through2.obj(function (file, enc, cb) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |         let myDockerfile = new Dockerfile({ | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |             filePath: file.path, | 
					
						
							|  |  |  |             read: true | 
					
						
							| 
									
										
										
										
											2016-06-05 05:16:14 +02:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |         readDockerfilesArray.push(myDockerfile); | 
					
						
							| 
									
										
										
										
											2016-06-05 05:16:14 +02:00
										 |  |  |         cb(null, file); | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |     }, function () { | 
					
						
							|  |  |  |         done.resolve(readDockerfilesArray); | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |     return done.promise; | 
					
						
							| 
									
										
										
										
											2016-06-05 05:16:14 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  | exports.sortDockerfiles = function (sortableArrayArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let done = plugins.q.defer(); | 
					
						
							|  |  |  |     let sortedArray = []; | 
					
						
							|  |  |  |     let cleanTagsOriginal = exports.cleanTagsArrayFunction(sortableArrayArg, sortedArray); | 
					
						
							|  |  |  |     let sorterFunctionCounter = 0; | 
					
						
							|  |  |  |     let sorterFunction = function () { | 
					
						
							|  |  |  |         sortableArrayArg.forEach((dockerfileArg) => { | 
					
						
							|  |  |  |             let cleanTags = exports.cleanTagsArrayFunction(sortableArrayArg, sortedArray); | 
					
						
							| 
									
										
										
										
											2016-06-07 06:05:13 +02:00
										 |  |  |             if (cleanTags.indexOf(dockerfileArg.baseImage) == -1 && sortedArray.indexOf(dockerfileArg) == -1) { | 
					
						
							| 
									
										
										
										
											2016-06-05 11:08:20 +02:00
										 |  |  |                 sortedArray.push(dockerfileArg); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-06-07 06:05:13 +02:00
										 |  |  |             ; | 
					
						
							|  |  |  |             if (cleanTagsOriginal.indexOf(dockerfileArg.baseImage) != -1) { | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |                 dockerfileArg.localBaseImageDependent = true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             ; | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-05 13:50:45 +02:00
										 |  |  |         if (sortableArrayArg.length == sortedArray.length) { | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |             done.resolve(sortedArray); | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-05 13:50:45 +02:00
										 |  |  |         else if (sorterFunctionCounter < 10) { | 
					
						
							| 
									
										
										
										
											2016-06-05 11:08:20 +02:00
										 |  |  |             sorterFunctionCounter++; | 
					
						
							|  |  |  |             sorterFunction(); | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-05 11:08:20 +02:00
										 |  |  |         ; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     sorterFunction(); | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  | exports.mapDockerfiles = function (sortedArray) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let done = plugins.q.defer(); | 
					
						
							|  |  |  |     sortedArray.forEach((dockerfileArg) => { | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |         if (dockerfileArg.localBaseImageDependent) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |             sortedArray.forEach((dockfile2) => { | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |                 if (dockfile2.cleanTag == dockerfileArg.baseImage) { | 
					
						
							|  |  |  |                     dockerfileArg.localBaseDockerfile = dockfile2; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     done.resolve(sortedArray); | 
					
						
							|  |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | exports.buildDockerfiles = (sortedArrayArg) => { | 
					
						
							|  |  |  |     let done = plugins.q.defer(); | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |     sortedArrayArg.forEach(function (dockerfileArg) { | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |         dockerfileArg.build(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-05 17:17:15 +02:00
										 |  |  |     done.resolve(sortedArrayArg); | 
					
						
							|  |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-07 22:27:10 +02:00
										 |  |  | exports.pushDockerfiles = function (sortedArrayArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let done = plugins.q.defer(); | 
					
						
							| 
									
										
										
										
											2016-06-05 17:17:15 +02:00
										 |  |  |     sortedArrayArg.forEach(function (dockerfileArg) { | 
					
						
							| 
									
										
										
										
											2016-06-07 22:27:10 +02:00
										 |  |  |         dockerfileArg.push(NpmciEnv.buildStage); | 
					
						
							| 
									
										
										
										
											2016-06-05 17:17:15 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  |     done.resolve(sortedArrayArg); | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |     return done.promise; | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | exports.pullDockerfileImages = (sortableArrayArg, registryArg = "registry.gitlab.com") => { | 
					
						
							|  |  |  |     let done = plugins.q.defer(); | 
					
						
							|  |  |  |     sortableArrayArg.forEach((dockerfileArg) => { | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |         dockerfileArg.pull(registryArg); | 
					
						
							| 
									
										
										
										
											2016-06-07 04:31:25 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  |     done.resolve(sortableArrayArg); | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | exports.testDockerfiles = (sortedArrayArg) => { | 
					
						
							|  |  |  |     let done = plugins.q.defer(); | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |     sortedArrayArg.forEach(function (dockerfileArg) { | 
					
						
							|  |  |  |         dockerfileArg.test(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     done.resolve(sortedArrayArg); | 
					
						
							|  |  |  |     return done.promise; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | class Dockerfile { | 
					
						
							|  |  |  |     constructor(options) { | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |         this.filePath = options.filePath; | 
					
						
							|  |  |  |         this.repo = NpmciEnv.repo.user + "/" + NpmciEnv.repo.repo; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |         this.version = exports.dockerFileVersion(plugins.path.parse(options.filePath).base); | 
					
						
							| 
									
										
										
										
											2016-06-05 06:20:05 +02:00
										 |  |  |         this.cleanTag = this.repo + ":" + this.version; | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |         this.buildTag = this.cleanTag; | 
					
						
							|  |  |  |         this.testTag = exports.dockerTag("registry.gitlab.com", this.repo, this.version, "test"); | 
					
						
							|  |  |  |         this.releaseTag = exports.dockerTag(NpmciEnv.dockerRegistry, this.repo, this.version); | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |         this.containerName = "dockerfile-" + this.version; | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |         if (options.filePath && options.read) { | 
					
						
							| 
									
										
										
										
											2016-06-23 22:22:03 +02:00
										 |  |  |             this.content = plugins.smartfile.fs.toStringSync(plugins.path.resolve(options.filePath)); | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  |         this.baseImage = exports.dockerBaseImage(this.content); | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |         this.localBaseImageDependent = false; | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     build() { | 
					
						
							|  |  |  |         let done = plugins.q.defer(); | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |         plugins.beautylog.info("now building Dockerfile for " + this.cleanTag); | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |         npmci_bash_1.bashBare("docker build -t " + this.buildTag + " -f " + this.filePath + " ."); | 
					
						
							| 
									
										
										
										
											2016-06-05 22:51:59 +02:00
										 |  |  |         NpmciEnv.dockerFilesBuilt.push(this); | 
					
						
							|  |  |  |         done.resolve(); | 
					
						
							|  |  |  |         return done.promise; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     push(stageArg) { | 
					
						
							|  |  |  |         let done = plugins.q.defer(); | 
					
						
							|  |  |  |         let pushTag; | 
					
						
							| 
									
										
										
										
											2016-06-07 22:27:10 +02:00
										 |  |  |         switch (stageArg) { | 
					
						
							|  |  |  |             case "release": | 
					
						
							|  |  |  |                 pushTag = this.releaseTag; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case "test": | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 pushTag = this.testTag; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |         npmci_bash_1.bashBare("docker tag " + this.buildTag + " " + pushTag); | 
					
						
							|  |  |  |         npmci_bash_1.bashBare("docker push " + pushTag); | 
					
						
							| 
									
										
										
										
											2016-06-05 22:51:59 +02:00
										 |  |  |         done.resolve(); | 
					
						
							|  |  |  |         return done.promise; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     pull(registryArg) { | 
					
						
							|  |  |  |         let pullTag = this.testTag; | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |         npmci_bash_1.bashBare("docker pull " + pullTag); | 
					
						
							|  |  |  |         npmci_bash_1.bashBare("docker tag " + pullTag + " " + this.buildTag); | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     test() { | 
					
						
							|  |  |  |         let testFile = plugins.path.join(paths.NpmciTestDir, "test_" + this.version + ".sh"); | 
					
						
							|  |  |  |         let testFileExists = plugins.smartfile.fs.fileExistsSync(testFile); | 
					
						
							| 
									
										
										
										
											2016-06-07 12:12:19 +02:00
										 |  |  |         if (testFileExists) { | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker run --name npmci_test_container " + this.buildTag + " mkdir /npmci_test"); | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker cp " + testFile + " npmci_test_container:/npmci_test/test.sh"); | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker commit npmci_test_container npmci_test_image"); | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker run npmci_test_image sh /npmci_test/test.sh"); | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker rm npmci_test_container"); | 
					
						
							|  |  |  |             npmci_bash_1.bashBare("docker rmi --force npmci_test_image"); | 
					
						
							| 
									
										
										
										
											2016-06-07 05:20:04 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             plugins.beautylog.warn("skipping tests for " + this.cleanTag + " because no testfile was found!"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     getId() { | 
					
						
							|  |  |  |         let containerId = npmci_bash_1.bashBare("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag); | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |         return containerId; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-07 03:59:47 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  | exports.Dockerfile = Dockerfile; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  | exports.dockerFileVersion = function (dockerfileNameArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let versionString; | 
					
						
							|  |  |  |     let versionRegex = /Dockerfile_([a-zA-Z0-9\.]*)$/; | 
					
						
							|  |  |  |     let regexResultArray = versionRegex.exec(dockerfileNameArg); | 
					
						
							| 
									
										
										
										
											2016-06-05 08:06:32 +02:00
										 |  |  |     if (regexResultArray && regexResultArray.length == 2) { | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |         versionString = regexResultArray[1]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         versionString = "latest"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return versionString; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-05 13:01:45 +02:00
										 |  |  | exports.dockerBaseImage = function (dockerfileContentArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let baseImageRegex = /FROM\s([a-zA-z0-9\/\-\:]*)\n?/; | 
					
						
							|  |  |  |     let regexResultArray = baseImageRegex.exec(dockerfileContentArg); | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |     return regexResultArray[1]; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  | exports.dockerTag = function (registryArg, repoArg, versionArg, suffixArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let tagString; | 
					
						
							|  |  |  |     let registry = registryArg; | 
					
						
							|  |  |  |     let repo = repoArg; | 
					
						
							|  |  |  |     let version = versionArg; | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |     if (suffixArg) { | 
					
						
							|  |  |  |         version = versionArg + "_" + suffixArg; | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-07 19:41:14 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2016-06-05 04:48:39 +02:00
										 |  |  |     tagString = registry + "/" + repo + ":" + version; | 
					
						
							|  |  |  |     return tagString; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  | exports.cleanTagsArrayFunction = function (dockerfileArrayArg, trackingArrayArg) { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  |     let cleanTagsArray = []; | 
					
						
							| 
									
										
										
										
											2016-06-05 14:27:56 +02:00
										 |  |  |     dockerfileArrayArg.forEach(function (dockerfileArg) { | 
					
						
							|  |  |  |         if (trackingArrayArg.indexOf(dockerfileArg) == -1) { | 
					
						
							|  |  |  |             cleanTagsArray.push(dockerfileArg.cleanTag); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     return cleanTagsArray; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-07-18 16:56:53 +02:00
										 |  |  | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuYnVpbGQuZG9ja2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvbnBtY2kuYnVpbGQuZG9ja2VyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFZLE9BQU8sV0FBTSxpQkFBaUIsQ0FBQyxDQUFBO0FBQzNDLE1BQVksS0FBSyxXQUFNLGVBQWUsQ0FBQyxDQUFBO0FBQ3ZDLE1BQVksUUFBUSxXQUFNLGFBQWEsQ0FBQyxDQUFBO0FBQ3hDLDZCQUF1QixjQUFjLENBQUMsQ0FBQTtBQUUzQixhQUFLLEdBQUc7SUFDZixJQUFJLElBQUksR0FBRyxPQUFPLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQzdCLHVCQUFlLEVBQUU7U0FDWixJQUFJLENBQUMsdUJBQWUsQ0FBQztTQUNyQixJQUFJLENBQUMsc0JBQWMsQ0FBQztTQUNwQixJQUFJLENBQUMsd0JBQWdCLENBQUM7U0FDdEIsSUFBSSxDQUFDLHVCQUFlLENBQUM7U0FDckIsSUFBSSxDQUFDO1FBQ0YsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO0lBQ25CLENBQUMsQ0FBQyxDQUFDO0lBQ1AsTUFBTSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUM7QUFDeEIsQ0FBQyxDQUFBO0FBRVUsdUJBQWUsR0FBRztJQUN6QixJQUFJLElBQUksR0FBRyxPQUFPLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQzdCLElBQUksb0JBQW9CLEdBQWdCLEVBQUUsQ0FBQTtJQUMxQyxPQUFPLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxlQUFlLENBQUM7U0FDNUIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLFVBQVMsSUFBSSxFQUFDLEdBQUcsRUFBQyxFQUFFO1FBQzNDLElBQUksWUFBWSxHQUFHLElBQUksVUFBVSxDQUFDO1lBQzlCLFFBQVEsRUFBQyxJQUFJLENBQUMsSUFBSTtZQUNsQixJQUFJLEVBQUMsSUFBSTtTQUNaLENB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
 |