@plattar/plattar-ar-adapter 1.130.3 → 1.135.1
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/build/es2015/plattar-ar-adapter.js +653 -409
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +304 -141
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/ar/product-ar.d.ts +4 -2
- package/dist/ar/product-ar.js +24 -7
- package/dist/ar/scene-product-ar.d.ts +1 -1
- package/dist/ar/scene-product-ar.js +2 -2
- package/dist/embed/controllers/configurator-controller.js +2 -1
- package/dist/embed/controllers/plattar-controller.d.ts +1 -1
- package/dist/embed/controllers/plattar-controller.js +10 -4
- package/dist/embed/controllers/product-controller.js +13 -3
- package/dist/embed/controllers/viewer-controller.js +33 -6
- package/dist/embed/controllers/vto-controller.js +2 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +9 -9
|
@@ -154,7 +154,7 @@ class ModelAR extends launcher_ar_1.LauncherAR {
|
|
|
154
154
|
}
|
|
155
155
|
exports.ModelAR = ModelAR;
|
|
156
156
|
|
|
157
|
-
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":
|
|
157
|
+
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":39,"@plattar/plattar-api":43}],3:[function(require,module,exports){
|
|
158
158
|
"use strict";
|
|
159
159
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
160
160
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -172,7 +172,7 @@ const launcher_ar_1 = require("./launcher-ar");
|
|
|
172
172
|
* Performs AR functionality related to Plattar Products and Variation types
|
|
173
173
|
*/
|
|
174
174
|
class ProductAR extends launcher_ar_1.LauncherAR {
|
|
175
|
-
constructor(productID = null, variationID = null) {
|
|
175
|
+
constructor(productID = null, variationID = null, variationSKU = null) {
|
|
176
176
|
super();
|
|
177
177
|
// analytics instance
|
|
178
178
|
this._analytics = null;
|
|
@@ -180,7 +180,8 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
180
180
|
throw new Error("ProductAR.constructor(productID, variationID) - productID must be defined");
|
|
181
181
|
}
|
|
182
182
|
this._productID = productID;
|
|
183
|
-
this.
|
|
183
|
+
this._variationSKU = variationSKU;
|
|
184
|
+
this._variationID = variationID ? variationID : (variationSKU ? null : "default");
|
|
184
185
|
this._ar = null;
|
|
185
186
|
}
|
|
186
187
|
get productID() {
|
|
@@ -189,6 +190,9 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
189
190
|
get variationID() {
|
|
190
191
|
return this._variationID;
|
|
191
192
|
}
|
|
193
|
+
get variationSKU() {
|
|
194
|
+
return this._variationSKU;
|
|
195
|
+
}
|
|
192
196
|
_SetupAnalytics(product, variation) {
|
|
193
197
|
let analytics = null;
|
|
194
198
|
const scene = product.relationships.find(plattar_api_1.Scene);
|
|
@@ -237,14 +241,27 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
237
241
|
product.include(plattar_api_1.Scene.include(plattar_api_1.Project));
|
|
238
242
|
product.get().then((product) => {
|
|
239
243
|
// find the required variation from our product
|
|
240
|
-
const variationID = this.variationID ? (this.variationID === "default" ? product.attributes.product_variation_id : this.variationID) :
|
|
241
|
-
|
|
242
|
-
|
|
244
|
+
const variationID = this.variationID ? (this.variationID === "default" ? product.attributes.product_variation_id : this.variationID) : null;
|
|
245
|
+
const variationSKU = this.variationSKU;
|
|
246
|
+
if (!variationID && !variationSKU) {
|
|
247
|
+
return reject(new Error("ProductAR.init() - cannot proceed as variation-id or variation-sku was not set correctly"));
|
|
248
|
+
}
|
|
249
|
+
let variation = undefined;
|
|
250
|
+
if (variationID) {
|
|
251
|
+
variation = product.relationships.find(plattar_api_1.ProductVariation, variationID);
|
|
252
|
+
}
|
|
253
|
+
// if no variation was found with variationID - try searching variation sku
|
|
254
|
+
if (!variation && variationSKU) {
|
|
255
|
+
const variations = product.relationships.filter(plattar_api_1.ProductVariation);
|
|
256
|
+
if (variations) {
|
|
257
|
+
variation = variations.find((element) => {
|
|
258
|
+
return element.attributes.sku === variationSKU;
|
|
259
|
+
});
|
|
260
|
+
}
|
|
243
261
|
}
|
|
244
|
-
const variation = product.relationships.find(plattar_api_1.ProductVariation, variationID);
|
|
245
262
|
// make sure our variation is actually available before moving forward
|
|
246
263
|
if (!variation) {
|
|
247
|
-
return reject(new Error("ProductAR.init() - cannot proceed as variation with id " + variationID + " cannot be found"));
|
|
264
|
+
return reject(new Error("ProductAR.init() - cannot proceed as variation with id " + variationID + " or sku " + variationSKU + " cannot be found"));
|
|
248
265
|
}
|
|
249
266
|
// otherwise both the product and variation are available
|
|
250
267
|
// we need to figure out if we can actually do AR though
|
|
@@ -328,7 +345,7 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
328
345
|
}
|
|
329
346
|
exports.ProductAR = ProductAR;
|
|
330
347
|
|
|
331
|
-
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":
|
|
348
|
+
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":39,"@plattar/plattar-api":43}],4:[function(require,module,exports){
|
|
332
349
|
"use strict";
|
|
333
350
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
334
351
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -599,7 +616,7 @@ class SceneAR extends launcher_ar_1.LauncherAR {
|
|
|
599
616
|
}
|
|
600
617
|
exports.SceneAR = SceneAR;
|
|
601
618
|
|
|
602
|
-
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":
|
|
619
|
+
},{"../util/util":15,"../viewers/quicklook-viewer":18,"../viewers/reality-viewer":19,"../viewers/scene-viewer":20,"./launcher-ar":1,"@plattar/plattar-analytics":39,"@plattar/plattar-api":43,"@plattar/plattar-services":114}],6:[function(require,module,exports){
|
|
603
620
|
"use strict";
|
|
604
621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
605
622
|
exports.SceneProductAR = void 0;
|
|
@@ -611,8 +628,8 @@ const util_1 = require("../util/util");
|
|
|
611
628
|
* SceneProducts are much more convenient to grab from the Plattar CMS
|
|
612
629
|
*/
|
|
613
630
|
class SceneProductAR extends product_ar_1.ProductAR {
|
|
614
|
-
constructor(sceneProductID = null, variationID = null) {
|
|
615
|
-
super(sceneProductID, variationID);
|
|
631
|
+
constructor(sceneProductID = null, variationID = null, variationSKU = null) {
|
|
632
|
+
super(sceneProductID, variationID, variationSKU);
|
|
616
633
|
// this is evaluated in the init() function
|
|
617
634
|
this._attachedProductID = null;
|
|
618
635
|
if (!sceneProductID) {
|
|
@@ -649,7 +666,7 @@ class SceneProductAR extends product_ar_1.ProductAR {
|
|
|
649
666
|
}
|
|
650
667
|
exports.SceneProductAR = SceneProductAR;
|
|
651
668
|
|
|
652
|
-
},{"../util/util":15,"./product-ar":3,"@plattar/plattar-api":
|
|
669
|
+
},{"../util/util":15,"./product-ar":3,"@plattar/plattar-api":43}],7:[function(require,module,exports){
|
|
653
670
|
"use strict";
|
|
654
671
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
655
672
|
exports.ConfiguratorController = void 0;
|
|
@@ -682,7 +699,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
682
699
|
this.removeRenderer();
|
|
683
700
|
const sceneID = this.getAttribute("scene-id");
|
|
684
701
|
if (sceneID) {
|
|
685
|
-
const opt = options ||
|
|
702
|
+
const opt = options || this._GetDefaultQROptions();
|
|
686
703
|
const viewer = document.createElement("plattar-qrcode");
|
|
687
704
|
// required attributes with defaults for plattar-viewer node
|
|
688
705
|
const width = this.getAttribute("width") || "500px";
|
|
@@ -698,6 +715,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
698
715
|
if (opt.qrType) {
|
|
699
716
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
700
717
|
}
|
|
718
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
701
719
|
let dst = plattar_api_1.Server.location().base + "renderer/configurator.html?scene_id=" + sceneID;
|
|
702
720
|
// optional attributes
|
|
703
721
|
const configState = this.getAttribute("config-state");
|
|
@@ -881,7 +899,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
881
899
|
}
|
|
882
900
|
exports.ConfiguratorController = ConfiguratorController;
|
|
883
901
|
|
|
884
|
-
},{"../../ar/raw-ar":4,"../../ar/scene-ar":5,"../../ar/scene-product-ar":6,"../../util/configurator-state":14,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":
|
|
902
|
+
},{"../../ar/raw-ar":4,"../../ar/scene-ar":5,"../../ar/scene-product-ar":6,"../../util/configurator-state":14,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":43,"@plattar/plattar-services":114}],8:[function(require,module,exports){
|
|
885
903
|
"use strict";
|
|
886
904
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
887
905
|
exports.PlattarController = exports.ControllerState = void 0;
|
|
@@ -905,10 +923,11 @@ class PlattarController {
|
|
|
905
923
|
/**
|
|
906
924
|
* Default QR Code rendering options
|
|
907
925
|
*/
|
|
908
|
-
|
|
926
|
+
_GetDefaultQROptions() {
|
|
909
927
|
return {
|
|
910
|
-
color: "#101721",
|
|
911
|
-
qrType: "default",
|
|
928
|
+
color: this.getAttribute("qr-color") || "#101721",
|
|
929
|
+
qrType: this.getAttribute("qr-style") || "default",
|
|
930
|
+
shorten: this.getAttribute("qr-shorten") || false,
|
|
912
931
|
margin: 0
|
|
913
932
|
};
|
|
914
933
|
}
|
|
@@ -948,7 +967,7 @@ class PlattarController {
|
|
|
948
967
|
return new Promise((accept, reject) => {
|
|
949
968
|
// remove the old renderer instance if any
|
|
950
969
|
this.removeRenderer();
|
|
951
|
-
const opt = options ||
|
|
970
|
+
const opt = options || this._GetDefaultQROptions();
|
|
952
971
|
const viewer = document.createElement("plattar-qrcode");
|
|
953
972
|
// required attributes with defaults for plattar-viewer node
|
|
954
973
|
const width = this.getAttribute("width") || "500px";
|
|
@@ -964,6 +983,7 @@ class PlattarController {
|
|
|
964
983
|
if (opt.qrType) {
|
|
965
984
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
966
985
|
}
|
|
986
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
967
987
|
const qrOptions = btoa(JSON.stringify(opt));
|
|
968
988
|
let dst = plattar_api_1.Server.location().base + "renderer/launcher.html?qr_options=" + qrOptions;
|
|
969
989
|
const sceneID = this.getAttribute("scene-id");
|
|
@@ -972,6 +992,7 @@ class PlattarController {
|
|
|
972
992
|
const productID = this.getAttribute("product-id");
|
|
973
993
|
const sceneProductID = this.getAttribute("scene-product-id");
|
|
974
994
|
const variationID = this.getAttribute("variation-id");
|
|
995
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
975
996
|
const arMode = this.getAttribute("ar-mode");
|
|
976
997
|
if (configState) {
|
|
977
998
|
dst += "&config_state=" + configState;
|
|
@@ -988,6 +1009,9 @@ class PlattarController {
|
|
|
988
1009
|
if (variationID) {
|
|
989
1010
|
dst += "&variation_id=" + variationID;
|
|
990
1011
|
}
|
|
1012
|
+
if (variationSKU) {
|
|
1013
|
+
dst += "&variation_sku=" + variationSKU;
|
|
1014
|
+
}
|
|
991
1015
|
if (arMode) {
|
|
992
1016
|
dst += "&ar_mode=" + arMode;
|
|
993
1017
|
}
|
|
@@ -1029,7 +1053,7 @@ class PlattarController {
|
|
|
1029
1053
|
}
|
|
1030
1054
|
exports.PlattarController = PlattarController;
|
|
1031
1055
|
|
|
1032
|
-
},{"@plattar/plattar-api":
|
|
1056
|
+
},{"@plattar/plattar-api":43}],9:[function(require,module,exports){
|
|
1033
1057
|
"use strict";
|
|
1034
1058
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1035
1059
|
exports.ProductController = void 0;
|
|
@@ -1069,7 +1093,7 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1069
1093
|
this.removeRenderer();
|
|
1070
1094
|
const productID = this.getAttribute("product-id");
|
|
1071
1095
|
if (productID) {
|
|
1072
|
-
const opt = options ||
|
|
1096
|
+
const opt = options || this._GetDefaultQROptions();
|
|
1073
1097
|
const viewer = document.createElement("plattar-qrcode");
|
|
1074
1098
|
// required attributes with defaults for plattar-viewer node
|
|
1075
1099
|
const width = this.getAttribute("width") || "500px";
|
|
@@ -1085,12 +1109,17 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1085
1109
|
if (opt.qrType) {
|
|
1086
1110
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1087
1111
|
}
|
|
1112
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
1088
1113
|
// optional attributes
|
|
1089
1114
|
const variationID = this.getAttribute("variation-id");
|
|
1115
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1090
1116
|
const showAR = this.getAttribute("show-ar");
|
|
1091
1117
|
let dst = plattar_api_1.Server.location().base + "renderer/product.html?product_id=" + productID;
|
|
1092
1118
|
if (variationID) {
|
|
1093
|
-
dst += "&
|
|
1119
|
+
dst += "&variationId=" + variationID;
|
|
1120
|
+
}
|
|
1121
|
+
if (variationSKU) {
|
|
1122
|
+
dst += "&variationSku=" + variationSKU;
|
|
1094
1123
|
}
|
|
1095
1124
|
if (showAR) {
|
|
1096
1125
|
dst += "&show_ar=" + showAR;
|
|
@@ -1125,10 +1154,14 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1125
1154
|
viewer.setAttribute("product-id", productID);
|
|
1126
1155
|
// optional attributes
|
|
1127
1156
|
const variationID = this.getAttribute("variation-id");
|
|
1157
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1128
1158
|
const showAR = this.getAttribute("show-ar");
|
|
1129
1159
|
if (variationID) {
|
|
1130
1160
|
viewer.setAttribute("variation-id", variationID);
|
|
1131
1161
|
}
|
|
1162
|
+
if (variationSKU) {
|
|
1163
|
+
viewer.setAttribute("variation-sku", variationSKU);
|
|
1164
|
+
}
|
|
1132
1165
|
if (showAR) {
|
|
1133
1166
|
viewer.setAttribute("show-ar", showAR);
|
|
1134
1167
|
}
|
|
@@ -1151,7 +1184,8 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1151
1184
|
const productID = this.getAttribute("product-id");
|
|
1152
1185
|
if (productID) {
|
|
1153
1186
|
const variationID = this.getAttribute("variation-id");
|
|
1154
|
-
const
|
|
1187
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1188
|
+
const product = new product_ar_1.ProductAR(productID, variationID, variationSKU);
|
|
1155
1189
|
return product.init().then(accept).catch(reject);
|
|
1156
1190
|
}
|
|
1157
1191
|
return reject(new Error("ProductController.initAR() - minimum required attributes not set, use product-id as a minimum"));
|
|
@@ -1171,7 +1205,7 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1171
1205
|
}
|
|
1172
1206
|
exports.ProductController = ProductController;
|
|
1173
1207
|
|
|
1174
|
-
},{"../../ar/product-ar":3,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":
|
|
1208
|
+
},{"../../ar/product-ar":3,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":43}],10:[function(require,module,exports){
|
|
1175
1209
|
"use strict";
|
|
1176
1210
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1177
1211
|
exports.ViewerController = void 0;
|
|
@@ -1179,6 +1213,7 @@ const plattar_api_1 = require("@plattar/plattar-api");
|
|
|
1179
1213
|
const product_ar_1 = require("../../ar/product-ar");
|
|
1180
1214
|
const scene_ar_1 = require("../../ar/scene-ar");
|
|
1181
1215
|
const scene_product_ar_1 = require("../../ar/scene-product-ar");
|
|
1216
|
+
const configurator_state_1 = require("../../util/configurator-state");
|
|
1182
1217
|
const util_1 = require("../../util/util");
|
|
1183
1218
|
const plattar_controller_1 = require("./plattar-controller");
|
|
1184
1219
|
/**
|
|
@@ -1214,7 +1249,7 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1214
1249
|
this.removeRenderer();
|
|
1215
1250
|
const sceneID = this.getAttribute("scene-id");
|
|
1216
1251
|
if (sceneID) {
|
|
1217
|
-
const opt = options ||
|
|
1252
|
+
const opt = options || this._GetDefaultQROptions();
|
|
1218
1253
|
const viewer = document.createElement("plattar-qrcode");
|
|
1219
1254
|
// required attributes with defaults for plattar-viewer node
|
|
1220
1255
|
const width = this.getAttribute("width") || "500px";
|
|
@@ -1230,10 +1265,12 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1230
1265
|
if (opt.qrType) {
|
|
1231
1266
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1232
1267
|
}
|
|
1268
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
1233
1269
|
let dst = plattar_api_1.Server.location().base + "renderer/viewer.html?scene_id=" + sceneID;
|
|
1234
1270
|
// optional attributes
|
|
1235
1271
|
const productID = (this.getAttribute("product-id") || this.getAttribute("scene-product-id"));
|
|
1236
1272
|
const variationID = this.getAttribute("variation-id");
|
|
1273
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1237
1274
|
const showAR = this.getAttribute("show-ar");
|
|
1238
1275
|
if (productID) {
|
|
1239
1276
|
dst += "&productId=" + productID;
|
|
@@ -1241,6 +1278,9 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1241
1278
|
if (variationID) {
|
|
1242
1279
|
dst += "&variationId=" + variationID;
|
|
1243
1280
|
}
|
|
1281
|
+
if (variationSKU) {
|
|
1282
|
+
dst += "&variationSku=" + variationSKU;
|
|
1283
|
+
}
|
|
1244
1284
|
if (showAR) {
|
|
1245
1285
|
dst += "&show_ar=" + showAR;
|
|
1246
1286
|
}
|
|
@@ -1275,6 +1315,7 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1275
1315
|
// optional attributes
|
|
1276
1316
|
const productID = (this.getAttribute("product-id") || this.getAttribute("scene-product-id"));
|
|
1277
1317
|
const variationID = this.getAttribute("variation-id");
|
|
1318
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1278
1319
|
const showAR = this.getAttribute("show-ar");
|
|
1279
1320
|
if (productID) {
|
|
1280
1321
|
viewer.setAttribute("product-id", productID);
|
|
@@ -1282,6 +1323,9 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1282
1323
|
if (variationID) {
|
|
1283
1324
|
viewer.setAttribute("variation-id", variationID);
|
|
1284
1325
|
}
|
|
1326
|
+
if (variationSKU) {
|
|
1327
|
+
viewer.setAttribute("variation-sku", variationSKU);
|
|
1328
|
+
}
|
|
1285
1329
|
if (showAR) {
|
|
1286
1330
|
viewer.setAttribute("show-ar", showAR);
|
|
1287
1331
|
}
|
|
@@ -1305,22 +1349,39 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1305
1349
|
// use product-id if available
|
|
1306
1350
|
if (productID) {
|
|
1307
1351
|
const variationID = this.getAttribute("variation-id");
|
|
1308
|
-
const
|
|
1352
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1353
|
+
const product = new product_ar_1.ProductAR(productID, variationID, variationSKU);
|
|
1309
1354
|
return product.init().then(accept).catch(reject);
|
|
1310
1355
|
}
|
|
1311
1356
|
const sceneProductID = this.getAttribute("scene-product-id");
|
|
1312
1357
|
// use scene-product-id if available
|
|
1313
1358
|
if (sceneProductID) {
|
|
1314
1359
|
const variationID = this.getAttribute("variation-id");
|
|
1315
|
-
const
|
|
1360
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1361
|
+
const product = new scene_product_ar_1.SceneProductAR(sceneProductID, variationID, variationSKU);
|
|
1316
1362
|
return product.init().then(accept).catch(reject);
|
|
1317
1363
|
}
|
|
1318
1364
|
const sceneID = this.getAttribute("scene-id");
|
|
1319
1365
|
// fallback to using default SceneAR implementation
|
|
1320
1366
|
if (sceneID) {
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1367
|
+
// special case - check if scene only has a single product, if so
|
|
1368
|
+
// we need to use provided variation-id or variation-sku to override
|
|
1369
|
+
const variationID = this.getAttribute("variation-id");
|
|
1370
|
+
const variationSKU = this.getAttribute("variation-sku");
|
|
1371
|
+
// just do scene-ar if variation ID and variation SKU is not set
|
|
1372
|
+
if (!variationID && !variationSKU) {
|
|
1373
|
+
const sceneAR = new scene_ar_1.SceneAR(sceneID);
|
|
1374
|
+
return sceneAR.init().then(accept).catch(reject);
|
|
1375
|
+
}
|
|
1376
|
+
// otherwise decode scene
|
|
1377
|
+
return configurator_state_1.ConfiguratorState.decodeScene(sceneID).then((state) => {
|
|
1378
|
+
const firstProduct = state.first();
|
|
1379
|
+
if (state.length > 1 || !firstProduct) {
|
|
1380
|
+
return reject(new Error("ViewerController.initAR() - single product required to override variation-id or variation-sku"));
|
|
1381
|
+
}
|
|
1382
|
+
const product = new scene_product_ar_1.SceneProductAR(firstProduct.scene_product_id, variationID, variationSKU);
|
|
1383
|
+
return product.init().then(accept).catch(reject);
|
|
1384
|
+
}).catch(reject);
|
|
1324
1385
|
}
|
|
1325
1386
|
return reject(new Error("ViewerController.initAR() - minimum required attributes not set, use scene-id as a minimum"));
|
|
1326
1387
|
});
|
|
@@ -1339,7 +1400,7 @@ class ViewerController extends plattar_controller_1.PlattarController {
|
|
|
1339
1400
|
}
|
|
1340
1401
|
exports.ViewerController = ViewerController;
|
|
1341
1402
|
|
|
1342
|
-
},{"../../ar/product-ar":3,"../../ar/scene-ar":5,"../../ar/scene-product-ar":6,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":
|
|
1403
|
+
},{"../../ar/product-ar":3,"../../ar/scene-ar":5,"../../ar/scene-product-ar":6,"../../util/configurator-state":14,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":43}],11:[function(require,module,exports){
|
|
1343
1404
|
"use strict";
|
|
1344
1405
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1345
1406
|
exports.VTOController = void 0;
|
|
@@ -1370,7 +1431,7 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
1370
1431
|
this.removeRenderer();
|
|
1371
1432
|
const sceneID = this.getAttribute("scene-id");
|
|
1372
1433
|
if (sceneID) {
|
|
1373
|
-
const opt = options ||
|
|
1434
|
+
const opt = options || this._GetDefaultQROptions();
|
|
1374
1435
|
const viewer = document.createElement("plattar-qrcode");
|
|
1375
1436
|
// required attributes with defaults for plattar-viewer node
|
|
1376
1437
|
const width = this.getAttribute("width") || "500px";
|
|
@@ -1386,6 +1447,7 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
1386
1447
|
if (opt.qrType) {
|
|
1387
1448
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1388
1449
|
}
|
|
1450
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
1389
1451
|
let dst = plattar_api_1.Server.location().base + "renderer/facear.html?scene_id=" + sceneID;
|
|
1390
1452
|
// optional attributes
|
|
1391
1453
|
const configState = this.getAttribute("config-state");
|
|
@@ -1555,7 +1617,7 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
1555
1617
|
}
|
|
1556
1618
|
exports.VTOController = VTOController;
|
|
1557
1619
|
|
|
1558
|
-
},{"../..":13,"../../ar/raw-ar":4,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":
|
|
1620
|
+
},{"../..":13,"../../ar/raw-ar":4,"../../util/util":15,"./plattar-controller":8,"@plattar/plattar-api":43,"@plattar/plattar-services":114}],12:[function(require,module,exports){
|
|
1559
1621
|
"use strict";
|
|
1560
1622
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1561
1623
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
@@ -1713,7 +1775,7 @@ class PlattarEmbed extends HTMLElement {
|
|
|
1713
1775
|
}
|
|
1714
1776
|
exports.default = PlattarEmbed;
|
|
1715
1777
|
|
|
1716
|
-
},{"./controllers/configurator-controller":7,"./controllers/product-controller":9,"./controllers/viewer-controller":10,"./controllers/vto-controller":11,"@plattar/plattar-api":
|
|
1778
|
+
},{"./controllers/configurator-controller":7,"./controllers/product-controller":9,"./controllers/viewer-controller":10,"./controllers/vto-controller":11,"@plattar/plattar-api":43}],13:[function(require,module,exports){
|
|
1717
1779
|
"use strict";
|
|
1718
1780
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
1719
1781
|
if (k2 === undefined) k2 = k;
|
|
@@ -1771,7 +1833,7 @@ if (customElements) {
|
|
|
1771
1833
|
}
|
|
1772
1834
|
console.log("using @plattar/plattar-ar-adapter v" + version_1.default);
|
|
1773
1835
|
|
|
1774
|
-
},{"./ar/launcher-ar":1,"./ar/model-ar":2,"./ar/product-ar":3,"./ar/raw-ar":4,"./ar/scene-ar":5,"./ar/scene-product-ar":6,"./embed/plattar-embed":12,"./util/configurator-state":14,"./util/util":15,"./version":16,"@plattar/plattar-qrcode":
|
|
1836
|
+
},{"./ar/launcher-ar":1,"./ar/model-ar":2,"./ar/product-ar":3,"./ar/raw-ar":4,"./ar/scene-ar":5,"./ar/scene-product-ar":6,"./embed/plattar-embed":12,"./util/configurator-state":14,"./util/util":15,"./version":16,"@plattar/plattar-qrcode":109,"@plattar/plattar-web":128}],14:[function(require,module,exports){
|
|
1775
1837
|
"use strict";
|
|
1776
1838
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1777
1839
|
exports.ConfiguratorState = void 0;
|
|
@@ -1996,7 +2058,7 @@ class ConfiguratorState {
|
|
|
1996
2058
|
}
|
|
1997
2059
|
exports.ConfiguratorState = ConfiguratorState;
|
|
1998
2060
|
|
|
1999
|
-
},{"@plattar/plattar-api":
|
|
2061
|
+
},{"@plattar/plattar-api":43}],15:[function(require,module,exports){
|
|
2000
2062
|
"use strict";
|
|
2001
2063
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2002
2064
|
exports.Util = void 0;
|
|
@@ -2086,7 +2148,7 @@ exports.Util = Util;
|
|
|
2086
2148
|
},{}],16:[function(require,module,exports){
|
|
2087
2149
|
"use strict";
|
|
2088
2150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2089
|
-
exports.default = "1.
|
|
2151
|
+
exports.default = "1.135.1";
|
|
2090
2152
|
|
|
2091
2153
|
},{}],17:[function(require,module,exports){
|
|
2092
2154
|
"use strict";
|
|
@@ -3378,6 +3440,9 @@ class AnalyticsData {
|
|
|
3378
3440
|
push(key, value) {
|
|
3379
3441
|
this._map.set(key, value);
|
|
3380
3442
|
}
|
|
3443
|
+
get(key) {
|
|
3444
|
+
return this._map.get(key);
|
|
3445
|
+
}
|
|
3381
3446
|
get data() {
|
|
3382
3447
|
return Object.fromEntries(this._map);
|
|
3383
3448
|
}
|
|
@@ -3408,7 +3473,7 @@ class AnalyticsData {
|
|
|
3408
3473
|
}
|
|
3409
3474
|
exports.AnalyticsData = AnalyticsData;
|
|
3410
3475
|
|
|
3411
|
-
},{"../util/util":
|
|
3476
|
+
},{"../util/util":41}],37:[function(require,module,exports){
|
|
3412
3477
|
"use strict";
|
|
3413
3478
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3414
3479
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3417,6 +3482,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3417
3482
|
exports.Analytics = void 0;
|
|
3418
3483
|
const basic_http_1 = __importDefault(require("../util/basic-http"));
|
|
3419
3484
|
const analytics_data_1 = require("./analytics-data");
|
|
3485
|
+
const google_analytics_1 = require("./google/google-analytics");
|
|
3420
3486
|
class Analytics {
|
|
3421
3487
|
constructor(applicationID) {
|
|
3422
3488
|
this._pageTime = null;
|
|
@@ -3428,6 +3494,7 @@ class Analytics {
|
|
|
3428
3494
|
this.isBeacon = false;
|
|
3429
3495
|
this._applicationID = applicationID;
|
|
3430
3496
|
this._data = new analytics_data_1.AnalyticsData();
|
|
3497
|
+
this._ga = new google_analytics_1.GoogleAnalytics();
|
|
3431
3498
|
this._handlePageHide = () => {
|
|
3432
3499
|
if (document.visibilityState === "hidden") {
|
|
3433
3500
|
this._pageTime = new Date();
|
|
@@ -3445,6 +3512,9 @@ class Analytics {
|
|
|
3445
3512
|
}
|
|
3446
3513
|
};
|
|
3447
3514
|
}
|
|
3515
|
+
get googleAnalytics() {
|
|
3516
|
+
return this._ga;
|
|
3517
|
+
}
|
|
3448
3518
|
query(query = null) {
|
|
3449
3519
|
return new Promise((accept, reject) => {
|
|
3450
3520
|
if (!query) {
|
|
@@ -3484,6 +3554,7 @@ class Analytics {
|
|
|
3484
3554
|
accept(((result && result.results) ? result.results : {}));
|
|
3485
3555
|
}).catch(reject);
|
|
3486
3556
|
}
|
|
3557
|
+
this.googleAnalytics.write(this.event, this.data);
|
|
3487
3558
|
});
|
|
3488
3559
|
}
|
|
3489
3560
|
startRecordEngagement() {
|
|
@@ -3495,7 +3566,83 @@ class Analytics {
|
|
|
3495
3566
|
}
|
|
3496
3567
|
exports.Analytics = Analytics;
|
|
3497
3568
|
|
|
3498
|
-
},{"../util/basic-http":
|
|
3569
|
+
},{"../util/basic-http":40,"./analytics-data":36,"./google/google-analytics":38}],38:[function(require,module,exports){
|
|
3570
|
+
"use strict";
|
|
3571
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3572
|
+
exports.GoogleAnalytics = void 0;
|
|
3573
|
+
class GoogleAnalytics {
|
|
3574
|
+
constructor() {
|
|
3575
|
+
this._tokens = new Set();
|
|
3576
|
+
}
|
|
3577
|
+
addUniversalToken(gaToken) {
|
|
3578
|
+
// ensure duplicates not added or processed
|
|
3579
|
+
if (this._tokens.has(gaToken)) {
|
|
3580
|
+
return;
|
|
3581
|
+
}
|
|
3582
|
+
this._tokens.add(gaToken);
|
|
3583
|
+
const gInstance = gtag;
|
|
3584
|
+
if (gInstance) {
|
|
3585
|
+
gInstance("config", gaToken, {
|
|
3586
|
+
"custom_map": {
|
|
3587
|
+
"dimension1": "application_id",
|
|
3588
|
+
"dimension2": "application_title",
|
|
3589
|
+
'dimension3': 'platform'
|
|
3590
|
+
}
|
|
3591
|
+
});
|
|
3592
|
+
gInstance("event", "app_dimension", { "platform": "Viewer" });
|
|
3593
|
+
}
|
|
3594
|
+
}
|
|
3595
|
+
addToken(gaToken) {
|
|
3596
|
+
// ensure duplicates not added or processed
|
|
3597
|
+
if (this._tokens.has(gaToken)) {
|
|
3598
|
+
return;
|
|
3599
|
+
}
|
|
3600
|
+
this._tokens.add(gaToken);
|
|
3601
|
+
const gInstance = gtag;
|
|
3602
|
+
if (gInstance) {
|
|
3603
|
+
gInstance("config", gaToken, {
|
|
3604
|
+
"custom_map": {
|
|
3605
|
+
"dimension1": "application_id",
|
|
3606
|
+
"dimension2": "application_title",
|
|
3607
|
+
}
|
|
3608
|
+
});
|
|
3609
|
+
}
|
|
3610
|
+
}
|
|
3611
|
+
write(event, data) {
|
|
3612
|
+
if (this._tokens.size <= 0) {
|
|
3613
|
+
return;
|
|
3614
|
+
}
|
|
3615
|
+
this._tokens.forEach((token) => {
|
|
3616
|
+
const gInstance = gtag;
|
|
3617
|
+
if (gInstance) {
|
|
3618
|
+
gInstance("event", "app_dimension", { "application_id": data.get("applicationId") });
|
|
3619
|
+
gInstance("event", "app_dimension", { "application_title": data.get("applicationTitle") });
|
|
3620
|
+
if (event === "track") {
|
|
3621
|
+
const eventCategory = data.get("eventCategory"); // 0
|
|
3622
|
+
const eventAction = data.get("eventAction"); // 1
|
|
3623
|
+
const eventLabel = data.get("eventLabel"); // 2
|
|
3624
|
+
gInstance("event", eventAction, {
|
|
3625
|
+
"send_to": token,
|
|
3626
|
+
"event_category": eventCategory,
|
|
3627
|
+
"event_label": eventLabel
|
|
3628
|
+
});
|
|
3629
|
+
}
|
|
3630
|
+
if (event === "pageview") {
|
|
3631
|
+
const eventCategory = data.get("eventCategory"); // 0
|
|
3632
|
+
const eventLabel = data.get("eventLabel"); // 2
|
|
3633
|
+
gInstance("event", "pageview", {
|
|
3634
|
+
"send_to": token,
|
|
3635
|
+
"event_category": eventCategory,
|
|
3636
|
+
"event_label": eventLabel
|
|
3637
|
+
});
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3640
|
+
});
|
|
3641
|
+
}
|
|
3642
|
+
}
|
|
3643
|
+
exports.GoogleAnalytics = GoogleAnalytics;
|
|
3644
|
+
|
|
3645
|
+
},{}],39:[function(require,module,exports){
|
|
3499
3646
|
"use strict";
|
|
3500
3647
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3501
3648
|
if (k2 === undefined) k2 = k;
|
|
@@ -3531,7 +3678,7 @@ Object.defineProperty(exports, "Analytics", { enumerable: true, get: function ()
|
|
|
3531
3678
|
const version_1 = __importDefault(require("./version"));
|
|
3532
3679
|
console.log("using @plattar/plattar-analytics v" + version_1.default);
|
|
3533
3680
|
|
|
3534
|
-
},{"./analytics/analytics":37,"./version":
|
|
3681
|
+
},{"./analytics/analytics":37,"./version":42}],40:[function(require,module,exports){
|
|
3535
3682
|
"use strict";
|
|
3536
3683
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3537
3684
|
/**
|
|
@@ -3597,7 +3744,7 @@ class BasicHTTP {
|
|
|
3597
3744
|
}
|
|
3598
3745
|
exports.default = BasicHTTP;
|
|
3599
3746
|
|
|
3600
|
-
},{}],
|
|
3747
|
+
},{}],41:[function(require,module,exports){
|
|
3601
3748
|
"use strict";
|
|
3602
3749
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3603
3750
|
exports.Util = void 0;
|
|
@@ -3623,12 +3770,12 @@ class Util {
|
|
|
3623
3770
|
}
|
|
3624
3771
|
exports.Util = Util;
|
|
3625
3772
|
|
|
3626
|
-
},{}],
|
|
3773
|
+
},{}],42:[function(require,module,exports){
|
|
3627
3774
|
"use strict";
|
|
3628
3775
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3629
|
-
exports.default = "1.
|
|
3776
|
+
exports.default = "1.134.3";
|
|
3630
3777
|
|
|
3631
|
-
},{}],
|
|
3778
|
+
},{}],43:[function(require,module,exports){
|
|
3632
3779
|
"use strict";
|
|
3633
3780
|
const Server = require("./server/plattar-server.js");
|
|
3634
3781
|
const Util = require("./util/plattar-util.js");
|
|
@@ -3783,7 +3930,7 @@ module.exports = {
|
|
|
3783
3930
|
version: Version
|
|
3784
3931
|
};
|
|
3785
3932
|
|
|
3786
|
-
},{"./server/plattar-server.js":
|
|
3933
|
+
},{"./server/plattar-server.js":45,"./types/application.js":46,"./types/content-pipeline/brief.js":47,"./types/content-pipeline/comment-brief.js":48,"./types/content-pipeline/comment-quote.js":49,"./types/content-pipeline/comment-solution.js":50,"./types/content-pipeline/folder.js":51,"./types/content-pipeline/pipeline-user.js":52,"./types/content-pipeline/quote.js":53,"./types/content-pipeline/rating.js":54,"./types/content-pipeline/solution.js":55,"./types/file/file-audio.js":56,"./types/file/file-base.js":57,"./types/file/file-image.js":58,"./types/file/file-model.js":59,"./types/file/file-script.js":60,"./types/file/file-video.js":61,"./types/misc/application-build.js":65,"./types/misc/asset-library.js":66,"./types/misc/async-job.js":67,"./types/misc/script-event.js":68,"./types/misc/tag.js":69,"./types/page/card-base.js":70,"./types/page/card-button.js":71,"./types/page/card-html.js":72,"./types/page/card-iframe.js":73,"./types/page/card-image.js":74,"./types/page/card-map.js":75,"./types/page/card-paragraph.js":76,"./types/page/card-row.js":77,"./types/page/card-slider.js":78,"./types/page/card-title.js":79,"./types/page/card-video.js":80,"./types/page/card-youtube.js":81,"./types/page/page.js":82,"./types/product/product-annotation.js":83,"./types/product/product-base.js":84,"./types/product/product-variation.js":85,"./types/product/product.js":86,"./types/scene/scene-annotation.js":87,"./types/scene/scene-audio.js":88,"./types/scene/scene-base.js":89,"./types/scene/scene-button.js":90,"./types/scene/scene-camera.js":91,"./types/scene/scene-carousel.js":92,"./types/scene/scene-image.js":93,"./types/scene/scene-model.js":94,"./types/scene/scene-panorama.js":95,"./types/scene/scene-poller.js":96,"./types/scene/scene-product.js":97,"./types/scene/scene-script.js":98,"./types/scene/scene-shadow.js":99,"./types/scene/scene-video.js":100,"./types/scene/scene-volumetric.js":101,"./types/scene/scene-youtube.js":102,"./types/scene/scene.js":103,"./types/trigger/trigger-image.js":104,"./util/plattar-util.js":105,"./version":106}],44:[function(require,module,exports){
|
|
3787
3934
|
const fetch = require("node-fetch");
|
|
3788
3935
|
|
|
3789
3936
|
class PlattarQuery {
|
|
@@ -4275,7 +4422,7 @@ PlattarQuery._DeleteGlobalCachedObject = (obj) => {
|
|
|
4275
4422
|
};
|
|
4276
4423
|
|
|
4277
4424
|
module.exports = PlattarQuery;
|
|
4278
|
-
},{"../util/plattar-util.js":
|
|
4425
|
+
},{"../util/plattar-util.js":105,"node-fetch":131}],45:[function(require,module,exports){
|
|
4279
4426
|
(function (process){(function (){
|
|
4280
4427
|
const fetch = require("node-fetch");
|
|
4281
4428
|
|
|
@@ -4480,7 +4627,7 @@ PlattarServer.location = () => {
|
|
|
4480
4627
|
|
|
4481
4628
|
module.exports = PlattarServer;
|
|
4482
4629
|
}).call(this)}).call(this,require('_process'))
|
|
4483
|
-
},{"_process":
|
|
4630
|
+
},{"_process":133,"node-fetch":131}],46:[function(require,module,exports){
|
|
4484
4631
|
const PlattarBase = require("./interfaces/plattar-base.js");
|
|
4485
4632
|
|
|
4486
4633
|
class Application extends PlattarBase {
|
|
@@ -4490,7 +4637,7 @@ class Application extends PlattarBase {
|
|
|
4490
4637
|
}
|
|
4491
4638
|
|
|
4492
4639
|
module.exports = Application;
|
|
4493
|
-
},{"./interfaces/plattar-base.js":
|
|
4640
|
+
},{"./interfaces/plattar-base.js":62}],47:[function(require,module,exports){
|
|
4494
4641
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4495
4642
|
|
|
4496
4643
|
class Brief extends PlattarBase {
|
|
@@ -4500,7 +4647,7 @@ class Brief extends PlattarBase {
|
|
|
4500
4647
|
}
|
|
4501
4648
|
|
|
4502
4649
|
module.exports = Brief;
|
|
4503
|
-
},{"../interfaces/plattar-base":
|
|
4650
|
+
},{"../interfaces/plattar-base":62}],48:[function(require,module,exports){
|
|
4504
4651
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4505
4652
|
|
|
4506
4653
|
class CommentBrief extends PlattarBase {
|
|
@@ -4510,7 +4657,7 @@ class CommentBrief extends PlattarBase {
|
|
|
4510
4657
|
}
|
|
4511
4658
|
|
|
4512
4659
|
module.exports = CommentBrief;
|
|
4513
|
-
},{"../interfaces/plattar-base":
|
|
4660
|
+
},{"../interfaces/plattar-base":62}],49:[function(require,module,exports){
|
|
4514
4661
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4515
4662
|
|
|
4516
4663
|
class CommentQuote extends PlattarBase {
|
|
@@ -4520,7 +4667,7 @@ class CommentQuote extends PlattarBase {
|
|
|
4520
4667
|
}
|
|
4521
4668
|
|
|
4522
4669
|
module.exports = CommentQuote;
|
|
4523
|
-
},{"../interfaces/plattar-base":
|
|
4670
|
+
},{"../interfaces/plattar-base":62}],50:[function(require,module,exports){
|
|
4524
4671
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4525
4672
|
|
|
4526
4673
|
class CommentSolution extends PlattarBase {
|
|
@@ -4530,7 +4677,7 @@ class CommentSolution extends PlattarBase {
|
|
|
4530
4677
|
}
|
|
4531
4678
|
|
|
4532
4679
|
module.exports = CommentSolution;
|
|
4533
|
-
},{"../interfaces/plattar-base":
|
|
4680
|
+
},{"../interfaces/plattar-base":62}],51:[function(require,module,exports){
|
|
4534
4681
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4535
4682
|
|
|
4536
4683
|
class Folder extends PlattarBase {
|
|
@@ -4540,7 +4687,7 @@ class Folder extends PlattarBase {
|
|
|
4540
4687
|
}
|
|
4541
4688
|
|
|
4542
4689
|
module.exports = Folder;
|
|
4543
|
-
},{"../interfaces/plattar-base":
|
|
4690
|
+
},{"../interfaces/plattar-base":62}],52:[function(require,module,exports){
|
|
4544
4691
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4545
4692
|
|
|
4546
4693
|
class PipelineUser extends PlattarBase {
|
|
@@ -4550,7 +4697,7 @@ class PipelineUser extends PlattarBase {
|
|
|
4550
4697
|
}
|
|
4551
4698
|
|
|
4552
4699
|
module.exports = PipelineUser;
|
|
4553
|
-
},{"../interfaces/plattar-base":
|
|
4700
|
+
},{"../interfaces/plattar-base":62}],53:[function(require,module,exports){
|
|
4554
4701
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4555
4702
|
|
|
4556
4703
|
class Quote extends PlattarBase {
|
|
@@ -4560,7 +4707,7 @@ class Quote extends PlattarBase {
|
|
|
4560
4707
|
}
|
|
4561
4708
|
|
|
4562
4709
|
module.exports = Quote;
|
|
4563
|
-
},{"../interfaces/plattar-base":
|
|
4710
|
+
},{"../interfaces/plattar-base":62}],54:[function(require,module,exports){
|
|
4564
4711
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4565
4712
|
|
|
4566
4713
|
class Rating extends PlattarBase {
|
|
@@ -4570,7 +4717,7 @@ class Rating extends PlattarBase {
|
|
|
4570
4717
|
}
|
|
4571
4718
|
|
|
4572
4719
|
module.exports = Rating;
|
|
4573
|
-
},{"../interfaces/plattar-base":
|
|
4720
|
+
},{"../interfaces/plattar-base":62}],55:[function(require,module,exports){
|
|
4574
4721
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
4575
4722
|
|
|
4576
4723
|
class Solution extends PlattarBase {
|
|
@@ -4580,7 +4727,7 @@ class Solution extends PlattarBase {
|
|
|
4580
4727
|
}
|
|
4581
4728
|
|
|
4582
4729
|
module.exports = Solution;
|
|
4583
|
-
},{"../interfaces/plattar-base":
|
|
4730
|
+
},{"../interfaces/plattar-base":62}],56:[function(require,module,exports){
|
|
4584
4731
|
const FileBase = require("./file-base.js");
|
|
4585
4732
|
|
|
4586
4733
|
class FileAudio extends FileBase {
|
|
@@ -4590,7 +4737,7 @@ class FileAudio extends FileBase {
|
|
|
4590
4737
|
}
|
|
4591
4738
|
|
|
4592
4739
|
module.exports = FileAudio;
|
|
4593
|
-
},{"./file-base.js":
|
|
4740
|
+
},{"./file-base.js":57}],57:[function(require,module,exports){
|
|
4594
4741
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
4595
4742
|
const Server = require("../../server/plattar-server.js");
|
|
4596
4743
|
|
|
@@ -4650,7 +4797,7 @@ class FileBase extends PlattarBase {
|
|
|
4650
4797
|
}
|
|
4651
4798
|
|
|
4652
4799
|
module.exports = FileBase;
|
|
4653
|
-
},{"../../server/plattar-server.js":
|
|
4800
|
+
},{"../../server/plattar-server.js":45,"../interfaces/plattar-base.js":62,"./file-audio.js":56,"./file-image.js":58,"./file-model.js":59,"./file-video.js":61}],58:[function(require,module,exports){
|
|
4654
4801
|
const FileBase = require("./file-base.js");
|
|
4655
4802
|
|
|
4656
4803
|
class FileImage extends FileBase {
|
|
@@ -4660,7 +4807,7 @@ class FileImage extends FileBase {
|
|
|
4660
4807
|
}
|
|
4661
4808
|
|
|
4662
4809
|
module.exports = FileImage;
|
|
4663
|
-
},{"./file-base.js":
|
|
4810
|
+
},{"./file-base.js":57}],59:[function(require,module,exports){
|
|
4664
4811
|
const FileBase = require("./file-base.js");
|
|
4665
4812
|
|
|
4666
4813
|
class FileModel extends FileBase {
|
|
@@ -4670,7 +4817,7 @@ class FileModel extends FileBase {
|
|
|
4670
4817
|
}
|
|
4671
4818
|
|
|
4672
4819
|
module.exports = FileModel;
|
|
4673
|
-
},{"./file-base.js":
|
|
4820
|
+
},{"./file-base.js":57}],60:[function(require,module,exports){
|
|
4674
4821
|
const FileBase = require("./file-base.js");
|
|
4675
4822
|
|
|
4676
4823
|
class FileScript extends FileBase {
|
|
@@ -4680,7 +4827,7 @@ class FileScript extends FileBase {
|
|
|
4680
4827
|
}
|
|
4681
4828
|
|
|
4682
4829
|
module.exports = FileScript;
|
|
4683
|
-
},{"./file-base.js":
|
|
4830
|
+
},{"./file-base.js":57}],61:[function(require,module,exports){
|
|
4684
4831
|
const FileBase = require("./file-base.js");
|
|
4685
4832
|
|
|
4686
4833
|
class FileVideo extends FileBase {
|
|
@@ -4690,7 +4837,7 @@ class FileVideo extends FileBase {
|
|
|
4690
4837
|
}
|
|
4691
4838
|
|
|
4692
4839
|
module.exports = FileVideo;
|
|
4693
|
-
},{"./file-base.js":
|
|
4840
|
+
},{"./file-base.js":57}],62:[function(require,module,exports){
|
|
4694
4841
|
const PlattarObject = require("./plattar-object.js");
|
|
4695
4842
|
const Server = require("../../server/plattar-server.js");
|
|
4696
4843
|
|
|
@@ -4705,7 +4852,7 @@ class PlattarBase extends PlattarObject {
|
|
|
4705
4852
|
}
|
|
4706
4853
|
|
|
4707
4854
|
module.exports = PlattarBase;
|
|
4708
|
-
},{"../../server/plattar-server.js":
|
|
4855
|
+
},{"../../server/plattar-server.js":45,"./plattar-object.js":64}],63:[function(require,module,exports){
|
|
4709
4856
|
/**
|
|
4710
4857
|
* Handles the list of relationships for the provided object
|
|
4711
4858
|
*/
|
|
@@ -4826,7 +4973,7 @@ class PlattarObjectRelations {
|
|
|
4826
4973
|
}
|
|
4827
4974
|
|
|
4828
4975
|
module.exports = PlattarObjectRelations;
|
|
4829
|
-
},{"../../util/plattar-util.js":
|
|
4976
|
+
},{"../../util/plattar-util.js":105}],64:[function(require,module,exports){
|
|
4830
4977
|
const PlattarQuery = require("../../server/plattar-query.js");
|
|
4831
4978
|
const PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
4832
4979
|
|
|
@@ -4969,7 +5116,7 @@ class PlattarObject {
|
|
|
4969
5116
|
}
|
|
4970
5117
|
|
|
4971
5118
|
module.exports = PlattarObject;
|
|
4972
|
-
},{"../../server/plattar-query.js":
|
|
5119
|
+
},{"../../server/plattar-query.js":44,"./plattar-object-relations.js":63}],65:[function(require,module,exports){
|
|
4973
5120
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
4974
5121
|
|
|
4975
5122
|
class ApplicationBuild extends PlattarBase {
|
|
@@ -4979,7 +5126,7 @@ class ApplicationBuild extends PlattarBase {
|
|
|
4979
5126
|
}
|
|
4980
5127
|
|
|
4981
5128
|
module.exports = ApplicationBuild;
|
|
4982
|
-
},{"../interfaces/plattar-base.js":
|
|
5129
|
+
},{"../interfaces/plattar-base.js":62}],66:[function(require,module,exports){
|
|
4983
5130
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
4984
5131
|
|
|
4985
5132
|
class AssetLibrary extends PlattarBase {
|
|
@@ -4989,7 +5136,7 @@ class AssetLibrary extends PlattarBase {
|
|
|
4989
5136
|
}
|
|
4990
5137
|
|
|
4991
5138
|
module.exports = AssetLibrary;
|
|
4992
|
-
},{"../interfaces/plattar-base.js":
|
|
5139
|
+
},{"../interfaces/plattar-base.js":62}],67:[function(require,module,exports){
|
|
4993
5140
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
4994
5141
|
|
|
4995
5142
|
class AsyncJob extends PlattarBase {
|
|
@@ -5003,7 +5150,7 @@ class AsyncJob extends PlattarBase {
|
|
|
5003
5150
|
}
|
|
5004
5151
|
|
|
5005
5152
|
module.exports = AsyncJob;
|
|
5006
|
-
},{"../interfaces/plattar-base.js":
|
|
5153
|
+
},{"../interfaces/plattar-base.js":62}],68:[function(require,module,exports){
|
|
5007
5154
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5008
5155
|
|
|
5009
5156
|
class ScriptEvent extends PlattarBase {
|
|
@@ -5013,7 +5160,7 @@ class ScriptEvent extends PlattarBase {
|
|
|
5013
5160
|
}
|
|
5014
5161
|
|
|
5015
5162
|
module.exports = ScriptEvent;
|
|
5016
|
-
},{"../interfaces/plattar-base.js":
|
|
5163
|
+
},{"../interfaces/plattar-base.js":62}],69:[function(require,module,exports){
|
|
5017
5164
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5018
5165
|
|
|
5019
5166
|
class Tag extends PlattarBase {
|
|
@@ -5023,7 +5170,7 @@ class Tag extends PlattarBase {
|
|
|
5023
5170
|
}
|
|
5024
5171
|
|
|
5025
5172
|
module.exports = Tag;
|
|
5026
|
-
},{"../interfaces/plattar-base.js":
|
|
5173
|
+
},{"../interfaces/plattar-base.js":62}],70:[function(require,module,exports){
|
|
5027
5174
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5028
5175
|
const Server = require("../../server/plattar-server.js");
|
|
5029
5176
|
|
|
@@ -5054,7 +5201,7 @@ class CardBase extends PlattarBase {
|
|
|
5054
5201
|
}
|
|
5055
5202
|
|
|
5056
5203
|
module.exports = CardBase;
|
|
5057
|
-
},{"../../server/plattar-server.js":
|
|
5204
|
+
},{"../../server/plattar-server.js":45,"../interfaces/plattar-base.js":62,"./card-button.js":71,"./card-html.js":72,"./card-iframe.js":73,"./card-image.js":74,"./card-map.js":75,"./card-paragraph.js":76,"./card-row.js":77,"./card-slider.js":78,"./card-title.js":79,"./card-video.js":80,"./card-youtube.js":81}],71:[function(require,module,exports){
|
|
5058
5205
|
const CardBase = require("./card-base.js");
|
|
5059
5206
|
|
|
5060
5207
|
class CardButton extends CardBase {
|
|
@@ -5064,7 +5211,7 @@ class CardButton extends CardBase {
|
|
|
5064
5211
|
}
|
|
5065
5212
|
|
|
5066
5213
|
module.exports = CardButton;
|
|
5067
|
-
},{"./card-base.js":
|
|
5214
|
+
},{"./card-base.js":70}],72:[function(require,module,exports){
|
|
5068
5215
|
const CardBase = require("./card-base.js");
|
|
5069
5216
|
|
|
5070
5217
|
class CardHTML extends CardBase {
|
|
@@ -5074,7 +5221,7 @@ class CardHTML extends CardBase {
|
|
|
5074
5221
|
}
|
|
5075
5222
|
|
|
5076
5223
|
module.exports = CardHTML;
|
|
5077
|
-
},{"./card-base.js":
|
|
5224
|
+
},{"./card-base.js":70}],73:[function(require,module,exports){
|
|
5078
5225
|
const CardBase = require("./card-base.js");
|
|
5079
5226
|
|
|
5080
5227
|
class CardIFrame extends CardBase {
|
|
@@ -5084,7 +5231,7 @@ class CardIFrame extends CardBase {
|
|
|
5084
5231
|
}
|
|
5085
5232
|
|
|
5086
5233
|
module.exports = CardIFrame;
|
|
5087
|
-
},{"./card-base.js":
|
|
5234
|
+
},{"./card-base.js":70}],74:[function(require,module,exports){
|
|
5088
5235
|
const CardBase = require("./card-base.js");
|
|
5089
5236
|
|
|
5090
5237
|
class CardImage extends CardBase {
|
|
@@ -5094,7 +5241,7 @@ class CardImage extends CardBase {
|
|
|
5094
5241
|
}
|
|
5095
5242
|
|
|
5096
5243
|
module.exports = CardImage;
|
|
5097
|
-
},{"./card-base.js":
|
|
5244
|
+
},{"./card-base.js":70}],75:[function(require,module,exports){
|
|
5098
5245
|
const CardBase = require("./card-base.js");
|
|
5099
5246
|
|
|
5100
5247
|
class CardMap extends CardBase {
|
|
@@ -5104,7 +5251,7 @@ class CardMap extends CardBase {
|
|
|
5104
5251
|
}
|
|
5105
5252
|
|
|
5106
5253
|
module.exports = CardMap;
|
|
5107
|
-
},{"./card-base.js":
|
|
5254
|
+
},{"./card-base.js":70}],76:[function(require,module,exports){
|
|
5108
5255
|
const CardBase = require("./card-base.js");
|
|
5109
5256
|
|
|
5110
5257
|
class CardParagraph extends CardBase {
|
|
@@ -5114,7 +5261,7 @@ class CardParagraph extends CardBase {
|
|
|
5114
5261
|
}
|
|
5115
5262
|
|
|
5116
5263
|
module.exports = CardParagraph;
|
|
5117
|
-
},{"./card-base.js":
|
|
5264
|
+
},{"./card-base.js":70}],77:[function(require,module,exports){
|
|
5118
5265
|
const CardBase = require("./card-base.js");
|
|
5119
5266
|
|
|
5120
5267
|
class CardRow extends CardBase {
|
|
@@ -5124,7 +5271,7 @@ class CardRow extends CardBase {
|
|
|
5124
5271
|
}
|
|
5125
5272
|
|
|
5126
5273
|
module.exports = CardRow;
|
|
5127
|
-
},{"./card-base.js":
|
|
5274
|
+
},{"./card-base.js":70}],78:[function(require,module,exports){
|
|
5128
5275
|
const CardBase = require("./card-base.js");
|
|
5129
5276
|
|
|
5130
5277
|
class CardSlider extends CardBase {
|
|
@@ -5134,7 +5281,7 @@ class CardSlider extends CardBase {
|
|
|
5134
5281
|
}
|
|
5135
5282
|
|
|
5136
5283
|
module.exports = CardSlider;
|
|
5137
|
-
},{"./card-base.js":
|
|
5284
|
+
},{"./card-base.js":70}],79:[function(require,module,exports){
|
|
5138
5285
|
const CardBase = require("./card-base.js");
|
|
5139
5286
|
|
|
5140
5287
|
class CardTitle extends CardBase {
|
|
@@ -5144,7 +5291,7 @@ class CardTitle extends CardBase {
|
|
|
5144
5291
|
}
|
|
5145
5292
|
|
|
5146
5293
|
module.exports = CardTitle;
|
|
5147
|
-
},{"./card-base.js":
|
|
5294
|
+
},{"./card-base.js":70}],80:[function(require,module,exports){
|
|
5148
5295
|
const CardBase = require("./card-base.js");
|
|
5149
5296
|
|
|
5150
5297
|
class CardVideo extends CardBase {
|
|
@@ -5154,7 +5301,7 @@ class CardVideo extends CardBase {
|
|
|
5154
5301
|
}
|
|
5155
5302
|
|
|
5156
5303
|
module.exports = CardVideo;
|
|
5157
|
-
},{"./card-base.js":
|
|
5304
|
+
},{"./card-base.js":70}],81:[function(require,module,exports){
|
|
5158
5305
|
const CardBase = require("./card-base.js");
|
|
5159
5306
|
|
|
5160
5307
|
class CardYoutube extends CardBase {
|
|
@@ -5164,7 +5311,7 @@ class CardYoutube extends CardBase {
|
|
|
5164
5311
|
}
|
|
5165
5312
|
|
|
5166
5313
|
module.exports = CardYoutube;
|
|
5167
|
-
},{"./card-base.js":
|
|
5314
|
+
},{"./card-base.js":70}],82:[function(require,module,exports){
|
|
5168
5315
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5169
5316
|
|
|
5170
5317
|
class Page extends PlattarBase {
|
|
@@ -5174,7 +5321,7 @@ class Page extends PlattarBase {
|
|
|
5174
5321
|
}
|
|
5175
5322
|
|
|
5176
5323
|
module.exports = Page;
|
|
5177
|
-
},{"../interfaces/plattar-base.js":
|
|
5324
|
+
},{"../interfaces/plattar-base.js":62}],83:[function(require,module,exports){
|
|
5178
5325
|
const ProductBase = require("./product-base.js");
|
|
5179
5326
|
|
|
5180
5327
|
class ProductAnnotation extends ProductBase {
|
|
@@ -5184,7 +5331,7 @@ class ProductAnnotation extends ProductBase {
|
|
|
5184
5331
|
}
|
|
5185
5332
|
|
|
5186
5333
|
module.exports = ProductAnnotation;
|
|
5187
|
-
},{"./product-base.js":
|
|
5334
|
+
},{"./product-base.js":84}],84:[function(require,module,exports){
|
|
5188
5335
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5189
5336
|
const Server = require("../../server/plattar-server.js");
|
|
5190
5337
|
|
|
@@ -5206,7 +5353,7 @@ class ProductBase extends PlattarBase {
|
|
|
5206
5353
|
}
|
|
5207
5354
|
|
|
5208
5355
|
module.exports = ProductBase;
|
|
5209
|
-
},{"../../server/plattar-server.js":
|
|
5356
|
+
},{"../../server/plattar-server.js":45,"../interfaces/plattar-base.js":62,"./product-annotation.js":83,"./product-variation.js":85}],85:[function(require,module,exports){
|
|
5210
5357
|
const ProductBase = require("./product-base.js");
|
|
5211
5358
|
|
|
5212
5359
|
class ProductVariation extends ProductBase {
|
|
@@ -5216,7 +5363,7 @@ class ProductVariation extends ProductBase {
|
|
|
5216
5363
|
}
|
|
5217
5364
|
|
|
5218
5365
|
module.exports = ProductVariation;
|
|
5219
|
-
},{"./product-base.js":
|
|
5366
|
+
},{"./product-base.js":84}],86:[function(require,module,exports){
|
|
5220
5367
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5221
5368
|
|
|
5222
5369
|
class Product extends PlattarBase {
|
|
@@ -5226,7 +5373,7 @@ class Product extends PlattarBase {
|
|
|
5226
5373
|
}
|
|
5227
5374
|
|
|
5228
5375
|
module.exports = Product;
|
|
5229
|
-
},{"../interfaces/plattar-base.js":
|
|
5376
|
+
},{"../interfaces/plattar-base.js":62}],87:[function(require,module,exports){
|
|
5230
5377
|
const SceneBase = require("./scene-base.js");
|
|
5231
5378
|
|
|
5232
5379
|
class SceneAnnotation extends SceneBase {
|
|
@@ -5236,7 +5383,7 @@ class SceneAnnotation extends SceneBase {
|
|
|
5236
5383
|
}
|
|
5237
5384
|
|
|
5238
5385
|
module.exports = SceneAnnotation;
|
|
5239
|
-
},{"./scene-base.js":
|
|
5386
|
+
},{"./scene-base.js":89}],88:[function(require,module,exports){
|
|
5240
5387
|
const SceneBase = require("./scene-base.js");
|
|
5241
5388
|
|
|
5242
5389
|
class SceneAudio extends SceneBase {
|
|
@@ -5246,7 +5393,7 @@ class SceneAudio extends SceneBase {
|
|
|
5246
5393
|
}
|
|
5247
5394
|
|
|
5248
5395
|
module.exports = SceneAudio;
|
|
5249
|
-
},{"./scene-base.js":
|
|
5396
|
+
},{"./scene-base.js":89}],89:[function(require,module,exports){
|
|
5250
5397
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5251
5398
|
const Server = require("../../server/plattar-server.js");
|
|
5252
5399
|
|
|
@@ -5280,7 +5427,7 @@ class SceneBase extends PlattarBase {
|
|
|
5280
5427
|
}
|
|
5281
5428
|
|
|
5282
5429
|
module.exports = SceneBase;
|
|
5283
|
-
},{"../../server/plattar-server.js":
|
|
5430
|
+
},{"../../server/plattar-server.js":45,"../interfaces/plattar-base.js":62,"./scene-annotation.js":87,"./scene-audio.js":88,"./scene-button.js":90,"./scene-camera.js":91,"./scene-carousel.js":92,"./scene-image.js":93,"./scene-model.js":94,"./scene-panorama.js":95,"./scene-poller.js":96,"./scene-product.js":97,"./scene-shadow.js":99,"./scene-video.js":100,"./scene-volumetric.js":101,"./scene-youtube.js":102}],90:[function(require,module,exports){
|
|
5284
5431
|
const SceneBase = require("./scene-base.js");
|
|
5285
5432
|
|
|
5286
5433
|
class SceneButton extends SceneBase {
|
|
@@ -5290,7 +5437,7 @@ class SceneButton extends SceneBase {
|
|
|
5290
5437
|
}
|
|
5291
5438
|
|
|
5292
5439
|
module.exports = SceneButton;
|
|
5293
|
-
},{"./scene-base.js":
|
|
5440
|
+
},{"./scene-base.js":89}],91:[function(require,module,exports){
|
|
5294
5441
|
const SceneBase = require("./scene-base.js");
|
|
5295
5442
|
|
|
5296
5443
|
class SceneCamera extends SceneBase {
|
|
@@ -5300,7 +5447,7 @@ class SceneCamera extends SceneBase {
|
|
|
5300
5447
|
}
|
|
5301
5448
|
|
|
5302
5449
|
module.exports = SceneCamera;
|
|
5303
|
-
},{"./scene-base.js":
|
|
5450
|
+
},{"./scene-base.js":89}],92:[function(require,module,exports){
|
|
5304
5451
|
const SceneBase = require("./scene-base.js");
|
|
5305
5452
|
|
|
5306
5453
|
class SceneCarousel extends SceneBase {
|
|
@@ -5310,7 +5457,7 @@ class SceneCarousel extends SceneBase {
|
|
|
5310
5457
|
}
|
|
5311
5458
|
|
|
5312
5459
|
module.exports = SceneCarousel;
|
|
5313
|
-
},{"./scene-base.js":
|
|
5460
|
+
},{"./scene-base.js":89}],93:[function(require,module,exports){
|
|
5314
5461
|
const SceneBase = require("./scene-base.js");
|
|
5315
5462
|
|
|
5316
5463
|
class SceneImage extends SceneBase {
|
|
@@ -5320,7 +5467,7 @@ class SceneImage extends SceneBase {
|
|
|
5320
5467
|
}
|
|
5321
5468
|
|
|
5322
5469
|
module.exports = SceneImage;
|
|
5323
|
-
},{"./scene-base.js":
|
|
5470
|
+
},{"./scene-base.js":89}],94:[function(require,module,exports){
|
|
5324
5471
|
const SceneBase = require("./scene-base.js");
|
|
5325
5472
|
|
|
5326
5473
|
class SceneModel extends SceneBase {
|
|
@@ -5330,7 +5477,7 @@ class SceneModel extends SceneBase {
|
|
|
5330
5477
|
}
|
|
5331
5478
|
|
|
5332
5479
|
module.exports = SceneModel;
|
|
5333
|
-
},{"./scene-base.js":
|
|
5480
|
+
},{"./scene-base.js":89}],95:[function(require,module,exports){
|
|
5334
5481
|
const SceneBase = require("./scene-base.js");
|
|
5335
5482
|
|
|
5336
5483
|
class ScenePanorama extends SceneBase {
|
|
@@ -5340,7 +5487,7 @@ class ScenePanorama extends SceneBase {
|
|
|
5340
5487
|
}
|
|
5341
5488
|
|
|
5342
5489
|
module.exports = ScenePanorama;
|
|
5343
|
-
},{"./scene-base.js":
|
|
5490
|
+
},{"./scene-base.js":89}],96:[function(require,module,exports){
|
|
5344
5491
|
const SceneBase = require("./scene-base.js");
|
|
5345
5492
|
|
|
5346
5493
|
class ScenePoller extends SceneBase {
|
|
@@ -5350,7 +5497,7 @@ class ScenePoller extends SceneBase {
|
|
|
5350
5497
|
}
|
|
5351
5498
|
|
|
5352
5499
|
module.exports = ScenePoller;
|
|
5353
|
-
},{"./scene-base.js":
|
|
5500
|
+
},{"./scene-base.js":89}],97:[function(require,module,exports){
|
|
5354
5501
|
const SceneBase = require("./scene-base.js");
|
|
5355
5502
|
|
|
5356
5503
|
class SceneProduct extends SceneBase {
|
|
@@ -5360,7 +5507,7 @@ class SceneProduct extends SceneBase {
|
|
|
5360
5507
|
}
|
|
5361
5508
|
|
|
5362
5509
|
module.exports = SceneProduct;
|
|
5363
|
-
},{"./scene-base.js":
|
|
5510
|
+
},{"./scene-base.js":89}],98:[function(require,module,exports){
|
|
5364
5511
|
const SceneBase = require("./scene-base.js");
|
|
5365
5512
|
|
|
5366
5513
|
class SceneScript extends SceneBase {
|
|
@@ -5370,7 +5517,7 @@ class SceneScript extends SceneBase {
|
|
|
5370
5517
|
}
|
|
5371
5518
|
|
|
5372
5519
|
module.exports = SceneScript;
|
|
5373
|
-
},{"./scene-base.js":
|
|
5520
|
+
},{"./scene-base.js":89}],99:[function(require,module,exports){
|
|
5374
5521
|
const SceneBase = require("./scene-base.js");
|
|
5375
5522
|
|
|
5376
5523
|
class SceneShadow extends SceneBase {
|
|
@@ -5380,7 +5527,7 @@ class SceneShadow extends SceneBase {
|
|
|
5380
5527
|
}
|
|
5381
5528
|
|
|
5382
5529
|
module.exports = SceneShadow;
|
|
5383
|
-
},{"./scene-base.js":
|
|
5530
|
+
},{"./scene-base.js":89}],100:[function(require,module,exports){
|
|
5384
5531
|
const SceneBase = require("./scene-base.js");
|
|
5385
5532
|
|
|
5386
5533
|
class SceneVideo extends SceneBase {
|
|
@@ -5390,7 +5537,7 @@ class SceneVideo extends SceneBase {
|
|
|
5390
5537
|
}
|
|
5391
5538
|
|
|
5392
5539
|
module.exports = SceneVideo;
|
|
5393
|
-
},{"./scene-base.js":
|
|
5540
|
+
},{"./scene-base.js":89}],101:[function(require,module,exports){
|
|
5394
5541
|
const SceneBase = require("./scene-base.js");
|
|
5395
5542
|
|
|
5396
5543
|
class SceneVolumetric extends SceneBase {
|
|
@@ -5400,7 +5547,7 @@ class SceneVolumetric extends SceneBase {
|
|
|
5400
5547
|
}
|
|
5401
5548
|
|
|
5402
5549
|
module.exports = SceneVolumetric;
|
|
5403
|
-
},{"./scene-base.js":
|
|
5550
|
+
},{"./scene-base.js":89}],102:[function(require,module,exports){
|
|
5404
5551
|
const SceneBase = require("./scene-base.js");
|
|
5405
5552
|
|
|
5406
5553
|
class SceneYoutube extends SceneBase {
|
|
@@ -5410,7 +5557,7 @@ class SceneYoutube extends SceneBase {
|
|
|
5410
5557
|
}
|
|
5411
5558
|
|
|
5412
5559
|
module.exports = SceneYoutube;
|
|
5413
|
-
},{"./scene-base.js":
|
|
5560
|
+
},{"./scene-base.js":89}],103:[function(require,module,exports){
|
|
5414
5561
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5415
5562
|
|
|
5416
5563
|
class Scene extends PlattarBase {
|
|
@@ -5420,7 +5567,7 @@ class Scene extends PlattarBase {
|
|
|
5420
5567
|
}
|
|
5421
5568
|
|
|
5422
5569
|
module.exports = Scene;
|
|
5423
|
-
},{"../interfaces/plattar-base.js":
|
|
5570
|
+
},{"../interfaces/plattar-base.js":62}],104:[function(require,module,exports){
|
|
5424
5571
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5425
5572
|
|
|
5426
5573
|
class TriggerImage extends PlattarBase {
|
|
@@ -5430,7 +5577,7 @@ class TriggerImage extends PlattarBase {
|
|
|
5430
5577
|
}
|
|
5431
5578
|
|
|
5432
5579
|
module.exports = TriggerImage;
|
|
5433
|
-
},{"../interfaces/plattar-base.js":
|
|
5580
|
+
},{"../interfaces/plattar-base.js":62}],105:[function(require,module,exports){
|
|
5434
5581
|
const Application = require("../types/application.js");
|
|
5435
5582
|
|
|
5436
5583
|
// import Scene types and its children
|
|
@@ -5657,10 +5804,10 @@ PlattarUtil.match = (type) => {
|
|
|
5657
5804
|
|
|
5658
5805
|
|
|
5659
5806
|
module.exports = PlattarUtil;
|
|
5660
|
-
},{"../types/application.js":
|
|
5807
|
+
},{"../types/application.js":46,"../types/content-pipeline/brief.js":47,"../types/content-pipeline/comment-brief.js":48,"../types/content-pipeline/comment-quote.js":49,"../types/content-pipeline/comment-solution.js":50,"../types/content-pipeline/folder.js":51,"../types/content-pipeline/pipeline-user.js":52,"../types/content-pipeline/quote.js":53,"../types/content-pipeline/rating.js":54,"../types/content-pipeline/solution.js":55,"../types/file/file-audio.js":56,"../types/file/file-image.js":58,"../types/file/file-model.js":59,"../types/file/file-script.js":60,"../types/file/file-video.js":61,"../types/interfaces/plattar-object.js":64,"../types/misc/application-build.js":65,"../types/misc/asset-library":66,"../types/misc/async-job.js":67,"../types/misc/script-event.js":68,"../types/misc/tag.js":69,"../types/page/card-button.js":71,"../types/page/card-html.js":72,"../types/page/card-iframe.js":73,"../types/page/card-image.js":74,"../types/page/card-map.js":75,"../types/page/card-paragraph.js":76,"../types/page/card-row.js":77,"../types/page/card-slider.js":78,"../types/page/card-title.js":79,"../types/page/card-video.js":80,"../types/page/card-youtube.js":81,"../types/page/page.js":82,"../types/product/product-annotation.js":83,"../types/product/product-variation.js":85,"../types/product/product.js":86,"../types/scene/scene-annotation.js":87,"../types/scene/scene-audio.js":88,"../types/scene/scene-button.js":90,"../types/scene/scene-camera.js":91,"../types/scene/scene-carousel.js":92,"../types/scene/scene-image.js":93,"../types/scene/scene-model.js":94,"../types/scene/scene-panorama.js":95,"../types/scene/scene-poller.js":96,"../types/scene/scene-product.js":97,"../types/scene/scene-script.js":98,"../types/scene/scene-shadow.js":99,"../types/scene/scene-video.js":100,"../types/scene/scene-volumetric.js":101,"../types/scene/scene-youtube.js":102,"../types/scene/scene.js":103,"../types/trigger/trigger-image.js":104}],106:[function(require,module,exports){
|
|
5661
5808
|
module.exports = "1.120.1";
|
|
5662
5809
|
|
|
5663
|
-
},{}],
|
|
5810
|
+
},{}],107:[function(require,module,exports){
|
|
5664
5811
|
const QRCodeStyling = require("qr-code-styling");
|
|
5665
5812
|
|
|
5666
5813
|
class BaseElement extends HTMLElement {
|
|
@@ -5707,8 +5854,8 @@ class BaseElement extends HTMLElement {
|
|
|
5707
5854
|
return;
|
|
5708
5855
|
}
|
|
5709
5856
|
|
|
5710
|
-
const width = this.hasAttribute("width") ?
|
|
5711
|
-
const height = this.hasAttribute("height") ?
|
|
5857
|
+
const width = this.hasAttribute("width") ? this.getAttribute("width") : "100%";
|
|
5858
|
+
const height = this.hasAttribute("height") ? this.getAttribute("height") : "100%";
|
|
5712
5859
|
const margin = this.hasAttribute("margin") ? this.getAttribute("margin") : 0;
|
|
5713
5860
|
const image = this.hasAttribute("image") ? this.getAttribute("image") : undefined;
|
|
5714
5861
|
const color = this.hasAttribute("color") ? this.getAttribute("color") : "#000000";
|
|
@@ -5837,8 +5984,8 @@ class BaseElement extends HTMLElement {
|
|
|
5837
5984
|
if (this._divContainer) {
|
|
5838
5985
|
const div = this._divContainer;
|
|
5839
5986
|
|
|
5840
|
-
div.style.width = width
|
|
5841
|
-
div.style.height = height
|
|
5987
|
+
div.style.width = width;
|
|
5988
|
+
div.style.height = height;
|
|
5842
5989
|
}
|
|
5843
5990
|
}
|
|
5844
5991
|
|
|
@@ -5901,7 +6048,7 @@ class BaseElement extends HTMLElement {
|
|
|
5901
6048
|
}
|
|
5902
6049
|
|
|
5903
6050
|
module.exports = BaseElement;
|
|
5904
|
-
},{"qr-code-styling":
|
|
6051
|
+
},{"qr-code-styling":134}],108:[function(require,module,exports){
|
|
5905
6052
|
const BaseElement = require("./base/base-element.js");
|
|
5906
6053
|
|
|
5907
6054
|
class QRCodeElement extends BaseElement {
|
|
@@ -5911,7 +6058,7 @@ class QRCodeElement extends BaseElement {
|
|
|
5911
6058
|
}
|
|
5912
6059
|
|
|
5913
6060
|
module.exports = QRCodeElement;
|
|
5914
|
-
},{"./base/base-element.js":
|
|
6061
|
+
},{"./base/base-element.js":107}],109:[function(require,module,exports){
|
|
5915
6062
|
"use strict";
|
|
5916
6063
|
const QRCodeElement = require("./elements/qrcode-element.js");
|
|
5917
6064
|
const Version = require("./version");
|
|
@@ -5927,10 +6074,10 @@ console.log("using @plattar/plattar-qrcode v" + Version);
|
|
|
5927
6074
|
module.exports = {
|
|
5928
6075
|
version: Version
|
|
5929
6076
|
};
|
|
5930
|
-
},{"./elements/qrcode-element.js":
|
|
5931
|
-
module.exports = "1.
|
|
6077
|
+
},{"./elements/qrcode-element.js":108,"./version":110}],110:[function(require,module,exports){
|
|
6078
|
+
module.exports = "1.134.1";
|
|
5932
6079
|
|
|
5933
|
-
},{}],
|
|
6080
|
+
},{}],111:[function(require,module,exports){
|
|
5934
6081
|
"use strict";
|
|
5935
6082
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5936
6083
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6087,7 +6234,7 @@ class Configurator {
|
|
|
6087
6234
|
}
|
|
6088
6235
|
exports.Configurator = Configurator;
|
|
6089
6236
|
|
|
6090
|
-
},{"./remote-request":
|
|
6237
|
+
},{"./remote-request":113,"@plattar/plattar-api":43,"object-hash":132}],112:[function(require,module,exports){
|
|
6091
6238
|
"use strict";
|
|
6092
6239
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6093
6240
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6151,7 +6298,7 @@ class ModelConverter {
|
|
|
6151
6298
|
}
|
|
6152
6299
|
exports.ModelConverter = ModelConverter;
|
|
6153
6300
|
|
|
6154
|
-
},{"./remote-request":
|
|
6301
|
+
},{"./remote-request":113,"@plattar/plattar-api":43,"object-hash":132}],113:[function(require,module,exports){
|
|
6155
6302
|
"use strict";
|
|
6156
6303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6157
6304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6219,7 +6366,7 @@ class RemoteRequest {
|
|
|
6219
6366
|
}
|
|
6220
6367
|
exports.RemoteRequest = RemoteRequest;
|
|
6221
6368
|
|
|
6222
|
-
},{"node-fetch":
|
|
6369
|
+
},{"node-fetch":131}],114:[function(require,module,exports){
|
|
6223
6370
|
"use strict";
|
|
6224
6371
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6225
6372
|
if (k2 === undefined) k2 = k;
|
|
@@ -6253,12 +6400,12 @@ exports.version = __importStar(require("./version"));
|
|
|
6253
6400
|
const version_1 = __importDefault(require("./version"));
|
|
6254
6401
|
console.log("using @plattar/plattar-services v" + version_1.default);
|
|
6255
6402
|
|
|
6256
|
-
},{"./core/configurator":
|
|
6403
|
+
},{"./core/configurator":111,"./core/model-converter":112,"./version":115}],115:[function(require,module,exports){
|
|
6257
6404
|
"use strict";
|
|
6258
6405
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6259
6406
|
exports.default = "1.120.1";
|
|
6260
6407
|
|
|
6261
|
-
},{}],
|
|
6408
|
+
},{}],116:[function(require,module,exports){
|
|
6262
6409
|
const Util = require("../../util/util");
|
|
6263
6410
|
const ElementController = require("../controllers/element-controller");
|
|
6264
6411
|
|
|
@@ -6404,7 +6551,7 @@ class BaseElement extends HTMLElement {
|
|
|
6404
6551
|
}
|
|
6405
6552
|
|
|
6406
6553
|
module.exports = BaseElement;
|
|
6407
|
-
},{"../../util/util":
|
|
6554
|
+
},{"../../util/util":129,"../controllers/element-controller":118}],117:[function(require,module,exports){
|
|
6408
6555
|
const BaseElement = require("./base/base-element.js");
|
|
6409
6556
|
|
|
6410
6557
|
class ConfiguratorElement extends BaseElement {
|
|
@@ -6442,7 +6589,7 @@ class ConfiguratorElement extends BaseElement {
|
|
|
6442
6589
|
}
|
|
6443
6590
|
|
|
6444
6591
|
module.exports = ConfiguratorElement;
|
|
6445
|
-
},{"./base/base-element.js":
|
|
6592
|
+
},{"./base/base-element.js":116}],118:[function(require,module,exports){
|
|
6446
6593
|
const Util = require("../../util/util.js");
|
|
6447
6594
|
const { messenger } = require("@plattar/context-messenger");
|
|
6448
6595
|
const IFrameController = require("./iframe-controller.js");
|
|
@@ -6539,7 +6686,7 @@ class ElementController {
|
|
|
6539
6686
|
}
|
|
6540
6687
|
|
|
6541
6688
|
module.exports = ElementController;
|
|
6542
|
-
},{"../../util/util.js":
|
|
6689
|
+
},{"../../util/util.js":129,"./iframe-controller.js":119,"@plattar/context-messenger":21}],119:[function(require,module,exports){
|
|
6543
6690
|
const Util = require("../../util/util.js");
|
|
6544
6691
|
|
|
6545
6692
|
class IFrameController {
|
|
@@ -6641,7 +6788,7 @@ class IFrameController {
|
|
|
6641
6788
|
}
|
|
6642
6789
|
|
|
6643
6790
|
module.exports = IFrameController;
|
|
6644
|
-
},{"../../util/util.js":
|
|
6791
|
+
},{"../../util/util.js":129}],120:[function(require,module,exports){
|
|
6645
6792
|
const BaseElement = require("./base/base-element.js");
|
|
6646
6793
|
|
|
6647
6794
|
class EditorElement extends BaseElement {
|
|
@@ -6659,7 +6806,7 @@ class EditorElement extends BaseElement {
|
|
|
6659
6806
|
}
|
|
6660
6807
|
|
|
6661
6808
|
module.exports = EditorElement;
|
|
6662
|
-
},{"./base/base-element.js":
|
|
6809
|
+
},{"./base/base-element.js":116}],121:[function(require,module,exports){
|
|
6663
6810
|
const BaseElement = require("./base/base-element.js");
|
|
6664
6811
|
|
|
6665
6812
|
class EWallElement extends BaseElement {
|
|
@@ -6696,7 +6843,7 @@ class EWallElement extends BaseElement {
|
|
|
6696
6843
|
}
|
|
6697
6844
|
|
|
6698
6845
|
module.exports = EWallElement;
|
|
6699
|
-
},{"./base/base-element.js":
|
|
6846
|
+
},{"./base/base-element.js":116}],122:[function(require,module,exports){
|
|
6700
6847
|
const BaseElement = require("./base/base-element.js");
|
|
6701
6848
|
|
|
6702
6849
|
class FaceARElement extends BaseElement {
|
|
@@ -6716,6 +6863,9 @@ class FaceARElement extends BaseElement {
|
|
|
6716
6863
|
return [{
|
|
6717
6864
|
key: "variation-id",
|
|
6718
6865
|
map: "variationId"
|
|
6866
|
+
}, {
|
|
6867
|
+
key: "variation-sku",
|
|
6868
|
+
map: "variationSku"
|
|
6719
6869
|
}, {
|
|
6720
6870
|
key: "product-id",
|
|
6721
6871
|
map: "productId"
|
|
@@ -6730,7 +6880,7 @@ class FaceARElement extends BaseElement {
|
|
|
6730
6880
|
}
|
|
6731
6881
|
|
|
6732
6882
|
module.exports = FaceARElement;
|
|
6733
|
-
},{"./base/base-element.js":
|
|
6883
|
+
},{"./base/base-element.js":116}],123:[function(require,module,exports){
|
|
6734
6884
|
const BaseElement = require("./base/base-element.js");
|
|
6735
6885
|
|
|
6736
6886
|
class ModelElement extends BaseElement {
|
|
@@ -6752,10 +6902,17 @@ class ModelElement extends BaseElement {
|
|
|
6752
6902
|
map: "model_id"
|
|
6753
6903
|
}];
|
|
6754
6904
|
}
|
|
6905
|
+
|
|
6906
|
+
get optionalAttributes() {
|
|
6907
|
+
return [{
|
|
6908
|
+
key: "mode",
|
|
6909
|
+
map: "mode"
|
|
6910
|
+
}];
|
|
6911
|
+
}
|
|
6755
6912
|
}
|
|
6756
6913
|
|
|
6757
6914
|
module.exports = ModelElement;
|
|
6758
|
-
},{"./base/base-element.js":
|
|
6915
|
+
},{"./base/base-element.js":116}],124:[function(require,module,exports){
|
|
6759
6916
|
const BaseElement = require("./base/base-element.js");
|
|
6760
6917
|
|
|
6761
6918
|
class ProductElement extends BaseElement {
|
|
@@ -6782,6 +6939,9 @@ class ProductElement extends BaseElement {
|
|
|
6782
6939
|
return [{
|
|
6783
6940
|
key: "variation-id",
|
|
6784
6941
|
map: "variation_id"
|
|
6942
|
+
}, {
|
|
6943
|
+
key: "variation-sku",
|
|
6944
|
+
map: "variationSku"
|
|
6785
6945
|
}, {
|
|
6786
6946
|
key: "show-ar",
|
|
6787
6947
|
map: "show_ar"
|
|
@@ -6790,7 +6950,7 @@ class ProductElement extends BaseElement {
|
|
|
6790
6950
|
}
|
|
6791
6951
|
|
|
6792
6952
|
module.exports = ProductElement;
|
|
6793
|
-
},{"./base/base-element.js":
|
|
6953
|
+
},{"./base/base-element.js":116}],125:[function(require,module,exports){
|
|
6794
6954
|
const BaseElement = require("./base/base-element.js");
|
|
6795
6955
|
|
|
6796
6956
|
class StudioElement extends BaseElement {
|
|
@@ -6808,7 +6968,7 @@ class StudioElement extends BaseElement {
|
|
|
6808
6968
|
}
|
|
6809
6969
|
|
|
6810
6970
|
module.exports = StudioElement;
|
|
6811
|
-
},{"./base/base-element.js":
|
|
6971
|
+
},{"./base/base-element.js":116}],126:[function(require,module,exports){
|
|
6812
6972
|
const BaseElement = require("./base/base-element.js");
|
|
6813
6973
|
|
|
6814
6974
|
class ViewerElement extends BaseElement {
|
|
@@ -6828,6 +6988,9 @@ class ViewerElement extends BaseElement {
|
|
|
6828
6988
|
return [{
|
|
6829
6989
|
key: "variation-id",
|
|
6830
6990
|
map: "variationId"
|
|
6991
|
+
}, {
|
|
6992
|
+
key: "variation-sku",
|
|
6993
|
+
map: "variationSku"
|
|
6831
6994
|
}, {
|
|
6832
6995
|
key: "product-id",
|
|
6833
6996
|
map: "productId"
|
|
@@ -6839,7 +7002,7 @@ class ViewerElement extends BaseElement {
|
|
|
6839
7002
|
}
|
|
6840
7003
|
|
|
6841
7004
|
module.exports = ViewerElement;
|
|
6842
|
-
},{"./base/base-element.js":
|
|
7005
|
+
},{"./base/base-element.js":116}],127:[function(require,module,exports){
|
|
6843
7006
|
const BaseElement = require("./base/base-element.js");
|
|
6844
7007
|
|
|
6845
7008
|
class WebXRElement extends BaseElement {
|
|
@@ -6857,7 +7020,7 @@ class WebXRElement extends BaseElement {
|
|
|
6857
7020
|
}
|
|
6858
7021
|
|
|
6859
7022
|
module.exports = WebXRElement;
|
|
6860
|
-
},{"./base/base-element.js":
|
|
7023
|
+
},{"./base/base-element.js":116}],128:[function(require,module,exports){
|
|
6861
7024
|
"use strict";
|
|
6862
7025
|
const WebXRElement = require("./elements/webxr-element.js");
|
|
6863
7026
|
const ViewerElement = require("./elements/viewer-element.js");
|
|
@@ -6911,7 +7074,7 @@ console.log("using @plattar/plattar-web v" + Version);
|
|
|
6911
7074
|
module.exports = {
|
|
6912
7075
|
version: Version
|
|
6913
7076
|
};
|
|
6914
|
-
},{"./elements/configurator-element.js":
|
|
7077
|
+
},{"./elements/configurator-element.js":117,"./elements/editor-element.js":120,"./elements/ewall-element.js":121,"./elements/facear-element.js":122,"./elements/model-element.js":123,"./elements/product-element.js":124,"./elements/studio-element.js":125,"./elements/viewer-element.js":126,"./elements/webxr-element.js":127,"./version":130}],129:[function(require,module,exports){
|
|
6915
7078
|
class Util {
|
|
6916
7079
|
static getServerLocation(server) {
|
|
6917
7080
|
switch (server) {
|
|
@@ -6968,10 +7131,10 @@ class Util {
|
|
|
6968
7131
|
}
|
|
6969
7132
|
|
|
6970
7133
|
module.exports = Util;
|
|
6971
|
-
},{}],129:[function(require,module,exports){
|
|
6972
|
-
module.exports = "1.130.1";
|
|
6973
|
-
|
|
6974
7134
|
},{}],130:[function(require,module,exports){
|
|
7135
|
+
module.exports = "1.135.1";
|
|
7136
|
+
|
|
7137
|
+
},{}],131:[function(require,module,exports){
|
|
6975
7138
|
(function (global){(function (){
|
|
6976
7139
|
"use strict";
|
|
6977
7140
|
|
|
@@ -6999,11 +7162,11 @@ exports.Headers = global.Headers;
|
|
|
6999
7162
|
exports.Request = global.Request;
|
|
7000
7163
|
exports.Response = global.Response;
|
|
7001
7164
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
7002
|
-
},{}],
|
|
7165
|
+
},{}],132:[function(require,module,exports){
|
|
7003
7166
|
(function (global){(function (){
|
|
7004
7167
|
!function(e){var t;"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):("undefined"!=typeof window?t=window:"undefined"!=typeof global?t=global:"undefined"!=typeof self&&(t=self),t.objectHash=e())}(function(){return function o(i,u,a){function s(n,e){if(!u[n]){if(!i[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(f)return f(n,!0);throw new Error("Cannot find module '"+n+"'")}var r=u[n]={exports:{}};i[n][0].call(r.exports,function(e){var t=i[n][1][e];return s(t||e)},r,r.exports,o,i,u,a)}return u[n].exports}for(var f="function"==typeof require&&require,e=0;e<a.length;e++)s(a[e]);return s}({1:[function(w,b,m){(function(e,t,f,n,r,o,i,u,a){"use strict";var s=w("crypto");function c(e,t){return function(e,t){var n;n="passthrough"!==t.algorithm?s.createHash(t.algorithm):new y;void 0===n.write&&(n.write=n.update,n.end=n.update);g(t,n).dispatch(e),n.update||n.end("");if(n.digest)return n.digest("buffer"===t.encoding?void 0:t.encoding);var r=n.read();return"buffer"!==t.encoding?r.toString(t.encoding):r}(e,t=h(e,t))}(m=b.exports=c).sha1=function(e){return c(e)},m.keys=function(e){return c(e,{excludeValues:!0,algorithm:"sha1",encoding:"hex"})},m.MD5=function(e){return c(e,{algorithm:"md5",encoding:"hex"})},m.keysMD5=function(e){return c(e,{algorithm:"md5",encoding:"hex",excludeValues:!0})};var l=s.getHashes?s.getHashes().slice():["sha1","md5"];l.push("passthrough");var d=["buffer","hex","binary","base64"];function h(e,t){t=t||{};var n={};if(n.algorithm=t.algorithm||"sha1",n.encoding=t.encoding||"hex",n.excludeValues=!!t.excludeValues,n.algorithm=n.algorithm.toLowerCase(),n.encoding=n.encoding.toLowerCase(),n.ignoreUnknown=!0===t.ignoreUnknown,n.respectType=!1!==t.respectType,n.respectFunctionNames=!1!==t.respectFunctionNames,n.respectFunctionProperties=!1!==t.respectFunctionProperties,n.unorderedArrays=!0===t.unorderedArrays,n.unorderedSets=!1!==t.unorderedSets,n.unorderedObjects=!1!==t.unorderedObjects,n.replacer=t.replacer||void 0,n.excludeKeys=t.excludeKeys||void 0,void 0===e)throw new Error("Object argument required.");for(var r=0;r<l.length;++r)l[r].toLowerCase()===n.algorithm.toLowerCase()&&(n.algorithm=l[r]);if(-1===l.indexOf(n.algorithm))throw new Error('Algorithm "'+n.algorithm+'" not supported. supported values: '+l.join(", "));if(-1===d.indexOf(n.encoding)&&"passthrough"!==n.algorithm)throw new Error('Encoding "'+n.encoding+'" not supported. supported values: '+d.join(", "));return n}function p(e){if("function"==typeof e){return null!=/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i.exec(Function.prototype.toString.call(e))}}function g(u,t,a){a=a||[];function s(e){return t.update?t.update(e,"utf8"):t.write(e,"utf8")}return{dispatch:function(e){return u.replacer&&(e=u.replacer(e)),this["_"+(null===e?"null":typeof e)](e)},_object:function(t){var e=Object.prototype.toString.call(t),n=/\[object (.*)\]/i.exec(e);n=(n=n?n[1]:"unknown:["+e+"]").toLowerCase();var r;if(0<=(r=a.indexOf(t)))return this.dispatch("[CIRCULAR:"+r+"]");if(a.push(t),void 0!==f&&f.isBuffer&&f.isBuffer(t))return s("buffer:"),s(t);if("object"===n||"function"===n||"asyncfunction"===n){var o=Object.keys(t);u.unorderedObjects&&(o=o.sort()),!1===u.respectType||p(t)||o.splice(0,0,"prototype","__proto__","constructor"),u.excludeKeys&&(o=o.filter(function(e){return!u.excludeKeys(e)})),s("object:"+o.length+":");var i=this;return o.forEach(function(e){i.dispatch(e),s(":"),u.excludeValues||i.dispatch(t[e]),s(",")})}if(!this["_"+n]){if(u.ignoreUnknown)return s("["+n+"]");throw new Error('Unknown object type "'+n+'"')}this["_"+n](t)},_array:function(e,t){t=void 0!==t?t:!1!==u.unorderedArrays;var n=this;if(s("array:"+e.length+":"),!t||e.length<=1)return e.forEach(function(e){return n.dispatch(e)});var r=[],o=e.map(function(e){var t=new y,n=a.slice();return g(u,t,n).dispatch(e),r=r.concat(n.slice(a.length)),t.read().toString()});return a=a.concat(r),o.sort(),this._array(o,!1)},_date:function(e){return s("date:"+e.toJSON())},_symbol:function(e){return s("symbol:"+e.toString())},_error:function(e){return s("error:"+e.toString())},_boolean:function(e){return s("bool:"+e.toString())},_string:function(e){s("string:"+e.length+":"),s(e.toString())},_function:function(e){s("fn:"),p(e)?this.dispatch("[native]"):this.dispatch(e.toString()),!1!==u.respectFunctionNames&&this.dispatch("function-name:"+String(e.name)),u.respectFunctionProperties&&this._object(e)},_number:function(e){return s("number:"+e.toString())},_xml:function(e){return s("xml:"+e.toString())},_null:function(){return s("Null")},_undefined:function(){return s("Undefined")},_regexp:function(e){return s("regex:"+e.toString())},_uint8array:function(e){return s("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint8clampedarray:function(e){return s("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(e))},_int8array:function(e){return s("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint16array:function(e){return s("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_int16array:function(e){return s("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_uint32array:function(e){return s("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_int32array:function(e){return s("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_float32array:function(e){return s("float32array:"),this.dispatch(Array.prototype.slice.call(e))},_float64array:function(e){return s("float64array:"),this.dispatch(Array.prototype.slice.call(e))},_arraybuffer:function(e){return s("arraybuffer:"),this.dispatch(new Uint8Array(e))},_url:function(e){return s("url:"+e.toString())},_map:function(e){s("map:");var t=Array.from(e);return this._array(t,!1!==u.unorderedSets)},_set:function(e){s("set:");var t=Array.from(e);return this._array(t,!1!==u.unorderedSets)},_file:function(e){return s("file:"),this.dispatch([e.name,e.size,e.type,e.lastModfied])},_blob:function(){if(u.ignoreUnknown)return s("[blob]");throw Error('Hashing Blob objects is currently not supported\n(see https://github.com/puleos/object-hash/issues/26)\nUse "options.replacer" or "options.ignoreUnknown"\n')},_domwindow:function(){return s("domwindow")},_bigint:function(e){return s("bigint:"+e.toString())},_process:function(){return s("process")},_timer:function(){return s("timer")},_pipe:function(){return s("pipe")},_tcp:function(){return s("tcp")},_udp:function(){return s("udp")},_tty:function(){return s("tty")},_statwatcher:function(){return s("statwatcher")},_securecontext:function(){return s("securecontext")},_connection:function(){return s("connection")},_zlib:function(){return s("zlib")},_context:function(){return s("context")},_nodescript:function(){return s("nodescript")},_httpparser:function(){return s("httpparser")},_dataview:function(){return s("dataview")},_signal:function(){return s("signal")},_fsevent:function(){return s("fsevent")},_tlswrap:function(){return s("tlswrap")}}}function y(){return{buf:"",write:function(e){this.buf+=e},end:function(e){this.buf+=e},read:function(){return this.buf}}}m.writeToStream=function(e,t,n){return void 0===n&&(n=t,t={}),g(t=h(e,t),n).dispatch(e)}}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/fake_7eac155c.js","/")},{buffer:3,crypto:5,lYpoI2:10}],2:[function(e,t,f){(function(e,t,n,r,o,i,u,a,s){!function(e){"use strict";var f="undefined"!=typeof Uint8Array?Uint8Array:Array,n="+".charCodeAt(0),r="/".charCodeAt(0),o="0".charCodeAt(0),i="a".charCodeAt(0),u="A".charCodeAt(0),a="-".charCodeAt(0),s="_".charCodeAt(0);function c(e){var t=e.charCodeAt(0);return t===n||t===a?62:t===r||t===s?63:t<o?-1:t<o+10?t-o+26+26:t<u+26?t-u:t<i+26?t-i+26:void 0}e.toByteArray=function(e){var t,n;if(0<e.length%4)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.length,o="="===e.charAt(r-2)?2:"="===e.charAt(r-1)?1:0,i=new f(3*e.length/4-o),u=0<o?e.length-4:e.length,a=0;function s(e){i[a++]=e}for(t=0;t<u;t+=4,0)s((16711680&(n=c(e.charAt(t))<<18|c(e.charAt(t+1))<<12|c(e.charAt(t+2))<<6|c(e.charAt(t+3))))>>16),s((65280&n)>>8),s(255&n);return 2==o?s(255&(n=c(e.charAt(t))<<2|c(e.charAt(t+1))>>4)):1==o&&(s((n=c(e.charAt(t))<<10|c(e.charAt(t+1))<<4|c(e.charAt(t+2))>>2)>>8&255),s(255&n)),i},e.fromByteArray=function(e){var t,n,r,o,i=e.length%3,u="";function a(e){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e)}for(t=0,r=e.length-i;t<r;t+=3)n=(e[t]<<16)+(e[t+1]<<8)+e[t+2],u+=a((o=n)>>18&63)+a(o>>12&63)+a(o>>6&63)+a(63&o);switch(i){case 1:u+=a((n=e[e.length-1])>>2),u+=a(n<<4&63),u+="==";break;case 2:u+=a((n=(e[e.length-2]<<8)+e[e.length-1])>>10),u+=a(n>>4&63),u+=a(n<<2&63),u+="="}return u}}(void 0===f?this.base64js={}:f)}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/base64-js/lib/b64.js","/node_modules/gulp-browserify/node_modules/base64-js/lib")},{buffer:3,lYpoI2:10}],3:[function(O,e,H){(function(e,t,g,n,r,o,i,u,a){var s=O("base64-js"),f=O("ieee754");function g(e,t,n){if(!(this instanceof g))return new g(e,t,n);var r,o,i,u,a,s=typeof e;if("base64"===t&&"string"==s)for(e=(r=e).trim?r.trim():r.replace(/^\s+|\s+$/g,"");e.length%4!=0;)e+="=";if("number"==s)o=x(e);else if("string"==s)o=g.byteLength(e,t);else{if("object"!=s)throw new Error("First argument needs to be a number, array or string.");o=x(e.length)}if(g._useTypedArrays?i=g._augment(new Uint8Array(o)):((i=this).length=o,i._isBuffer=!0),g._useTypedArrays&&"number"==typeof e.byteLength)i._set(e);else if(S(a=e)||g.isBuffer(a)||a&&"object"==typeof a&&"number"==typeof a.length)for(u=0;u<o;u++)g.isBuffer(e)?i[u]=e.readUInt8(u):i[u]=e[u];else if("string"==s)i.write(e,0,t);else if("number"==s&&!g._useTypedArrays&&!n)for(u=0;u<o;u++)i[u]=0;return i}function y(e,t,n,r){return g._charsWritten=T(function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function w(e,t,n,r){return g._charsWritten=T(function(e){for(var t,n,r,o=[],i=0;i<e.length;i++)t=e.charCodeAt(i),n=t>>8,r=t%256,o.push(r),o.push(n);return o}(t),e,n,r)}function c(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;o<n;o++)r+=String.fromCharCode(e[o]);return r}function l(e,t,n,r){r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+1<e.length,"Trying to read beyond buffer length"));var o,i=e.length;if(!(i<=t))return n?(o=e[t],t+1<i&&(o|=e[t+1]<<8)):(o=e[t]<<8,t+1<i&&(o|=e[t+1])),o}function d(e,t,n,r){r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+3<e.length,"Trying to read beyond buffer length"));var o,i=e.length;if(!(i<=t))return n?(t+2<i&&(o=e[t+2]<<16),t+1<i&&(o|=e[t+1]<<8),o|=e[t],t+3<i&&(o+=e[t+3]<<24>>>0)):(t+1<i&&(o=e[t+1]<<16),t+2<i&&(o|=e[t+2]<<8),t+3<i&&(o|=e[t+3]),o+=e[t]<<24>>>0),o}function h(e,t,n,r){if(r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+1<e.length,"Trying to read beyond buffer length")),!(e.length<=t)){var o=l(e,t,n,!0);return 32768&o?-1*(65535-o+1):o}}function p(e,t,n,r){if(r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+3<e.length,"Trying to read beyond buffer length")),!(e.length<=t)){var o=d(e,t,n,!0);return 2147483648&o?-1*(4294967295-o+1):o}}function b(e,t,n,r){return r||(D("boolean"==typeof n,"missing or invalid endian"),D(t+3<e.length,"Trying to read beyond buffer length")),f.read(e,t,n,23,4)}function m(e,t,n,r){return r||(D("boolean"==typeof n,"missing or invalid endian"),D(t+7<e.length,"Trying to read beyond buffer length")),f.read(e,t,n,52,8)}function v(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+1<e.length,"trying to write beyond buffer length"),N(t,65535));var i=e.length;if(!(i<=n))for(var u=0,a=Math.min(i-n,2);u<a;u++)e[n+u]=(t&255<<8*(r?u:1-u))>>>8*(r?u:1-u)}function _(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"trying to write beyond buffer length"),N(t,4294967295));var i=e.length;if(!(i<=n))for(var u=0,a=Math.min(i-n,4);u<a;u++)e[n+u]=t>>>8*(r?u:3-u)&255}function E(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+1<e.length,"Trying to write beyond buffer length"),Y(t,32767,-32768)),e.length<=n||v(e,0<=t?t:65535+t+1,n,r,o)}function I(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"Trying to write beyond buffer length"),Y(t,2147483647,-2147483648)),e.length<=n||_(e,0<=t?t:4294967295+t+1,n,r,o)}function A(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"Trying to write beyond buffer length"),F(t,34028234663852886e22,-34028234663852886e22)),e.length<=n||f.write(e,t,n,r,23,4)}function B(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+7<e.length,"Trying to write beyond buffer length"),F(t,17976931348623157e292,-17976931348623157e292)),e.length<=n||f.write(e,t,n,r,52,8)}H.Buffer=g,H.SlowBuffer=g,H.INSPECT_MAX_BYTES=50,g.poolSize=8192,g._useTypedArrays=function(){try{var e=new ArrayBuffer(0),t=new Uint8Array(e);return t.foo=function(){return 42},42===t.foo()&&"function"==typeof t.subarray}catch(e){return!1}}(),g.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"raw":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},g.isBuffer=function(e){return!(null==e||!e._isBuffer)},g.byteLength=function(e,t){var n;switch(e+="",t||"utf8"){case"hex":n=e.length/2;break;case"utf8":case"utf-8":n=C(e).length;break;case"ascii":case"binary":case"raw":n=e.length;break;case"base64":n=k(e).length;break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":n=2*e.length;break;default:throw new Error("Unknown encoding")}return n},g.concat=function(e,t){if(D(S(e),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array."),0===e.length)return new g(0);if(1===e.length)return e[0];if("number"!=typeof t)for(o=t=0;o<e.length;o++)t+=e[o].length;for(var n=new g(t),r=0,o=0;o<e.length;o++){var i=e[o];i.copy(n,r),r+=i.length}return n},g.prototype.write=function(e,t,n,r){var o;isFinite(t)?isFinite(n)||(r=n,n=void 0):(o=r,r=t,t=n,n=o),t=Number(t)||0;var i,u,a,s,f,c,l,d,h,p=this.length-t;switch((!n||p<(n=Number(n)))&&(n=p),r=String(r||"utf8").toLowerCase()){case"hex":i=function(e,t,n,r){n=Number(n)||0;var o=e.length-n;(!r||o<(r=Number(r)))&&(r=o);var i=t.length;D(i%2==0,"Invalid hex string"),i/2<r&&(r=i/2);for(var u=0;u<r;u++){var a=parseInt(t.substr(2*u,2),16);D(!isNaN(a),"Invalid hex string"),e[n+u]=a}return g._charsWritten=2*u,u}(this,e,t,n);break;case"utf8":case"utf-8":c=this,l=e,d=t,h=n,i=g._charsWritten=T(C(l),c,d,h);break;case"ascii":case"binary":i=y(this,e,t,n);break;case"base64":u=this,a=e,s=t,f=n,i=g._charsWritten=T(k(a),u,s,f);break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":i=w(this,e,t,n);break;default:throw new Error("Unknown encoding")}return i},g.prototype.toString=function(e,t,n){var r,o,i,u,a=this;if(e=String(e||"utf8").toLowerCase(),t=Number(t)||0,(n=void 0!==n?Number(n):n=a.length)===t)return"";switch(e){case"hex":r=function(e,t,n){var r=e.length;(!t||t<0)&&(t=0);(!n||n<0||r<n)&&(n=r);for(var o="",i=t;i<n;i++)o+=j(e[i]);return o}(a,t,n);break;case"utf8":case"utf-8":r=function(e,t,n){var r="",o="";n=Math.min(e.length,n);for(var i=t;i<n;i++)e[i]<=127?(r+=M(o)+String.fromCharCode(e[i]),o=""):o+="%"+e[i].toString(16);return r+M(o)}(a,t,n);break;case"ascii":case"binary":r=c(a,t,n);break;case"base64":o=a,u=n,r=0===(i=t)&&u===o.length?s.fromByteArray(o):s.fromByteArray(o.slice(i,u));break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":r=function(e,t,n){for(var r=e.slice(t,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}(a,t,n);break;default:throw new Error("Unknown encoding")}return r},g.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},g.prototype.copy=function(e,t,n,r){if(n=n||0,r||0===r||(r=this.length),t=t||0,r!==n&&0!==e.length&&0!==this.length){D(n<=r,"sourceEnd < sourceStart"),D(0<=t&&t<e.length,"targetStart out of bounds"),D(0<=n&&n<this.length,"sourceStart out of bounds"),D(0<=r&&r<=this.length,"sourceEnd out of bounds"),r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var o=r-n;if(o<100||!g._useTypedArrays)for(var i=0;i<o;i++)e[i+t]=this[i+n];else e._set(this.subarray(n,n+o),t)}},g.prototype.slice=function(e,t){var n=this.length;if(e=U(e,n,0),t=U(t,n,n),g._useTypedArrays)return g._augment(this.subarray(e,t));for(var r=t-e,o=new g(r,void 0,!0),i=0;i<r;i++)o[i]=this[i+e];return o},g.prototype.get=function(e){return console.log(".get() is deprecated. Access using array indexes instead."),this.readUInt8(e)},g.prototype.set=function(e,t){return console.log(".set() is deprecated. Access using array indexes instead."),this.writeUInt8(e,t)},g.prototype.readUInt8=function(e,t){if(t||(D(null!=e,"missing offset"),D(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return this[e]},g.prototype.readUInt16LE=function(e,t){return l(this,e,!0,t)},g.prototype.readUInt16BE=function(e,t){return l(this,e,!1,t)},g.prototype.readUInt32LE=function(e,t){return d(this,e,!0,t)},g.prototype.readUInt32BE=function(e,t){return d(this,e,!1,t)},g.prototype.readInt8=function(e,t){if(t||(D(null!=e,"missing offset"),D(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return 128&this[e]?-1*(255-this[e]+1):this[e]},g.prototype.readInt16LE=function(e,t){return h(this,e,!0,t)},g.prototype.readInt16BE=function(e,t){return h(this,e,!1,t)},g.prototype.readInt32LE=function(e,t){return p(this,e,!0,t)},g.prototype.readInt32BE=function(e,t){return p(this,e,!1,t)},g.prototype.readFloatLE=function(e,t){return b(this,e,!0,t)},g.prototype.readFloatBE=function(e,t){return b(this,e,!1,t)},g.prototype.readDoubleLE=function(e,t){return m(this,e,!0,t)},g.prototype.readDoubleBE=function(e,t){return m(this,e,!1,t)},g.prototype.writeUInt8=function(e,t,n){n||(D(null!=e,"missing value"),D(null!=t,"missing offset"),D(t<this.length,"trying to write beyond buffer length"),N(e,255)),t>=this.length||(this[t]=e)},g.prototype.writeUInt16LE=function(e,t,n){v(this,e,t,!0,n)},g.prototype.writeUInt16BE=function(e,t,n){v(this,e,t,!1,n)},g.prototype.writeUInt32LE=function(e,t,n){_(this,e,t,!0,n)},g.prototype.writeUInt32BE=function(e,t,n){_(this,e,t,!1,n)},g.prototype.writeInt8=function(e,t,n){n||(D(null!=e,"missing value"),D(null!=t,"missing offset"),D(t<this.length,"Trying to write beyond buffer length"),Y(e,127,-128)),t>=this.length||(0<=e?this.writeUInt8(e,t,n):this.writeUInt8(255+e+1,t,n))},g.prototype.writeInt16LE=function(e,t,n){E(this,e,t,!0,n)},g.prototype.writeInt16BE=function(e,t,n){E(this,e,t,!1,n)},g.prototype.writeInt32LE=function(e,t,n){I(this,e,t,!0,n)},g.prototype.writeInt32BE=function(e,t,n){I(this,e,t,!1,n)},g.prototype.writeFloatLE=function(e,t,n){A(this,e,t,!0,n)},g.prototype.writeFloatBE=function(e,t,n){A(this,e,t,!1,n)},g.prototype.writeDoubleLE=function(e,t,n){B(this,e,t,!0,n)},g.prototype.writeDoubleBE=function(e,t,n){B(this,e,t,!1,n)},g.prototype.fill=function(e,t,n){if(e=e||0,t=t||0,n=n||this.length,"string"==typeof e&&(e=e.charCodeAt(0)),D("number"==typeof e&&!isNaN(e),"value is not a number"),D(t<=n,"end < start"),n!==t&&0!==this.length){D(0<=t&&t<this.length,"start out of bounds"),D(0<=n&&n<=this.length,"end out of bounds");for(var r=t;r<n;r++)this[r]=e}},g.prototype.inspect=function(){for(var e=[],t=this.length,n=0;n<t;n++)if(e[n]=j(this[n]),n===H.INSPECT_MAX_BYTES){e[n+1]="...";break}return"<Buffer "+e.join(" ")+">"},g.prototype.toArrayBuffer=function(){if("undefined"==typeof Uint8Array)throw new Error("Buffer.toArrayBuffer not supported in this browser");if(g._useTypedArrays)return new g(this).buffer;for(var e=new Uint8Array(this.length),t=0,n=e.length;t<n;t+=1)e[t]=this[t];return e.buffer};var L=g.prototype;function U(e,t,n){return"number"!=typeof e?n:t<=(e=~~e)?t:0<=e||0<=(e+=t)?e:0}function x(e){return(e=~~Math.ceil(+e))<0?0:e}function S(e){return(Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)})(e)}function j(e){return e<16?"0"+e.toString(16):e.toString(16)}function C(e){for(var t=[],n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<=127)t.push(e.charCodeAt(n));else{var o=n;55296<=r&&r<=57343&&n++;for(var i=encodeURIComponent(e.slice(o,n+1)).substr(1).split("%"),u=0;u<i.length;u++)t.push(parseInt(i[u],16))}}return t}function k(e){return s.toByteArray(e)}function T(e,t,n,r){for(var o=0;o<r&&!(o+n>=t.length||o>=e.length);o++)t[o+n]=e[o];return o}function M(e){try{return decodeURIComponent(e)}catch(e){return String.fromCharCode(65533)}}function N(e,t){D("number"==typeof e,"cannot write a non-number as a number"),D(0<=e,"specified a negative value for writing an unsigned value"),D(e<=t,"value is larger than maximum value for type"),D(Math.floor(e)===e,"value has a fractional component")}function Y(e,t,n){D("number"==typeof e,"cannot write a non-number as a number"),D(e<=t,"value larger than maximum allowed value"),D(n<=e,"value smaller than minimum allowed value"),D(Math.floor(e)===e,"value has a fractional component")}function F(e,t,n){D("number"==typeof e,"cannot write a non-number as a number"),D(e<=t,"value larger than maximum allowed value"),D(n<=e,"value smaller than minimum allowed value")}function D(e,t){if(!e)throw new Error(t||"Failed assertion")}g._augment=function(e){return e._isBuffer=!0,e._get=e.get,e._set=e.set,e.get=L.get,e.set=L.set,e.write=L.write,e.toString=L.toString,e.toLocaleString=L.toString,e.toJSON=L.toJSON,e.copy=L.copy,e.slice=L.slice,e.readUInt8=L.readUInt8,e.readUInt16LE=L.readUInt16LE,e.readUInt16BE=L.readUInt16BE,e.readUInt32LE=L.readUInt32LE,e.readUInt32BE=L.readUInt32BE,e.readInt8=L.readInt8,e.readInt16LE=L.readInt16LE,e.readInt16BE=L.readInt16BE,e.readInt32LE=L.readInt32LE,e.readInt32BE=L.readInt32BE,e.readFloatLE=L.readFloatLE,e.readFloatBE=L.readFloatBE,e.readDoubleLE=L.readDoubleLE,e.readDoubleBE=L.readDoubleBE,e.writeUInt8=L.writeUInt8,e.writeUInt16LE=L.writeUInt16LE,e.writeUInt16BE=L.writeUInt16BE,e.writeUInt32LE=L.writeUInt32LE,e.writeUInt32BE=L.writeUInt32BE,e.writeInt8=L.writeInt8,e.writeInt16LE=L.writeInt16LE,e.writeInt16BE=L.writeInt16BE,e.writeInt32LE=L.writeInt32LE,e.writeInt32BE=L.writeInt32BE,e.writeFloatLE=L.writeFloatLE,e.writeFloatBE=L.writeFloatBE,e.writeDoubleLE=L.writeDoubleLE,e.writeDoubleBE=L.writeDoubleBE,e.fill=L.fill,e.inspect=L.inspect,e.toArrayBuffer=L.toArrayBuffer,e}}).call(this,O("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},O("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/buffer/index.js","/node_modules/gulp-browserify/node_modules/buffer")},{"base64-js":2,buffer:3,ieee754:11,lYpoI2:10}],4:[function(l,d,e){(function(e,t,u,n,r,o,i,a,s){var u=l("buffer").Buffer,f=4,c=new u(f);c.fill(0);d.exports={hash:function(e,t,n,r){return u.isBuffer(e)||(e=new u(e)),function(e,t,n){for(var r=new u(t),o=n?r.writeInt32BE:r.writeInt32LE,i=0;i<e.length;i++)o.call(r,e[i],4*i,!0);return r}(t(function(e,t){var n;e.length%f!=0&&(n=e.length+(f-e.length%f),e=u.concat([e,c],n));for(var r=[],o=t?e.readInt32BE:e.readInt32LE,i=0;i<e.length;i+=f)r.push(o.call(e,i));return r}(e,r),8*e.length),n,r)}}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/helpers.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:10}],5:[function(w,e,b){(function(e,t,a,n,r,o,i,u,s){var a=w("buffer").Buffer,f=w("./sha"),c=w("./sha256"),l=w("./rng"),d={sha1:f,sha256:c,md5:w("./md5")},h=64,p=new a(h);function g(e,r){var o=d[e=e||"sha1"],i=[];return o||y("algorithm:",e,"is not yet supported"),{update:function(e){return a.isBuffer(e)||(e=new a(e)),i.push(e),e.length,this},digest:function(e){var t=a.concat(i),n=r?function(e,t,n){a.isBuffer(t)||(t=new a(t)),a.isBuffer(n)||(n=new a(n)),t.length>h?t=e(t):t.length<h&&(t=a.concat([t,p],h));for(var r=new a(h),o=new a(h),i=0;i<h;i++)r[i]=54^t[i],o[i]=92^t[i];var u=e(a.concat([r,n]));return e(a.concat([o,u]))}(o,r,t):o(t);return i=null,e?n.toString(e):n}}}function y(){var e=[].slice.call(arguments).join(" ");throw new Error([e,"we accept pull requests","http://github.com/dominictarr/crypto-browserify"].join("\n"))}p.fill(0),b.createHash=function(e){return g(e)},b.createHmac=g,b.randomBytes=function(e,t){if(!t||!t.call)return new a(l(e));try{t.call(this,void 0,new a(l(e)))}catch(e){t(e)}},function(e,t){for(var n in e)t(e[n],n)}(["createCredentials","createCipher","createCipheriv","createDecipher","createDecipheriv","createSign","createVerify","createDiffieHellman","pbkdf2"],function(e){b[e]=function(){y("sorry,",e,"is not implemented yet")}})}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/index.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./md5":6,"./rng":7,"./sha":8,"./sha256":9,buffer:3,lYpoI2:10}],6:[function(w,b,e){(function(e,t,n,r,o,i,u,a,s){var f=w("./helpers");function c(e,t){e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;for(var n=1732584193,r=-271733879,o=-1732584194,i=271733878,u=0;u<e.length;u+=16){var a=n,s=r,f=o,c=i,n=d(n,r,o,i,e[u+0],7,-680876936),i=d(i,n,r,o,e[u+1],12,-389564586),o=d(o,i,n,r,e[u+2],17,606105819),r=d(r,o,i,n,e[u+3],22,-1044525330);n=d(n,r,o,i,e[u+4],7,-176418897),i=d(i,n,r,o,e[u+5],12,1200080426),o=d(o,i,n,r,e[u+6],17,-1473231341),r=d(r,o,i,n,e[u+7],22,-45705983),n=d(n,r,o,i,e[u+8],7,1770035416),i=d(i,n,r,o,e[u+9],12,-1958414417),o=d(o,i,n,r,e[u+10],17,-42063),r=d(r,o,i,n,e[u+11],22,-1990404162),n=d(n,r,o,i,e[u+12],7,1804603682),i=d(i,n,r,o,e[u+13],12,-40341101),o=d(o,i,n,r,e[u+14],17,-1502002290),n=h(n,r=d(r,o,i,n,e[u+15],22,1236535329),o,i,e[u+1],5,-165796510),i=h(i,n,r,o,e[u+6],9,-1069501632),o=h(o,i,n,r,e[u+11],14,643717713),r=h(r,o,i,n,e[u+0],20,-373897302),n=h(n,r,o,i,e[u+5],5,-701558691),i=h(i,n,r,o,e[u+10],9,38016083),o=h(o,i,n,r,e[u+15],14,-660478335),r=h(r,o,i,n,e[u+4],20,-405537848),n=h(n,r,o,i,e[u+9],5,568446438),i=h(i,n,r,o,e[u+14],9,-1019803690),o=h(o,i,n,r,e[u+3],14,-187363961),r=h(r,o,i,n,e[u+8],20,1163531501),n=h(n,r,o,i,e[u+13],5,-1444681467),i=h(i,n,r,o,e[u+2],9,-51403784),o=h(o,i,n,r,e[u+7],14,1735328473),n=p(n,r=h(r,o,i,n,e[u+12],20,-1926607734),o,i,e[u+5],4,-378558),i=p(i,n,r,o,e[u+8],11,-2022574463),o=p(o,i,n,r,e[u+11],16,1839030562),r=p(r,o,i,n,e[u+14],23,-35309556),n=p(n,r,o,i,e[u+1],4,-1530992060),i=p(i,n,r,o,e[u+4],11,1272893353),o=p(o,i,n,r,e[u+7],16,-155497632),r=p(r,o,i,n,e[u+10],23,-1094730640),n=p(n,r,o,i,e[u+13],4,681279174),i=p(i,n,r,o,e[u+0],11,-358537222),o=p(o,i,n,r,e[u+3],16,-722521979),r=p(r,o,i,n,e[u+6],23,76029189),n=p(n,r,o,i,e[u+9],4,-640364487),i=p(i,n,r,o,e[u+12],11,-421815835),o=p(o,i,n,r,e[u+15],16,530742520),n=g(n,r=p(r,o,i,n,e[u+2],23,-995338651),o,i,e[u+0],6,-198630844),i=g(i,n,r,o,e[u+7],10,1126891415),o=g(o,i,n,r,e[u+14],15,-1416354905),r=g(r,o,i,n,e[u+5],21,-57434055),n=g(n,r,o,i,e[u+12],6,1700485571),i=g(i,n,r,o,e[u+3],10,-1894986606),o=g(o,i,n,r,e[u+10],15,-1051523),r=g(r,o,i,n,e[u+1],21,-2054922799),n=g(n,r,o,i,e[u+8],6,1873313359),i=g(i,n,r,o,e[u+15],10,-30611744),o=g(o,i,n,r,e[u+6],15,-1560198380),r=g(r,o,i,n,e[u+13],21,1309151649),n=g(n,r,o,i,e[u+4],6,-145523070),i=g(i,n,r,o,e[u+11],10,-1120210379),o=g(o,i,n,r,e[u+2],15,718787259),r=g(r,o,i,n,e[u+9],21,-343485551),n=y(n,a),r=y(r,s),o=y(o,f),i=y(i,c)}return Array(n,r,o,i)}function l(e,t,n,r,o,i){return y((u=y(y(t,e),y(r,i)))<<(a=o)|u>>>32-a,n);var u,a}function d(e,t,n,r,o,i,u){return l(t&n|~t&r,e,t,o,i,u)}function h(e,t,n,r,o,i,u){return l(t&r|n&~r,e,t,o,i,u)}function p(e,t,n,r,o,i,u){return l(t^n^r,e,t,o,i,u)}function g(e,t,n,r,o,i,u){return l(n^(t|~r),e,t,o,i,u)}function y(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}b.exports=function(e){return f.hash(e,c,16)}}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/md5.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],7:[function(e,l,t){(function(e,t,n,r,o,i,u,a,s){var f,c;c=function(e){for(var t,n=new Array(e),r=0;r<e;r++)0==(3&r)&&(t=4294967296*Math.random()),n[r]=t>>>((3&r)<<3)&255;return n},l.exports=f||c}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/rng.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:10}],8:[function(l,d,e){(function(e,t,n,r,o,i,u,a,s){var f=l("./helpers");function c(e,t){e[t>>5]|=128<<24-t%32,e[15+(t+64>>9<<4)]=t;for(var n,r,o,i,u,a=Array(80),s=1732584193,f=-271733879,c=-1732584194,l=271733878,d=-1009589776,h=0;h<e.length;h+=16){for(var p=s,g=f,y=c,w=l,b=d,m=0;m<80;m++){a[m]=m<16?e[h+m]:E(a[m-3]^a[m-8]^a[m-14]^a[m-16],1);var v=_(_(E(s,5),(o=f,i=c,u=l,(r=m)<20?o&i|~o&u:!(r<40)&&r<60?o&i|o&u|i&u:o^i^u)),_(_(d,a[m]),(n=m)<20?1518500249:n<40?1859775393:n<60?-1894007588:-899497514)),d=l,l=c,c=E(f,30),f=s,s=v}s=_(s,p),f=_(f,g),c=_(c,y),l=_(l,w),d=_(d,b)}return Array(s,f,c,l,d)}function _(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function E(e,t){return e<<t|e>>>32-t}d.exports=function(e){return f.hash(e,c,20,!0)}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],9:[function(l,d,e){(function(e,t,n,r,o,i,u,a,s){function B(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function L(e,t){return e>>>t|e<<32-t}function f(e,t){var n,r,o,i,u,a,s,f,c,l,d=new Array(1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298),h=new Array(1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225),p=new Array(64);e[t>>5]|=128<<24-t%32,e[15+(t+64>>9<<4)]=t;for(var g,y,w,b,m,v,_,E,I=0;I<e.length;I+=16){n=h[0],r=h[1],o=h[2],i=h[3],u=h[4],a=h[5],s=h[6],f=h[7];for(var A=0;A<64;A++)p[A]=A<16?e[A+I]:B(B(B((E=p[A-2],L(E,17)^L(E,19)^E>>>10),p[A-7]),(_=p[A-15],L(_,7)^L(_,18)^_>>>3)),p[A-16]),c=B(B(B(B(f,L(v=u,6)^L(v,11)^L(v,25)),(m=u)&a^~m&s),d[A]),p[A]),l=B(L(b=n,2)^L(b,13)^L(b,22),(g=n)&(y=r)^g&(w=o)^y&w),f=s,s=a,a=u,u=B(i,c),i=o,o=r,r=n,n=B(c,l);h[0]=B(n,h[0]),h[1]=B(r,h[1]),h[2]=B(o,h[2]),h[3]=B(i,h[3]),h[4]=B(u,h[4]),h[5]=B(a,h[5]),h[6]=B(s,h[6]),h[7]=B(f,h[7])}return h}var c=l("./helpers");d.exports=function(e){return c.hash(e,f,32,!0)}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha256.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],10:[function(e,c,t){(function(e,t,n,r,o,i,u,a,s){function f(){}(e=c.exports={}).nextTick=function(){var e="undefined"!=typeof window&&window.setImmediate,t="undefined"!=typeof window&&window.postMessage&&window.addEventListener;if(e)return function(e){return window.setImmediate(e)};if(t){var n=[];return window.addEventListener("message",function(e){var t=e.source;t!==window&&null!==t||"process-tick"!==e.data||(e.stopPropagation(),0<n.length&&n.shift()())},!0),function(e){n.push(e),window.postMessage("process-tick","*")}}return function(e){setTimeout(e,0)}}(),e.title="browser",e.browser=!0,e.env={},e.argv=[],e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")}}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/process/browser.js","/node_modules/gulp-browserify/node_modules/process")},{buffer:3,lYpoI2:10}],11:[function(e,t,f){(function(e,t,n,r,o,i,u,a,s){f.read=function(e,t,n,r,o){var i,u,a=8*o-r-1,s=(1<<a)-1,f=s>>1,c=-7,l=n?o-1:0,d=n?-1:1,h=e[t+l];for(l+=d,i=h&(1<<-c)-1,h>>=-c,c+=a;0<c;i=256*i+e[t+l],l+=d,c-=8);for(u=i&(1<<-c)-1,i>>=-c,c+=r;0<c;u=256*u+e[t+l],l+=d,c-=8);if(0===i)i=1-f;else{if(i===s)return u?NaN:1/0*(h?-1:1);u+=Math.pow(2,r),i-=f}return(h?-1:1)*u*Math.pow(2,i-r)},f.write=function(e,t,n,r,o,i){var u,a,s,f=8*i-o-1,c=(1<<f)-1,l=c>>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,p=r?1:-1,g=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,u=c):(u=Math.floor(Math.log(t)/Math.LN2),t*(s=Math.pow(2,-u))<1&&(u--,s*=2),2<=(t+=1<=u+l?d/s:d*Math.pow(2,1-l))*s&&(u++,s/=2),c<=u+l?(a=0,u=c):1<=u+l?(a=(t*s-1)*Math.pow(2,o),u+=l):(a=t*Math.pow(2,l-1)*Math.pow(2,o),u=0));8<=o;e[n+h]=255&a,h+=p,a/=256,o-=8);for(u=u<<o|a,f+=o;0<f;e[n+h]=255&u,h+=p,u/=256,f-=8);e[n+h-p]|=128*g}}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/ieee754/index.js","/node_modules/ieee754")},{buffer:3,lYpoI2:10}]},{},[1])(1)});
|
|
7005
7168
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
7006
|
-
},{}],
|
|
7169
|
+
},{}],133:[function(require,module,exports){
|
|
7007
7170
|
// shim for using process in browser
|
|
7008
7171
|
var process = module.exports = {};
|
|
7009
7172
|
|
|
@@ -7189,7 +7352,7 @@ process.chdir = function (dir) {
|
|
|
7189
7352
|
};
|
|
7190
7353
|
process.umask = function() { return 0; };
|
|
7191
7354
|
|
|
7192
|
-
},{}],
|
|
7355
|
+
},{}],134:[function(require,module,exports){
|
|
7193
7356
|
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.QRCodeStyling=e():t.QRCodeStyling=e()}(self,(function(){return(()=>{var t={192:(t,e)=>{var r,n,o=function(){var t=function(t,e){var r=t,n=a[e],o=null,i=0,u=null,v=[],w={},m=function(t,e){o=function(t){for(var e=new Array(t),r=0;r<t;r+=1){e[r]=new Array(t);for(var n=0;n<t;n+=1)e[r][n]=null}return e}(i=4*r+17),b(0,0),b(i-7,0),b(0,i-7),x(),_(),M(t,e),r>=7&&S(t),null==u&&(u=A(r,n,v)),C(u,e)},b=function(t,e){for(var r=-1;r<=7;r+=1)if(!(t+r<=-1||i<=t+r))for(var n=-1;n<=7;n+=1)e+n<=-1||i<=e+n||(o[t+r][e+n]=0<=r&&r<=6&&(0==n||6==n)||0<=n&&n<=6&&(0==r||6==r)||2<=r&&r<=4&&2<=n&&n<=4)},_=function(){for(var t=8;t<i-8;t+=1)null==o[t][6]&&(o[t][6]=t%2==0);for(var e=8;e<i-8;e+=1)null==o[6][e]&&(o[6][e]=e%2==0)},x=function(){for(var t=s.getPatternPosition(r),e=0;e<t.length;e+=1)for(var n=0;n<t.length;n+=1){var i=t[e],a=t[n];if(null==o[i][a])for(var u=-2;u<=2;u+=1)for(var h=-2;h<=2;h+=1)o[i+u][a+h]=-2==u||2==u||-2==h||2==h||0==u&&0==h}},S=function(t){for(var e=s.getBCHTypeNumber(r),n=0;n<18;n+=1){var a=!t&&1==(e>>n&1);o[Math.floor(n/3)][n%3+i-8-3]=a}for(n=0;n<18;n+=1)a=!t&&1==(e>>n&1),o[n%3+i-8-3][Math.floor(n/3)]=a},M=function(t,e){for(var r=n<<3|e,a=s.getBCHTypeInfo(r),u=0;u<15;u+=1){var h=!t&&1==(a>>u&1);u<6?o[u][8]=h:u<8?o[u+1][8]=h:o[i-15+u][8]=h}for(u=0;u<15;u+=1)h=!t&&1==(a>>u&1),u<8?o[8][i-u-1]=h:u<9?o[8][15-u-1+1]=h:o[8][15-u-1]=h;o[i-8][8]=!t},C=function(t,e){for(var r=-1,n=i-1,a=7,u=0,h=s.getMaskFunction(e),c=i-1;c>0;c-=2)for(6==c&&(c-=1);;){for(var l=0;l<2;l+=1)if(null==o[n][c-l]){var d=!1;u<t.length&&(d=1==(t[u]>>>a&1)),h(n,c-l)&&(d=!d),o[n][c-l]=d,-1==(a-=1)&&(u+=1,a=7)}if((n+=r)<0||i<=n){n-=r,r=-r;break}}},A=function(t,e,r){for(var n=c.getRSBlocks(t,e),o=l(),i=0;i<r.length;i+=1){var a=r[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<n.length;i+=1)u+=n[i].dataCount;if(o.getLengthInBits()>8*u)throw"code length overflow. ("+o.getLengthInBits()+">"+8*u+")";for(o.getLengthInBits()+4<=8*u&&o.put(0,4);o.getLengthInBits()%8!=0;)o.putBit(!1);for(;!(o.getLengthInBits()>=8*u||(o.put(236,8),o.getLengthInBits()>=8*u));)o.put(17,8);return function(t,e){for(var r=0,n=0,o=0,i=new Array(e.length),a=new Array(e.length),u=0;u<e.length;u+=1){var c=e[u].dataCount,l=e[u].totalCount-c;n=Math.max(n,c),o=Math.max(o,l),i[u]=new Array(c);for(var d=0;d<i[u].length;d+=1)i[u][d]=255&t.getBuffer()[d+r];r+=c;var f=s.getErrorCorrectPolynomial(l),g=h(i[u],f.getLength()-1).mod(f);for(a[u]=new Array(f.getLength()-1),d=0;d<a[u].length;d+=1){var p=d+g.getLength()-a[u].length;a[u][d]=p>=0?g.getAt(p):0}}var v=0;for(d=0;d<e.length;d+=1)v+=e[d].totalCount;var w=new Array(v),y=0;for(d=0;d<n;d+=1)for(u=0;u<e.length;u+=1)d<i[u].length&&(w[y]=i[u][d],y+=1);for(d=0;d<o;d+=1)for(u=0;u<e.length;u+=1)d<a[u].length&&(w[y]=a[u][d],y+=1);return w}(o,n)};w.addData=function(t,e){var r=null;switch(e=e||"Byte"){case"Numeric":r=d(t);break;case"Alphanumeric":r=f(t);break;case"Byte":r=g(t);break;case"Kanji":r=p(t);break;default:throw"mode:"+e}v.push(r),u=null},w.isDark=function(t,e){if(t<0||i<=t||e<0||i<=e)throw t+","+e;return o[t][e]},w.getModuleCount=function(){return i},w.make=function(){if(r<1){for(var t=1;t<40;t++){for(var e=c.getRSBlocks(t,n),o=l(),i=0;i<v.length;i++){var a=v[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<e.length;i++)u+=e[i].dataCount;if(o.getLengthInBits()<=8*u)break}r=t}m(!1,function(){for(var t=0,e=0,r=0;r<8;r+=1){m(!0,r);var n=s.getLostPoint(w);(0==r||t>n)&&(t=n,e=r)}return e}())},w.createTableTag=function(t,e){t=t||2;var r="";r+='<table style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: "+(e=void 0===e?4*t:e)+"px;",r+='">',r+="<tbody>";for(var n=0;n<w.getModuleCount();n+=1){r+="<tr>";for(var o=0;o<w.getModuleCount();o+=1)r+='<td style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: 0px;",r+=" width: "+t+"px;",r+=" height: "+t+"px;",r+=" background-color: ",r+=w.isDark(n,o)?"#000000":"#ffffff",r+=";",r+='"/>';r+="</tr>"}return(r+="</tbody>")+"</table>"},w.createSvgTag=function(t,e,r,n){var o={};"object"==typeof arguments[0]&&(t=(o=arguments[0]).cellSize,e=o.margin,r=o.alt,n=o.title),t=t||2,e=void 0===e?4*t:e,(r="string"==typeof r?{text:r}:r||{}).text=r.text||null,r.id=r.text?r.id||"qrcode-description":null,(n="string"==typeof n?{text:n}:n||{}).text=n.text||null,n.id=n.text?n.id||"qrcode-title":null;var i,a,s,u,h=w.getModuleCount()*t+2*e,c="";for(u="l"+t+",0 0,"+t+" -"+t+",0 0,-"+t+"z ",c+='<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',c+=o.scalable?"":' width="'+h+'px" height="'+h+'px"',c+=' viewBox="0 0 '+h+" "+h+'" ',c+=' preserveAspectRatio="xMinYMin meet"',c+=n.text||r.text?' role="img" aria-labelledby="'+k([n.id,r.id].join(" ").trim())+'"':"",c+=">",c+=n.text?'<title id="'+k(n.id)+'">'+k(n.text)+"</title>":"",c+=r.text?'<description id="'+k(r.id)+'">'+k(r.text)+"</description>":"",c+='<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',c+='<path d="',a=0;a<w.getModuleCount();a+=1)for(s=a*t+e,i=0;i<w.getModuleCount();i+=1)w.isDark(a,i)&&(c+="M"+(i*t+e)+","+s+u);return(c+='" stroke="transparent" fill="black"/>')+"</svg>"},w.createDataURL=function(t,e){t=t||2,e=void 0===e?4*t:e;var r=w.getModuleCount()*t+2*e,n=e,o=r-e;return y(r,r,(function(e,r){if(n<=e&&e<o&&n<=r&&r<o){var i=Math.floor((e-n)/t),a=Math.floor((r-n)/t);return w.isDark(a,i)?0:1}return 1}))},w.createImgTag=function(t,e,r){t=t||2,e=void 0===e?4*t:e;var n=w.getModuleCount()*t+2*e,o="";return o+="<img",o+=' src="',o+=w.createDataURL(t,e),o+='"',o+=' width="',o+=n,o+='"',o+=' height="',o+=n,o+='"',r&&(o+=' alt="',o+=k(r),o+='"'),o+"/>"};var k=function(t){for(var e="",r=0;r<t.length;r+=1){var n=t.charAt(r);switch(n){case"<":e+="<";break;case">":e+=">";break;case"&":e+="&";break;case'"':e+=""";break;default:e+=n}}return e};return w.createASCII=function(t,e){if((t=t||1)<2)return function(t){t=void 0===t?2:t;var e,r,n,o,i,a=1*w.getModuleCount()+2*t,s=t,u=a-t,h={"██":"█","█ ":"▀"," █":"▄"," ":" "},c={"██":"▀","█ ":"▀"," █":" "," ":" "},l="";for(e=0;e<a;e+=2){for(n=Math.floor((e-s)/1),o=Math.floor((e+1-s)/1),r=0;r<a;r+=1)i="█",s<=r&&r<u&&s<=e&&e<u&&w.isDark(n,Math.floor((r-s)/1))&&(i=" "),s<=r&&r<u&&s<=e+1&&e+1<u&&w.isDark(o,Math.floor((r-s)/1))?i+=" ":i+="█",l+=t<1&&e+1>=u?c[i]:h[i];l+="\n"}return a%2&&t>0?l.substring(0,l.length-a-1)+Array(a+1).join("▀"):l.substring(0,l.length-1)}(e);t-=1,e=void 0===e?2*t:e;var r,n,o,i,a=w.getModuleCount()*t+2*e,s=e,u=a-e,h=Array(t+1).join("██"),c=Array(t+1).join(" "),l="",d="";for(r=0;r<a;r+=1){for(o=Math.floor((r-s)/t),d="",n=0;n<a;n+=1)i=1,s<=n&&n<u&&s<=r&&r<u&&w.isDark(o,Math.floor((n-s)/t))&&(i=0),d+=i?h:c;for(o=0;o<t;o+=1)l+=d+"\n"}return l.substring(0,l.length-1)},w.renderTo2dContext=function(t,e){e=e||2;for(var r=w.getModuleCount(),n=0;n<r;n++)for(var o=0;o<r;o++)t.fillStyle=w.isDark(n,o)?"black":"white",t.fillRect(n*e,o*e,e,e)},w};t.stringToBytes=(t.stringToBytesFuncs={default:function(t){for(var e=[],r=0;r<t.length;r+=1){var n=t.charCodeAt(r);e.push(255&n)}return e}}).default,t.createStringToBytes=function(t,e){var r=function(){for(var r=w(t),n=function(){var t=r.read();if(-1==t)throw"eof";return t},o=0,i={};;){var a=r.read();if(-1==a)break;var s=n(),u=n()<<8|n();i[String.fromCharCode(a<<8|s)]=u,o+=1}if(o!=e)throw o+" != "+e;return i}(),n="?".charCodeAt(0);return function(t){for(var e=[],o=0;o<t.length;o+=1){var i=t.charCodeAt(o);if(i<128)e.push(i);else{var a=r[t.charAt(o)];"number"==typeof a?(255&a)==a?e.push(a):(e.push(a>>>8),e.push(255&a)):e.push(n)}}return e}};var e,r,n,o,i,a={L:1,M:0,Q:3,H:2},s=(e=[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],r=1335,n=7973,i=function(t){for(var e=0;0!=t;)e+=1,t>>>=1;return e},(o={}).getBCHTypeInfo=function(t){for(var e=t<<10;i(e)-i(r)>=0;)e^=r<<i(e)-i(r);return 21522^(t<<10|e)},o.getBCHTypeNumber=function(t){for(var e=t<<12;i(e)-i(n)>=0;)e^=n<<i(e)-i(n);return t<<12|e},o.getPatternPosition=function(t){return e[t-1]},o.getMaskFunction=function(t){switch(t){case 0:return function(t,e){return(t+e)%2==0};case 1:return function(t,e){return t%2==0};case 2:return function(t,e){return e%3==0};case 3:return function(t,e){return(t+e)%3==0};case 4:return function(t,e){return(Math.floor(t/2)+Math.floor(e/3))%2==0};case 5:return function(t,e){return t*e%2+t*e%3==0};case 6:return function(t,e){return(t*e%2+t*e%3)%2==0};case 7:return function(t,e){return(t*e%3+(t+e)%2)%2==0};default:throw"bad maskPattern:"+t}},o.getErrorCorrectPolynomial=function(t){for(var e=h([1],0),r=0;r<t;r+=1)e=e.multiply(h([1,u.gexp(r)],0));return e},o.getLengthInBits=function(t,e){if(1<=e&&e<10)switch(t){case 1:return 10;case 2:return 9;case 4:case 8:return 8;default:throw"mode:"+t}else if(e<27)switch(t){case 1:return 12;case 2:return 11;case 4:return 16;case 8:return 10;default:throw"mode:"+t}else{if(!(e<41))throw"type:"+e;switch(t){case 1:return 14;case 2:return 13;case 4:return 16;case 8:return 12;default:throw"mode:"+t}}},o.getLostPoint=function(t){for(var e=t.getModuleCount(),r=0,n=0;n<e;n+=1)for(var o=0;o<e;o+=1){for(var i=0,a=t.isDark(n,o),s=-1;s<=1;s+=1)if(!(n+s<0||e<=n+s))for(var u=-1;u<=1;u+=1)o+u<0||e<=o+u||0==s&&0==u||a==t.isDark(n+s,o+u)&&(i+=1);i>5&&(r+=3+i-5)}for(n=0;n<e-1;n+=1)for(o=0;o<e-1;o+=1){var h=0;t.isDark(n,o)&&(h+=1),t.isDark(n+1,o)&&(h+=1),t.isDark(n,o+1)&&(h+=1),t.isDark(n+1,o+1)&&(h+=1),0!=h&&4!=h||(r+=3)}for(n=0;n<e;n+=1)for(o=0;o<e-6;o+=1)t.isDark(n,o)&&!t.isDark(n,o+1)&&t.isDark(n,o+2)&&t.isDark(n,o+3)&&t.isDark(n,o+4)&&!t.isDark(n,o+5)&&t.isDark(n,o+6)&&(r+=40);for(o=0;o<e;o+=1)for(n=0;n<e-6;n+=1)t.isDark(n,o)&&!t.isDark(n+1,o)&&t.isDark(n+2,o)&&t.isDark(n+3,o)&&t.isDark(n+4,o)&&!t.isDark(n+5,o)&&t.isDark(n+6,o)&&(r+=40);var c=0;for(o=0;o<e;o+=1)for(n=0;n<e;n+=1)t.isDark(n,o)&&(c+=1);return r+Math.abs(100*c/e/e-50)/5*10},o),u=function(){for(var t=new Array(256),e=new Array(256),r=0;r<8;r+=1)t[r]=1<<r;for(r=8;r<256;r+=1)t[r]=t[r-4]^t[r-5]^t[r-6]^t[r-8];for(r=0;r<255;r+=1)e[t[r]]=r;return{glog:function(t){if(t<1)throw"glog("+t+")";return e[t]},gexp:function(e){for(;e<0;)e+=255;for(;e>=256;)e-=255;return t[e]}}}();function h(t,e){if(void 0===t.length)throw t.length+"/"+e;var r=function(){for(var r=0;r<t.length&&0==t[r];)r+=1;for(var n=new Array(t.length-r+e),o=0;o<t.length-r;o+=1)n[o]=t[o+r];return n}(),n={getAt:function(t){return r[t]},getLength:function(){return r.length},multiply:function(t){for(var e=new Array(n.getLength()+t.getLength()-1),r=0;r<n.getLength();r+=1)for(var o=0;o<t.getLength();o+=1)e[r+o]^=u.gexp(u.glog(n.getAt(r))+u.glog(t.getAt(o)));return h(e,0)},mod:function(t){if(n.getLength()-t.getLength()<0)return n;for(var e=u.glog(n.getAt(0))-u.glog(t.getAt(0)),r=new Array(n.getLength()),o=0;o<n.getLength();o+=1)r[o]=n.getAt(o);for(o=0;o<t.getLength();o+=1)r[o]^=u.gexp(u.glog(t.getAt(o))+e);return h(r,0).mod(t)}};return n}var c=function(){var t=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12,7,37,13],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]],e=function(t,e){var r={};return r.totalCount=t,r.dataCount=e,r},r={getRSBlocks:function(r,n){var o=function(e,r){switch(r){case a.L:return t[4*(e-1)+0];case a.M:return t[4*(e-1)+1];case a.Q:return t[4*(e-1)+2];case a.H:return t[4*(e-1)+3];default:return}}(r,n);if(void 0===o)throw"bad rs block @ typeNumber:"+r+"/errorCorrectionLevel:"+n;for(var i=o.length/3,s=[],u=0;u<i;u+=1)for(var h=o[3*u+0],c=o[3*u+1],l=o[3*u+2],d=0;d<h;d+=1)s.push(e(c,l));return s}};return r}(),l=function(){var t=[],e=0,r={getBuffer:function(){return t},getAt:function(e){var r=Math.floor(e/8);return 1==(t[r]>>>7-e%8&1)},put:function(t,e){for(var n=0;n<e;n+=1)r.putBit(1==(t>>>e-n-1&1))},getLengthInBits:function(){return e},putBit:function(r){var n=Math.floor(e/8);t.length<=n&&t.push(0),r&&(t[n]|=128>>>e%8),e+=1}};return r},d=function(t){var e=t,r={getMode:function(){return 1},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+2<r.length;)t.put(n(r.substring(o,o+3)),10),o+=3;o<r.length&&(r.length-o==1?t.put(n(r.substring(o,o+1)),4):r.length-o==2&&t.put(n(r.substring(o,o+2)),7))}},n=function(t){for(var e=0,r=0;r<t.length;r+=1)e=10*e+o(t.charAt(r));return e},o=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);throw"illegal char :"+t};return r},f=function(t){var e=t,r={getMode:function(){return 2},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+1<r.length;)t.put(45*n(r.charAt(o))+n(r.charAt(o+1)),11),o+=2;o<r.length&&t.put(n(r.charAt(o)),6)}},n=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);if("A"<=t&&t<="Z")return t.charCodeAt(0)-"A".charCodeAt(0)+10;switch(t){case" ":return 36;case"$":return 37;case"%":return 38;case"*":return 39;case"+":return 40;case"-":return 41;case".":return 42;case"/":return 43;case":":return 44;default:throw"illegal char :"+t}};return r},g=function(e){var r=t.stringToBytes(e);return{getMode:function(){return 4},getLength:function(t){return r.length},write:function(t){for(var e=0;e<r.length;e+=1)t.put(r[e],8)}}},p=function(e){var r=t.stringToBytesFuncs.SJIS;if(!r)throw"sjis not supported.";!function(t,e){var n=r("友");if(2!=n.length||38726!=(n[0]<<8|n[1]))throw"sjis not supported."}();var n=r(e);return{getMode:function(){return 8},getLength:function(t){return~~(n.length/2)},write:function(t){for(var e=n,r=0;r+1<e.length;){var o=(255&e[r])<<8|255&e[r+1];if(33088<=o&&o<=40956)o-=33088;else{if(!(57408<=o&&o<=60351))throw"illegal char at "+(r+1)+"/"+o;o-=49472}o=192*(o>>>8&255)+(255&o),t.put(o,13),r+=2}if(r<e.length)throw"illegal char at "+(r+1)}}},v=function(){var t=[],e={writeByte:function(e){t.push(255&e)},writeShort:function(t){e.writeByte(t),e.writeByte(t>>>8)},writeBytes:function(t,r,n){r=r||0,n=n||t.length;for(var o=0;o<n;o+=1)e.writeByte(t[o+r])},writeString:function(t){for(var r=0;r<t.length;r+=1)e.writeByte(t.charCodeAt(r))},toByteArray:function(){return t},toString:function(){var e="";e+="[";for(var r=0;r<t.length;r+=1)r>0&&(e+=","),e+=t[r];return e+"]"}};return e},w=function(t){var e=t,r=0,n=0,o=0,i={read:function(){for(;o<8;){if(r>=e.length){if(0==o)return-1;throw"unexpected end of file./"+o}var t=e.charAt(r);if(r+=1,"="==t)return o=0,-1;t.match(/^\s$/)||(n=n<<6|a(t.charCodeAt(0)),o+=6)}var i=n>>>o-8&255;return o-=8,i}},a=function(t){if(65<=t&&t<=90)return t-65;if(97<=t&&t<=122)return t-97+26;if(48<=t&&t<=57)return t-48+52;if(43==t)return 62;if(47==t)return 63;throw"c:"+t};return i},y=function(t,e,r){for(var n=function(t,e){var r=t,n=e,o=new Array(t*e),i={setPixel:function(t,e,n){o[e*r+t]=n},write:function(t){t.writeString("GIF87a"),t.writeShort(r),t.writeShort(n),t.writeByte(128),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(255),t.writeByte(255),t.writeByte(255),t.writeString(","),t.writeShort(0),t.writeShort(0),t.writeShort(r),t.writeShort(n),t.writeByte(0);var e=a(2);t.writeByte(2);for(var o=0;e.length-o>255;)t.writeByte(255),t.writeBytes(e,o,255),o+=255;t.writeByte(e.length-o),t.writeBytes(e,o,e.length-o),t.writeByte(0),t.writeString(";")}},a=function(t){for(var e=1<<t,r=1+(1<<t),n=t+1,i=s(),a=0;a<e;a+=1)i.add(String.fromCharCode(a));i.add(String.fromCharCode(e)),i.add(String.fromCharCode(r));var u,h,c,l=v(),d=(u=l,h=0,c=0,{write:function(t,e){if(t>>>e!=0)throw"length over";for(;h+e>=8;)u.writeByte(255&(t<<h|c)),e-=8-h,t>>>=8-h,c=0,h=0;c|=t<<h,h+=e},flush:function(){h>0&&u.writeByte(c)}});d.write(e,n);var f=0,g=String.fromCharCode(o[f]);for(f+=1;f<o.length;){var p=String.fromCharCode(o[f]);f+=1,i.contains(g+p)?g+=p:(d.write(i.indexOf(g),n),i.size()<4095&&(i.size()==1<<n&&(n+=1),i.add(g+p)),g=p)}return d.write(i.indexOf(g),n),d.write(r,n),d.flush(),l.toByteArray()},s=function(){var t={},e=0,r={add:function(n){if(r.contains(n))throw"dup key:"+n;t[n]=e,e+=1},size:function(){return e},indexOf:function(e){return t[e]},contains:function(e){return void 0!==t[e]}};return r};return i}(t,e),o=0;o<e;o+=1)for(var i=0;i<t;i+=1)n.setPixel(i,o,r(i,o));var a=v();n.write(a);for(var s=function(){var t=0,e=0,r=0,n="",o={},i=function(t){n+=String.fromCharCode(a(63&t))},a=function(t){if(t<0);else{if(t<26)return 65+t;if(t<52)return t-26+97;if(t<62)return t-52+48;if(62==t)return 43;if(63==t)return 47}throw"n:"+t};return o.writeByte=function(n){for(t=t<<8|255&n,e+=8,r+=1;e>=6;)i(t>>>e-6),e-=6},o.flush=function(){if(e>0&&(i(t<<6-e),t=0,e=0),r%3!=0)for(var o=3-r%3,a=0;a<o;a+=1)n+="="},o.toString=function(){return n},o}(),u=a.toByteArray(),h=0;h<u.length;h+=1)s.writeByte(u[h]);return s.flush(),"data:image/gif;base64,"+s};return t}();o.stringToBytesFuncs["UTF-8"]=function(t){return function(t){for(var e=[],r=0;r<t.length;r++){var n=t.charCodeAt(r);n<128?e.push(n):n<2048?e.push(192|n>>6,128|63&n):n<55296||n>=57344?e.push(224|n>>12,128|n>>6&63,128|63&n):(r++,n=65536+((1023&n)<<10|1023&t.charCodeAt(r)),e.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|63&n))}return e}(t)},void 0===(n="function"==typeof(r=function(){return o})?r.apply(e,[]):r)||(t.exports=n)},676:(t,e,r)=>{"use strict";r.d(e,{default:()=>q});var n=function(){return(n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},o=function(){for(var t=0,e=0,r=arguments.length;e<r;e++)t+=arguments[e].length;var n=Array(t),o=0;for(e=0;e<r;e++)for(var i=arguments[e],a=0,s=i.length;a<s;a++,o++)n[o]=i[a];return n},i=function(t){return!!t&&"object"==typeof t&&!Array.isArray(t)};function a(t){for(var e=[],r=1;r<arguments.length;r++)e[r-1]=arguments[r];if(!e.length)return t;var s=e.shift();return void 0!==s&&i(t)&&i(s)?(t=n({},t),Object.keys(s).forEach((function(e){var r=t[e],n=s[e];Array.isArray(r)&&Array.isArray(n)?t[e]=n:i(r)&&i(n)?t[e]=a(Object.assign({},r),n):t[e]=n})),a.apply(void 0,o([t],e))):t}function s(t,e){var r=document.createElement("a");r.download=e,r.href=t,document.body.appendChild(r),r.click(),document.body.removeChild(r)}function u(t){return e=this,r=void 0,o=function(){return function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}(this,(function(e){return[2,new Promise((function(e){var r=new XMLHttpRequest;r.onload=function(){var t=new FileReader;t.onloadend=function(){e(t.result)},t.readAsDataURL(r.response)},r.open("GET",t),r.responseType="blob",r.send()}))]}))},new((n=void 0)||(n=Promise))((function(t,i){function a(t){try{u(o.next(t))}catch(t){i(t)}}function s(t){try{u(o.throw(t))}catch(t){i(t)}}function u(e){var r;e.done?t(e.value):(r=e.value,r instanceof n?r:new n((function(t){t(r)}))).then(a,s)}u((o=o.apply(e,r||[])).next())}));var e,r,n,o}const h={L:.07,M:.15,Q:.25,H:.3};var c=function(){return(c=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const l=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"dots":o=this._drawDot;break;case"classy":o=this._drawClassy;break;case"classy-rounded":o=this._drawClassyRounded;break;case"rounded":o=this._drawRounded;break;case"extra-rounded":o=this._drawExtraRounded;break;case"square":default:o=this._drawSquare}o.call(this,{x:t,y:e,size:r,getNeighbor:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._basicSideRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, 0 "+-r)}}))},t.prototype._basicCornerRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._basicCornerExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"a "+r+" "+r+", 0, 0, 0, "+-r+" "+-r)}}))},t.prototype._basicCornersRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+r/2+" "+r/2+"h "+r/2+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size;this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size;this._basicSquare({x:e,y:r,size:n,rotation:0})},t.prototype._drawRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawClassy=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t.prototype._drawClassyRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t}();var d=function(){return(d=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const f=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"extra-rounded":o=this._drawExtraRounded;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+(n+r/2)+" "+o+"a "+r/2+" "+r/2+" 0 1 0 0.1 0zm 0 "+i+"a "+(r/2-i)+" "+(r/2-i)+" 0 1 1 -0.1 0Z")}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r+"zM "+(n+i)+" "+(o+i)+"h "+(r-2*i)+"v "+(r-2*i)+"h "+(2*i-r)+"z")}}))},t.prototype._basicExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+(o+2.5*i)+"v "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*i+"h "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*-i+"v "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*-i+"h "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*i+"M "+(n+2.5*i)+" "+(o+i)+"h "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*i+"v "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*i+"h "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*-i+"v "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*-i)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicExtraRounded({x:e,y:r,size:n,rotation:o})},t}();var g=function(){return(g=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const p=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t}(),v="circle";var w=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},y=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}},m=[[1,1,1,1,1,1,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,1,1,1,1,1,1]],b=[[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0]];const _=function(){function t(t){this._element=document.createElementNS("http://www.w3.org/2000/svg","svg"),this._element.setAttribute("width",String(t.width)),this._element.setAttribute("height",String(t.height)),this._defs=document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this._defs),this._options=t}return Object.defineProperty(t.prototype,"width",{get:function(){return this._options.width},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._options.height},enumerable:!1,configurable:!0}),t.prototype.getElement=function(){return this._element},t.prototype.drawQR=function(t){return w(this,void 0,void 0,(function(){var e,r,n,o,i,a,s,u,c,l,d=this;return y(this,(function(f){switch(f.label){case 0:return e=t.getModuleCount(),r=Math.min(this._options.width,this._options.height)-2*this._options.margin,n=this._options.shape===v?r/Math.sqrt(2):r,o=Math.floor(n/e),i={hideXDots:0,hideYDots:0,width:0,height:0},this._qr=t,this._options.image?[4,this.loadImage()]:[3,2];case 1:if(f.sent(),!this._image)return[2];a=this._options,s=a.imageOptions,u=a.qrOptions,c=s.imageSize*h[u.errorCorrectionLevel],l=Math.floor(c*e*e),i=function(t){var e=t.originalHeight,r=t.originalWidth,n=t.maxHiddenDots,o=t.maxHiddenAxisDots,i=t.dotSize,a={x:0,y:0},s={x:0,y:0};if(e<=0||r<=0||n<=0||i<=0)return{height:0,width:0,hideYDots:0,hideXDots:0};var u=e/r;return a.x=Math.floor(Math.sqrt(n/u)),a.x<=0&&(a.x=1),o&&o<a.x&&(a.x=o),a.x%2==0&&a.x--,s.x=a.x*i,a.y=1+2*Math.ceil((a.x*u-1)/2),s.y=Math.round(s.x*u),(a.y*a.x>n||o&&o<a.y)&&(o&&o<a.y?(a.y=o,a.y%2==0&&a.x--):a.y-=2,s.y=a.y*i,a.x=1+2*Math.ceil((a.y/u-1)/2),s.x=Math.round(s.y/u)),{height:s.y,width:s.x,hideYDots:a.y,hideXDots:a.x}}({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:l,maxHiddenAxisDots:e-14,dotSize:o}),f.label=2;case 2:return this.drawBackground(),this.drawDots((function(t,r){var n,o,a,s,u,h;return!(d._options.imageOptions.hideBackgroundDots&&t>=(e-i.hideXDots)/2&&t<(e+i.hideXDots)/2&&r>=(e-i.hideYDots)/2&&r<(e+i.hideYDots)/2||(null===(n=m[t])||void 0===n?void 0:n[r])||(null===(o=m[t-e+7])||void 0===o?void 0:o[r])||(null===(a=m[t])||void 0===a?void 0:a[r-e+7])||(null===(s=b[t])||void 0===s?void 0:s[r])||(null===(u=b[t-e+7])||void 0===u?void 0:u[r])||(null===(h=b[t])||void 0===h?void 0:h[r-e+7]))})),this.drawCorners(),this._options.image?[4,this.drawImage({width:i.width,height:i.height,count:e,dotSize:o})]:[3,4];case 3:f.sent(),f.label=4;case 4:return[2]}}))}))},t.prototype.drawBackground=function(){var t,e,r,n=this._element,o=this._options;if(n){var i=null===(t=o.backgroundOptions)||void 0===t?void 0:t.gradient,a=null===(e=o.backgroundOptions)||void 0===e?void 0:e.color;if((i||a)&&this._createColor({options:i,color:a,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"background-color"}),null===(r=o.backgroundOptions)||void 0===r?void 0:r.round){var s=Math.min(o.width,o.height),u=document.createElementNS("http://www.w3.org/2000/svg","rect");this._backgroundClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._backgroundClipPath.setAttribute("id","clip-path-background-color"),this._defs.appendChild(this._backgroundClipPath),u.setAttribute("x",String((o.width-s)/2)),u.setAttribute("y",String((o.height-s)/2)),u.setAttribute("width",String(s)),u.setAttribute("height",String(s)),u.setAttribute("rx",String(s/2*o.backgroundOptions.round)),this._backgroundClipPath.appendChild(u)}}},t.prototype.drawDots=function(t){var e,r,n=this;if(!this._qr)throw"QR code is not defined";var o=this._options,i=this._qr.getModuleCount();if(i>o.width||i>o.height)throw"The canvas is too small.";var a=Math.min(o.width,o.height)-2*o.margin,s=o.shape===v?a/Math.sqrt(2):a,u=Math.floor(s/i),h=Math.floor((o.width-i*u)/2),c=Math.floor((o.height-i*u)/2),d=new l({svg:this._element,type:o.dotsOptions.type});this._dotsClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._dotsClipPath.setAttribute("id","clip-path-dot-color"),this._defs.appendChild(this._dotsClipPath),this._createColor({options:null===(e=o.dotsOptions)||void 0===e?void 0:e.gradient,color:o.dotsOptions.color,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"dot-color"});for(var f=function(e){for(var o=function(o){return t&&!t(e,o)?"continue":(null===(r=g._qr)||void 0===r?void 0:r.isDark(e,o))?(d.draw(h+e*u,c+o*u,u,(function(r,a){return!(e+r<0||o+a<0||e+r>=i||o+a>=i)&&!(t&&!t(e+r,o+a))&&!!n._qr&&n._qr.isDark(e+r,o+a)})),void(d._element&&g._dotsClipPath&&g._dotsClipPath.appendChild(d._element))):"continue"},a=0;a<i;a++)o(a)},g=this,p=0;p<i;p++)f(p);if(o.shape===v){var w=Math.floor((a/u-i)/2),y=i+2*w,m=h-w*u,b=c-w*u,_=[],x=Math.floor(y/2);for(p=0;p<y;p++){_[p]=[];for(var S=0;S<y;S++)p>=w-1&&p<=y-w&&S>=w-1&&S<=y-w||Math.sqrt((p-x)*(p-x)+(S-x)*(S-x))>x?_[p][S]=0:_[p][S]=this._qr.isDark(S-2*w<0?S:S>=i?S-2*w:S-w,p-2*w<0?p:p>=i?p-2*w:p-w)?1:0}var M=function(t){for(var e=function(e){if(!_[t][e])return"continue";d.draw(m+t*u,b+e*u,u,(function(r,n){var o;return!!(null===(o=_[t+r])||void 0===o?void 0:o[e+n])})),d._element&&C._dotsClipPath&&C._dotsClipPath.appendChild(d._element)},r=0;r<y;r++)e(r)},C=this;for(p=0;p<y;p++)M(p)}},t.prototype.drawCorners=function(){var t=this;if(!this._qr)throw"QR code is not defined";var e=this._element,r=this._options;if(!e)throw"Element code is not defined";var n=this._qr.getModuleCount(),o=Math.min(r.width,r.height)-2*r.margin,i=r.shape===v?o/Math.sqrt(2):o,a=Math.floor(i/n),s=7*a,u=3*a,h=Math.floor((r.width-n*a)/2),c=Math.floor((r.height-n*a)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((function(e){var o,i,d,g,v,w,y,_,x,S,M,C,A=e[0],k=e[1],O=e[2],D=h+A*a*(n-7),P=c+k*a*(n-7),z=t._dotsClipPath,B=t._dotsClipPath;if(((null===(o=r.cornersSquareOptions)||void 0===o?void 0:o.gradient)||(null===(i=r.cornersSquareOptions)||void 0===i?void 0:i.color))&&((z=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-square-color-"+A+"-"+k),t._defs.appendChild(z),t._cornersSquareClipPath=t._cornersDotClipPath=B=z,t._createColor({options:null===(d=r.cornersSquareOptions)||void 0===d?void 0:d.gradient,color:null===(g=r.cornersSquareOptions)||void 0===g?void 0:g.color,additionalRotation:O,x:D,y:P,height:s,width:s,name:"corners-square-color-"+A+"-"+k})),null===(v=r.cornersSquareOptions)||void 0===v?void 0:v.type){var q=new f({svg:t._element,type:r.cornersSquareOptions.type});q.draw(D,P,s,O),q._element&&z&&z.appendChild(q._element)}else for(var I=new l({svg:t._element,type:r.dotsOptions.type}),E=function(t){for(var e=function(e){if(!(null===(w=m[t])||void 0===w?void 0:w[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=m[t+r])||void 0===o?void 0:o[e+n])})),I._element&&z&&z.appendChild(I._element)},r=0;r<m[t].length;r++)e(r)},L=0;L<m.length;L++)E(L);if(((null===(y=r.cornersDotOptions)||void 0===y?void 0:y.gradient)||(null===(_=r.cornersDotOptions)||void 0===_?void 0:_.color))&&((B=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-dot-color-"+A+"-"+k),t._defs.appendChild(B),t._cornersDotClipPath=B,t._createColor({options:null===(x=r.cornersDotOptions)||void 0===x?void 0:x.gradient,color:null===(S=r.cornersDotOptions)||void 0===S?void 0:S.color,additionalRotation:O,x:D+2*a,y:P+2*a,height:u,width:u,name:"corners-dot-color-"+A+"-"+k})),null===(M=r.cornersDotOptions)||void 0===M?void 0:M.type){var R=new p({svg:t._element,type:r.cornersDotOptions.type});R.draw(D+2*a,P+2*a,u,O),R._element&&B&&B.appendChild(R._element)}else{I=new l({svg:t._element,type:r.dotsOptions.type});var N=function(t){for(var e=function(e){if(!(null===(C=b[t])||void 0===C?void 0:C[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=b[t+r])||void 0===o?void 0:o[e+n])})),I._element&&B&&B.appendChild(I._element)},r=0;r<b[t].length;r++)e(r)};for(L=0;L<b.length;L++)N(L)}}))},t.prototype.loadImage=function(){var t=this;return new Promise((function(e,r){var n=t._options,o=new Image;if(!n.image)return r("Image is not defined");"string"==typeof n.imageOptions.crossOrigin&&(o.crossOrigin=n.imageOptions.crossOrigin),t._image=o,o.onload=function(){e()},o.src=n.image}))},t.prototype.drawImage=function(t){var e=t.width,r=t.height,n=t.count,o=t.dotSize;return w(this,void 0,void 0,(function(){var t,i,a,s,h,c,l,d,f;return y(this,(function(g){switch(g.label){case 0:return t=this._options,i=Math.floor((t.width-n*o)/2),a=Math.floor((t.height-n*o)/2),s=i+t.imageOptions.margin+(n*o-e)/2,h=a+t.imageOptions.margin+(n*o-r)/2,c=e-2*t.imageOptions.margin,l=r-2*t.imageOptions.margin,(d=document.createElementNS("http://www.w3.org/2000/svg","image")).setAttribute("x",String(s)),d.setAttribute("y",String(h)),d.setAttribute("width",c+"px"),d.setAttribute("height",l+"px"),[4,u(t.image||"")];case 1:return f=g.sent(),d.setAttribute("href",f||""),this._element.appendChild(d),[2]}}))}))},t.prototype._createColor=function(t){var e=t.options,r=t.color,n=t.additionalRotation,o=t.x,i=t.y,a=t.height,s=t.width,u=t.name,h=s>a?s:a,c=document.createElementNS("http://www.w3.org/2000/svg","rect");if(c.setAttribute("x",String(o)),c.setAttribute("y",String(i)),c.setAttribute("height",String(a)),c.setAttribute("width",String(s)),c.setAttribute("clip-path","url('#clip-path-"+u+"')"),e){var l;if("radial"===e.type)(l=document.createElementNS("http://www.w3.org/2000/svg","radialGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("fx",String(o+s/2)),l.setAttribute("fy",String(i+a/2)),l.setAttribute("cx",String(o+s/2)),l.setAttribute("cy",String(i+a/2)),l.setAttribute("r",String(h/2));else{var d=((e.rotation||0)+n)%(2*Math.PI),f=(d+2*Math.PI)%(2*Math.PI),g=o+s/2,p=i+a/2,v=o+s/2,w=i+a/2;f>=0&&f<=.25*Math.PI||f>1.75*Math.PI&&f<=2*Math.PI?(g-=s/2,p-=a/2*Math.tan(d),v+=s/2,w+=a/2*Math.tan(d)):f>.25*Math.PI&&f<=.75*Math.PI?(p-=a/2,g-=s/2/Math.tan(d),w+=a/2,v+=s/2/Math.tan(d)):f>.75*Math.PI&&f<=1.25*Math.PI?(g+=s/2,p+=a/2*Math.tan(d),v-=s/2,w-=a/2*Math.tan(d)):f>1.25*Math.PI&&f<=1.75*Math.PI&&(p+=a/2,g+=s/2/Math.tan(d),w-=a/2,v-=s/2/Math.tan(d)),(l=document.createElementNS("http://www.w3.org/2000/svg","linearGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("x1",String(Math.round(g))),l.setAttribute("y1",String(Math.round(p))),l.setAttribute("x2",String(Math.round(v))),l.setAttribute("y2",String(Math.round(w)))}e.colorStops.forEach((function(t){var e=t.offset,r=t.color,n=document.createElementNS("http://www.w3.org/2000/svg","stop");n.setAttribute("offset",100*e+"%"),n.setAttribute("stop-color",r),l.appendChild(n)})),c.setAttribute("fill","url('#"+u+"')"),this._defs.appendChild(l)}else r&&c.setAttribute("fill",r);this._element.appendChild(c)},t}(),x="canvas";for(var S={},M=0;M<=40;M++)S[M]=M;const C={type:x,shape:"square",width:300,height:300,data:"",margin:0,qrOptions:{typeNumber:S[0],mode:void 0,errorCorrectionLevel:"Q"},imageOptions:{hideBackgroundDots:!0,imageSize:.4,crossOrigin:void 0,margin:0},dotsOptions:{type:"square",color:"#000"},backgroundOptions:{round:0,color:"#fff"}};var A=function(){return(A=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};function k(t){var e=A({},t);if(!e.colorStops||!e.colorStops.length)throw"Field 'colorStops' is required in gradient";return e.rotation?e.rotation=Number(e.rotation):e.rotation=0,e.colorStops=e.colorStops.map((function(t){return A(A({},t),{offset:Number(t.offset)})})),e}function O(t){var e=A({},t);return e.width=Number(e.width),e.height=Number(e.height),e.margin=Number(e.margin),e.imageOptions=A(A({},e.imageOptions),{hideBackgroundDots:Boolean(e.imageOptions.hideBackgroundDots),imageSize:Number(e.imageOptions.imageSize),margin:Number(e.imageOptions.margin)}),e.margin>Math.min(e.width,e.height)&&(e.margin=Math.min(e.width,e.height)),e.dotsOptions=A({},e.dotsOptions),e.dotsOptions.gradient&&(e.dotsOptions.gradient=k(e.dotsOptions.gradient)),e.cornersSquareOptions&&(e.cornersSquareOptions=A({},e.cornersSquareOptions),e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=k(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions=A({},e.cornersDotOptions),e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=k(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions=A({},e.backgroundOptions),e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=k(e.backgroundOptions.gradient))),e}var D=r(192),P=r.n(D),z=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},B=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}};const q=function(){function t(t){this._options=t?O(a(C,t)):C,this.update()}return t._clearContainer=function(t){t&&(t.innerHTML="")},t.prototype._setupSvg=function(){var t=this;if(this._qr){var e=new _(this._options);this._svg=e.getElement(),this._svgDrawingPromise=e.drawQR(this._qr).then((function(){var r;t._svg&&(null===(r=t._extension)||void 0===r||r.call(t,e.getElement(),t._options))}))}},t.prototype._setupCanvas=function(){var t,e=this;this._qr&&(this._canvas=document.createElement("canvas"),this._canvas.width=this._options.width,this._canvas.height=this._options.height,this._setupSvg(),this._canvasDrawingPromise=null===(t=this._svgDrawingPromise)||void 0===t?void 0:t.then((function(){if(e._svg){var t=e._svg,r=(new XMLSerializer).serializeToString(t),n="data:image/svg+xml;base64,"+btoa(r),o=new Image;return new Promise((function(t){o.onload=function(){var r,n;null===(n=null===(r=e._canvas)||void 0===r?void 0:r.getContext("2d"))||void 0===n||n.drawImage(o,0,0),t()},o.src=n}))}})))},t.prototype._getElement=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){return B(this,(function(e){switch(e.label){case 0:if(!this._qr)throw"QR code is empty";return"svg"!==t.toLowerCase()?[3,2]:(this._svg&&this._svgDrawingPromise||this._setupSvg(),[4,this._svgDrawingPromise]);case 1:return e.sent(),[2,this._svg];case 2:return this._canvas&&this._canvasDrawingPromise||this._setupCanvas(),[4,this._canvasDrawingPromise];case 3:return e.sent(),[2,this._canvas]}}))}))},t.prototype.update=function(e){t._clearContainer(this._container),this._options=e?O(a(this._options,e)):this._options,this._options.data&&(this._qr=P()(this._options.qrOptions.typeNumber,this._options.qrOptions.errorCorrectionLevel),this._qr.addData(this._options.data,this._options.qrOptions.mode||function(t){switch(!0){case/^[0-9]*$/.test(t):return"Numeric";case/^[0-9A-Z $%*+\-./:]*$/.test(t):return"Alphanumeric";default:return"Byte"}}(this._options.data)),this._qr.make(),this._options.type===x?this._setupCanvas():this._setupSvg(),this.append(this._container))},t.prototype.append=function(t){if(t){if("function"!=typeof t.appendChild)throw"Container should be a single DOM node";this._options.type===x?this._canvas&&t.appendChild(this._canvas):this._svg&&t.appendChild(this._svg),this._container=t}},t.prototype.applyExtension=function(t){if(!t)throw"Extension function should be defined.";this._extension=t,this.update()},t.prototype.deleteExtension=function(){this._extension=void 0,this.update()},t.prototype.getRawData=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){var e,r,n;return B(this,(function(o){switch(o.label){case 0:if(!this._qr)throw"QR code is empty";return[4,this._getElement(t)];case 1:return(e=o.sent())?"svg"===t.toLowerCase()?(r=new XMLSerializer,n=r.serializeToString(e),[2,new Blob(['<?xml version="1.0" standalone="no"?>\r\n'+n],{type:"image/svg+xml"})]):[2,new Promise((function(r){return e.toBlob(r,"image/"+t,1)}))]:[2,null]}}))}))},t.prototype.download=function(t){return z(this,void 0,void 0,(function(){var e,r,n,o,i;return B(this,(function(a){switch(a.label){case 0:if(!this._qr)throw"QR code is empty";return e="png",r="qr","string"==typeof t?(e=t,console.warn("Extension is deprecated as argument for 'download' method, please pass object { name: '...', extension: '...' } as argument")):"object"==typeof t&&null!==t&&(t.name&&(r=t.name),t.extension&&(e=t.extension)),[4,this._getElement(e)];case 1:return(n=a.sent())?("svg"===e.toLowerCase()?(o=new XMLSerializer,i='<?xml version="1.0" standalone="no"?>\r\n'+(i=o.serializeToString(n)),s("data:image/svg+xml;charset=utf-8,"+encodeURIComponent(i),r+".svg")):s(n.toDataURL("image/"+e),r+"."+e),[2]):[2]}}))}))},t}()}},e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={exports:{}};return t[n](o,o.exports,r),o.exports}return r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r(676)})().default}));
|
|
7194
7357
|
|
|
7195
7358
|
},{}]},{},[13])(13)
|