sliveshow 0.1.3__py3-none-any.whl
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.
- sliveshow/__init__.py +16 -0
- sliveshow/_version.py +4 -0
- sliveshow/labextension/package.json +206 -0
- sliveshow/labextension/schemas/sliveshow/package.json.orig +201 -0
- sliveshow/labextension/schemas/sliveshow/plugin.json +125 -0
- sliveshow/labextension/static/399.856324315434eec63212.js +1 -0
- sliveshow/labextension/static/408.877863204af624202a68.js +2 -0
- sliveshow/labextension/static/408.877863204af624202a68.js.LICENSE.txt +7 -0
- sliveshow/labextension/static/626.7ccd3fd7917ab8abb96f.js +1 -0
- sliveshow/labextension/static/645.22f99615d2108f1f4f1f.js +1 -0
- sliveshow/labextension/static/851.e8b44e0bce1cf5355894.js +1 -0
- sliveshow/labextension/static/863.8ff9879cc50492569466.js +1 -0
- sliveshow/labextension/static/91.be61a6d202cea9a3a468.js +1 -0
- sliveshow/labextension/static/remoteEntry.70e8f15be5be3dd908b4.js +1 -0
- sliveshow/labextension/static/style.js +4 -0
- sliveshow/labextension/static/third-party-licenses.json +46 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/install.json +5 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/package.json +206 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/schemas/sliveshow/package.json.orig +201 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/schemas/sliveshow/plugin.json +125 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/399.856324315434eec63212.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/408.877863204af624202a68.js +2 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/408.877863204af624202a68.js.LICENSE.txt +7 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/626.7ccd3fd7917ab8abb96f.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/645.22f99615d2108f1f4f1f.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/851.e8b44e0bce1cf5355894.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/863.8ff9879cc50492569466.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/91.be61a6d202cea9a3a468.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/remoteEntry.70e8f15be5be3dd908b4.js +1 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/style.js +4 -0
- sliveshow-0.1.3.data/data/share/jupyter/labextensions/sliveshow/static/third-party-licenses.json +46 -0
- sliveshow-0.1.3.dist-info/METADATA +198 -0
- sliveshow-0.1.3.dist-info/RECORD +35 -0
- sliveshow-0.1.3.dist-info/WHEEL +4 -0
- sliveshow-0.1.3.dist-info/licenses/LICENSE +29 -0
sliveshow/__init__.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
try:
|
|
2
|
+
from ..custom_slideshow._version import __version__
|
|
3
|
+
except ImportError:
|
|
4
|
+
# Fallback when using the package in dev mode without installing
|
|
5
|
+
# in editable mode with pip. It is highly recommended to install
|
|
6
|
+
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
|
|
7
|
+
import warnings
|
|
8
|
+
warnings.warn("Importing 'dive_custom_slideshow' outside a proper installation.")
|
|
9
|
+
__version__ = "dev"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _jupyter_labextension_paths():
|
|
13
|
+
return [{
|
|
14
|
+
"src": "labextension",
|
|
15
|
+
"dest": "dive_custom_slideshow"
|
|
16
|
+
}]
|
sliveshow/_version.py
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sliveshow",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "JupyterLab extension for animated slideshow.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jupyter",
|
|
7
|
+
"jupyterlab",
|
|
8
|
+
"jupyterlab-extension"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/ccha23/fyp-custom-slideshow",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/AlyanAamirAhmedani/sliveshow/issues"
|
|
13
|
+
},
|
|
14
|
+
"license": "BSD-3-Clause",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Alyan Ahmedani",
|
|
17
|
+
"email": "ahmedanialyanaamir@gmail.com"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
|
21
|
+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
|
22
|
+
"src/**/*.{ts,tsx}",
|
|
23
|
+
"schema/*.json"
|
|
24
|
+
],
|
|
25
|
+
"main": "lib/index.js",
|
|
26
|
+
"types": "lib/index.d.ts",
|
|
27
|
+
"style": "style/index.css",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/AlyanAamirAhmedani/sliveshow.git"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "jlpm build:lib && jlpm build:labextension:dev",
|
|
34
|
+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
|
|
35
|
+
"build:labextension": "jupyter labextension build .",
|
|
36
|
+
"build:labextension:dev": "jupyter labextension build --development True .",
|
|
37
|
+
"build:lib": "tsc --sourceMap",
|
|
38
|
+
"build:lib:prod": "tsc",
|
|
39
|
+
"clean": "jlpm clean:lib",
|
|
40
|
+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
41
|
+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
|
42
|
+
"clean:labextension": "rimraf sliveshow/labextension sliveshow/_version.py",
|
|
43
|
+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
|
44
|
+
"eslint": "jlpm eslint:check --fix",
|
|
45
|
+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
|
46
|
+
"install:extension": "jlpm build",
|
|
47
|
+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
|
48
|
+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
|
49
|
+
"prettier": "jlpm prettier:base --write --list-different",
|
|
50
|
+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
51
|
+
"prettier:check": "jlpm prettier:base --check",
|
|
52
|
+
"stylelint": "jlpm stylelint:check --fix",
|
|
53
|
+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
|
54
|
+
"test": "jest --coverage",
|
|
55
|
+
"watch": "run-p watch:src watch:labextension",
|
|
56
|
+
"watch:src": "tsc -w --sourceMap",
|
|
57
|
+
"watch:labextension": "jupyter labextension watch ."
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@jupyterlab/application": "^4.5.0",
|
|
61
|
+
"@jupyterlab/settingregistry": "^4.5.0",
|
|
62
|
+
"@mathjax/src": "4",
|
|
63
|
+
"@svgdotjs/svg.js": "^3.2.5",
|
|
64
|
+
"@types/reveal.js": "^5.2.2",
|
|
65
|
+
"reveal.js": "^5.2.1"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@jupyterlab/builder": "^4.5.0",
|
|
69
|
+
"@jupyterlab/testutils": "^4.5.0",
|
|
70
|
+
"@types/jest": "^29.2.0",
|
|
71
|
+
"@types/json-schema": "^7.0.11",
|
|
72
|
+
"@types/react": "^18.0.26",
|
|
73
|
+
"@types/react-addons-linked-state-mixin": "^0.14.22",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
75
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
76
|
+
"css-loader": "^6.7.1",
|
|
77
|
+
"eslint": "^8.36.0",
|
|
78
|
+
"eslint-config-prettier": "^8.8.0",
|
|
79
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
80
|
+
"jest": "^29.2.0",
|
|
81
|
+
"npm-run-all2": "^7.0.1",
|
|
82
|
+
"prettier": "^3.0.0",
|
|
83
|
+
"rimraf": "^5.0.1",
|
|
84
|
+
"source-map-loader": "^1.0.2",
|
|
85
|
+
"style-loader": "^3.3.1",
|
|
86
|
+
"stylelint": "^15.10.1",
|
|
87
|
+
"stylelint-config-recommended": "^13.0.0",
|
|
88
|
+
"stylelint-config-standard": "^34.0.0",
|
|
89
|
+
"stylelint-csstree-validator": "^3.0.0",
|
|
90
|
+
"stylelint-prettier": "^4.0.0",
|
|
91
|
+
"typescript": "~5.8.0",
|
|
92
|
+
"yjs": "^13.5.0"
|
|
93
|
+
},
|
|
94
|
+
"sideEffects": [
|
|
95
|
+
"style/*.css",
|
|
96
|
+
"style/index.js"
|
|
97
|
+
],
|
|
98
|
+
"styleModule": "style/index.js",
|
|
99
|
+
"publishConfig": {
|
|
100
|
+
"access": "public"
|
|
101
|
+
},
|
|
102
|
+
"jupyterlab": {
|
|
103
|
+
"extension": true,
|
|
104
|
+
"outputDir": "sliveshow/labextension",
|
|
105
|
+
"schemaDir": "schema",
|
|
106
|
+
"_build": {
|
|
107
|
+
"load": "static/remoteEntry.70e8f15be5be3dd908b4.js",
|
|
108
|
+
"extension": "./extension",
|
|
109
|
+
"style": "./style"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"eslintIgnore": [
|
|
113
|
+
"node_modules",
|
|
114
|
+
"dist",
|
|
115
|
+
"coverage",
|
|
116
|
+
"**/*.d.ts",
|
|
117
|
+
"tests",
|
|
118
|
+
"**/__tests__",
|
|
119
|
+
"ui-tests"
|
|
120
|
+
],
|
|
121
|
+
"eslintConfig": {
|
|
122
|
+
"extends": [
|
|
123
|
+
"eslint:recommended",
|
|
124
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
|
125
|
+
"plugin:@typescript-eslint/recommended",
|
|
126
|
+
"plugin:prettier/recommended"
|
|
127
|
+
],
|
|
128
|
+
"parser": "@typescript-eslint/parser",
|
|
129
|
+
"parserOptions": {
|
|
130
|
+
"project": "tsconfig.json",
|
|
131
|
+
"sourceType": "module"
|
|
132
|
+
},
|
|
133
|
+
"plugins": [
|
|
134
|
+
"@typescript-eslint"
|
|
135
|
+
],
|
|
136
|
+
"rules": {
|
|
137
|
+
"@typescript-eslint/naming-convention": [
|
|
138
|
+
"error",
|
|
139
|
+
{
|
|
140
|
+
"selector": "interface",
|
|
141
|
+
"format": [
|
|
142
|
+
"PascalCase"
|
|
143
|
+
],
|
|
144
|
+
"custom": {
|
|
145
|
+
"regex": "^I[A-Z]",
|
|
146
|
+
"match": true
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"@typescript-eslint/no-unused-vars": [
|
|
151
|
+
"warn",
|
|
152
|
+
{
|
|
153
|
+
"args": "none"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
157
|
+
"@typescript-eslint/no-namespace": "off",
|
|
158
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
159
|
+
"@typescript-eslint/quotes": [
|
|
160
|
+
"error",
|
|
161
|
+
"single",
|
|
162
|
+
{
|
|
163
|
+
"avoidEscape": true,
|
|
164
|
+
"allowTemplateLiterals": false
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"curly": [
|
|
168
|
+
"error",
|
|
169
|
+
"all"
|
|
170
|
+
],
|
|
171
|
+
"eqeqeq": "error",
|
|
172
|
+
"prefer-arrow-callback": "error"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"prettier": {
|
|
176
|
+
"singleQuote": true,
|
|
177
|
+
"trailingComma": "none",
|
|
178
|
+
"arrowParens": "avoid",
|
|
179
|
+
"endOfLine": "auto",
|
|
180
|
+
"overrides": [
|
|
181
|
+
{
|
|
182
|
+
"files": "package.json",
|
|
183
|
+
"options": {
|
|
184
|
+
"tabWidth": 4
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
"stylelint": {
|
|
190
|
+
"extends": [
|
|
191
|
+
"stylelint-config-recommended",
|
|
192
|
+
"stylelint-config-standard",
|
|
193
|
+
"stylelint-prettier/recommended"
|
|
194
|
+
],
|
|
195
|
+
"plugins": [
|
|
196
|
+
"stylelint-csstree-validator"
|
|
197
|
+
],
|
|
198
|
+
"rules": {
|
|
199
|
+
"csstree/validator": true,
|
|
200
|
+
"property-no-vendor-prefix": null,
|
|
201
|
+
"selector-class-pattern": "^([a-z][A-z\\d]*)(-[A-z\\d]+)*$",
|
|
202
|
+
"selector-no-vendor-prefix": null,
|
|
203
|
+
"value-no-vendor-prefix": null
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sliveshow",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "JupyterLab extension for animated slideshow.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jupyter",
|
|
7
|
+
"jupyterlab",
|
|
8
|
+
"jupyterlab-extension"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/ccha23/fyp-custom-slideshow",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/AlyanAamirAhmedani/sliveshow/issues"
|
|
13
|
+
},
|
|
14
|
+
"license": "BSD-3-Clause",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Alyan Ahmedani",
|
|
17
|
+
"email": "ahmedanialyanaamir@gmail.com"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
|
21
|
+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
|
22
|
+
"src/**/*.{ts,tsx}",
|
|
23
|
+
"schema/*.json"
|
|
24
|
+
],
|
|
25
|
+
"main": "lib/index.js",
|
|
26
|
+
"types": "lib/index.d.ts",
|
|
27
|
+
"style": "style/index.css",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/AlyanAamirAhmedani/sliveshow.git"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "jlpm build:lib && jlpm build:labextension:dev",
|
|
34
|
+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
|
|
35
|
+
"build:labextension": "jupyter labextension build .",
|
|
36
|
+
"build:labextension:dev": "jupyter labextension build --development True .",
|
|
37
|
+
"build:lib": "tsc --sourceMap",
|
|
38
|
+
"build:lib:prod": "tsc",
|
|
39
|
+
"clean": "jlpm clean:lib",
|
|
40
|
+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
41
|
+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
|
42
|
+
"clean:labextension": "rimraf sliveshow/labextension sliveshow/_version.py",
|
|
43
|
+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
|
44
|
+
"eslint": "jlpm eslint:check --fix",
|
|
45
|
+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
|
46
|
+
"install:extension": "jlpm build",
|
|
47
|
+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
|
48
|
+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
|
49
|
+
"prettier": "jlpm prettier:base --write --list-different",
|
|
50
|
+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
51
|
+
"prettier:check": "jlpm prettier:base --check",
|
|
52
|
+
"stylelint": "jlpm stylelint:check --fix",
|
|
53
|
+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
|
54
|
+
"test": "jest --coverage",
|
|
55
|
+
"watch": "run-p watch:src watch:labextension",
|
|
56
|
+
"watch:src": "tsc -w --sourceMap",
|
|
57
|
+
"watch:labextension": "jupyter labextension watch ."
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@jupyterlab/application": "^4.5.0",
|
|
61
|
+
"@jupyterlab/settingregistry": "^4.5.0",
|
|
62
|
+
"@mathjax/src": "4",
|
|
63
|
+
"@svgdotjs/svg.js": "^3.2.5",
|
|
64
|
+
"@types/reveal.js": "^5.2.2",
|
|
65
|
+
"reveal.js": "^5.2.1"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@jupyterlab/builder": "^4.5.0",
|
|
69
|
+
"@jupyterlab/testutils": "^4.5.0",
|
|
70
|
+
"@types/jest": "^29.2.0",
|
|
71
|
+
"@types/json-schema": "^7.0.11",
|
|
72
|
+
"@types/react": "^18.0.26",
|
|
73
|
+
"@types/react-addons-linked-state-mixin": "^0.14.22",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
75
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
76
|
+
"css-loader": "^6.7.1",
|
|
77
|
+
"eslint": "^8.36.0",
|
|
78
|
+
"eslint-config-prettier": "^8.8.0",
|
|
79
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
80
|
+
"jest": "^29.2.0",
|
|
81
|
+
"npm-run-all2": "^7.0.1",
|
|
82
|
+
"prettier": "^3.0.0",
|
|
83
|
+
"rimraf": "^5.0.1",
|
|
84
|
+
"source-map-loader": "^1.0.2",
|
|
85
|
+
"style-loader": "^3.3.1",
|
|
86
|
+
"stylelint": "^15.10.1",
|
|
87
|
+
"stylelint-config-recommended": "^13.0.0",
|
|
88
|
+
"stylelint-config-standard": "^34.0.0",
|
|
89
|
+
"stylelint-csstree-validator": "^3.0.0",
|
|
90
|
+
"stylelint-prettier": "^4.0.0",
|
|
91
|
+
"typescript": "~5.8.0",
|
|
92
|
+
"yjs": "^13.5.0"
|
|
93
|
+
},
|
|
94
|
+
"sideEffects": [
|
|
95
|
+
"style/*.css",
|
|
96
|
+
"style/index.js"
|
|
97
|
+
],
|
|
98
|
+
"styleModule": "style/index.js",
|
|
99
|
+
"publishConfig": {
|
|
100
|
+
"access": "public"
|
|
101
|
+
},
|
|
102
|
+
"jupyterlab": {
|
|
103
|
+
"extension": true,
|
|
104
|
+
"outputDir": "sliveshow/labextension",
|
|
105
|
+
"schemaDir": "schema"
|
|
106
|
+
},
|
|
107
|
+
"eslintIgnore": [
|
|
108
|
+
"node_modules",
|
|
109
|
+
"dist",
|
|
110
|
+
"coverage",
|
|
111
|
+
"**/*.d.ts",
|
|
112
|
+
"tests",
|
|
113
|
+
"**/__tests__",
|
|
114
|
+
"ui-tests"
|
|
115
|
+
],
|
|
116
|
+
"eslintConfig": {
|
|
117
|
+
"extends": [
|
|
118
|
+
"eslint:recommended",
|
|
119
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
|
120
|
+
"plugin:@typescript-eslint/recommended",
|
|
121
|
+
"plugin:prettier/recommended"
|
|
122
|
+
],
|
|
123
|
+
"parser": "@typescript-eslint/parser",
|
|
124
|
+
"parserOptions": {
|
|
125
|
+
"project": "tsconfig.json",
|
|
126
|
+
"sourceType": "module"
|
|
127
|
+
},
|
|
128
|
+
"plugins": [
|
|
129
|
+
"@typescript-eslint"
|
|
130
|
+
],
|
|
131
|
+
"rules": {
|
|
132
|
+
"@typescript-eslint/naming-convention": [
|
|
133
|
+
"error",
|
|
134
|
+
{
|
|
135
|
+
"selector": "interface",
|
|
136
|
+
"format": [
|
|
137
|
+
"PascalCase"
|
|
138
|
+
],
|
|
139
|
+
"custom": {
|
|
140
|
+
"regex": "^I[A-Z]",
|
|
141
|
+
"match": true
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"@typescript-eslint/no-unused-vars": [
|
|
146
|
+
"warn",
|
|
147
|
+
{
|
|
148
|
+
"args": "none"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
152
|
+
"@typescript-eslint/no-namespace": "off",
|
|
153
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
154
|
+
"@typescript-eslint/quotes": [
|
|
155
|
+
"error",
|
|
156
|
+
"single",
|
|
157
|
+
{
|
|
158
|
+
"avoidEscape": true,
|
|
159
|
+
"allowTemplateLiterals": false
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"curly": [
|
|
163
|
+
"error",
|
|
164
|
+
"all"
|
|
165
|
+
],
|
|
166
|
+
"eqeqeq": "error",
|
|
167
|
+
"prefer-arrow-callback": "error"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"prettier": {
|
|
171
|
+
"singleQuote": true,
|
|
172
|
+
"trailingComma": "none",
|
|
173
|
+
"arrowParens": "avoid",
|
|
174
|
+
"endOfLine": "auto",
|
|
175
|
+
"overrides": [
|
|
176
|
+
{
|
|
177
|
+
"files": "package.json",
|
|
178
|
+
"options": {
|
|
179
|
+
"tabWidth": 4
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
"stylelint": {
|
|
185
|
+
"extends": [
|
|
186
|
+
"stylelint-config-recommended",
|
|
187
|
+
"stylelint-config-standard",
|
|
188
|
+
"stylelint-prettier/recommended"
|
|
189
|
+
],
|
|
190
|
+
"plugins": [
|
|
191
|
+
"stylelint-csstree-validator"
|
|
192
|
+
],
|
|
193
|
+
"rules": {
|
|
194
|
+
"csstree/validator": true,
|
|
195
|
+
"property-no-vendor-prefix": null,
|
|
196
|
+
"selector-class-pattern": "^([a-z][A-z\\d]*)(-[A-z\\d]+)*$",
|
|
197
|
+
"selector-no-vendor-prefix": null,
|
|
198
|
+
"value-no-vendor-prefix": null
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"jupyter.lab.shortcuts": [],
|
|
3
|
+
"title": "dive-custom-slideshow",
|
|
4
|
+
"description": "dive-custom-slideshow settings.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"dummy": {
|
|
8
|
+
"type": "boolean",
|
|
9
|
+
"title": "Dummy",
|
|
10
|
+
"description": "Placeholder",
|
|
11
|
+
"default": false
|
|
12
|
+
},
|
|
13
|
+
"default_transition": {
|
|
14
|
+
"title": "Default slide transition type",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"enum": ["none", "slide", "fade", "zoom"],
|
|
17
|
+
"enumNames": ["None", "Slide", "Fade", "Zoom"],
|
|
18
|
+
"default": "slide"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"additionalProperties": false,
|
|
22
|
+
"jupyter.lab.menus": {
|
|
23
|
+
"main": [
|
|
24
|
+
{
|
|
25
|
+
"id": "slideshow-menu",
|
|
26
|
+
"label": "Slideshow",
|
|
27
|
+
"rank": 80,
|
|
28
|
+
"items": [
|
|
29
|
+
{
|
|
30
|
+
"command": "slideshow:start-first"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"command": "slideshow:start-current"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"command": "slideshow:exit"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"jupyter.lab.metadataforms": [
|
|
43
|
+
{
|
|
44
|
+
"id": "slideshow-metadata-form:plugin",
|
|
45
|
+
"label": "Slideshow Tools",
|
|
46
|
+
"uiSchema": {
|
|
47
|
+
"ui:order": [
|
|
48
|
+
"/slideshow/transition",
|
|
49
|
+
"/slideshow/transition_out",
|
|
50
|
+
"/slideshow/slide_dir",
|
|
51
|
+
"/slideshow/transition_duration",
|
|
52
|
+
"/slideshow/hide_code"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"metadataSchema": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"properties": {
|
|
58
|
+
"/slideshow/transition": {
|
|
59
|
+
"title": "Transition Type",
|
|
60
|
+
"type": "string",
|
|
61
|
+
"enum": ["", "none", "slide", "fade", "zoom"],
|
|
62
|
+
"enumNames": ["Default", "None", "Slide", "Fade", "Zoom"],
|
|
63
|
+
"default": ""
|
|
64
|
+
},
|
|
65
|
+
"/slideshow/transition_out": {
|
|
66
|
+
"title": "Transition-out Type",
|
|
67
|
+
"description": "Does not apply to fragments",
|
|
68
|
+
"type": "string",
|
|
69
|
+
"enum": ["", "none", "slide", "fade", "zoom"],
|
|
70
|
+
"enumNames": ["Inherit", "None", "Slide", "Fade", "Zoom"],
|
|
71
|
+
"default": ""
|
|
72
|
+
},
|
|
73
|
+
"/slideshow/transition_duration": {
|
|
74
|
+
"title": "Transition Duration (seconds)",
|
|
75
|
+
"description": "Default: 0.5 seconds",
|
|
76
|
+
"type": "number",
|
|
77
|
+
"minimum": 0
|
|
78
|
+
},
|
|
79
|
+
"/slideshow/hide_code": {
|
|
80
|
+
"title": "Hide Code Cell",
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"default": false
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"allOf": [
|
|
86
|
+
{
|
|
87
|
+
"if": {
|
|
88
|
+
"anyOf": [
|
|
89
|
+
{
|
|
90
|
+
"properties": {
|
|
91
|
+
"/slideshow/transition": {
|
|
92
|
+
"const": "slide"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"properties": {
|
|
98
|
+
"/slideshow/transition_out": {
|
|
99
|
+
"const": "slide"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
"then": {
|
|
106
|
+
"properties": {
|
|
107
|
+
"/slideshow/slide_dir": {
|
|
108
|
+
"title": "Slide Direction",
|
|
109
|
+
"type": "string",
|
|
110
|
+
"enum": ["horizontal", "vertical"],
|
|
111
|
+
"enumNames": ["Horizontal", "Vertical"]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"metadataOptions": {
|
|
119
|
+
"/slideshow/hide_code": {
|
|
120
|
+
"cellTypes": ["code"]
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunksliveshow=self.webpackChunksliveshow||[]).push([[399],{247:(e,t,n)=>{n.r(t),n.d(t,{default:()=>M});var o=n(9830),i=n(1872);const s="dive-custom-slideshow";var a,l;!function(e){e.SLIDE="slide",e.SUBSLIDE="subslide",e.FRAGMENT="fragment",e.NOTES="notes",e.SKIP="skip",e.HIDDEN="hidden",e.VISIBLE="fragment-visible"}(a||(a={})),function(e){e.NONE="none",e.SLIDE="slide",e.FADE="fade",e.ZOOM="zoom"}(l||(l={}));class d{constructor(e,t){this.index=e,this.cell=t}}class A extends d{constructor(e,t,n,o,i){super(e,t),this.transition=n,this.transitionOut=o,this.transitionDuration=i,this.fragments=[],this.children=[]}}class r extends d{constructor(e,t,n,o,i){super(e,t),this.transition=n,this.transitionOut=o,this.transitionDuration=i,this.fragments=[],this.children=[]}}class c extends d{constructor(e,t,n,o){super(e,t),this.transition=n,this.transitionDuration=o,this.children=[]}}var h=n(3268),u=n.n(h);n(5923),n(9941);var m=n(9197),g=n(9019),I=n(7775),C=(n(5188),n(1089)),w=n(1048),E=n(6612),p=n(3716);g.S.handlers.register((0,w.C)(new E.O((0,p.G)())));class D{constructor(){const e=new C.t4,t=new I.o({inlineMath:[["$","$"],["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],packages:["base","html"],processEscapes:!0,processEnvironments:!0});this._html=g.S.document(window.document,{InputJax:t,OutputJax:e})}typeset(e){this._html.clear().findMath({elements:[e]}).compile().getMetrics().typeset().updateDocument()}}const S={id:`${s}:mathjax`,description:"MathJax 4 typesetter",requires:[],provides:m.ILatexTypesetter,activate:()=>new D,autoStart:!0},B={id:`${s}:plugin`,description:"JupyterLab extension for animated slideshow.",autoStart:!0,requires:[o.INotebookTracker,i.ISettingRegistry],activate:(e,t,o)=>{console.log("JupyterLab extension dive-custom-slideshow is activated!"),((e,t,o)=>{const{commands:i}=e;let h,m,g,I={},C=!1,w=[],E=[],p=null;n.e(91).then(n.bind(n,3091)),n.e(645).then(n.bind(n,9645));const D=e=>({dummy:e.get("dummy").composite,default_transition:e.get("default_transition").composite});Promise.all([e.restored,o.load(`${s}:plugin`)]).then(([,e])=>{I=D(e),e.changed.connect(()=>{console.log("dive-custom-slideshow settings updated:"),I=D(e),console.log(I)}),i.addCommand("slideshow:start-first",{label:"Start from first cell",isEnabled:()=>!C,execute:async()=>{try{S()}catch(e){console.error("Error starting slideshow:"),console.error(e)}}}),i.addCommand("slideshow:start-current",{label:"Start from current cell",isEnabled:()=>!C,execute:()=>{try{S("current")}catch(e){console.error("Error starting slideshow:"),console.error(e)}}}),i.addCommand("slideshow:exit",{label:"Exit slideshow",isEnabled:()=>C,execute:()=>{try{L()}catch(e){console.error("Error exiting slideshow: "),console.error(e)}}})});const S=(e="first")=>{C=!0,w=[],E=[],t.currentWidget&&(h=t.currentWidget,h.context.ready.then(async()=>{v(h),await N(h).then(async t=>{var n;t.forEach((e,t)=>{var n,o,i,s,l;const h=null===(n=e.model.metadata.slideshow)||void 0===n?void 0:n.slide_type,u=null===(o=e.model.metadata.slideshow)||void 0===o?void 0:o.transition,m=null===(i=e.model.metadata.slideshow)||void 0===i?void 0:i.transition_out,g=null!==(l=null===(s=e.model.metadata.slideshow)||void 0===s?void 0:s.transition_duration)&&void 0!==l?l:.5;switch(h){case a.SLIDE:w.push(new A(t,e,u,m,g));break;case a.SUBSLIDE:w.push(0===w.length?new A(t,e,u,m,g):new r(t,e,u,m,g));break;case a.FRAGMENT:0===w.length?w.push(new A(t,e,u,m,g)):w[w.length-1].fragments.push(new c(t,e,u,g));break;case a.SKIP:break;default:if(0===w.length)w.push(new A(t,e,u,m,g));else{const n=w[w.length-1];n.fragments.length>0?n.fragments[n.fragments.length-1].children.push(new d(t,e)):n.children.push(new d(t,e))}}});for(let e=0;e<w.length;e++)if(w[e]instanceof A){const t=document.createElement("section");if(w[e].transition){let o=w[e].transition;w[e].transitionOut&&(o+=`-in ${w[e].transitionOut}-out`),t.setAttribute("data-transition",o),(null===(n=w[e].cell.model.metadata.slideshow)||void 0===n?void 0:n.slide_dir)&&t.classList.add(w[e].cell.model.metadata.slideshow.slide_dir)}t.style.transitionDuration=`${w[e].transitionDuration}s`;const o=document.createElement("section");t.appendChild(o),M(o,w[e]),E.push(t)}else if(w[e]instanceof r){const t=document.createElement("section");M(t,w[e]),E[E.length-1].appendChild(t)}const o=document.createElement("div");o.className="reveal";const i=document.createElement("div");i.className="slides";for(let e=0;e<E.length;e++)i.appendChild(E[e]);o.appendChild(i),h.content.node.insertBefore(o,h.content.node.firstChild),p=new(u())(o,{animate:{autoplay:!0},plugins:[window.RevealLoadContent,window.RevealAnimate],transition:I.default_transition||"slide"}),await p.initialize().then(()=>{var n;const i=o.querySelector(".slides");if(i){const e=new MutationObserver(function(e){e.forEach(function(e){if("attributes"===e.type){const t=e.target;t.classList&&t.classList.contains("present")&&(t.scrollTop=0)}})});i.querySelectorAll("section").forEach(function(t){e.observe(t,{attributes:!0,attributeFilter:["class"]})})}if(null!==p)if("first"===e)p.slide(0);else if("current"===e){let e=h.content.activeCellIndex||0;for(;![a.SLIDE,a.SUBSLIDE,a.FRAGMENT].includes(null===(n=t[e].model.metadata.slideshow)||void 0===n?void 0:n.slide_type)&&e>0;)e--;const o=t[e],i=p.getHorizontalSlides();let s=!1;for(let e=0;e<i.length&&!s;e++)for(let t=0;t<i[e].children.length;t++)if(i[e].children[t].innerHTML.includes(o.node.innerHTML)){let n;if(i[e].children[t].children.length>1)for(let s=0;s<i[e].children[t].children.length;s++)if(i[e].children[t].children[s].innerHTML.includes(o.node.innerHTML)){n=s-1;break}p.slide(e,t,n),s=!0;break}}})}),document.addEventListener("fullscreenchange",B),await h.content.node.requestFullscreen()}))},B=()=>{document.fullscreenElement||L()},M=(e,t)=>{var n,o,i,s,a,d,A,r;if("code"===t.cell.model.type&&(null===(n=t.cell.model.metadata.slideshow)||void 0===n?void 0:n.hide_code)&&t.cell.node.classList.add("hide-code"),"markdown"===t.cell.model.type){const n=t.cell.model.sharedModel.getSource();if(n.includes("data-animate")){const s=document.createElement("div");s.innerHTML=n;const a=s.querySelector("[data-animate]");if(a){const n=document.createElement("div");return n.appendChild(a),null===(o=t.children)||void 0===o||o.forEach(e=>{M(n,e)}),e.appendChild(n),void(null===(i=t.fragments)||void 0===i||i.forEach(t=>{const n=document.createElement("div");n.classList.add("fragment"),M(n,t),e.appendChild(n)}))}}if(n.includes(":::{svg-animate}")){const o=n.match(/:::\{svg-animate\}[^\n]*\n(?::[a-z-]+:[^\n]*\n)*([\s\S]*?):::/);if(o){const n=o[1].trim(),i=document.createElement("div");i.setAttribute("data-animate",""),i.innerHTML=n;const l=document.createElement("div");return l.appendChild(i),null===(s=t.children)||void 0===s||s.forEach(e=>{M(l,e)}),e.appendChild(l),void(null===(a=t.fragments)||void 0===a||a.forEach(t=>{const n=document.createElement("div");n.classList.add("fragment"),M(n,t),e.appendChild(n)}))}}}if(t.transition){let n=t.transition;t.transitionOut&&(n+=`-in ${t.transitionOut}-out`),e.setAttribute("data-transition",n),(null===(d=t.cell.model.metadata.slideshow)||void 0===d?void 0:d.slide_dir)&&e.classList.add(t.cell.model.metadata.slideshow.slide_dir)}e.style.transitionDuration=`${t.transitionDuration}s`;const c=document.createElement("div");c.appendChild(t.cell.node),null===(A=t.children)||void 0===A||A.forEach(e=>{M(c,e)}),e.appendChild(c),null===(r=t.fragments)||void 0===r||r.forEach(t=>{var n;const o=document.createElement("div");switch(o.classList.add("fragment"),t.transition){case l.SLIDE:o.classList.add("vertical"===(null===(n=t.cell.model.metadata.slideshow)||void 0===n?void 0:n.slide_dir)?"fade-up":"fade-left");break;case l.ZOOM:o.classList.add("zoom");break;case l.NONE:o.classList.add("none")}M(o,t),e.appendChild(o)})},f=(e,t=!0)=>{var n,o;document.querySelectorAll(`\n .cell${e.index} .cm-scroller,\n .cell${e.index} .jp-RenderedMarkdown,\n .cell${e.index} .jp-RenderedText *\n `).forEach(e=>{t?e.setAttribute("style","font-size: 200%;"):e.removeAttribute("style")}),t||e.cell.node.classList.remove(`cell${e.index}`),null===(n=e.children)||void 0===n||n.forEach(e=>{f(e,t)}),null===(o=e.fragments)||void 0===o||o.forEach(e=>{f(e,t)})},L=()=>{C=!1,k(h),document.removeEventListener("fullscreenchange",B),h.content.node.removeChild(h.content.node.firstChild),null==p||p.destroy()},v=async(e,t=!0)=>{var n,o,i;if(t){e.content.addClass("slide-container"),e.toolbar.addClass(a.HIDDEN),g=e.content.notebookConfig.windowingMode,e.content.notebookConfig={...e.content.notebookConfig,windowingMode:"none"},m=document.querySelector(".slide-container .jp-WindowedPanel-viewport"),await N(e).then(e=>{e.forEach(e=>{try{m.removeChild(e.node)}catch(e){}})});const t=document.querySelectorAll(".jp-Notebook-footer");for(let e=0;e<t.length;e++)null===(n=t.item(e))||void 0===n||n.classList.add(a.HIDDEN)}else{e.content.removeClass("slide-container"),e.toolbar.removeClass(a.HIDDEN),e.content.notebookConfig={...e.content.notebookConfig,windowingMode:g},await N(e).then(e=>{e.forEach(e=>{m.appendChild(e.node)})});for(let t=0;t<e.content.node.children.length;t++)null===(o=e.content.node.children.item(t))||void 0===o||o.classList.remove(a.HIDDEN);const t=document.querySelectorAll(".jp-Notebook-footer");for(let e=0;e<t.length;e++)null===(i=t.item(e))||void 0===i||i.classList.remove(a.HIDDEN)}},N=async e=>{let t=[];return await e.context.ready,await Promise.all(e.content.widgets.map(e=>e.ready)).then(()=>{t=[...e.content.widgets]}),t},k=async e=>{v(e,!1),w.forEach(e=>{f(e,!1)}),await N(e).then(e=>{e.forEach(e=>{((e,t=!0)=>{t&&e.classList.remove(...Object.values(a)),e.style.removeProperty("transition-duration"),e.classList.remove(a.HIDDEN),["in","out"].forEach(t=>{e.classList.remove(...Object.values(l).map(e=>`${e}-${t}`)),["left","right","up","down"].forEach(n=>{e.classList.remove(`${l.SLIDE}-${t}-${n}`)})})})(e.node),e.node.classList.remove("hide-code")})})}})(e,t,o),o&&o.load(B.id).then(e=>{console.log("dive-custom-slideshow settings loaded:",e.composite)}).catch(e=>{console.error("Failed to load settings for dive-custom-slideshow.",e)})}},M=[B,S]},1041:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMyAyYTEgMSAwIDAgMC0xIDF2OWExIDEgMCAwIDAgMSAxaDlhMSAxIDAgMCAwIDEtMVY4LjVhLjUuNSAwIDAgMC0xIDBWMTJIM1YzaDMuNWEuNS41IDAgMCAwIDAtMUgzWm05Ljg1NC4xNDZhLjUuNSAwIDAgMSAuMTQ2LjM1MVY1LjVhLjUuNSAwIDAgMS0xIDBWMy43MDdMNi44NTQgOC44NTRhLjUuNSAwIDEgMS0uNzA4LS43MDhMMTEuMjkzIDNIOS41YS41LjUgMCAwIDEgMC0xaDNhLjQ5OS40OTkgMCAwIDEgLjM1NC4xNDZaIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4="},2314:e=>{e.exports="data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D"},7870:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTIuODU0IDIuODU0YS41LjUgMCAwIDAtLjcwOC0uNzA4TDcuNSA2Ljc5MyAyLjg1NCAyLjE0NmEuNS41IDAgMSAwLS43MDguNzA4TDYuNzkzIDcuNWwtNC42NDcgNC42NDZhLjUuNSAwIDAgMCAuNzA4LjcwOEw3LjUgOC4yMDdsNC42NDYgNC42NDdhLjUuNSAwIDAgMCAuNzA4LS43MDhMOC4yMDcgNy41bDQuNjQ3LTQuNjQ2WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"}}]);
|