@tsparticles/preset-squares 3.0.2 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/browser/bundle.js +0 -1
- package/browser/index.js +2 -1
- package/browser/options.js +4 -3
- package/cjs/bundle.js +0 -1
- package/cjs/index.js +2 -1
- package/cjs/options.js +4 -3
- package/esm/bundle.js +0 -1
- package/esm/index.js +2 -1
- package/esm/options.js +4 -3
- package/package.json +7 -7
- package/report.html +2 -2
- package/tsparticles.preset.squares.bundle.js +1548 -1039
- package/tsparticles.preset.squares.bundle.min.js +1 -1
- package/tsparticles.preset.squares.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.preset.squares.js +35 -52
- package/tsparticles.preset.squares.min.js +1 -1
- package/tsparticles.preset.squares.min.js.LICENSE.txt +1 -1
- package/umd/bundle.js +0 -1
- package/umd/index.js +2 -1
- package/umd/options.js +5 -4
package/README.md
CHANGED
|
@@ -27,12 +27,16 @@
|
|
|
27
27
|
Once the scripts are loaded you can set up `tsParticles` like this:
|
|
28
28
|
|
|
29
29
|
```javascript
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
30
|
+
(async () => {
|
|
31
|
+
await loadSquaresPreset(tsParticles);
|
|
32
|
+
|
|
33
|
+
await tsParticles.load({
|
|
34
|
+
id: "tsparticles",
|
|
35
|
+
options: {
|
|
36
|
+
preset: "squares",
|
|
37
|
+
},
|
|
38
|
+
});
|
|
39
|
+
})();
|
|
36
40
|
```
|
|
37
41
|
|
|
38
42
|
#### Customization
|
package/browser/bundle.js
CHANGED
package/browser/index.js
CHANGED
|
@@ -10,5 +10,6 @@ export async function loadSquaresPreset(engine, refresh = true) {
|
|
|
10
10
|
await loadRotateUpdater(engine, false);
|
|
11
11
|
await loadSizeUpdater(engine, false);
|
|
12
12
|
await loadStrokeColorUpdater(engine, false);
|
|
13
|
-
await engine.addPreset("squares", options,
|
|
13
|
+
await engine.addPreset("squares", options, false);
|
|
14
|
+
await engine.refresh(refresh);
|
|
14
15
|
}
|
package/browser/options.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DestroyType, RotateDirection, StartValueType } from "@tsparticles/engine";
|
|
1
2
|
export const options = {
|
|
2
3
|
particles: {
|
|
3
4
|
stroke: {
|
|
@@ -26,7 +27,7 @@ export const options = {
|
|
|
26
27
|
},
|
|
27
28
|
rotate: {
|
|
28
29
|
value: 0,
|
|
29
|
-
direction:
|
|
30
|
+
direction: RotateDirection.counterClockwise,
|
|
30
31
|
animation: {
|
|
31
32
|
enable: true,
|
|
32
33
|
speed: 2,
|
|
@@ -37,10 +38,10 @@ export const options = {
|
|
|
37
38
|
value: { min: 1, max: 500 },
|
|
38
39
|
animation: {
|
|
39
40
|
enable: true,
|
|
40
|
-
startValue:
|
|
41
|
+
startValue: StartValueType.min,
|
|
41
42
|
speed: 60,
|
|
42
43
|
sync: true,
|
|
43
|
-
destroy:
|
|
44
|
+
destroy: DestroyType.max,
|
|
44
45
|
},
|
|
45
46
|
},
|
|
46
47
|
},
|
package/cjs/bundle.js
CHANGED
|
@@ -5,4 +5,3 @@ const index_js_1 = require("./index.js");
|
|
|
5
5
|
Object.defineProperty(exports, "loadSquaresPreset", { enumerable: true, get: function () { return index_js_1.loadSquaresPreset; } });
|
|
6
6
|
const engine_1 = require("@tsparticles/engine");
|
|
7
7
|
Object.defineProperty(exports, "tsParticles", { enumerable: true, get: function () { return engine_1.tsParticles; } });
|
|
8
|
-
void (0, index_js_1.loadSquaresPreset)(engine_1.tsParticles);
|
package/cjs/index.js
CHANGED
|
@@ -13,6 +13,7 @@ async function loadSquaresPreset(engine, refresh = true) {
|
|
|
13
13
|
await (0, updater_rotate_1.loadRotateUpdater)(engine, false);
|
|
14
14
|
await (0, updater_size_1.loadSizeUpdater)(engine, false);
|
|
15
15
|
await (0, updater_stroke_color_1.loadStrokeColorUpdater)(engine, false);
|
|
16
|
-
await engine.addPreset("squares", options_js_1.options,
|
|
16
|
+
await engine.addPreset("squares", options_js_1.options, false);
|
|
17
|
+
await engine.refresh(refresh);
|
|
17
18
|
}
|
|
18
19
|
exports.loadSquaresPreset = loadSquaresPreset;
|
package/cjs/options.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.options = void 0;
|
|
4
|
+
const engine_1 = require("@tsparticles/engine");
|
|
4
5
|
exports.options = {
|
|
5
6
|
particles: {
|
|
6
7
|
stroke: {
|
|
@@ -29,7 +30,7 @@ exports.options = {
|
|
|
29
30
|
},
|
|
30
31
|
rotate: {
|
|
31
32
|
value: 0,
|
|
32
|
-
direction:
|
|
33
|
+
direction: engine_1.RotateDirection.counterClockwise,
|
|
33
34
|
animation: {
|
|
34
35
|
enable: true,
|
|
35
36
|
speed: 2,
|
|
@@ -40,10 +41,10 @@ exports.options = {
|
|
|
40
41
|
value: { min: 1, max: 500 },
|
|
41
42
|
animation: {
|
|
42
43
|
enable: true,
|
|
43
|
-
startValue:
|
|
44
|
+
startValue: engine_1.StartValueType.min,
|
|
44
45
|
speed: 60,
|
|
45
46
|
sync: true,
|
|
46
|
-
destroy:
|
|
47
|
+
destroy: engine_1.DestroyType.max,
|
|
47
48
|
},
|
|
48
49
|
},
|
|
49
50
|
},
|
package/esm/bundle.js
CHANGED
package/esm/index.js
CHANGED
|
@@ -10,5 +10,6 @@ export async function loadSquaresPreset(engine, refresh = true) {
|
|
|
10
10
|
await loadRotateUpdater(engine, false);
|
|
11
11
|
await loadSizeUpdater(engine, false);
|
|
12
12
|
await loadStrokeColorUpdater(engine, false);
|
|
13
|
-
await engine.addPreset("squares", options,
|
|
13
|
+
await engine.addPreset("squares", options, false);
|
|
14
|
+
await engine.refresh(refresh);
|
|
14
15
|
}
|
package/esm/options.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DestroyType, RotateDirection, StartValueType } from "@tsparticles/engine";
|
|
1
2
|
export const options = {
|
|
2
3
|
particles: {
|
|
3
4
|
stroke: {
|
|
@@ -26,7 +27,7 @@ export const options = {
|
|
|
26
27
|
},
|
|
27
28
|
rotate: {
|
|
28
29
|
value: 0,
|
|
29
|
-
direction:
|
|
30
|
+
direction: RotateDirection.counterClockwise,
|
|
30
31
|
animation: {
|
|
31
32
|
enable: true,
|
|
32
33
|
speed: 2,
|
|
@@ -37,10 +38,10 @@ export const options = {
|
|
|
37
38
|
value: { min: 1, max: 500 },
|
|
38
39
|
animation: {
|
|
39
40
|
enable: true,
|
|
40
|
-
startValue:
|
|
41
|
+
startValue: StartValueType.min,
|
|
41
42
|
speed: 60,
|
|
42
43
|
sync: true,
|
|
43
|
-
destroy:
|
|
44
|
+
destroy: DestroyType.max,
|
|
44
45
|
},
|
|
45
46
|
},
|
|
46
47
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/preset-squares",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "tsParticles squares preset",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,12 +87,12 @@
|
|
|
87
87
|
"module": "esm/index.js",
|
|
88
88
|
"types": "types/index.d.ts",
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "^3.0
|
|
91
|
-
"@tsparticles/plugin-emitters": "^3.0
|
|
92
|
-
"@tsparticles/shape-square": "^3.0
|
|
93
|
-
"@tsparticles/updater-rotate": "^3.0
|
|
94
|
-
"@tsparticles/updater-size": "^3.0
|
|
95
|
-
"@tsparticles/updater-stroke-color": "^3.0
|
|
90
|
+
"@tsparticles/engine": "^3.4.0",
|
|
91
|
+
"@tsparticles/plugin-emitters": "^3.4.0",
|
|
92
|
+
"@tsparticles/shape-square": "^3.4.0",
|
|
93
|
+
"@tsparticles/updater-rotate": "^3.4.0",
|
|
94
|
+
"@tsparticles/updater-size": "^3.4.0",
|
|
95
|
+
"@tsparticles/updater-stroke-color": "^3.4.0"
|
|
96
96
|
},
|
|
97
97
|
"publishConfig": {
|
|
98
98
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/preset-squares [
|
|
6
|
+
<title>@tsparticles/preset-squares [3 Jun 2024 at 08:27]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":215593,"parsedSize":215986,"gzipSize":35868,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":215593,"groups":[{"id":860,"label":"bundle.js + 102 modules (concatenated)","path":"./dist/browser/bundle.js + 102 modules (concatenated)","statSize":215593,"parsedSize":215986,"gzipSize":35868,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser","statSize":1752,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/index.js","statSize":704,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/options.js","statSize":870,"parsedSize":871,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":1755,"gzipSize":291,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm","statSize":213841,"groups":[{"label":"@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","statSize":175769,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":490,"gzipSize":81,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12040,"gzipSize":1999,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4649,"gzipSize":772,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4550,"gzipSize":755,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8736,"gzipSize":1450,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":451,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1386,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1224,"gzipSize":203,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1180,"gzipSize":195,"inaccurateSizes":true}],"parsedSize":34220,"gzipSize":5682,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4909,"gzipSize":815,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core","statSize":94383,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8657,"parsedSize":8672,"gzipSize":1440,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2741,"gzipSize":455,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1104,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":912,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":126,"gzipSize":20,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14151,"gzipSize":2350,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2065,"gzipSize":343,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1822,"gzipSize":302,"inaccurateSizes":true}],"parsedSize":24018,"gzipSize":3988,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15615,"gzipSize":2593,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16262,"gzipSize":2700,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12721,"parsedSize":12744,"gzipSize":2116,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1761,"gzipSize":292,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15452,"parsedSize":15480,"gzipSize":2570,"inaccurateSizes":true}],"parsedSize":94555,"gzipSize":15702,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6195,"gzipSize":1028,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":951,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":951,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":620,"gzipSize":102,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":799,"gzipSize":132,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":503,"gzipSize":83,"inaccurateSizes":true}],"parsedSize":1303,"gzipSize":216,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":565,"gzipSize":93,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":923,"gzipSize":153,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":355,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":596,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":472,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":373,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3202,"gzipSize":531,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":4368,"gzipSize":725,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":475,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":690,"gzipSize":114,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":528,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":467,"gzipSize":77,"inaccurateSizes":true}],"parsedSize":996,"gzipSize":165,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3541,"gzipSize":588,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1007,"gzipSize":167,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":245,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":372,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1625,"gzipSize":270,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":399,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":190,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":590,"gzipSize":97,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3069,"gzipSize":509,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":450,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":847,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":734,"gzipSize":121,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":737,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":737,"gzipSize":122,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":617,"gzipSize":102,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":551,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":441,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8360,"gzipSize":1388,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":548,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":424,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":973,"gzipSize":161,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":878,"gzipSize":145,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":866,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":143,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":536,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":958,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":602,"gzipSize":99,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":649,"gzipSize":107,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":107,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":542,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":535,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1442,"gzipSize":239,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":21354,"gzipSize":3546,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1068,"gzipSize":177,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":388,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":474,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1388,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1023,"gzipSize":170,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":41663,"gzipSize":6918,"inaccurateSizes":true}],"parsedSize":176089,"gzipSize":29242,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","statSize":25569,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4277,"gzipSize":710,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2078,"gzipSize":345,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":594,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":461,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":592,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":483,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4586,"gzipSize":761,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4332,"gzipSize":719,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":443,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11953,"parsedSize":11974,"gzipSize":1988,"inaccurateSizes":true}],"parsedSize":25615,"gzipSize":4253,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":221,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3140,"gzipSize":521,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1338,"gzipSize":222,"inaccurateSizes":true}],"parsedSize":4700,"gzipSize":780,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1128,"gzipSize":187,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2002,"gzipSize":332,"inaccurateSizes":true}],"parsedSize":3324,"gzipSize":552,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","statSize":512,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/index.js","statSize":192,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":320,"parsedSize":320,"gzipSize":53,"inaccurateSizes":true}],"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1551,"gzipSize":257,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2189,"gzipSize":363,"inaccurateSizes":true}],"parsedSize":3988,"gzipSize":662,"inaccurateSizes":true}],"parsedSize":214230,"gzipSize":35576,"inaccurateSizes":true}]}],"parsedSize":215986,"gzipSize":35868}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
34
|
+
window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":237414,"parsedSize":238867,"gzipSize":39937,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":237414,"groups":[{"id":664,"label":"bundle.js + 125 modules (concatenated)","path":"./dist/browser/bundle.js + 125 modules (concatenated)","statSize":237414,"parsedSize":238867,"gzipSize":39937,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser","statSize":1866,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/bundle.js","statSize":141,"parsedSize":141,"gzipSize":23,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/index.js","statSize":735,"parsedSize":739,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/options.js","statSize":990,"parsedSize":996,"gzipSize":166,"inaccurateSizes":true}],"parsedSize":1877,"gzipSize":313,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm","statSize":235548,"groups":[{"label":"@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser","statSize":200043,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":250,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":492,"gzipSize":82,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils","statSize":43803,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":15276,"parsedSize":15369,"gzipSize":2569,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":5414,"parsedSize":5447,"gzipSize":910,"inaccurateSizes":true},{"id":null,"label":"TypeUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/TypeUtils.js","statSize":436,"parsedSize":438,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":5111,"parsedSize":5142,"gzipSize":859,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":12539,"parsedSize":12615,"gzipSize":2109,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":453,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1751,"parsedSize":1761,"gzipSize":294,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1589,"parsedSize":1598,"gzipSize":267,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1236,"parsedSize":1243,"gzipSize":207,"inaccurateSizes":true}],"parsedSize":44071,"gzipSize":7368,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4816,"parsedSize":4845,"gzipSize":810,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core","statSize":100970,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":9588,"parsedSize":9646,"gzipSize":1612,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":25548,"groups":[{"id":null,"label":"Vectors.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vectors.js","statSize":3289,"parsedSize":3309,"gzipSize":553,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":701,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"Ranges.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Ranges.js","statSize":2313,"parsedSize":2327,"gzipSize":389,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"ExternalInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/ExternalInteractorBase.js","statSize":226,"parsedSize":227,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"ParticlesInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/ParticlesInteractorBase.js","statSize":228,"parsedSize":229,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14477,"parsedSize":14565,"gzipSize":2435,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":2039,"parsedSize":2051,"gzipSize":342,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2140,"parsedSize":2153,"gzipSize":359,"inaccurateSizes":true}],"parsedSize":25704,"gzipSize":4297,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":16719,"parsedSize":16821,"gzipSize":2812,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":17792,"parsedSize":17900,"gzipSize":2992,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":13253,"parsedSize":13334,"gzipSize":2229,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1865,"parsedSize":1876,"gzipSize":313,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":16205,"parsedSize":16304,"gzipSize":2725,"inaccurateSizes":true}],"parsedSize":101587,"gzipSize":16984,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums","statSize":6446,"groups":[{"label":"Directions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions","statSize":1078,"groups":[{"id":null,"label":"MoveDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/MoveDirection.js","statSize":551,"parsedSize":554,"gzipSize":92,"inaccurateSizes":true},{"id":null,"label":"OutModeDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/OutModeDirection.js","statSize":269,"parsedSize":270,"gzipSize":45,"inaccurateSizes":true},{"id":null,"label":"RotateDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/RotateDirection.js","statSize":258,"parsedSize":259,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":1084,"gzipSize":181,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes","statSize":1379,"groups":[{"id":null,"label":"AnimationMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/AnimationMode.js","statSize":261,"parsedSize":262,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"PixelMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/PixelMode.js","statSize":157,"parsedSize":157,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"ResponsiveMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/ResponsiveMode.js","statSize":183,"parsedSize":184,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"ThemeMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/ThemeMode.js","statSize":177,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CollisionMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/CollisionMode.js","statSize":219,"parsedSize":220,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"OutMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/OutMode.js","statSize":233,"parsedSize":234,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"LimitMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/LimitMode.js","statSize":149,"parsedSize":149,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":1387,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"AnimationStatus.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/AnimationStatus.js","statSize":205,"parsedSize":206,"gzipSize":34,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types","statSize":3525,"groups":[{"id":null,"label":"DestroyType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/DestroyType.js","statSize":187,"parsedSize":188,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"StartValueType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/StartValueType.js","statSize":212,"parsedSize":213,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"AlterType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/AlterType.js","statSize":159,"parsedSize":159,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"EventType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/EventType.js","statSize":719,"parsedSize":723,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"DivType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/DivType.js","statSize":147,"parsedSize":147,"gzipSize":24,"inaccurateSizes":true},{"id":null,"label":"InteractorType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/InteractorType.js","statSize":193,"parsedSize":194,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"ParticleOutType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/ParticleOutType.js","statSize":233,"parsedSize":234,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"GradientType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/GradientType.js","statSize":210,"parsedSize":211,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"EasingType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/EasingType.js","statSize":1465,"parsedSize":1473,"gzipSize":246,"inaccurateSizes":true}],"parsedSize":3546,"gzipSize":592,"inaccurateSizes":true},{"id":null,"label":"InteractivityDetect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/InteractivityDetect.js","statSize":259,"parsedSize":260,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":6485,"gzipSize":1084,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":43110,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6460,"parsedSize":6499,"gzipSize":1086,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4522,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":659,"parsedSize":663,"gzipSize":110,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3263,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":920,"parsedSize":925,"gzipSize":154,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":663,"parsedSize":667,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":357,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":482,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":474,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3282,"gzipSize":548,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":603,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":603,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":4549,"gzipSize":760,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":597,"parsedSize":600,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":811,"parsedSize":815,"gzipSize":136,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":1066,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":531,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":538,"parsedSize":541,"gzipSize":90,"inaccurateSizes":true}],"parsedSize":1072,"gzipSize":179,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21871,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3533,"parsedSize":3554,"gzipSize":594,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1709,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1092,"parsedSize":1098,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":246,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":374,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":1719,"gzipSize":287,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":401,"gzipSize":67,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":191,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":592,"gzipSize":99,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8582,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3159,"parsedSize":3178,"gzipSize":531,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":452,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":851,"gzipSize":142,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":624,"parsedSize":627,"gzipSize":104,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":737,"gzipSize":123,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":740,"gzipSize":123,"inaccurateSizes":true}],"parsedSize":740,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":509,"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":619,"gzipSize":103,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":546,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":368,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":8634,"gzipSize":1443,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":1052,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":551,"gzipSize":92,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":504,"parsedSize":507,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1058,"gzipSize":176,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1514,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":545,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":437,"parsedSize":439,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":538,"gzipSize":89,"inaccurateSizes":true}],"parsedSize":1523,"gzipSize":254,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":870,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":870,"gzipSize":145,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":1037,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":539,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":501,"parsedSize":504,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1043,"gzipSize":174,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":604,"gzipSize":101,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":651,"gzipSize":109,"inaccurateSizes":true}],"parsedSize":651,"gzipSize":109,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":882,"gzipSize":147,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":869,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":869,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":22004,"gzipSize":3679,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1071,"parsedSize":1077,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":390,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":476,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1549,"parsedSize":1558,"gzipSize":260,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":623,"parsedSize":626,"gzipSize":104,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1028,"gzipSize":171,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":955,"gzipSize":159,"inaccurateSizes":true}],"parsedSize":955,"gzipSize":159,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1345,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":831,"parsedSize":836,"gzipSize":139,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":514,"parsedSize":517,"gzipSize":86,"inaccurateSizes":true}],"parsedSize":1353,"gzipSize":226,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":43373,"gzipSize":7251,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Types","statSize":159,"groups":[{"id":null,"label":"RangeType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Types/RangeType.js","statSize":159,"parsedSize":159,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":159,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":201267,"gzipSize":33650,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser","statSize":26991,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":858,"parsedSize":863,"gzipSize":144,"inaccurateSizes":true},{"id":null,"label":"EmittersPlugin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/EmittersPlugin.js","statSize":3629,"parsedSize":3651,"gzipSize":610,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Enums","statSize":154,"groups":[{"id":null,"label":"EmitterClickMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Enums/EmitterClickMode.js","statSize":154,"parsedSize":154,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":154,"gzipSize":25,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":445,"gzipSize":74,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4633,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2073,"parsedSize":2085,"gzipSize":348,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":596,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":463,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":594,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":540,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":377,"gzipSize":63,"inaccurateSizes":true}],"parsedSize":4661,"gzipSize":779,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4539,"parsedSize":4566,"gzipSize":763,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":12735,"parsedSize":12812,"gzipSize":2142,"inaccurateSizes":true}],"parsedSize":27156,"gzipSize":4540,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser","statSize":4407,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":260,"parsedSize":261,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":2780,"parsedSize":2797,"gzipSize":467,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1367,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":699,"parsedSize":703,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":672,"gzipSize":112,"inaccurateSizes":true}],"parsedSize":1375,"gzipSize":229,"inaccurateSizes":true}],"parsedSize":4433,"gzipSize":741,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser","statSize":1528,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":234,"parsedSize":235,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1294,"parsedSize":1301,"gzipSize":217,"inaccurateSizes":true}],"parsedSize":1537,"gzipSize":257,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser","statSize":735,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/index.js","statSize":172,"parsedSize":173,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":259,"parsedSize":260,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/Utils.js","statSize":304,"parsedSize":305,"gzipSize":51,"inaccurateSizes":true}],"parsedSize":739,"gzipSize":123,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser","statSize":1844,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":285,"parsedSize":286,"gzipSize":47,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1559,"parsedSize":1568,"gzipSize":262,"inaccurateSizes":true}],"parsedSize":1855,"gzipSize":310,"inaccurateSizes":true}],"parsedSize":236989,"gzipSize":39623,"inaccurateSizes":true}]}],"parsedSize":238867,"gzipSize":39937}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
35
35
|
window.entrypoints = ["tsparticles.preset.squares.bundle","tsparticles.preset.squares.bundle.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|