@tsparticles/preset-fountain 3.0.0 → 3.0.2

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 CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![jsDelivr](https://data.jsdelivr.com/v1/package/npm/@tsparticles/preset-fountain/badge)](https://www.jsdelivr.com/package/npm/@tsparticles/preset-fountain) [![npmjs](https://badge.fury.io/js/@tsparticles/preset-fountain.svg)](https://www.npmjs.com/package/@tsparticles/preset-fountain) [![npmjs](https://img.shields.io/npm/dt/@tsparticles/preset-fountain)](https://www.npmjs.com/package/@tsparticles/preset-fountain) [![GitHub Sponsors](https://img.shields.io/github/sponsors/matteobruni)](https://github.com/sponsors/matteobruni)
6
6
 
7
- [tsParticles](https://github.com/matteobruni/tsparticles) preset creating random positioned falling colored particles
7
+ [tsParticles](https://github.com/tsparticles/tsparticles) preset creating random positioned falling colored particles
8
8
  that break when hitting the ground.
9
9
 
10
10
  [![Slack](https://particles.js.org/images/slack.png)](https://join.slack.com/t/tsparticles/shared_invite/enQtOTcxNTQxNjQ4NzkxLWE2MTZhZWExMWRmOWI5MTMxNjczOGE1Yjk0MjViYjdkYTUzODM3OTc5MGQ5MjFlODc4MzE0N2Q1OWQxZDc1YzI) [![Discord](https://particles.js.org/images/discord.png)](https://discord.gg/hACwv45Hme) [![Telegram](https://particles.js.org/images/telegram.png)](https://t.me/tsparticles)
@@ -13,39 +13,14 @@ that break when hitting the ground.
13
13
 
14
14
  ## Sample
15
15
 
16
- [![demo](https://raw.githubusercontent.com/matteobruni/tsparticles/main/presets/fountain/images/sample.png)](https://particles.js.org/samples/presets/fountain)
16
+ [![demo](https://raw.githubusercontent.com/tsparticles/tsparticles/main/presets/fountain/images/sample.png)](https://particles.js.org/samples/presets/fountain)
17
17
 
18
18
  ## How to use it
19
19
 
20
20
  ### CDN / Vanilla JS / jQuery
21
21
 
22
- The first step is installing [tsParticles](https://github.com/matteobruni/tsparticles) following the instructions for
23
- vanilla javascript in the main project [here](https://github.com/matteobruni/tsparticles)
24
-
25
- Once installed you need one more script to be included in your page (or you can download that
26
- from [jsDelivr](https://www.jsdelivr.com/package/npm/@tsparticles/preset-fountain):
27
-
28
- ```html
29
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/engine@2/tsparticles.engine.min.js"></script>
30
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/basic@2/tsparticles.basic.min.js"></script>
31
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/move-base@2/tsparticles.move.base.min.js"></script>
32
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/plugin-emitters@2/tsparticles.plugin.emitters.min.js"></script>
33
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/shape-circle@2/tsparticles.shape.circle.min.js"></script>
34
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-color@2/tsparticles.updater.color.min.js"></script>
35
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-opacity@2/tsparticles.updater.opacity.min.js"></script>
36
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-out-modes@2/tsparticles.updater.out-modes.min.js"></script>
37
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-size@2/tsparticles.updater.size.min.js"></script>
38
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-fountain@2/tsparticles.preset.fountain.min.js"></script>
39
- ```
40
-
41
- This script **MUST** be placed after the `tsParticles` one.
42
-
43
- #### Bundle
44
-
45
- A bundled script can also be used, this will include every needed plugin needed by the preset.
46
-
47
22
  ```html
48
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-fountain@2/tsparticles.preset.fountain.bundle.min.js"></script>
23
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-fountain@3/tsparticles.preset.fountain.bundle.min.js"></script>
49
24
  ```
50
25
 
51
26
  ### Usage
@@ -53,13 +28,12 @@ A bundled script can also be used, this will include every needed plugin needed
53
28
  Once the scripts are loaded you can set up `tsParticles` like this:
54
29
 
55
30
  ```javascript
56
- (async () => {
57
- await loadFountainPreset(tsParticles); // this is required only if you are not using the bundle script
58
-
59
- await tsParticles.load("tsparticles", {
31
+ tsParticles.load({
32
+ id: "tsparticles",
33
+ options: {
60
34
  preset: "fountain",
61
- });
62
- })();
35
+ },
36
+ });
63
37
  ```
64
38
 
65
39
  #### Customization
@@ -68,100 +42,26 @@ Once the scripts are loaded you can set up `tsParticles` like this:
68
42
  You can override all the options defining the properties like in any standard `tsParticles` installation.
69
43
 
70
44
  ```javascript
71
- tsParticles.load("tsparticles", {
72
- particles: {
73
- shape: {
74
- type: "square", // starting from v2, this require the square shape script
45
+ tsParticles.load({
46
+ id: "tsparticles",
47
+ options: {
48
+ particles: {
49
+ shape: {
50
+ type: "square", // starting from v2, this require the square shape script
51
+ },
75
52
  },
53
+ preset: "fountain",
76
54
  },
77
- preset: "fountain",
78
55
  });
79
56
  ```
80
57
 
81
58
  Like in the sample above, the circles will be replaced by squares.
82
59
 
83
- ### React.js / Preact / Inferno
84
-
85
- _The syntax for `React.js`, `Preact` and `Inferno` is the same_.
86
-
87
- This sample uses the class component syntax, but you can use hooks as well (if the library supports it).
88
-
89
- ```typescript jsx
90
- import Particles from "react-particles";
91
- import type { Engine } from "@tsparticles/engine";
92
- import { loadFountainPreset } from "@tsparticles/preset-fountain";
93
-
94
- export class ParticlesContainer extends React.PureComponent<IProps> {
95
- // this customizes the component tsParticles installation
96
- async customInit(engine: Engine): Promise<void> {
97
- // this adds the preset to tsParticles, you can safely use the
98
- await loadFountainPreset(engine);
99
- }
100
-
101
- render() {
102
- const options = {
103
- preset: "fountain",
104
- };
105
-
106
- return <Particles options={options} init={this.customInit} />;
107
- }
108
- }
109
- ```
110
-
111
- ### Vue (2.x and 3.x)
112
-
113
- _The syntax for `Vue.js 2.x` and `3.x` is the same_
114
-
115
- ```vue
116
- <Particles id="tsparticles" :particlesInit="particlesInit" :options="particlesOptions" />
117
- ```
118
-
119
- ```ts
120
- const particlesOptions = {
121
- preset: "fountain",
122
- };
60
+ ### Frameworks with a tsParticles component library
123
61
 
124
- async function particlesInit(engine: Engine): Promise<void> {
125
- await loadFountainPreset(engine);
126
- }
127
- ```
128
-
129
- ### Angular
130
-
131
- ```html
132
- <ng-particles [id]="id" [options]="particlesOptions" [particlesInit]="particlesInit"></ng-particles>
133
- ```
62
+ Checkout the documentation in the component library repository and call the `loadFountainPreset` function instead of `loadFull`, `loadSlim` or similar functions.
134
63
 
135
- ```ts
136
- const particlesOptions = {
137
- preset: "fountain",
138
- };
139
-
140
- async function particlesInit(engine: Engine): Promise<void> {
141
- await loadFountainPreset(engine);
142
- }
143
- ```
144
-
145
- ### Svelte
146
-
147
- ```sveltehtml
148
-
149
- <Particles
150
- id="tsparticles"
151
- options={particlesOptions}
152
- particlesInit={particlesInit}
153
- />
154
- ```
155
-
156
- ```js
157
- let particlesOptions = {
158
- preset: "fountain",
159
- };
160
-
161
- let particlesInit = async (engine) => {
162
- await loadFountainPreset(engine);
163
- };
164
- ```
64
+ The options shown above are valid for all the component libraries.
165
65
 
166
66
  ---
167
67
 
package/browser/bundle.js CHANGED
@@ -1,4 +1,4 @@
1
- import { loadFountainPreset } from ".";
1
+ import { loadFountainPreset } from "./index.js";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- loadFountainPreset(tsParticles);
3
+ void loadFountainPreset(tsParticles);
4
4
  export { loadFountainPreset, tsParticles };
package/browser/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { loadBasic } from "@tsparticles/basic";
2
2
  import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
3
3
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
4
- import { options } from "./options";
4
+ import { options } from "./options.js";
5
5
  export async function loadFountainPreset(engine, refresh = true) {
6
6
  await loadBasic(engine, false);
7
7
  await loadDestroyUpdater(engine, false);
package/cjs/bundle.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.tsParticles = exports.loadFountainPreset = void 0;
4
- const _1 = require(".");
5
- Object.defineProperty(exports, "loadFountainPreset", { enumerable: true, get: function () { return _1.loadFountainPreset; } });
4
+ const index_js_1 = require("./index.js");
5
+ Object.defineProperty(exports, "loadFountainPreset", { enumerable: true, get: function () { return index_js_1.loadFountainPreset; } });
6
6
  const engine_1 = require("@tsparticles/engine");
7
7
  Object.defineProperty(exports, "tsParticles", { enumerable: true, get: function () { return engine_1.tsParticles; } });
8
- (0, _1.loadFountainPreset)(engine_1.tsParticles);
8
+ void (0, index_js_1.loadFountainPreset)(engine_1.tsParticles);
package/cjs/index.js CHANGED
@@ -4,11 +4,11 @@ exports.loadFountainPreset = void 0;
4
4
  const basic_1 = require("@tsparticles/basic");
5
5
  const updater_destroy_1 = require("@tsparticles/updater-destroy");
6
6
  const plugin_emitters_1 = require("@tsparticles/plugin-emitters");
7
- const options_1 = require("./options");
7
+ const options_js_1 = require("./options.js");
8
8
  async function loadFountainPreset(engine, refresh = true) {
9
9
  await (0, basic_1.loadBasic)(engine, false);
10
10
  await (0, updater_destroy_1.loadDestroyUpdater)(engine, false);
11
11
  await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
12
- await engine.addPreset("fountain", options_1.options, refresh);
12
+ await engine.addPreset("fountain", options_js_1.options, refresh);
13
13
  }
14
14
  exports.loadFountainPreset = loadFountainPreset;
package/esm/bundle.js CHANGED
@@ -1,4 +1,4 @@
1
- import { loadFountainPreset } from ".";
1
+ import { loadFountainPreset } from "./index.js";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- loadFountainPreset(tsParticles);
3
+ void loadFountainPreset(tsParticles);
4
4
  export { loadFountainPreset, tsParticles };
package/esm/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { loadBasic } from "@tsparticles/basic";
2
2
  import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
3
3
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
4
- import { options } from "./options";
4
+ import { options } from "./options.js";
5
5
  export async function loadFountainPreset(engine, refresh = true) {
6
6
  await loadBasic(engine, false);
7
7
  await loadDestroyUpdater(engine, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-fountain",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "tsParticles fountain preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -87,10 +87,10 @@
87
87
  "module": "esm/index.js",
88
88
  "types": "types/index.d.ts",
89
89
  "dependencies": {
90
- "@tsparticles/basic": "^3.0.0",
91
- "@tsparticles/engine": "^3.0.0",
92
- "@tsparticles/plugin-emitters": "^3.0.0",
93
- "@tsparticles/updater-destroy": "^3.0.0"
90
+ "@tsparticles/basic": "^3.0.3",
91
+ "@tsparticles/engine": "^3.0.3",
92
+ "@tsparticles/plugin-emitters": "^3.0.3",
93
+ "@tsparticles/updater-destroy": "^3.0.3"
94
94
  },
95
95
  "publishConfig": {
96
96
  "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-fountain [5 Dec 2023 at 01:41]</title>
6
+ <title>@tsparticles/preset-fountain [5 Jan 2024 at 01:12]</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.fountain.bundle.js","isAsset":true,"statSize":245591,"parsedSize":246889,"gzipSize":40276,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":245591,"groups":[{"id":943,"label":"bundle.js + 120 modules (concatenated)","path":"./dist/browser/bundle.js + 120 modules (concatenated)","statSize":245591,"parsedSize":246889,"gzipSize":40276,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser","statSize":2097,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/bundle.js","statSize":167,"parsedSize":167,"gzipSize":27,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/index.js","statSize":463,"parsedSize":465,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/options.js","statSize":1467,"parsedSize":1474,"gzipSize":240,"inaccurateSizes":true}],"parsedSize":2108,"gzipSize":343,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm","statSize":243494,"groups":[{"label":"@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","statSize":175097,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":250,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":492,"gzipSize":80,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12082,"gzipSize":1971,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4665,"gzipSize":761,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4566,"gzipSize":744,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8767,"gzipSize":1430,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":453,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1391,"gzipSize":226,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1228,"gzipSize":200,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1184,"gzipSize":193,"inaccurateSizes":true}],"parsedSize":34338,"gzipSize":5601,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4926,"gzipSize":803,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core","statSize":93711,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8635,"parsedSize":8680,"gzipSize":1416,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":370,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2751,"gzipSize":448,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":591,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1107,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":915,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14200,"gzipSize":2316,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2072,"gzipSize":338,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1828,"gzipSize":298,"inaccurateSizes":true}],"parsedSize":24101,"gzipSize":3931,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15669,"gzipSize":2556,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16318,"gzipSize":2662,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12247,"parsedSize":12311,"gzipSize":2008,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1767,"gzipSize":288,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15276,"parsedSize":15356,"gzipSize":2505,"inaccurateSizes":true}],"parsedSize":94206,"gzipSize":15368,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6216,"gzipSize":1014,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":955,"gzipSize":155,"inaccurateSizes":true}],"parsedSize":955,"gzipSize":155,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":622,"gzipSize":101,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":802,"gzipSize":130,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":505,"gzipSize":82,"inaccurateSizes":true}],"parsedSize":1307,"gzipSize":213,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":566,"gzipSize":92,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":926,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":356,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":598,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":482,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":474,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":374,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":3213,"gzipSize":524,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":603,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":603,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":4384,"gzipSize":715,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":477,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":692,"gzipSize":112,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":530,"gzipSize":86,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":469,"gzipSize":76,"inaccurateSizes":true}],"parsedSize":1000,"gzipSize":163,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3553,"gzipSize":579,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1011,"gzipSize":164,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":373,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1631,"gzipSize":266,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":401,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":191,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":592,"gzipSize":96,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3080,"gzipSize":502,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":452,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":850,"gzipSize":138,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":736,"gzipSize":120,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":739,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":739,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":545,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":619,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":552,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":443,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":367,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8389,"gzipSize":1368,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":550,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":426,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":977,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":881,"gzipSize":143,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":869,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":869,"gzipSize":141,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":538,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":423,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":962,"gzipSize":156,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":604,"gzipSize":98,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":651,"gzipSize":106,"inaccurateSizes":true}],"parsedSize":651,"gzipSize":106,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":544,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":537,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":364,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":1447,"gzipSize":236,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":868,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":868,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":21428,"gzipSize":3495,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1072,"gzipSize":174,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":390,"gzipSize":63,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":476,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1393,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1027,"gzipSize":167,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":41807,"gzipSize":6820,"inaccurateSizes":true}],"parsedSize":176022,"gzipSize":28715,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":734,"gzipSize":119,"inaccurateSizes":true}],"parsedSize":734,"gzipSize":119,"inaccurateSizes":true},{"label":"@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser","statSize":8422,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/index.js","statSize":234,"parsedSize":235,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"DestroyUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/DestroyUpdater.js","statSize":2429,"parsedSize":2441,"gzipSize":398,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes","statSize":2862,"groups":[{"id":null,"label":"Destroy.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Destroy.js","statSize":505,"parsedSize":507,"gzipSize":82,"inaccurateSizes":true},{"id":null,"label":"DestroyBounds.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/DestroyBounds.js","statSize":560,"parsedSize":562,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"Split.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Split.js","statSize":1432,"parsedSize":1439,"gzipSize":234,"inaccurateSizes":true},{"id":null,"label":"SplitFactor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitFactor.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"SplitRate.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitRate.js","statSize":190,"parsedSize":191,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":2877,"gzipSize":469,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Utils.js","statSize":2897,"parsedSize":2912,"gzipSize":475,"inaccurateSizes":true}],"parsedSize":8466,"gzipSize":1381,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","statSize":25502,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4292,"gzipSize":700,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2085,"gzipSize":340,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":596,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":463,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":594,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":485,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":376,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":4602,"gzipSize":750,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4347,"gzipSize":709,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":445,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11886,"parsedSize":11948,"gzipSize":1949,"inaccurateSizes":true}],"parsedSize":25636,"gzipSize":4182,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2762,"gzipSize":450,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4807,"gzipSize":784,"inaccurateSizes":true}],"parsedSize":7745,"gzipSize":1263,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":182,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":851,"gzipSize":138,"inaccurateSizes":true}],"parsedSize":1034,"gzipSize":168,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":217,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1045,"gzipSize":170,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2172,"gzipSize":354,"inaccurateSizes":true}],"parsedSize":3435,"gzipSize":560,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":227,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1455,"gzipSize":237,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2004,"gzipSize":327,"inaccurateSizes":true}],"parsedSize":3687,"gzipSize":601,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":241,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1294,"gzipSize":211,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1317,"gzipSize":214,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1286,"gzipSize":209,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1797,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5732,"gzipSize":935,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3011,"gzipSize":491,"inaccurateSizes":true}],"parsedSize":14682,"gzipSize":2395,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":194,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1131,"gzipSize":184,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2009,"gzipSize":327,"inaccurateSizes":true}],"parsedSize":3335,"gzipSize":544,"inaccurateSizes":true}],"parsedSize":244780,"gzipSize":39932,"inaccurateSizes":true}]}],"parsedSize":246889,"gzipSize":40276}],"isInitialByEntrypoint":{"tsparticles.preset.fountain.bundle":true}}];
34
+ window.chartData = [{"label":"tsparticles.preset.fountain.bundle.js","isAsset":true,"statSize":246347,"parsedSize":247633,"gzipSize":40369,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":246347,"groups":[{"id":642,"label":"bundle.js + 120 modules (concatenated)","path":"./dist/browser/bundle.js + 120 modules (concatenated)","statSize":246347,"parsedSize":247633,"gzipSize":40369,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser","statSize":2114,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/bundle.js","statSize":181,"parsedSize":181,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/index.js","statSize":466,"parsedSize":468,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/dist/browser/options.js","statSize":1467,"parsedSize":1474,"gzipSize":240,"inaccurateSizes":true}],"parsedSize":2125,"gzipSize":346,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm","statSize":244233,"groups":[{"label":"@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":250,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":492,"gzipSize":80,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12081,"gzipSize":1969,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4665,"gzipSize":760,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4565,"gzipSize":744,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8766,"gzipSize":1429,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":453,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1391,"gzipSize":226,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1228,"gzipSize":200,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1184,"gzipSize":193,"inaccurateSizes":true}],"parsedSize":34336,"gzipSize":5597,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4926,"gzipSize":803,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8657,"parsedSize":8702,"gzipSize":1418,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":370,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2751,"gzipSize":448,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":591,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1107,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":915,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 120 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 + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14199,"gzipSize":2314,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2072,"gzipSize":337,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1828,"gzipSize":298,"inaccurateSizes":true}],"parsedSize":24100,"gzipSize":3928,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15668,"gzipSize":2554,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16317,"gzipSize":2660,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12721,"parsedSize":12787,"gzipSize":2084,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1767,"gzipSize":288,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15452,"parsedSize":15532,"gzipSize":2532,"inaccurateSizes":true}],"parsedSize":94875,"gzipSize":15466,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6216,"gzipSize":1013,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":954,"gzipSize":155,"inaccurateSizes":true}],"parsedSize":954,"gzipSize":155,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":622,"gzipSize":101,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":802,"gzipSize":130,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":505,"gzipSize":82,"inaccurateSizes":true}],"parsedSize":1307,"gzipSize":213,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":566,"gzipSize":92,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":926,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":356,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":598,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":482,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":474,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":374,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":3213,"gzipSize":523,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":603,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":603,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":4383,"gzipSize":714,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":477,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":692,"gzipSize":112,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":530,"gzipSize":86,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":469,"gzipSize":76,"inaccurateSizes":true}],"parsedSize":1000,"gzipSize":163,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3553,"gzipSize":579,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1011,"gzipSize":164,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":373,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1631,"gzipSize":265,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":401,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 120 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":592,"gzipSize":96,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3079,"gzipSize":502,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":452,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":850,"gzipSize":138,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":736,"gzipSize":120,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 120 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 + 120 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":739,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":739,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":545,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":619,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":552,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":443,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":367,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":8388,"gzipSize":1367,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":550,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":426,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":977,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":881,"gzipSize":143,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":869,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":869,"gzipSize":141,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":538,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":423,"gzipSize":68,"inaccurateSizes":true}],"parsedSize":961,"gzipSize":156,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":604,"gzipSize":98,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":651,"gzipSize":106,"inaccurateSizes":true}],"parsedSize":651,"gzipSize":106,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":544,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":537,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":364,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":1447,"gzipSize":235,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":868,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":868,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":21427,"gzipSize":3493,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1072,"gzipSize":174,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":390,"gzipSize":63,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":476,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1393,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1027,"gzipSize":167,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":41805,"gzipSize":6815,"inaccurateSizes":true}],"parsedSize":176686,"gzipSize":28803,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":734,"gzipSize":119,"inaccurateSizes":true}],"parsedSize":734,"gzipSize":119,"inaccurateSizes":true},{"label":"@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser","statSize":8422,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/index.js","statSize":234,"parsedSize":235,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"DestroyUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/DestroyUpdater.js","statSize":2429,"parsedSize":2441,"gzipSize":398,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes","statSize":2862,"groups":[{"id":null,"label":"Destroy.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Destroy.js","statSize":505,"parsedSize":507,"gzipSize":82,"inaccurateSizes":true},{"id":null,"label":"DestroyBounds.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/DestroyBounds.js","statSize":560,"parsedSize":562,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"Split.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Split.js","statSize":1432,"parsedSize":1439,"gzipSize":234,"inaccurateSizes":true},{"id":null,"label":"SplitFactor.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitFactor.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"SplitRate.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitRate.js","statSize":190,"parsedSize":190,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":2876,"gzipSize":468,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.3/node_modules/@tsparticles/updater-destroy/browser/Utils.js","statSize":2897,"parsedSize":2912,"gzipSize":474,"inaccurateSizes":true}],"parsedSize":8465,"gzipSize":1380,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4292,"gzipSize":699,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2085,"gzipSize":340,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":596,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":463,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":594,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":485,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":376,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":4601,"gzipSize":750,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4347,"gzipSize":708,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":445,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11953,"parsedSize":12015,"gzipSize":1958,"inaccurateSizes":true}],"parsedSize":25702,"gzipSize":4190,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2762,"gzipSize":450,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4806,"gzipSize":783,"inaccurateSizes":true}],"parsedSize":7745,"gzipSize":1262,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":182,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":851,"gzipSize":138,"inaccurateSizes":true}],"parsedSize":1034,"gzipSize":168,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":217,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1045,"gzipSize":170,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2172,"gzipSize":354,"inaccurateSizes":true}],"parsedSize":3434,"gzipSize":559,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":227,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1455,"gzipSize":237,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2004,"gzipSize":326,"inaccurateSizes":true}],"parsedSize":3687,"gzipSize":601,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":241,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1294,"gzipSize":211,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1317,"gzipSize":214,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1286,"gzipSize":209,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1797,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5731,"gzipSize":934,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3011,"gzipSize":490,"inaccurateSizes":true}],"parsedSize":14681,"gzipSize":2393,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 120 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 + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":194,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1131,"gzipSize":184,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 120 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2009,"gzipSize":327,"inaccurateSizes":true}],"parsedSize":3335,"gzipSize":543,"inaccurateSizes":true}],"parsedSize":245507,"gzipSize":40022,"inaccurateSizes":true}]}],"parsedSize":247633,"gzipSize":40369}],"isInitialByEntrypoint":{"tsparticles.preset.fountain.bundle":true}}];
35
35
  window.entrypoints = ["tsparticles.preset.fountain.bundle","tsparticles.preset.fountain.bundle.min"];
36
36
  window.defaultSizes = "parsed";
37
37
  </script>