@tsparticles/interaction-particles-links 3.3.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/browser/LinkInstance.js +5 -5
  2. package/browser/Linker.js +3 -3
  3. package/browser/LinksPlugin.js +3 -3
  4. package/browser/Utils.js +1 -1
  5. package/browser/index.js +2 -1
  6. package/browser/interaction.js +2 -2
  7. package/browser/plugin.js +2 -1
  8. package/cjs/LinkInstance.js +5 -5
  9. package/cjs/Linker.js +3 -3
  10. package/cjs/LinksPlugin.js +3 -3
  11. package/cjs/Utils.js +1 -1
  12. package/cjs/index.js +4 -3
  13. package/cjs/interaction.js +2 -2
  14. package/cjs/plugin.js +2 -1
  15. package/esm/LinkInstance.js +5 -5
  16. package/esm/Linker.js +3 -3
  17. package/esm/LinksPlugin.js +3 -3
  18. package/esm/Utils.js +1 -1
  19. package/esm/index.js +2 -1
  20. package/esm/interaction.js +2 -2
  21. package/esm/plugin.js +2 -1
  22. package/package.json +2 -2
  23. package/report.html +1 -1
  24. package/tsparticles.interaction.particles.links.js +72 -200
  25. package/tsparticles.interaction.particles.links.min.js +1 -1
  26. package/tsparticles.interaction.particles.links.min.js.LICENSE.txt +1 -1
  27. package/types/LinksPlugin.d.ts +1 -1
  28. package/umd/LinkInstance.js +5 -5
  29. package/umd/Linker.js +3 -3
  30. package/umd/LinksPlugin.js +4 -28
  31. package/umd/Utils.js +1 -1
  32. package/umd/index.js +5 -17
  33. package/umd/interaction.js +3 -27
  34. package/umd/plugin.js +3 -26
  35. package/33.min.js +0 -2
  36. package/33.min.js.LICENSE.txt +0 -1
  37. package/38.min.js +0 -2
  38. package/38.min.js.LICENSE.txt +0 -1
  39. package/572.min.js +0 -2
  40. package/572.min.js.LICENSE.txt +0 -1
  41. package/905.min.js +0 -2
  42. package/905.min.js.LICENSE.txt +0 -1
  43. package/958.min.js +0 -2
  44. package/958.min.js.LICENSE.txt +0 -1
  45. package/dist_browser_LinkInstance_js.js +0 -40
  46. package/dist_browser_Linker_js.js +0 -40
  47. package/dist_browser_LinksPlugin_js.js +0 -30
  48. package/dist_browser_interaction_js.js +0 -30
  49. package/dist_browser_plugin_js.js +0 -30
@@ -11,7 +11,7 @@ export class LinkInstance {
11
11
  }
12
12
  const container = this.container, options = container.actualOptions, p2 = link.destination, pos1 = p1.getPosition(), pos2 = p2.getPosition();
13
13
  let opacity = link.opacity;
14
- container.canvas.draw((ctx) => {
14
+ container.canvas.draw(ctx => {
15
15
  let colorLine;
16
16
  const twinkle = p1.options.twinkle?.lines;
17
17
  if (twinkle?.enable) {
@@ -58,7 +58,7 @@ export class LinkInstance {
58
58
  if (opacityTriangle <= minOpacity) {
59
59
  return;
60
60
  }
61
- container.canvas.draw((ctx) => {
61
+ container.canvas.draw(ctx => {
62
62
  const pos1 = p1.getPosition(), pos2 = p2.getPosition(), pos3 = p3.getPosition(), linksDistance = p1.retina.linksDistance ?? minDistance;
63
63
  if (getDistance(pos1, pos2) > linksDistance ||
64
64
  getDistance(pos3, pos2) > linksDistance ||
@@ -91,11 +91,11 @@ export class LinkInstance {
91
91
  if (!(options.links?.triangles.enable && p2.options.links?.triangles.enable)) {
92
92
  return;
93
93
  }
94
- const vertices = p2.links?.filter((t) => {
94
+ const vertices = p2.links?.filter(t => {
95
95
  const linkFreq = this._getLinkFrequency(p2, t.destination), minCount = 0;
96
96
  return (p2.options.links &&
97
97
  linkFreq <= p2.options.links.frequency &&
98
- p1Links.findIndex((l) => l.destination === t.destination) >= minCount);
98
+ p1Links.findIndex(l => l.destination === t.destination) >= minCount);
99
99
  });
100
100
  if (!vertices?.length) {
101
101
  return;
@@ -124,7 +124,7 @@ export class LinkInstance {
124
124
  if (!links?.length) {
125
125
  return;
126
126
  }
127
- const p1Links = links.filter((l) => options.links &&
127
+ const p1Links = links.filter(l => options.links &&
128
128
  (options.links.frequency >= maxFrequency ||
129
129
  this._getLinkFrequency(particle, l.destination) <= options.links.frequency));
130
130
  for (const link of p1Links) {
package/browser/Linker.js CHANGED
@@ -22,7 +22,7 @@ function getLinkDistance(pos1, pos2, optDistance, canvasSize, warp) {
22
22
  export class Linker extends ParticlesInteractorBase {
23
23
  constructor(container) {
24
24
  super(container);
25
- this._setColor = (p1) => {
25
+ this._setColor = p1 => {
26
26
  if (!p1.options.links) {
27
27
  return;
28
28
  }
@@ -76,8 +76,8 @@ export class Linker extends ParticlesInteractorBase {
76
76
  p2.spawning ||
77
77
  p2.destroyed ||
78
78
  !p2.links ||
79
- p1.links.some((t) => t.destination === p2) ||
80
- p2.links.some((t) => t.destination === p1)) {
79
+ p1.links.some(t => t.destination === p2) ||
80
+ p2.links.some(t => t.destination === p1)) {
81
81
  continue;
82
82
  }
83
83
  const pos2 = p2.getPosition();
@@ -1,10 +1,10 @@
1
+ import { LinkInstance } from "./LinkInstance.js";
1
2
  export class LinksPlugin {
2
3
  constructor() {
3
4
  this.id = "links";
4
5
  }
5
- async getPlugin(container) {
6
- const { LinkInstance } = await import("./LinkInstance.js");
7
- return new LinkInstance(container);
6
+ getPlugin(container) {
7
+ return Promise.resolve(new LinkInstance(container));
8
8
  }
9
9
  loadOptions() {
10
10
  }
package/browser/Utils.js CHANGED
@@ -90,7 +90,7 @@ export function getLinkKey(ids) {
90
90
  return ids.join("_");
91
91
  }
92
92
  export function setLinkFrequency(particles, dictionary) {
93
- const key = getLinkKey(particles.map((t) => t.id));
93
+ const key = getLinkKey(particles.map(t => t.id));
94
94
  let res = dictionary.get(key);
95
95
  if (res === undefined) {
96
96
  res = getRandom();
package/browser/index.js CHANGED
@@ -1,5 +1,6 @@
1
+ import { loadLinksInteraction } from "./interaction.js";
2
+ import { loadLinksPlugin } from "./plugin.js";
1
3
  export async function loadParticlesLinksInteraction(engine, refresh = true) {
2
- const { loadLinksInteraction } = await import("./interaction.js"), { loadLinksPlugin } = await import("./plugin.js");
3
4
  await loadLinksInteraction(engine, refresh);
4
5
  await loadLinksPlugin(engine, refresh);
5
6
  }
@@ -1,6 +1,6 @@
1
+ import { Linker } from "./Linker.js";
1
2
  export async function loadLinksInteraction(engine, refresh = true) {
2
3
  await engine.addInteractor("particlesLinks", async (container) => {
3
- const { Linker } = await import("./Linker.js");
4
- return new Linker(container);
4
+ return Promise.resolve(new Linker(container));
5
5
  }, refresh);
6
6
  }
package/browser/plugin.js CHANGED
@@ -1,4 +1,5 @@
1
+ import { LinksPlugin } from "./LinksPlugin.js";
1
2
  export async function loadLinksPlugin(engine, refresh = true) {
2
- const { LinksPlugin } = await import("./LinksPlugin.js"), plugin = new LinksPlugin();
3
+ const plugin = new LinksPlugin();
3
4
  await engine.addPlugin(plugin, refresh);
4
5
  }
@@ -14,7 +14,7 @@ class LinkInstance {
14
14
  }
15
15
  const container = this.container, options = container.actualOptions, p2 = link.destination, pos1 = p1.getPosition(), pos2 = p2.getPosition();
16
16
  let opacity = link.opacity;
17
- container.canvas.draw((ctx) => {
17
+ container.canvas.draw(ctx => {
18
18
  let colorLine;
19
19
  const twinkle = p1.options.twinkle?.lines;
20
20
  if (twinkle?.enable) {
@@ -61,7 +61,7 @@ class LinkInstance {
61
61
  if (opacityTriangle <= minOpacity) {
62
62
  return;
63
63
  }
64
- container.canvas.draw((ctx) => {
64
+ container.canvas.draw(ctx => {
65
65
  const pos1 = p1.getPosition(), pos2 = p2.getPosition(), pos3 = p3.getPosition(), linksDistance = p1.retina.linksDistance ?? minDistance;
66
66
  if ((0, engine_1.getDistance)(pos1, pos2) > linksDistance ||
67
67
  (0, engine_1.getDistance)(pos3, pos2) > linksDistance ||
@@ -94,11 +94,11 @@ class LinkInstance {
94
94
  if (!(options.links?.triangles.enable && p2.options.links?.triangles.enable)) {
95
95
  return;
96
96
  }
97
- const vertices = p2.links?.filter((t) => {
97
+ const vertices = p2.links?.filter(t => {
98
98
  const linkFreq = this._getLinkFrequency(p2, t.destination), minCount = 0;
99
99
  return (p2.options.links &&
100
100
  linkFreq <= p2.options.links.frequency &&
101
- p1Links.findIndex((l) => l.destination === t.destination) >= minCount);
101
+ p1Links.findIndex(l => l.destination === t.destination) >= minCount);
102
102
  });
103
103
  if (!vertices?.length) {
104
104
  return;
@@ -127,7 +127,7 @@ class LinkInstance {
127
127
  if (!links?.length) {
128
128
  return;
129
129
  }
130
- const p1Links = links.filter((l) => options.links &&
130
+ const p1Links = links.filter(l => options.links &&
131
131
  (options.links.frequency >= maxFrequency ||
132
132
  this._getLinkFrequency(particle, l.destination) <= options.links.frequency));
133
133
  for (const link of p1Links) {
package/cjs/Linker.js CHANGED
@@ -25,7 +25,7 @@ function getLinkDistance(pos1, pos2, optDistance, canvasSize, warp) {
25
25
  class Linker extends engine_1.ParticlesInteractorBase {
26
26
  constructor(container) {
27
27
  super(container);
28
- this._setColor = (p1) => {
28
+ this._setColor = p1 => {
29
29
  if (!p1.options.links) {
30
30
  return;
31
31
  }
@@ -79,8 +79,8 @@ class Linker extends engine_1.ParticlesInteractorBase {
79
79
  p2.spawning ||
80
80
  p2.destroyed ||
81
81
  !p2.links ||
82
- p1.links.some((t) => t.destination === p2) ||
83
- p2.links.some((t) => t.destination === p1)) {
82
+ p1.links.some(t => t.destination === p2) ||
83
+ p2.links.some(t => t.destination === p1)) {
84
84
  continue;
85
85
  }
86
86
  const pos2 = p2.getPosition();
@@ -1,13 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LinksPlugin = void 0;
4
+ const LinkInstance_js_1 = require("./LinkInstance.js");
4
5
  class LinksPlugin {
5
6
  constructor() {
6
7
  this.id = "links";
7
8
  }
8
- async getPlugin(container) {
9
- const { LinkInstance } = await import("./LinkInstance.js");
10
- return new LinkInstance(container);
9
+ getPlugin(container) {
10
+ return Promise.resolve(new LinkInstance_js_1.LinkInstance(container));
11
11
  }
12
12
  loadOptions() {
13
13
  }
package/cjs/Utils.js CHANGED
@@ -97,7 +97,7 @@ function getLinkKey(ids) {
97
97
  }
98
98
  exports.getLinkKey = getLinkKey;
99
99
  function setLinkFrequency(particles, dictionary) {
100
- const key = getLinkKey(particles.map((t) => t.id));
100
+ const key = getLinkKey(particles.map(t => t.id));
101
101
  let res = dictionary.get(key);
102
102
  if (res === undefined) {
103
103
  res = (0, engine_1.getRandom)();
package/cjs/index.js CHANGED
@@ -15,10 +15,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.loadParticlesLinksInteraction = void 0;
18
+ const interaction_js_1 = require("./interaction.js");
19
+ const plugin_js_1 = require("./plugin.js");
18
20
  async function loadParticlesLinksInteraction(engine, refresh = true) {
19
- const { loadLinksInteraction } = await import("./interaction.js"), { loadLinksPlugin } = await import("./plugin.js");
20
- await loadLinksInteraction(engine, refresh);
21
- await loadLinksPlugin(engine, refresh);
21
+ await (0, interaction_js_1.loadLinksInteraction)(engine, refresh);
22
+ await (0, plugin_js_1.loadLinksPlugin)(engine, refresh);
22
23
  }
23
24
  exports.loadParticlesLinksInteraction = loadParticlesLinksInteraction;
24
25
  __exportStar(require("./Options/Classes/Links.js"), exports);
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.loadLinksInteraction = void 0;
4
+ const Linker_js_1 = require("./Linker.js");
4
5
  async function loadLinksInteraction(engine, refresh = true) {
5
6
  await engine.addInteractor("particlesLinks", async (container) => {
6
- const { Linker } = await import("./Linker.js");
7
- return new Linker(container);
7
+ return Promise.resolve(new Linker_js_1.Linker(container));
8
8
  }, refresh);
9
9
  }
10
10
  exports.loadLinksInteraction = loadLinksInteraction;
package/cjs/plugin.js CHANGED
@@ -1,8 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.loadLinksPlugin = void 0;
4
+ const LinksPlugin_js_1 = require("./LinksPlugin.js");
4
5
  async function loadLinksPlugin(engine, refresh = true) {
5
- const { LinksPlugin } = await import("./LinksPlugin.js"), plugin = new LinksPlugin();
6
+ const plugin = new LinksPlugin_js_1.LinksPlugin();
6
7
  await engine.addPlugin(plugin, refresh);
7
8
  }
8
9
  exports.loadLinksPlugin = loadLinksPlugin;
@@ -11,7 +11,7 @@ export class LinkInstance {
11
11
  }
12
12
  const container = this.container, options = container.actualOptions, p2 = link.destination, pos1 = p1.getPosition(), pos2 = p2.getPosition();
13
13
  let opacity = link.opacity;
14
- container.canvas.draw((ctx) => {
14
+ container.canvas.draw(ctx => {
15
15
  let colorLine;
16
16
  const twinkle = p1.options.twinkle?.lines;
17
17
  if (twinkle?.enable) {
@@ -58,7 +58,7 @@ export class LinkInstance {
58
58
  if (opacityTriangle <= minOpacity) {
59
59
  return;
60
60
  }
61
- container.canvas.draw((ctx) => {
61
+ container.canvas.draw(ctx => {
62
62
  const pos1 = p1.getPosition(), pos2 = p2.getPosition(), pos3 = p3.getPosition(), linksDistance = p1.retina.linksDistance ?? minDistance;
63
63
  if (getDistance(pos1, pos2) > linksDistance ||
64
64
  getDistance(pos3, pos2) > linksDistance ||
@@ -91,11 +91,11 @@ export class LinkInstance {
91
91
  if (!(options.links?.triangles.enable && p2.options.links?.triangles.enable)) {
92
92
  return;
93
93
  }
94
- const vertices = p2.links?.filter((t) => {
94
+ const vertices = p2.links?.filter(t => {
95
95
  const linkFreq = this._getLinkFrequency(p2, t.destination), minCount = 0;
96
96
  return (p2.options.links &&
97
97
  linkFreq <= p2.options.links.frequency &&
98
- p1Links.findIndex((l) => l.destination === t.destination) >= minCount);
98
+ p1Links.findIndex(l => l.destination === t.destination) >= minCount);
99
99
  });
100
100
  if (!vertices?.length) {
101
101
  return;
@@ -124,7 +124,7 @@ export class LinkInstance {
124
124
  if (!links?.length) {
125
125
  return;
126
126
  }
127
- const p1Links = links.filter((l) => options.links &&
127
+ const p1Links = links.filter(l => options.links &&
128
128
  (options.links.frequency >= maxFrequency ||
129
129
  this._getLinkFrequency(particle, l.destination) <= options.links.frequency));
130
130
  for (const link of p1Links) {
package/esm/Linker.js CHANGED
@@ -22,7 +22,7 @@ function getLinkDistance(pos1, pos2, optDistance, canvasSize, warp) {
22
22
  export class Linker extends ParticlesInteractorBase {
23
23
  constructor(container) {
24
24
  super(container);
25
- this._setColor = (p1) => {
25
+ this._setColor = p1 => {
26
26
  if (!p1.options.links) {
27
27
  return;
28
28
  }
@@ -76,8 +76,8 @@ export class Linker extends ParticlesInteractorBase {
76
76
  p2.spawning ||
77
77
  p2.destroyed ||
78
78
  !p2.links ||
79
- p1.links.some((t) => t.destination === p2) ||
80
- p2.links.some((t) => t.destination === p1)) {
79
+ p1.links.some(t => t.destination === p2) ||
80
+ p2.links.some(t => t.destination === p1)) {
81
81
  continue;
82
82
  }
83
83
  const pos2 = p2.getPosition();
@@ -1,10 +1,10 @@
1
+ import { LinkInstance } from "./LinkInstance.js";
1
2
  export class LinksPlugin {
2
3
  constructor() {
3
4
  this.id = "links";
4
5
  }
5
- async getPlugin(container) {
6
- const { LinkInstance } = await import("./LinkInstance.js");
7
- return new LinkInstance(container);
6
+ getPlugin(container) {
7
+ return Promise.resolve(new LinkInstance(container));
8
8
  }
9
9
  loadOptions() {
10
10
  }
package/esm/Utils.js CHANGED
@@ -90,7 +90,7 @@ export function getLinkKey(ids) {
90
90
  return ids.join("_");
91
91
  }
92
92
  export function setLinkFrequency(particles, dictionary) {
93
- const key = getLinkKey(particles.map((t) => t.id));
93
+ const key = getLinkKey(particles.map(t => t.id));
94
94
  let res = dictionary.get(key);
95
95
  if (res === undefined) {
96
96
  res = getRandom();
package/esm/index.js CHANGED
@@ -1,5 +1,6 @@
1
+ import { loadLinksInteraction } from "./interaction.js";
2
+ import { loadLinksPlugin } from "./plugin.js";
1
3
  export async function loadParticlesLinksInteraction(engine, refresh = true) {
2
- const { loadLinksInteraction } = await import("./interaction.js"), { loadLinksPlugin } = await import("./plugin.js");
3
4
  await loadLinksInteraction(engine, refresh);
4
5
  await loadLinksPlugin(engine, refresh);
5
6
  }
@@ -1,6 +1,6 @@
1
+ import { Linker } from "./Linker.js";
1
2
  export async function loadLinksInteraction(engine, refresh = true) {
2
3
  await engine.addInteractor("particlesLinks", async (container) => {
3
- const { Linker } = await import("./Linker.js");
4
- return new Linker(container);
4
+ return Promise.resolve(new Linker(container));
5
5
  }, refresh);
6
6
  }
package/esm/plugin.js CHANGED
@@ -1,4 +1,5 @@
1
+ import { LinksPlugin } from "./LinksPlugin.js";
1
2
  export async function loadLinksPlugin(engine, refresh = true) {
2
- const { LinksPlugin } = await import("./LinksPlugin.js"), plugin = new LinksPlugin();
3
+ const plugin = new LinksPlugin();
3
4
  await engine.addPlugin(plugin, refresh);
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/interaction-particles-links",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "tsParticles links particles interaction",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -87,7 +87,7 @@
87
87
  "./package.json": "./package.json"
88
88
  },
89
89
  "dependencies": {
90
- "@tsparticles/engine": "^3.3.0"
90
+ "@tsparticles/engine": "^3.4.0"
91
91
  },
92
92
  "publishConfig": {
93
93
  "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/interaction-particles-links [27 Feb 2024 at 12:15]</title>
6
+ <title>@tsparticles/interaction-particles-links [13 May 2024 at 00:08]</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>