From d62beb5a840f34bd2f174e1e91abdba2c9d8283c Mon Sep 17 00:00:00 2001
From: Maaz <83403349+Maaz-319@users.noreply.github.com>
Date: Sun, 21 Jul 2024 22:43:56 +0500
Subject: [PATCH] Start
---
fast/index.html | 42 +
fast/jquery-3.7.1.js | 10716 +++++++++++++++++++++++++++++++++++++++++
fast/script.js | 17 +
fast/style.css | 70 +
index.html | 62 +
jquery-3.7.1.js | 10716 +++++++++++++++++++++++++++++++++++++++++
nust/index.html | 43 +
nust/jquery-3.7.1.js | 10716 +++++++++++++++++++++++++++++++++++++++++
nust/script.js | 17 +
nust/style.css | 70 +
pu/index.html | 42 +
pu/jquery-3.7.1.js | 10716 +++++++++++++++++++++++++++++++++++++++++
pu/script.js | 23 +
pu/style.css | 71 +
style.css | 137 +
uet/index.html | 43 +
uet/jquery-3.7.1.js | 10716 +++++++++++++++++++++++++++++++++++++++++
uet/script.js | 19 +
uet/style.css | 71 +
19 files changed, 54307 insertions(+)
create mode 100644 fast/index.html
create mode 100644 fast/jquery-3.7.1.js
create mode 100644 fast/script.js
create mode 100644 fast/style.css
create mode 100644 index.html
create mode 100644 jquery-3.7.1.js
create mode 100644 nust/index.html
create mode 100644 nust/jquery-3.7.1.js
create mode 100644 nust/script.js
create mode 100644 nust/style.css
create mode 100644 pu/index.html
create mode 100644 pu/jquery-3.7.1.js
create mode 100644 pu/script.js
create mode 100644 pu/style.css
create mode 100644 style.css
create mode 100644 uet/index.html
create mode 100644 uet/jquery-3.7.1.js
create mode 100644 uet/script.js
create mode 100644 uet/style.css
diff --git a/fast/index.html b/fast/index.html
new file mode 100644
index 0000000..ab39c95
--- /dev/null
+++ b/fast/index.html
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ Fast Aggregate Calc
+
+
+
+
+
+
+
+
+ Aggregate Calculator for Fast Computing Programs
+
+
+
+
+
+
+
+
+
Aggregate
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fast/jquery-3.7.1.js b/fast/jquery-3.7.1.js
new file mode 100644
index 0000000..1a86433
--- /dev/null
+++ b/fast/jquery-3.7.1.js
@@ -0,0 +1,10716 @@
+/*!
+ * jQuery JavaScript Library v3.7.1
+ * https://jquery.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2023-08-28T13:37Z
+ */
+( 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 trac-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