diff --git a/diagram.bpmn b/diagram.bpmn
new file mode 100644
index 0000000..9909969
--- /dev/null
+++ b/diagram.bpmn
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+ sid-52EB1772-F36E-433E-8F5B-D5DFD26E6F26
+ sid-E49425CF-8287-4798-B622-D2A7D78EF00B
+ sid-D7F237E8-56D0-4283-A3CE-4F0EFE446138
+ sid-E433566C-2289-4BEB-A19C-1697048900D2
+ sid-5134932A-1863-4FFA-BB3C-A4B4078B11A9
+ SCAN_OK
+
+
+
+ sid-4DC479E5-5C20-4948-BCFC-9EC5E2F66D8D
+ sid-EE8A7BA0-5D66-4F8B-80E3-CC2751B3856A
+
+
+ sid-8B820AF5-DC5C-4618-B854-E08B71FB55CB
+ sid-57EB1F24-BD94-479A-BF1F-57F1EAA19C6C
+
+
+ sid-7B791A11-2F2E-4D80-AFB3-91A02CF2B4FD
+
+
+ sid-57EB1F24-BD94-479A-BF1F-57F1EAA19C6C
+
+
+ sid-7B791A11-2F2E-4D80-AFB3-91A02CF2B4FD
+ sid-337A23B9-A923-4CCE-B613-3E247B773CCE
+ sid-4DC479E5-5C20-4948-BCFC-9EC5E2F66D8D
+
+
+ sid-EE8A7BA0-5D66-4F8B-80E3-CC2751B3856A
+ sid-8B820AF5-DC5C-4618-B854-E08B71FB55CB
+ sid-337A23B9-A923-4CCE-B613-3E247B773CCE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dist/jquery.js b/dist/jquery.js
new file mode 100644
index 0000000..01b858f
--- /dev/null
+++ b/dist/jquery.js
@@ -0,0 +1,10364 @@
+/*!
+ * jQuery JavaScript Library v3.3.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: 2018-01-20T17:24Z
+ */
+( 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 document = window.document;
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var concat = arr.concat;
+
+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