@plattar/plattar-ar-adapter 1.188.2 → 1.188.4
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 +2048 -1568
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +524 -224
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/ar/configurator-ar.js +22 -24
- package/dist/ar/scene-graph-ar.d.ts +33 -0
- package/dist/ar/scene-graph-ar.js +159 -0
- package/dist/embed/controllers/configurator-controller.d.ts +2 -2
- package/dist/embed/controllers/configurator-controller.js +32 -8
- package/dist/embed/controllers/gallery-controller.d.ts +2 -2
- package/dist/embed/controllers/gallery-controller.js +17 -8
- package/dist/embed/controllers/launcher-controller.js +24 -4
- package/dist/embed/controllers/plattar-controller.d.ts +12 -4
- package/dist/embed/controllers/plattar-controller.js +41 -26
- package/dist/embed/controllers/vto-controller.d.ts +2 -2
- package/dist/embed/controllers/vto-controller.js +17 -8
- package/dist/util/configurator-state.d.ts +6 -0
- package/dist/util/configurator-state.js +64 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +55 -55
|
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7
7
|
exports.ConfiguratorAR = void 0;
|
|
8
8
|
const plattar_analytics_1 = require("@plattar/plattar-analytics");
|
|
9
9
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
10
|
-
const plattar_services_1 = require("@plattar/plattar-services");
|
|
11
10
|
const util_1 = require("../util/util");
|
|
12
11
|
const quicklook_viewer_1 = __importDefault(require("../viewers/quicklook-viewer"));
|
|
13
12
|
const scene_viewer_1 = __importDefault(require("../viewers/scene-viewer"));
|
|
@@ -59,31 +58,30 @@ class ConfiguratorAR extends launcher_ar_1.LauncherAR {
|
|
|
59
58
|
* an AR File
|
|
60
59
|
*/
|
|
61
60
|
async _Compose(output) {
|
|
62
|
-
const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
totalARObjectCount++;
|
|
61
|
+
const type = output === 'glb' ? "viewer" : "reality";
|
|
62
|
+
const url = `https://xrutils.plattar.com/v3/scene/${this._options.state.scene.id}/${type}`;
|
|
63
|
+
// grab our existing scene-graph from the saved API
|
|
64
|
+
try {
|
|
65
|
+
const response = await fetch(url, {
|
|
66
|
+
method: "POST",
|
|
67
|
+
headers: {
|
|
68
|
+
"Content-Type": "application/json"
|
|
69
|
+
},
|
|
70
|
+
body: JSON.stringify({
|
|
71
|
+
data: {
|
|
72
|
+
attributes: this._options.state.state.sceneGraph
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
});
|
|
76
|
+
if (!response.ok) {
|
|
77
|
+
throw new Error(`ConfiguratorAR - Fetching Existing Graph Error - network response was not ok ${response.status}`);
|
|
80
78
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
79
|
+
const data = await response.json();
|
|
80
|
+
return data.data.attributes.url;
|
|
81
|
+
}
|
|
82
|
+
catch (error) {
|
|
83
|
+
throw new Error(`ConfiguratorAR - Fetching Existing Graph Error - there was a request error to ${url}, error was ${error.message}`);
|
|
84
84
|
}
|
|
85
|
-
const results = await configurator.get();
|
|
86
|
-
return results.filename;
|
|
87
85
|
}
|
|
88
86
|
/**
|
|
89
87
|
* Initialise the SceneAR instance. This returns a Promise that resolves
|
|
@@ -170,7 +168,7 @@ class ConfiguratorAR extends launcher_ar_1.LauncherAR {
|
|
|
170
168
|
}
|
|
171
169
|
exports.ConfiguratorAR = ConfiguratorAR;
|
|
172
170
|
|
|
173
|
-
},{"../util/util":
|
|
171
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48}],2:[function(require,module,exports){
|
|
174
172
|
"use strict";
|
|
175
173
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
176
174
|
exports.LauncherAR = void 0;
|
|
@@ -335,7 +333,7 @@ class ModelAR extends launcher_ar_1.LauncherAR {
|
|
|
335
333
|
}
|
|
336
334
|
exports.ModelAR = ModelAR;
|
|
337
335
|
|
|
338
|
-
},{"../util/util":
|
|
336
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/reality-viewer":23,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48}],4:[function(require,module,exports){
|
|
339
337
|
"use strict";
|
|
340
338
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
341
339
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -550,7 +548,7 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
550
548
|
}
|
|
551
549
|
exports.ProductAR = ProductAR;
|
|
552
550
|
|
|
553
|
-
},{"../util/util":
|
|
551
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/reality-viewer":23,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48}],5:[function(require,module,exports){
|
|
554
552
|
"use strict";
|
|
555
553
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
556
554
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -705,7 +703,7 @@ class RawAR extends launcher_ar_1.LauncherAR {
|
|
|
705
703
|
}
|
|
706
704
|
exports.RawAR = RawAR;
|
|
707
705
|
|
|
708
|
-
},{"../util/util":
|
|
706
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/reality-viewer":23,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48}],6:[function(require,module,exports){
|
|
709
707
|
"use strict";
|
|
710
708
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
711
709
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -916,7 +914,168 @@ class SceneAR extends launcher_ar_1.LauncherAR {
|
|
|
916
914
|
}
|
|
917
915
|
exports.SceneAR = SceneAR;
|
|
918
916
|
|
|
919
|
-
},{"../util/util":
|
|
917
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48,"@plattar/plattar-services":122}],7:[function(require,module,exports){
|
|
918
|
+
"use strict";
|
|
919
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
920
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
921
|
+
};
|
|
922
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
923
|
+
exports.SceneGraphAR = void 0;
|
|
924
|
+
const plattar_analytics_1 = require("@plattar/plattar-analytics");
|
|
925
|
+
const plattar_api_1 = require("@plattar/plattar-api");
|
|
926
|
+
const util_1 = require("../util/util");
|
|
927
|
+
const quicklook_viewer_1 = __importDefault(require("../viewers/quicklook-viewer"));
|
|
928
|
+
const scene_viewer_1 = __importDefault(require("../viewers/scene-viewer"));
|
|
929
|
+
const launcher_ar_1 = require("./launcher-ar");
|
|
930
|
+
const version_1 = __importDefault(require("../version"));
|
|
931
|
+
/**
|
|
932
|
+
* Performs AR functionality related to Plattar Scenes
|
|
933
|
+
*/
|
|
934
|
+
class SceneGraphAR extends launcher_ar_1.LauncherAR {
|
|
935
|
+
constructor(options) {
|
|
936
|
+
super();
|
|
937
|
+
// analytics instance
|
|
938
|
+
this._analytics = null;
|
|
939
|
+
this._options = options;
|
|
940
|
+
this._ar = null;
|
|
941
|
+
}
|
|
942
|
+
async _SetupAnalytics() {
|
|
943
|
+
const scene = new plattar_api_1.Scene(this._options.sceneID);
|
|
944
|
+
scene.include(plattar_api_1.Project);
|
|
945
|
+
const fetchedScene = await scene.get();
|
|
946
|
+
let analytics = null;
|
|
947
|
+
analytics = new plattar_analytics_1.Analytics(fetchedScene.attributes.application_id);
|
|
948
|
+
analytics.origin = plattar_api_1.Server.location().type;
|
|
949
|
+
this._analytics = analytics;
|
|
950
|
+
analytics.data.push("type", "scene-graph-ar");
|
|
951
|
+
analytics.data.push("sdkVersion", version_1.default);
|
|
952
|
+
analytics.data.push("sceneId", fetchedScene.id);
|
|
953
|
+
analytics.data.push("sceneTitle", fetchedScene.attributes.title);
|
|
954
|
+
const application = fetchedScene.relationships.find(plattar_api_1.Project);
|
|
955
|
+
// setup application stuff (if any)
|
|
956
|
+
if (application) {
|
|
957
|
+
analytics.data.push("applicationId", application.id);
|
|
958
|
+
analytics.data.push("applicationTitle", application.attributes.title);
|
|
959
|
+
if (this._options.useARBanner) {
|
|
960
|
+
this.options.banner = {
|
|
961
|
+
title: application.attributes.title,
|
|
962
|
+
subtitle: fetchedScene.attributes.title,
|
|
963
|
+
button: 'Visit'
|
|
964
|
+
};
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
return fetchedScene;
|
|
968
|
+
}
|
|
969
|
+
/**
|
|
970
|
+
* Composes a Scene into an AR Model (remote operation) that can be used to launch
|
|
971
|
+
* an AR File
|
|
972
|
+
*/
|
|
973
|
+
async _Compose(output) {
|
|
974
|
+
const type = output === 'glb' ? "viewer" : "reality";
|
|
975
|
+
const url = `https://xrutils.plattar.com/v3/scene/${this._options.sceneID}/${type}/${this._options.id}`;
|
|
976
|
+
// grab our existing scene-graph from the saved API
|
|
977
|
+
try {
|
|
978
|
+
const response = await fetch(url, {
|
|
979
|
+
method: "GET",
|
|
980
|
+
headers: {
|
|
981
|
+
"Content-Type": "application/json"
|
|
982
|
+
}
|
|
983
|
+
});
|
|
984
|
+
if (!response.ok) {
|
|
985
|
+
throw new Error(`ARAdapter - Fetching Existing Graph Error - network response was not ok ${response.status}`);
|
|
986
|
+
}
|
|
987
|
+
const data = await response.json();
|
|
988
|
+
return data.data.attributes.url;
|
|
989
|
+
}
|
|
990
|
+
catch (error) {
|
|
991
|
+
throw new Error(`ARAdapter - Fetching Existing Graph Error - there was a request error to ${url}, error was ${error.message}`);
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
/**
|
|
995
|
+
* Initialise the SceneAR instance. This returns a Promise that resolves
|
|
996
|
+
* successfully if initialisation is successful, otherwise it will fail.
|
|
997
|
+
*
|
|
998
|
+
* filure can occur for a number of reasons but it generally means that AR
|
|
999
|
+
* cannot be performed.
|
|
1000
|
+
*/
|
|
1001
|
+
async init() {
|
|
1002
|
+
if (!util_1.Util.canAugment()) {
|
|
1003
|
+
throw new Error("SceneGraphAR.init() - cannot proceed as AR not available in context");
|
|
1004
|
+
}
|
|
1005
|
+
const scene = await this._SetupAnalytics();
|
|
1006
|
+
const sceneOpt = scene.attributes.custom_json || {};
|
|
1007
|
+
// we need to define our AR module here
|
|
1008
|
+
// we are in Safari/Quicklook mode here
|
|
1009
|
+
if (util_1.Util.isSafari() || util_1.Util.isChromeOnIOS()) {
|
|
1010
|
+
// we need to launch a VTO experience here
|
|
1011
|
+
// VTO requires Reality Support
|
|
1012
|
+
if (sceneOpt.anchor === "face") {
|
|
1013
|
+
if (util_1.Util.canRealityViewer()) {
|
|
1014
|
+
const modelUrl = await this._Compose("vto");
|
|
1015
|
+
this._ar = new quicklook_viewer_1.default();
|
|
1016
|
+
this._ar.modelUrl = modelUrl;
|
|
1017
|
+
this._ar.banner = this.options.banner;
|
|
1018
|
+
return this;
|
|
1019
|
+
}
|
|
1020
|
+
else {
|
|
1021
|
+
throw new Error("SceneGraphAR.init() - cannot proceed as VTO AR requires Reality Viewer support");
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
// otherwise, load the USDZ stuff second if available
|
|
1025
|
+
if (util_1.Util.canQuicklook()) {
|
|
1026
|
+
const modelUrl = await this._Compose("usdz");
|
|
1027
|
+
this._ar = new quicklook_viewer_1.default();
|
|
1028
|
+
this._ar.modelUrl = modelUrl;
|
|
1029
|
+
this._ar.banner = this.options.banner;
|
|
1030
|
+
return this;
|
|
1031
|
+
}
|
|
1032
|
+
throw new Error("SceneGraphAR.init() - cannot proceed as IOS device does not support AR Mode");
|
|
1033
|
+
}
|
|
1034
|
+
// check android
|
|
1035
|
+
if (util_1.Util.canSceneViewer()) {
|
|
1036
|
+
const modelUrl = await this._Compose("glb");
|
|
1037
|
+
const arviewer = new scene_viewer_1.default();
|
|
1038
|
+
arviewer.modelUrl = modelUrl;
|
|
1039
|
+
arviewer.isVertical = this.options.anchor === "vertical" ? true : false;
|
|
1040
|
+
arviewer.banner = this.options.banner;
|
|
1041
|
+
if (sceneOpt.anchor === "vertical") {
|
|
1042
|
+
arviewer.isVertical = true;
|
|
1043
|
+
}
|
|
1044
|
+
this._ar = arviewer;
|
|
1045
|
+
return this;
|
|
1046
|
+
}
|
|
1047
|
+
// otherwise, we didn't have AR available - it should never really reach this stage as this should be caught
|
|
1048
|
+
// earlier in the process
|
|
1049
|
+
throw new Error("SceneGraphAR.init() - could not initialise AR correctly, check values");
|
|
1050
|
+
}
|
|
1051
|
+
start() {
|
|
1052
|
+
if (!this._ar) {
|
|
1053
|
+
throw new Error("SceneGraphAR.start() - cannot proceed as AR instance is null");
|
|
1054
|
+
}
|
|
1055
|
+
const analytics = this._analytics;
|
|
1056
|
+
if (analytics) {
|
|
1057
|
+
analytics.data.push("device", this._ar.device);
|
|
1058
|
+
analytics.data.push("eventCategory", this._ar.nodeType);
|
|
1059
|
+
analytics.data.push("eventAction", "Start Scene Augment");
|
|
1060
|
+
analytics.write();
|
|
1061
|
+
analytics.startRecordEngagement();
|
|
1062
|
+
}
|
|
1063
|
+
// this was initialised via the init() function
|
|
1064
|
+
this._ar.start();
|
|
1065
|
+
}
|
|
1066
|
+
canQuicklook() {
|
|
1067
|
+
return this._ar && this._ar.nodeType === "Quick Look" ? true : false;
|
|
1068
|
+
}
|
|
1069
|
+
canRealityViewer() {
|
|
1070
|
+
return this._ar && this._ar.nodeType === "Reality Viewer" ? true : false;
|
|
1071
|
+
}
|
|
1072
|
+
canSceneViewer() {
|
|
1073
|
+
return this._ar && this._ar.nodeType === "Scene Viewer" ? true : false;
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
exports.SceneGraphAR = SceneGraphAR;
|
|
1077
|
+
|
|
1078
|
+
},{"../util/util":19,"../version":20,"../viewers/quicklook-viewer":22,"../viewers/scene-viewer":24,"./launcher-ar":2,"@plattar/plattar-analytics":44,"@plattar/plattar-api":48}],8:[function(require,module,exports){
|
|
920
1079
|
"use strict";
|
|
921
1080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
922
1081
|
exports.SceneProductAR = void 0;
|
|
@@ -967,7 +1126,7 @@ class SceneProductAR extends product_ar_1.ProductAR {
|
|
|
967
1126
|
}
|
|
968
1127
|
exports.SceneProductAR = SceneProductAR;
|
|
969
1128
|
|
|
970
|
-
},{"../util/util":
|
|
1129
|
+
},{"../util/util":19,"./product-ar":4,"@plattar/plattar-api":48}],9:[function(require,module,exports){
|
|
971
1130
|
"use strict";
|
|
972
1131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
973
1132
|
exports.ConfiguratorController = void 0;
|
|
@@ -976,6 +1135,7 @@ const scene_product_ar_1 = require("../../ar/scene-product-ar");
|
|
|
976
1135
|
const util_1 = require("../../util/util");
|
|
977
1136
|
const plattar_controller_1 = require("./plattar-controller");
|
|
978
1137
|
const configurator_ar_1 = require("../../ar/configurator-ar");
|
|
1138
|
+
const scene_graph_ar_1 = require("../../ar/scene-graph-ar");
|
|
979
1139
|
/**
|
|
980
1140
|
* Manages an instance of the <plattar-configurator> HTML Element
|
|
981
1141
|
*/
|
|
@@ -1059,8 +1219,11 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1059
1219
|
return super.startARQRCode(options);
|
|
1060
1220
|
}
|
|
1061
1221
|
async startViewerQRCode(options) {
|
|
1222
|
+
const opt = this._GetDefaultQROptions(options);
|
|
1062
1223
|
// remove the old renderer instance if any
|
|
1063
|
-
|
|
1224
|
+
if (!opt.detached) {
|
|
1225
|
+
this.removeRenderer();
|
|
1226
|
+
}
|
|
1064
1227
|
const sceneID = this.getAttribute("scene-id");
|
|
1065
1228
|
if (!sceneID) {
|
|
1066
1229
|
throw new Error("ConfiguratorController.startViewerQRCode() - minimum required attributes not set, use scene-id as a minimum");
|
|
@@ -1090,9 +1253,10 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1090
1253
|
// config state is not available
|
|
1091
1254
|
configState = null;
|
|
1092
1255
|
}
|
|
1093
|
-
const opt = options || this._GetDefaultQROptions();
|
|
1094
1256
|
const viewer = document.createElement("plattar-qrcode");
|
|
1095
|
-
|
|
1257
|
+
if (!opt.detached) {
|
|
1258
|
+
this._element = viewer;
|
|
1259
|
+
}
|
|
1096
1260
|
// required attributes with defaults for plattar-viewer node
|
|
1097
1261
|
const width = this.getAttribute("width") || "500px";
|
|
1098
1262
|
const height = this.getAttribute("height") || "500px";
|
|
@@ -1112,6 +1276,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1112
1276
|
const showAR = this.getAttribute("show-ar");
|
|
1113
1277
|
const showUI = this.getAttribute("show-ui");
|
|
1114
1278
|
const showBanner = this.getAttribute("show-ar-banner");
|
|
1279
|
+
const sceneGraphID = this.getAttribute("scene-graph-id");
|
|
1115
1280
|
if (showUI && showUI === "true") {
|
|
1116
1281
|
dst = plattar_api_1.Server.location().base + "configurator/dist/index.html?scene_id=" + sceneID;
|
|
1117
1282
|
}
|
|
@@ -1124,14 +1289,22 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1124
1289
|
if (showBanner) {
|
|
1125
1290
|
dst += "&show_ar_banner=" + showBanner;
|
|
1126
1291
|
}
|
|
1292
|
+
if (sceneGraphID) {
|
|
1293
|
+
dst += "&scene_graph_id=" + sceneGraphID;
|
|
1294
|
+
}
|
|
1127
1295
|
viewer.setAttribute("url", opt.url || dst);
|
|
1128
|
-
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
1129
1296
|
this._prevQROpt = opt;
|
|
1297
|
+
if (!opt.detached) {
|
|
1298
|
+
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
1299
|
+
return new Promise((accept, reject) => {
|
|
1300
|
+
viewer.onload = () => {
|
|
1301
|
+
return accept(viewer);
|
|
1302
|
+
};
|
|
1303
|
+
this.append(viewer);
|
|
1304
|
+
});
|
|
1305
|
+
}
|
|
1130
1306
|
return new Promise((accept, reject) => {
|
|
1131
|
-
|
|
1132
|
-
return accept(viewer);
|
|
1133
|
-
};
|
|
1134
|
-
this.append(viewer);
|
|
1307
|
+
return accept(viewer);
|
|
1135
1308
|
});
|
|
1136
1309
|
}
|
|
1137
1310
|
async startRenderer() {
|
|
@@ -1263,6 +1436,16 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1263
1436
|
if (!sceneID) {
|
|
1264
1437
|
throw new Error("VTOController.initAR() - generated AR minimum required attributes not set, use scene-id as a minimum");
|
|
1265
1438
|
}
|
|
1439
|
+
const graphID = this.getAttribute("scene-graph-id");
|
|
1440
|
+
// use the scene-graph route if available
|
|
1441
|
+
if (graphID) {
|
|
1442
|
+
const configAR = new scene_graph_ar_1.SceneGraphAR({
|
|
1443
|
+
useARBanner: this.getBooleanAttribute("show-ar-banner"),
|
|
1444
|
+
id: graphID,
|
|
1445
|
+
sceneID: sceneID
|
|
1446
|
+
});
|
|
1447
|
+
return configAR.init();
|
|
1448
|
+
}
|
|
1266
1449
|
const configAR = new configurator_ar_1.ConfiguratorAR({ state: await this.getConfiguratorState(), useARBanner: this.getBooleanAttribute("show-ar-banner") });
|
|
1267
1450
|
return configAR.init();
|
|
1268
1451
|
}
|
|
@@ -1272,7 +1455,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1272
1455
|
}
|
|
1273
1456
|
exports.ConfiguratorController = ConfiguratorController;
|
|
1274
1457
|
|
|
1275
|
-
},{"../../ar/configurator-ar":1,"../../ar/scene-
|
|
1458
|
+
},{"../../ar/configurator-ar":1,"../../ar/scene-graph-ar":7,"../../ar/scene-product-ar":8,"../../util/util":19,"./plattar-controller":12,"@plattar/plattar-api":48}],10:[function(require,module,exports){
|
|
1276
1459
|
"use strict";
|
|
1277
1460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1278
1461
|
exports.GalleryController = void 0;
|
|
@@ -1318,15 +1501,19 @@ class GalleryController extends plattar_controller_1.PlattarController {
|
|
|
1318
1501
|
}
|
|
1319
1502
|
}
|
|
1320
1503
|
async startViewerQRCode(options) {
|
|
1504
|
+
const opt = this._GetDefaultQROptions(options);
|
|
1321
1505
|
// remove the old renderer instance if any
|
|
1322
|
-
|
|
1506
|
+
if (!opt.detached) {
|
|
1507
|
+
this.removeRenderer();
|
|
1508
|
+
}
|
|
1323
1509
|
const sceneID = this.getAttribute("scene-id");
|
|
1324
1510
|
if (!sceneID) {
|
|
1325
1511
|
throw new Error("GalleryController.startViewerQRCode() - minimum required attributes not set, use scene-id as a minimum");
|
|
1326
1512
|
}
|
|
1327
|
-
const opt = options || this._GetDefaultQROptions();
|
|
1328
1513
|
const viewer = document.createElement("plattar-qrcode");
|
|
1329
|
-
|
|
1514
|
+
if (!opt.detached) {
|
|
1515
|
+
this._element = viewer;
|
|
1516
|
+
}
|
|
1330
1517
|
// required attributes with defaults for plattar-viewer node
|
|
1331
1518
|
const width = this.getAttribute("width") || "500px";
|
|
1332
1519
|
const height = this.getAttribute("height") || "500px";
|
|
@@ -1344,13 +1531,18 @@ class GalleryController extends plattar_controller_1.PlattarController {
|
|
|
1344
1531
|
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
1345
1532
|
const dst = plattar_api_1.Server.location().base + "renderer/gallery.html?scene_id=" + sceneID;
|
|
1346
1533
|
viewer.setAttribute("url", opt.url || dst);
|
|
1347
|
-
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
1348
1534
|
this._prevQROpt = opt;
|
|
1535
|
+
if (!opt.detached) {
|
|
1536
|
+
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
1537
|
+
return new Promise((accept, reject) => {
|
|
1538
|
+
viewer.onload = () => {
|
|
1539
|
+
return accept(viewer);
|
|
1540
|
+
};
|
|
1541
|
+
this.append(viewer);
|
|
1542
|
+
});
|
|
1543
|
+
}
|
|
1349
1544
|
return new Promise((accept, reject) => {
|
|
1350
|
-
|
|
1351
|
-
return accept(viewer);
|
|
1352
|
-
};
|
|
1353
|
-
this.append(viewer);
|
|
1545
|
+
return accept(viewer);
|
|
1354
1546
|
});
|
|
1355
1547
|
}
|
|
1356
1548
|
async startRenderer() {
|
|
@@ -1385,7 +1577,7 @@ class GalleryController extends plattar_controller_1.PlattarController {
|
|
|
1385
1577
|
}
|
|
1386
1578
|
exports.GalleryController = GalleryController;
|
|
1387
1579
|
|
|
1388
|
-
},{"./plattar-controller":
|
|
1580
|
+
},{"./plattar-controller":12,"@plattar/plattar-api":48}],11:[function(require,module,exports){
|
|
1389
1581
|
"use strict";
|
|
1390
1582
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1391
1583
|
exports.LauncherController = void 0;
|
|
@@ -1393,6 +1585,7 @@ const scene_product_ar_1 = require("../../ar/scene-product-ar");
|
|
|
1393
1585
|
const util_1 = require("../../util/util");
|
|
1394
1586
|
const plattar_controller_1 = require("./plattar-controller");
|
|
1395
1587
|
const configurator_ar_1 = require("../../ar/configurator-ar");
|
|
1588
|
+
const scene_graph_ar_1 = require("../../ar/scene-graph-ar");
|
|
1396
1589
|
/**
|
|
1397
1590
|
* Manages an instance of the <plattar-configurator> HTML Element
|
|
1398
1591
|
*/
|
|
@@ -1476,6 +1669,7 @@ class LauncherController extends plattar_controller_1.PlattarController {
|
|
|
1476
1669
|
const variationSKU = this.getAttribute("variation-sku");
|
|
1477
1670
|
const arMode = this.getAttribute("ar-mode");
|
|
1478
1671
|
const showBanner = this.getAttribute("show-ar-banner");
|
|
1672
|
+
const sceneGraphID = this.getAttribute("scene-graph-id");
|
|
1479
1673
|
// required attributes with defaults for plattar-launcher node
|
|
1480
1674
|
const width = this.getAttribute("width") || "500px";
|
|
1481
1675
|
const height = this.getAttribute("height") || "500px";
|
|
@@ -1508,10 +1702,18 @@ class LauncherController extends plattar_controller_1.PlattarController {
|
|
|
1508
1702
|
if (showBanner) {
|
|
1509
1703
|
viewer.setAttribute("show-ar-banner", showBanner);
|
|
1510
1704
|
}
|
|
1511
|
-
if (
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1705
|
+
if (sceneGraphID) {
|
|
1706
|
+
viewer.setAttribute("scene-graph-id", sceneGraphID);
|
|
1707
|
+
}
|
|
1708
|
+
else {
|
|
1709
|
+
try {
|
|
1710
|
+
const sceneGraphID = await (await this.getConfiguratorState()).state.encodeSceneGraphID();
|
|
1711
|
+
viewer.setAttribute("scene-graph-id", sceneGraphID);
|
|
1712
|
+
}
|
|
1713
|
+
catch (_err) {
|
|
1714
|
+
// scene graph ID not available for some reason
|
|
1715
|
+
// we will generate a new one
|
|
1716
|
+
console.error(_err);
|
|
1515
1717
|
}
|
|
1516
1718
|
}
|
|
1517
1719
|
return new Promise((accept, reject) => {
|
|
@@ -1586,6 +1788,16 @@ class LauncherController extends plattar_controller_1.PlattarController {
|
|
|
1586
1788
|
if (!sceneID) {
|
|
1587
1789
|
throw new Error("LauncherController.initAR() - generated AR minimum required attributes not set, use scene-id as a minimum");
|
|
1588
1790
|
}
|
|
1791
|
+
const graphID = this.getAttribute("scene-graph-id");
|
|
1792
|
+
// use the scene-graph route if available
|
|
1793
|
+
if (graphID) {
|
|
1794
|
+
const configAR = new scene_graph_ar_1.SceneGraphAR({
|
|
1795
|
+
useARBanner: this.getBooleanAttribute("show-ar-banner"),
|
|
1796
|
+
id: graphID,
|
|
1797
|
+
sceneID: sceneID
|
|
1798
|
+
});
|
|
1799
|
+
return configAR.init();
|
|
1800
|
+
}
|
|
1589
1801
|
const configAR = new configurator_ar_1.ConfiguratorAR({ state: await this.getConfiguratorState(), useARBanner: this.getBooleanAttribute("show-ar-banner") });
|
|
1590
1802
|
return configAR.init();
|
|
1591
1803
|
}
|
|
@@ -1595,7 +1807,7 @@ class LauncherController extends plattar_controller_1.PlattarController {
|
|
|
1595
1807
|
}
|
|
1596
1808
|
exports.LauncherController = LauncherController;
|
|
1597
1809
|
|
|
1598
|
-
},{"../../ar/configurator-ar":1,"../../ar/scene-
|
|
1810
|
+
},{"../../ar/configurator-ar":1,"../../ar/scene-graph-ar":7,"../../ar/scene-product-ar":8,"../../util/util":19,"./plattar-controller":12}],12:[function(require,module,exports){
|
|
1599
1811
|
"use strict";
|
|
1600
1812
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1601
1813
|
exports.PlattarController = exports.ControllerState = void 0;
|
|
@@ -1614,12 +1826,15 @@ class PlattarController {
|
|
|
1614
1826
|
/**
|
|
1615
1827
|
* Default QR Code rendering options
|
|
1616
1828
|
*/
|
|
1617
|
-
_GetDefaultQROptions() {
|
|
1829
|
+
_GetDefaultQROptions(opt = null) {
|
|
1830
|
+
const options = opt ?? {};
|
|
1618
1831
|
return {
|
|
1619
|
-
color: this.getAttribute("qr-color") || "#101721",
|
|
1620
|
-
qrType: this.getAttribute("qr-style") || "default",
|
|
1621
|
-
shorten: this.
|
|
1622
|
-
margin: 0
|
|
1832
|
+
color: options.color ?? (this.getAttribute("qr-color") || "#101721"),
|
|
1833
|
+
qrType: options.qrType ?? (this.getAttribute("qr-style") || "default"),
|
|
1834
|
+
shorten: options.shorten ?? (this.getBooleanAttribute("qr-shorten") || true),
|
|
1835
|
+
margin: options.margin ?? 0,
|
|
1836
|
+
detached: options.detached ?? (this.getBooleanAttribute("qr-detached") || false),
|
|
1837
|
+
url: options.url ?? null
|
|
1623
1838
|
};
|
|
1624
1839
|
}
|
|
1625
1840
|
;
|
|
@@ -1738,11 +1953,13 @@ class PlattarController {
|
|
|
1738
1953
|
* @returns
|
|
1739
1954
|
*/
|
|
1740
1955
|
async startARQRCode(options) {
|
|
1741
|
-
|
|
1742
|
-
this.removeRenderer();
|
|
1743
|
-
const opt = options || this._GetDefaultQROptions();
|
|
1956
|
+
const opt = this._GetDefaultQROptions(options);
|
|
1744
1957
|
const viewer = document.createElement("plattar-qrcode");
|
|
1745
|
-
|
|
1958
|
+
// remove the old renderer instance if any
|
|
1959
|
+
if (!opt.detached) {
|
|
1960
|
+
this.removeRenderer();
|
|
1961
|
+
this._element = viewer;
|
|
1962
|
+
}
|
|
1746
1963
|
// required attributes with defaults for plattar-viewer node
|
|
1747
1964
|
const width = this.getAttribute("width") || "500px";
|
|
1748
1965
|
const height = this.getAttribute("height") || "500px";
|
|
@@ -1752,7 +1969,7 @@ class PlattarController {
|
|
|
1752
1969
|
viewer.setAttribute("color", opt.color);
|
|
1753
1970
|
}
|
|
1754
1971
|
if (opt.margin) {
|
|
1755
|
-
viewer.setAttribute("margin",
|
|
1972
|
+
viewer.setAttribute("margin", `${opt.margin}`);
|
|
1756
1973
|
}
|
|
1757
1974
|
if (opt.qrType) {
|
|
1758
1975
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
@@ -1760,7 +1977,7 @@ class PlattarController {
|
|
|
1760
1977
|
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
1761
1978
|
const qrOptions = btoa(JSON.stringify(opt));
|
|
1762
1979
|
let dst = plattar_api_1.Server.location().base + "renderer/launcher.html?qr_options=" + qrOptions;
|
|
1763
|
-
let configState = null;
|
|
1980
|
+
//let configState: string | null = null;
|
|
1764
1981
|
const sceneID = this.getAttribute("scene-id");
|
|
1765
1982
|
const embedType = this.getAttribute("embed-type");
|
|
1766
1983
|
const productID = this.getAttribute("product-id");
|
|
@@ -1769,16 +1986,7 @@ class PlattarController {
|
|
|
1769
1986
|
const variationSKU = this.getAttribute("variation-sku");
|
|
1770
1987
|
const arMode = this.getAttribute("ar-mode");
|
|
1771
1988
|
const showBanner = this.getAttribute("show-ar-banner");
|
|
1772
|
-
|
|
1773
|
-
configState = (await this.getConfiguratorState()).state.encode();
|
|
1774
|
-
}
|
|
1775
|
-
catch (_err) {
|
|
1776
|
-
// config state not available for some reason
|
|
1777
|
-
configState = null;
|
|
1778
|
-
}
|
|
1779
|
-
if (configState) {
|
|
1780
|
-
dst += "&config_state=" + configState;
|
|
1781
|
-
}
|
|
1989
|
+
const sceneGraphID = this.getAttribute("scene-graph-id");
|
|
1782
1990
|
if (embedType) {
|
|
1783
1991
|
dst += "&embed_type=" + embedType;
|
|
1784
1992
|
}
|
|
@@ -1803,14 +2011,33 @@ class PlattarController {
|
|
|
1803
2011
|
if (showBanner) {
|
|
1804
2012
|
dst += "&show_ar_banner=" + showBanner;
|
|
1805
2013
|
}
|
|
2014
|
+
if (sceneGraphID) {
|
|
2015
|
+
dst += "&scene_graph_id" + sceneGraphID;
|
|
2016
|
+
}
|
|
2017
|
+
else {
|
|
2018
|
+
try {
|
|
2019
|
+
const sceneGraphID = await (await this.getConfiguratorState()).state.encodeSceneGraphID();
|
|
2020
|
+
dst += "&scene_graph_id=" + sceneGraphID;
|
|
2021
|
+
}
|
|
2022
|
+
catch (_err) {
|
|
2023
|
+
// scene graph ID not available for some reason
|
|
2024
|
+
// we will generate a new one
|
|
2025
|
+
console.error(_err);
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
1806
2028
|
viewer.setAttribute("url", opt.url || dst);
|
|
1807
|
-
this._state = ControllerState.QRCode;
|
|
1808
2029
|
this._prevQROpt = opt;
|
|
2030
|
+
if (!opt.detached) {
|
|
2031
|
+
this._state = ControllerState.QRCode;
|
|
2032
|
+
return new Promise((accept, reject) => {
|
|
2033
|
+
this.append(viewer);
|
|
2034
|
+
viewer.onload = () => {
|
|
2035
|
+
return accept(viewer);
|
|
2036
|
+
};
|
|
2037
|
+
});
|
|
2038
|
+
}
|
|
1809
2039
|
return new Promise((accept, reject) => {
|
|
1810
|
-
|
|
1811
|
-
viewer.onload = () => {
|
|
1812
|
-
return accept(viewer);
|
|
1813
|
-
};
|
|
2040
|
+
return accept(viewer);
|
|
1814
2041
|
});
|
|
1815
2042
|
}
|
|
1816
2043
|
/**
|
|
@@ -1905,7 +2132,7 @@ class PlattarController {
|
|
|
1905
2132
|
}
|
|
1906
2133
|
exports.PlattarController = PlattarController;
|
|
1907
2134
|
|
|
1908
|
-
},{"../../util/configurator-state":
|
|
2135
|
+
},{"../../util/configurator-state":18,"@plattar/plattar-api":48}],13:[function(require,module,exports){
|
|
1909
2136
|
"use strict";
|
|
1910
2137
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1911
2138
|
exports.ProductController = void 0;
|
|
@@ -2135,7 +2362,7 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
2135
2362
|
}
|
|
2136
2363
|
exports.ProductController = ProductController;
|
|
2137
2364
|
|
|
2138
|
-
},{"../../ar/product-ar":4,"../../util/util":
|
|
2365
|
+
},{"../../ar/product-ar":4,"../../util/util":19,"./plattar-controller":12,"@plattar/plattar-api":48}],14:[function(require,module,exports){
|
|
2139
2366
|
"use strict";
|
|
2140
2367
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2141
2368
|
exports.VTOController = void 0;
|
|
@@ -2204,15 +2431,19 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
2204
2431
|
}
|
|
2205
2432
|
}
|
|
2206
2433
|
async startViewerQRCode(options) {
|
|
2434
|
+
const opt = this._GetDefaultQROptions(options);
|
|
2207
2435
|
// remove the old renderer instance if any
|
|
2208
|
-
|
|
2436
|
+
if (!opt.detached) {
|
|
2437
|
+
this.removeRenderer();
|
|
2438
|
+
}
|
|
2209
2439
|
const sceneID = this.getAttribute("scene-id");
|
|
2210
2440
|
if (!sceneID) {
|
|
2211
2441
|
throw new Error("VTOController.startQRCode() - minimum required attributes not set, use scene-id as a minimum");
|
|
2212
2442
|
}
|
|
2213
|
-
const opt = options || this._GetDefaultQROptions();
|
|
2214
2443
|
const viewer = document.createElement("plattar-qrcode");
|
|
2215
|
-
|
|
2444
|
+
if (!opt.detached) {
|
|
2445
|
+
this._element = viewer;
|
|
2446
|
+
}
|
|
2216
2447
|
// required attributes with defaults for plattar-viewer node
|
|
2217
2448
|
const width = this.getAttribute("width") || "500px";
|
|
2218
2449
|
const height = this.getAttribute("height") || "500px";
|
|
@@ -2258,13 +2489,18 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
2258
2489
|
dst += "&variation_id=" + variationID;
|
|
2259
2490
|
}
|
|
2260
2491
|
viewer.setAttribute("url", opt.url || dst);
|
|
2261
|
-
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
2262
2492
|
this._prevQROpt = opt;
|
|
2493
|
+
if (!opt.detached) {
|
|
2494
|
+
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
2495
|
+
return new Promise((accept, reject) => {
|
|
2496
|
+
viewer.onload = () => {
|
|
2497
|
+
return accept(viewer);
|
|
2498
|
+
};
|
|
2499
|
+
this.append(viewer);
|
|
2500
|
+
});
|
|
2501
|
+
}
|
|
2263
2502
|
return new Promise((accept, reject) => {
|
|
2264
|
-
|
|
2265
|
-
return accept(viewer);
|
|
2266
|
-
};
|
|
2267
|
-
this.append(viewer);
|
|
2503
|
+
return accept(viewer);
|
|
2268
2504
|
});
|
|
2269
2505
|
}
|
|
2270
2506
|
async startRenderer() {
|
|
@@ -2375,7 +2611,7 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
2375
2611
|
}
|
|
2376
2612
|
exports.VTOController = VTOController;
|
|
2377
2613
|
|
|
2378
|
-
},{"../..":
|
|
2614
|
+
},{"../..":17,"../../ar/configurator-ar":1,"../../util/util":19,"./plattar-controller":12,"@plattar/plattar-api":48}],15:[function(require,module,exports){
|
|
2379
2615
|
"use strict";
|
|
2380
2616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2381
2617
|
exports.WebXRController = void 0;
|
|
@@ -2521,7 +2757,7 @@ class WebXRController extends plattar_controller_1.PlattarController {
|
|
|
2521
2757
|
}
|
|
2522
2758
|
exports.WebXRController = WebXRController;
|
|
2523
2759
|
|
|
2524
|
-
},{"../../util/util":
|
|
2760
|
+
},{"../../util/util":19,"./plattar-controller":12}],16:[function(require,module,exports){
|
|
2525
2761
|
"use strict";
|
|
2526
2762
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2527
2763
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
@@ -2812,7 +3048,7 @@ class PlattarEmbed extends HTMLElement {
|
|
|
2812
3048
|
}
|
|
2813
3049
|
exports.default = PlattarEmbed;
|
|
2814
3050
|
|
|
2815
|
-
},{"../util/util":
|
|
3051
|
+
},{"../util/util":19,"./controllers/configurator-controller":9,"./controllers/gallery-controller":10,"./controllers/launcher-controller":11,"./controllers/product-controller":13,"./controllers/vto-controller":14,"./controllers/webxr-controller":15,"@plattar/plattar-api":48}],17:[function(require,module,exports){
|
|
2816
3052
|
"use strict";
|
|
2817
3053
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2818
3054
|
if (k2 === undefined) k2 = k;
|
|
@@ -2880,7 +3116,7 @@ if (customElements) {
|
|
|
2880
3116
|
}
|
|
2881
3117
|
console.log("using @plattar/plattar-ar-adapter v" + version_1.default);
|
|
2882
3118
|
|
|
2883
|
-
},{"./ar/launcher-ar":2,"./ar/model-ar":3,"./ar/product-ar":4,"./ar/raw-ar":5,"./ar/scene-ar":6,"./ar/scene-product-ar":
|
|
3119
|
+
},{"./ar/launcher-ar":2,"./ar/model-ar":3,"./ar/product-ar":4,"./ar/raw-ar":5,"./ar/scene-ar":6,"./ar/scene-product-ar":8,"./embed/plattar-embed":16,"./util/configurator-state":18,"./util/util":19,"./version":20,"@plattar/plattar-qrcode":117,"@plattar/plattar-web":138}],18:[function(require,module,exports){
|
|
2884
3120
|
"use strict";
|
|
2885
3121
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2886
3122
|
exports.ConfiguratorState = void 0;
|
|
@@ -3323,10 +3559,74 @@ class ConfiguratorState {
|
|
|
3323
3559
|
encode() {
|
|
3324
3560
|
return btoa(JSON.stringify(this._state));
|
|
3325
3561
|
}
|
|
3562
|
+
async encodeSceneGraphID() {
|
|
3563
|
+
const graph = this.sceneGraph;
|
|
3564
|
+
// some scene-graphs are very large in size, we store it remotely
|
|
3565
|
+
// this storage will expire in 10 minutes so this is a non-permanent version
|
|
3566
|
+
// and is designed for quick ar
|
|
3567
|
+
const url = `https://c.plattar.com/v3/redir/store`;
|
|
3568
|
+
// finally send our scene-graph to the backend to generate the AR file and return
|
|
3569
|
+
try {
|
|
3570
|
+
const response = await fetch(url, {
|
|
3571
|
+
method: "POST",
|
|
3572
|
+
headers: {
|
|
3573
|
+
"Content-Type": "application/json"
|
|
3574
|
+
},
|
|
3575
|
+
body: JSON.stringify({
|
|
3576
|
+
data: {
|
|
3577
|
+
attributes: {
|
|
3578
|
+
data: graph
|
|
3579
|
+
}
|
|
3580
|
+
}
|
|
3581
|
+
})
|
|
3582
|
+
});
|
|
3583
|
+
if (!response.ok) {
|
|
3584
|
+
throw new Error(`ConfiguratorState.encodeSceneGraphID() - network response was not ok ${response.status}`);
|
|
3585
|
+
}
|
|
3586
|
+
const data = await response.json();
|
|
3587
|
+
return data.data.id;
|
|
3588
|
+
}
|
|
3589
|
+
catch (error) {
|
|
3590
|
+
throw new Error(`ConfiguratorState.encodeSceneGraphID() - there was a request error to ${url}, error was ${error.message}`);
|
|
3591
|
+
}
|
|
3592
|
+
}
|
|
3593
|
+
/**
|
|
3594
|
+
* Compiles and returns the Dynamic Scene Graph (Updated for 2025 for DynamicAR)
|
|
3595
|
+
* NOTE: Eventually this structure should replace ConfiguratorState
|
|
3596
|
+
*/
|
|
3597
|
+
get sceneGraph() {
|
|
3598
|
+
const objects = this.array();
|
|
3599
|
+
// in here we need to generate the schema input to be sent to the backend service
|
|
3600
|
+
const schema = {
|
|
3601
|
+
// ensure to only generate AR using files we pass into the backend
|
|
3602
|
+
strict: false,
|
|
3603
|
+
inputs: []
|
|
3604
|
+
};
|
|
3605
|
+
objects.forEach((object) => {
|
|
3606
|
+
if (object.meta_data.type === "scenemodel") {
|
|
3607
|
+
const data = {
|
|
3608
|
+
id: object.scene_product_id,
|
|
3609
|
+
type: 'scenemodel',
|
|
3610
|
+
visibility: object.meta_data.augment
|
|
3611
|
+
};
|
|
3612
|
+
schema.inputs.push(data);
|
|
3613
|
+
}
|
|
3614
|
+
else {
|
|
3615
|
+
const data = {
|
|
3616
|
+
id: object.scene_product_id,
|
|
3617
|
+
type: 'sceneproduct',
|
|
3618
|
+
variation_id: object.product_variation_id,
|
|
3619
|
+
visibility: object.meta_data.augment
|
|
3620
|
+
};
|
|
3621
|
+
schema.inputs.push(data);
|
|
3622
|
+
}
|
|
3623
|
+
});
|
|
3624
|
+
return schema;
|
|
3625
|
+
}
|
|
3326
3626
|
}
|
|
3327
3627
|
exports.ConfiguratorState = ConfiguratorState;
|
|
3328
3628
|
|
|
3329
|
-
},{"@plattar/plattar-api":
|
|
3629
|
+
},{"@plattar/plattar-api":48}],19:[function(require,module,exports){
|
|
3330
3630
|
"use strict";
|
|
3331
3631
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3332
3632
|
exports.Util = void 0;
|
|
@@ -3424,12 +3724,12 @@ class Util {
|
|
|
3424
3724
|
}
|
|
3425
3725
|
exports.Util = Util;
|
|
3426
3726
|
|
|
3427
|
-
},{}],
|
|
3727
|
+
},{}],20:[function(require,module,exports){
|
|
3428
3728
|
"use strict";
|
|
3429
3729
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3430
|
-
exports.default = "1.188.
|
|
3730
|
+
exports.default = "1.188.4";
|
|
3431
3731
|
|
|
3432
|
-
},{}],
|
|
3732
|
+
},{}],21:[function(require,module,exports){
|
|
3433
3733
|
"use strict";
|
|
3434
3734
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3435
3735
|
exports.ARViewer = void 0;
|
|
@@ -3446,7 +3746,7 @@ class ARViewer {
|
|
|
3446
3746
|
}
|
|
3447
3747
|
exports.ARViewer = ARViewer;
|
|
3448
3748
|
|
|
3449
|
-
},{}],
|
|
3749
|
+
},{}],22:[function(require,module,exports){
|
|
3450
3750
|
"use strict";
|
|
3451
3751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3452
3752
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -3487,7 +3787,7 @@ class QuicklookViewer extends ar_viewer_1.ARViewer {
|
|
|
3487
3787
|
}
|
|
3488
3788
|
exports.default = QuicklookViewer;
|
|
3489
3789
|
|
|
3490
|
-
},{"./ar-viewer":
|
|
3790
|
+
},{"./ar-viewer":21}],23:[function(require,module,exports){
|
|
3491
3791
|
"use strict";
|
|
3492
3792
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3493
3793
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -3514,7 +3814,7 @@ class RealityViewer extends ar_viewer_1.ARViewer {
|
|
|
3514
3814
|
}
|
|
3515
3815
|
exports.default = RealityViewer;
|
|
3516
3816
|
|
|
3517
|
-
},{"./ar-viewer":
|
|
3817
|
+
},{"./ar-viewer":21}],24:[function(require,module,exports){
|
|
3518
3818
|
"use strict";
|
|
3519
3819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3520
3820
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -3553,7 +3853,7 @@ class SceneViewer extends ar_viewer_1.ARViewer {
|
|
|
3553
3853
|
}
|
|
3554
3854
|
exports.default = SceneViewer;
|
|
3555
3855
|
|
|
3556
|
-
},{"./ar-viewer":
|
|
3856
|
+
},{"./ar-viewer":21}],25:[function(require,module,exports){
|
|
3557
3857
|
"use strict";
|
|
3558
3858
|
const Messenger = require("./messenger/messenger.js");
|
|
3559
3859
|
const Memory = require("./memory/memory.js");
|
|
@@ -3587,7 +3887,7 @@ module.exports = {
|
|
|
3587
3887
|
memory: GlobalEventHandler.instance().memoryInstance,
|
|
3588
3888
|
version: Version
|
|
3589
3889
|
}
|
|
3590
|
-
},{"./memory/memory.js":
|
|
3890
|
+
},{"./memory/memory.js":26,"./messenger/global-event-handler.js":34,"./messenger/messenger.js":35,"./version":40}],26:[function(require,module,exports){
|
|
3591
3891
|
const PermanentMemory = require("./permanent-memory");
|
|
3592
3892
|
const TemporaryMemory = require("./temporary-memory");
|
|
3593
3893
|
|
|
@@ -3621,7 +3921,7 @@ class Memory {
|
|
|
3621
3921
|
}
|
|
3622
3922
|
|
|
3623
3923
|
module.exports = Memory;
|
|
3624
|
-
},{"./permanent-memory":
|
|
3924
|
+
},{"./permanent-memory":27,"./temporary-memory":28}],27:[function(require,module,exports){
|
|
3625
3925
|
const WrappedValue = require("./wrapped-value");
|
|
3626
3926
|
|
|
3627
3927
|
class PermanentMemory {
|
|
@@ -3690,7 +3990,7 @@ class PermanentMemory {
|
|
|
3690
3990
|
}
|
|
3691
3991
|
|
|
3692
3992
|
module.exports = PermanentMemory;
|
|
3693
|
-
},{"./wrapped-value":
|
|
3993
|
+
},{"./wrapped-value":29}],28:[function(require,module,exports){
|
|
3694
3994
|
const WrappedValue = require("./wrapped-value");
|
|
3695
3995
|
|
|
3696
3996
|
class TemporaryMemory {
|
|
@@ -3747,7 +4047,7 @@ class TemporaryMemory {
|
|
|
3747
4047
|
}
|
|
3748
4048
|
|
|
3749
4049
|
module.exports = TemporaryMemory;
|
|
3750
|
-
},{"./wrapped-value":
|
|
4050
|
+
},{"./wrapped-value":29}],29:[function(require,module,exports){
|
|
3751
4051
|
/**
|
|
3752
4052
|
* WrappedValue represents a generic value type with a callback function
|
|
3753
4053
|
* for when the value has changed
|
|
@@ -3859,7 +4159,7 @@ class WrappedValue {
|
|
|
3859
4159
|
}
|
|
3860
4160
|
|
|
3861
4161
|
module.exports = WrappedValue;
|
|
3862
|
-
},{}],
|
|
4162
|
+
},{}],30:[function(require,module,exports){
|
|
3863
4163
|
/**
|
|
3864
4164
|
* Broadcaster is used to call functions in multiple contexts at the
|
|
3865
4165
|
* same time. This can be useful without having to handle complex logic
|
|
@@ -3912,7 +4212,7 @@ class Broadcaster {
|
|
|
3912
4212
|
}
|
|
3913
4213
|
|
|
3914
4214
|
module.exports = Broadcaster;
|
|
3915
|
-
},{}],
|
|
4215
|
+
},{}],31:[function(require,module,exports){
|
|
3916
4216
|
const WrappedFunction = require("./wrapped-local-function");
|
|
3917
4217
|
|
|
3918
4218
|
class CurrentFunctionList {
|
|
@@ -3963,7 +4263,7 @@ class CurrentFunctionList {
|
|
|
3963
4263
|
}
|
|
3964
4264
|
|
|
3965
4265
|
module.exports = CurrentFunctionList;
|
|
3966
|
-
},{"./wrapped-local-function":
|
|
4266
|
+
},{"./wrapped-local-function":32}],32:[function(require,module,exports){
|
|
3967
4267
|
const Util = require("../util/util.js");
|
|
3968
4268
|
|
|
3969
4269
|
/**
|
|
@@ -4050,7 +4350,7 @@ class WrappedLocalFunction {
|
|
|
4050
4350
|
}
|
|
4051
4351
|
|
|
4052
4352
|
module.exports = WrappedLocalFunction;
|
|
4053
|
-
},{"../util/util.js":
|
|
4353
|
+
},{"../util/util.js":39}],33:[function(require,module,exports){
|
|
4054
4354
|
const Util = require("./util/util");
|
|
4055
4355
|
|
|
4056
4356
|
class FunctionObserver {
|
|
@@ -4138,7 +4438,7 @@ class FunctionObserver {
|
|
|
4138
4438
|
}
|
|
4139
4439
|
|
|
4140
4440
|
module.exports = FunctionObserver;
|
|
4141
|
-
},{"./util/util":
|
|
4441
|
+
},{"./util/util":39}],34:[function(require,module,exports){
|
|
4142
4442
|
const RemoteInterface = require("./remote-interface.js");
|
|
4143
4443
|
|
|
4144
4444
|
/**
|
|
@@ -4223,7 +4523,7 @@ GlobalEventHandler.instance = () => {
|
|
|
4223
4523
|
};
|
|
4224
4524
|
|
|
4225
4525
|
module.exports = GlobalEventHandler;
|
|
4226
|
-
},{"./remote-interface.js":
|
|
4526
|
+
},{"./remote-interface.js":36}],35:[function(require,module,exports){
|
|
4227
4527
|
const CurrentFunctionList = require("./current/current-function-list");
|
|
4228
4528
|
const RemoteInterface = require("./remote-interface");
|
|
4229
4529
|
const RemoteFunctionList = require("./remote/remote-function-list");
|
|
@@ -4535,7 +4835,7 @@ class Messenger {
|
|
|
4535
4835
|
}
|
|
4536
4836
|
|
|
4537
4837
|
module.exports = Messenger;
|
|
4538
|
-
},{"./broadcaster.js":
|
|
4838
|
+
},{"./broadcaster.js":30,"./current/current-function-list":31,"./function-observer.js":33,"./global-event-handler.js":34,"./remote-interface":36,"./remote/remote-function-list":37,"./util/util.js":39}],36:[function(require,module,exports){
|
|
4539
4839
|
/**
|
|
4540
4840
|
* Provides a single useful interface for performing remote function calls
|
|
4541
4841
|
*/
|
|
@@ -4594,7 +4894,7 @@ class RemoteInterface {
|
|
|
4594
4894
|
}
|
|
4595
4895
|
|
|
4596
4896
|
module.exports = RemoteInterface;
|
|
4597
|
-
},{}],
|
|
4897
|
+
},{}],37:[function(require,module,exports){
|
|
4598
4898
|
const WrappedFunction = require("./wrapped-remote-function");
|
|
4599
4899
|
|
|
4600
4900
|
class RemoteFunctionList {
|
|
@@ -4674,7 +4974,7 @@ class RemoteFunctionList {
|
|
|
4674
4974
|
}
|
|
4675
4975
|
|
|
4676
4976
|
module.exports = RemoteFunctionList;
|
|
4677
|
-
},{"./wrapped-remote-function":
|
|
4977
|
+
},{"./wrapped-remote-function":38}],38:[function(require,module,exports){
|
|
4678
4978
|
const Util = require("../util/util.js");
|
|
4679
4979
|
const GlobalEventHandler = require("../global-event-handler.js");
|
|
4680
4980
|
|
|
@@ -4777,7 +5077,7 @@ class WrappedRemoteFunction {
|
|
|
4777
5077
|
}
|
|
4778
5078
|
|
|
4779
5079
|
module.exports = WrappedRemoteFunction;
|
|
4780
|
-
},{"../global-event-handler.js":
|
|
5080
|
+
},{"../global-event-handler.js":34,"../util/util.js":39}],39:[function(require,module,exports){
|
|
4781
5081
|
class Util {
|
|
4782
5082
|
|
|
4783
5083
|
/**
|
|
@@ -4810,10 +5110,10 @@ class Util {
|
|
|
4810
5110
|
}
|
|
4811
5111
|
|
|
4812
5112
|
module.exports = Util;
|
|
4813
|
-
},{}],
|
|
5113
|
+
},{}],40:[function(require,module,exports){
|
|
4814
5114
|
module.exports = "1.153.3";
|
|
4815
5115
|
|
|
4816
|
-
},{}],
|
|
5116
|
+
},{}],41:[function(require,module,exports){
|
|
4817
5117
|
"use strict";
|
|
4818
5118
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4819
5119
|
exports.AnalyticsData = void 0;
|
|
@@ -4866,7 +5166,7 @@ class AnalyticsData {
|
|
|
4866
5166
|
}
|
|
4867
5167
|
exports.AnalyticsData = AnalyticsData;
|
|
4868
5168
|
|
|
4869
|
-
},{"../util/util":
|
|
5169
|
+
},{"../util/util":46}],42:[function(require,module,exports){
|
|
4870
5170
|
"use strict";
|
|
4871
5171
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4872
5172
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4965,7 +5265,7 @@ class Analytics {
|
|
|
4965
5265
|
}
|
|
4966
5266
|
exports.Analytics = Analytics;
|
|
4967
5267
|
|
|
4968
|
-
},{"../util/basic-http":
|
|
5268
|
+
},{"../util/basic-http":45,"./analytics-data":41,"./google/google-analytics":43}],43:[function(require,module,exports){
|
|
4969
5269
|
"use strict";
|
|
4970
5270
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4971
5271
|
exports.GoogleAnalytics = void 0;
|
|
@@ -5037,7 +5337,7 @@ class GoogleAnalytics {
|
|
|
5037
5337
|
}
|
|
5038
5338
|
exports.GoogleAnalytics = GoogleAnalytics;
|
|
5039
5339
|
|
|
5040
|
-
},{}],
|
|
5340
|
+
},{}],44:[function(require,module,exports){
|
|
5041
5341
|
"use strict";
|
|
5042
5342
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5043
5343
|
if (k2 === undefined) k2 = k;
|
|
@@ -5075,7 +5375,7 @@ Object.defineProperty(exports, "AnalyticsData", { enumerable: true, get: functio
|
|
|
5075
5375
|
const version_1 = __importDefault(require("./version"));
|
|
5076
5376
|
console.log("using @plattar/plattar-analytics v" + version_1.default);
|
|
5077
5377
|
|
|
5078
|
-
},{"./analytics/analytics":
|
|
5378
|
+
},{"./analytics/analytics":42,"./analytics/analytics-data":41,"./version":47}],45:[function(require,module,exports){
|
|
5079
5379
|
"use strict";
|
|
5080
5380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5081
5381
|
/**
|
|
@@ -5141,7 +5441,7 @@ class BasicHTTP {
|
|
|
5141
5441
|
}
|
|
5142
5442
|
exports.default = BasicHTTP;
|
|
5143
5443
|
|
|
5144
|
-
},{}],
|
|
5444
|
+
},{}],46:[function(require,module,exports){
|
|
5145
5445
|
"use strict";
|
|
5146
5446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5147
5447
|
exports.Util = void 0;
|
|
@@ -5167,12 +5467,12 @@ class Util {
|
|
|
5167
5467
|
}
|
|
5168
5468
|
exports.Util = Util;
|
|
5169
5469
|
|
|
5170
|
-
},{}],
|
|
5470
|
+
},{}],47:[function(require,module,exports){
|
|
5171
5471
|
"use strict";
|
|
5172
5472
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5173
5473
|
exports.default = "1.152.2";
|
|
5174
5474
|
|
|
5175
|
-
},{}],
|
|
5475
|
+
},{}],48:[function(require,module,exports){
|
|
5176
5476
|
"use strict";
|
|
5177
5477
|
const Server = require("./server/plattar-server.js");
|
|
5178
5478
|
const Util = require("./util/plattar-util.js");
|
|
@@ -5333,7 +5633,7 @@ module.exports = {
|
|
|
5333
5633
|
version: Version
|
|
5334
5634
|
};
|
|
5335
5635
|
|
|
5336
|
-
},{"./server/plattar-server.js":
|
|
5636
|
+
},{"./server/plattar-server.js":50,"./types/application.js":51,"./types/content-pipeline/brief.js":52,"./types/content-pipeline/comment-brief.js":53,"./types/content-pipeline/comment-quote.js":54,"./types/content-pipeline/comment-solution.js":55,"./types/content-pipeline/folder.js":56,"./types/content-pipeline/pipeline-user.js":57,"./types/content-pipeline/quote.js":58,"./types/content-pipeline/rating.js":59,"./types/content-pipeline/solution.js":60,"./types/file/file-audio.js":61,"./types/file/file-base.js":62,"./types/file/file-image.js":63,"./types/file/file-json.js":64,"./types/file/file-model.js":65,"./types/file/file-script.js":66,"./types/file/file-video.js":67,"./types/misc/application-build.js":71,"./types/misc/asset-library.js":72,"./types/misc/async-job.js":73,"./types/misc/script-event.js":74,"./types/misc/tag.js":75,"./types/page/card-base.js":76,"./types/page/card-button.js":77,"./types/page/card-html.js":78,"./types/page/card-iframe.js":79,"./types/page/card-image.js":80,"./types/page/card-map.js":81,"./types/page/card-paragraph.js":82,"./types/page/card-row.js":83,"./types/page/card-slider.js":84,"./types/page/card-title.js":85,"./types/page/card-video.js":86,"./types/page/card-youtube.js":87,"./types/page/page.js":88,"./types/product/product-annotation.js":89,"./types/product/product-base.js":90,"./types/product/product-variation.js":91,"./types/product/product.js":92,"./types/scene/scene-annotation.js":93,"./types/scene/scene-audio.js":94,"./types/scene/scene-base.js":95,"./types/scene/scene-button.js":96,"./types/scene/scene-camera.js":97,"./types/scene/scene-carousel.js":98,"./types/scene/scene-gallery-image.js":99,"./types/scene/scene-gallery.js":100,"./types/scene/scene-image.js":101,"./types/scene/scene-model.js":102,"./types/scene/scene-panorama.js":103,"./types/scene/scene-poller.js":104,"./types/scene/scene-product.js":105,"./types/scene/scene-script.js":106,"./types/scene/scene-shadow.js":107,"./types/scene/scene-video.js":108,"./types/scene/scene-volumetric.js":109,"./types/scene/scene-youtube.js":110,"./types/scene/scene.js":111,"./types/trigger/trigger-image.js":112,"./util/plattar-util.js":113,"./version":114}],49:[function(require,module,exports){
|
|
5337
5637
|
const fetch = require("node-fetch");
|
|
5338
5638
|
|
|
5339
5639
|
class PlattarQuery {
|
|
@@ -5825,7 +6125,7 @@ PlattarQuery._DeleteGlobalCachedObject = (obj) => {
|
|
|
5825
6125
|
};
|
|
5826
6126
|
|
|
5827
6127
|
module.exports = PlattarQuery;
|
|
5828
|
-
},{"../util/plattar-util.js":
|
|
6128
|
+
},{"../util/plattar-util.js":113,"node-fetch":144}],50:[function(require,module,exports){
|
|
5829
6129
|
(function (process){(function (){
|
|
5830
6130
|
const fetch = require("node-fetch");
|
|
5831
6131
|
|
|
@@ -6050,7 +6350,7 @@ PlattarServer.location = () => {
|
|
|
6050
6350
|
|
|
6051
6351
|
module.exports = PlattarServer;
|
|
6052
6352
|
}).call(this)}).call(this,require('_process'))
|
|
6053
|
-
},{"_process":
|
|
6353
|
+
},{"_process":146,"node-fetch":144}],51:[function(require,module,exports){
|
|
6054
6354
|
const PlattarBase = require("./interfaces/plattar-base.js");
|
|
6055
6355
|
|
|
6056
6356
|
class Application extends PlattarBase {
|
|
@@ -6060,7 +6360,7 @@ class Application extends PlattarBase {
|
|
|
6060
6360
|
}
|
|
6061
6361
|
|
|
6062
6362
|
module.exports = Application;
|
|
6063
|
-
},{"./interfaces/plattar-base.js":
|
|
6363
|
+
},{"./interfaces/plattar-base.js":68}],52:[function(require,module,exports){
|
|
6064
6364
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6065
6365
|
|
|
6066
6366
|
class Brief extends PlattarBase {
|
|
@@ -6070,7 +6370,7 @@ class Brief extends PlattarBase {
|
|
|
6070
6370
|
}
|
|
6071
6371
|
|
|
6072
6372
|
module.exports = Brief;
|
|
6073
|
-
},{"../interfaces/plattar-base":
|
|
6373
|
+
},{"../interfaces/plattar-base":68}],53:[function(require,module,exports){
|
|
6074
6374
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6075
6375
|
|
|
6076
6376
|
class CommentBrief extends PlattarBase {
|
|
@@ -6080,7 +6380,7 @@ class CommentBrief extends PlattarBase {
|
|
|
6080
6380
|
}
|
|
6081
6381
|
|
|
6082
6382
|
module.exports = CommentBrief;
|
|
6083
|
-
},{"../interfaces/plattar-base":
|
|
6383
|
+
},{"../interfaces/plattar-base":68}],54:[function(require,module,exports){
|
|
6084
6384
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6085
6385
|
|
|
6086
6386
|
class CommentQuote extends PlattarBase {
|
|
@@ -6090,7 +6390,7 @@ class CommentQuote extends PlattarBase {
|
|
|
6090
6390
|
}
|
|
6091
6391
|
|
|
6092
6392
|
module.exports = CommentQuote;
|
|
6093
|
-
},{"../interfaces/plattar-base":
|
|
6393
|
+
},{"../interfaces/plattar-base":68}],55:[function(require,module,exports){
|
|
6094
6394
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6095
6395
|
|
|
6096
6396
|
class CommentSolution extends PlattarBase {
|
|
@@ -6100,7 +6400,7 @@ class CommentSolution extends PlattarBase {
|
|
|
6100
6400
|
}
|
|
6101
6401
|
|
|
6102
6402
|
module.exports = CommentSolution;
|
|
6103
|
-
},{"../interfaces/plattar-base":
|
|
6403
|
+
},{"../interfaces/plattar-base":68}],56:[function(require,module,exports){
|
|
6104
6404
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6105
6405
|
|
|
6106
6406
|
class Folder extends PlattarBase {
|
|
@@ -6110,7 +6410,7 @@ class Folder extends PlattarBase {
|
|
|
6110
6410
|
}
|
|
6111
6411
|
|
|
6112
6412
|
module.exports = Folder;
|
|
6113
|
-
},{"../interfaces/plattar-base":
|
|
6413
|
+
},{"../interfaces/plattar-base":68}],57:[function(require,module,exports){
|
|
6114
6414
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6115
6415
|
|
|
6116
6416
|
class PipelineUser extends PlattarBase {
|
|
@@ -6120,7 +6420,7 @@ class PipelineUser extends PlattarBase {
|
|
|
6120
6420
|
}
|
|
6121
6421
|
|
|
6122
6422
|
module.exports = PipelineUser;
|
|
6123
|
-
},{"../interfaces/plattar-base":
|
|
6423
|
+
},{"../interfaces/plattar-base":68}],58:[function(require,module,exports){
|
|
6124
6424
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6125
6425
|
|
|
6126
6426
|
class Quote extends PlattarBase {
|
|
@@ -6130,7 +6430,7 @@ class Quote extends PlattarBase {
|
|
|
6130
6430
|
}
|
|
6131
6431
|
|
|
6132
6432
|
module.exports = Quote;
|
|
6133
|
-
},{"../interfaces/plattar-base":
|
|
6433
|
+
},{"../interfaces/plattar-base":68}],59:[function(require,module,exports){
|
|
6134
6434
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6135
6435
|
|
|
6136
6436
|
class Rating extends PlattarBase {
|
|
@@ -6140,7 +6440,7 @@ class Rating extends PlattarBase {
|
|
|
6140
6440
|
}
|
|
6141
6441
|
|
|
6142
6442
|
module.exports = Rating;
|
|
6143
|
-
},{"../interfaces/plattar-base":
|
|
6443
|
+
},{"../interfaces/plattar-base":68}],60:[function(require,module,exports){
|
|
6144
6444
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
6145
6445
|
|
|
6146
6446
|
class Solution extends PlattarBase {
|
|
@@ -6150,7 +6450,7 @@ class Solution extends PlattarBase {
|
|
|
6150
6450
|
}
|
|
6151
6451
|
|
|
6152
6452
|
module.exports = Solution;
|
|
6153
|
-
},{"../interfaces/plattar-base":
|
|
6453
|
+
},{"../interfaces/plattar-base":68}],61:[function(require,module,exports){
|
|
6154
6454
|
const FileBase = require("./file-base.js");
|
|
6155
6455
|
|
|
6156
6456
|
class FileAudio extends FileBase {
|
|
@@ -6160,7 +6460,7 @@ class FileAudio extends FileBase {
|
|
|
6160
6460
|
}
|
|
6161
6461
|
|
|
6162
6462
|
module.exports = FileAudio;
|
|
6163
|
-
},{"./file-base.js":
|
|
6463
|
+
},{"./file-base.js":62}],62:[function(require,module,exports){
|
|
6164
6464
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6165
6465
|
const Server = require("../../server/plattar-server.js");
|
|
6166
6466
|
|
|
@@ -6221,7 +6521,7 @@ class FileBase extends PlattarBase {
|
|
|
6221
6521
|
}
|
|
6222
6522
|
|
|
6223
6523
|
module.exports = FileBase;
|
|
6224
|
-
},{"../../server/plattar-server.js":
|
|
6524
|
+
},{"../../server/plattar-server.js":50,"../interfaces/plattar-base.js":68,"./file-audio.js":61,"./file-image.js":63,"./file-json.js":64,"./file-model.js":65,"./file-video.js":67}],63:[function(require,module,exports){
|
|
6225
6525
|
const FileBase = require("./file-base.js");
|
|
6226
6526
|
|
|
6227
6527
|
class FileImage extends FileBase {
|
|
@@ -6231,7 +6531,7 @@ class FileImage extends FileBase {
|
|
|
6231
6531
|
}
|
|
6232
6532
|
|
|
6233
6533
|
module.exports = FileImage;
|
|
6234
|
-
},{"./file-base.js":
|
|
6534
|
+
},{"./file-base.js":62}],64:[function(require,module,exports){
|
|
6235
6535
|
const FileBase = require("./file-base.js");
|
|
6236
6536
|
|
|
6237
6537
|
class FileJSON extends FileBase {
|
|
@@ -6241,7 +6541,7 @@ class FileJSON extends FileBase {
|
|
|
6241
6541
|
}
|
|
6242
6542
|
|
|
6243
6543
|
module.exports = FileJSON;
|
|
6244
|
-
},{"./file-base.js":
|
|
6544
|
+
},{"./file-base.js":62}],65:[function(require,module,exports){
|
|
6245
6545
|
const FileBase = require("./file-base.js");
|
|
6246
6546
|
|
|
6247
6547
|
class FileModel extends FileBase {
|
|
@@ -6251,7 +6551,7 @@ class FileModel extends FileBase {
|
|
|
6251
6551
|
}
|
|
6252
6552
|
|
|
6253
6553
|
module.exports = FileModel;
|
|
6254
|
-
},{"./file-base.js":
|
|
6554
|
+
},{"./file-base.js":62}],66:[function(require,module,exports){
|
|
6255
6555
|
const FileBase = require("./file-base.js");
|
|
6256
6556
|
|
|
6257
6557
|
class FileScript extends FileBase {
|
|
@@ -6261,7 +6561,7 @@ class FileScript extends FileBase {
|
|
|
6261
6561
|
}
|
|
6262
6562
|
|
|
6263
6563
|
module.exports = FileScript;
|
|
6264
|
-
},{"./file-base.js":
|
|
6564
|
+
},{"./file-base.js":62}],67:[function(require,module,exports){
|
|
6265
6565
|
const FileBase = require("./file-base.js");
|
|
6266
6566
|
|
|
6267
6567
|
class FileVideo extends FileBase {
|
|
@@ -6271,7 +6571,7 @@ class FileVideo extends FileBase {
|
|
|
6271
6571
|
}
|
|
6272
6572
|
|
|
6273
6573
|
module.exports = FileVideo;
|
|
6274
|
-
},{"./file-base.js":
|
|
6574
|
+
},{"./file-base.js":62}],68:[function(require,module,exports){
|
|
6275
6575
|
const PlattarObject = require("./plattar-object.js");
|
|
6276
6576
|
const Server = require("../../server/plattar-server.js");
|
|
6277
6577
|
|
|
@@ -6286,7 +6586,7 @@ class PlattarBase extends PlattarObject {
|
|
|
6286
6586
|
}
|
|
6287
6587
|
|
|
6288
6588
|
module.exports = PlattarBase;
|
|
6289
|
-
},{"../../server/plattar-server.js":
|
|
6589
|
+
},{"../../server/plattar-server.js":50,"./plattar-object.js":70}],69:[function(require,module,exports){
|
|
6290
6590
|
/**
|
|
6291
6591
|
* Handles the list of relationships for the provided object
|
|
6292
6592
|
*/
|
|
@@ -6407,7 +6707,7 @@ class PlattarObjectRelations {
|
|
|
6407
6707
|
}
|
|
6408
6708
|
|
|
6409
6709
|
module.exports = PlattarObjectRelations;
|
|
6410
|
-
},{"../../util/plattar-util.js":
|
|
6710
|
+
},{"../../util/plattar-util.js":113}],70:[function(require,module,exports){
|
|
6411
6711
|
const PlattarQuery = require("../../server/plattar-query.js");
|
|
6412
6712
|
const PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
6413
6713
|
|
|
@@ -6550,7 +6850,7 @@ class PlattarObject {
|
|
|
6550
6850
|
}
|
|
6551
6851
|
|
|
6552
6852
|
module.exports = PlattarObject;
|
|
6553
|
-
},{"../../server/plattar-query.js":
|
|
6853
|
+
},{"../../server/plattar-query.js":49,"./plattar-object-relations.js":69}],71:[function(require,module,exports){
|
|
6554
6854
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6555
6855
|
|
|
6556
6856
|
class ApplicationBuild extends PlattarBase {
|
|
@@ -6560,7 +6860,7 @@ class ApplicationBuild extends PlattarBase {
|
|
|
6560
6860
|
}
|
|
6561
6861
|
|
|
6562
6862
|
module.exports = ApplicationBuild;
|
|
6563
|
-
},{"../interfaces/plattar-base.js":
|
|
6863
|
+
},{"../interfaces/plattar-base.js":68}],72:[function(require,module,exports){
|
|
6564
6864
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6565
6865
|
|
|
6566
6866
|
class AssetLibrary extends PlattarBase {
|
|
@@ -6570,7 +6870,7 @@ class AssetLibrary extends PlattarBase {
|
|
|
6570
6870
|
}
|
|
6571
6871
|
|
|
6572
6872
|
module.exports = AssetLibrary;
|
|
6573
|
-
},{"../interfaces/plattar-base.js":
|
|
6873
|
+
},{"../interfaces/plattar-base.js":68}],73:[function(require,module,exports){
|
|
6574
6874
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6575
6875
|
|
|
6576
6876
|
class AsyncJob extends PlattarBase {
|
|
@@ -6584,7 +6884,7 @@ class AsyncJob extends PlattarBase {
|
|
|
6584
6884
|
}
|
|
6585
6885
|
|
|
6586
6886
|
module.exports = AsyncJob;
|
|
6587
|
-
},{"../interfaces/plattar-base.js":
|
|
6887
|
+
},{"../interfaces/plattar-base.js":68}],74:[function(require,module,exports){
|
|
6588
6888
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6589
6889
|
|
|
6590
6890
|
class ScriptEvent extends PlattarBase {
|
|
@@ -6594,7 +6894,7 @@ class ScriptEvent extends PlattarBase {
|
|
|
6594
6894
|
}
|
|
6595
6895
|
|
|
6596
6896
|
module.exports = ScriptEvent;
|
|
6597
|
-
},{"../interfaces/plattar-base.js":
|
|
6897
|
+
},{"../interfaces/plattar-base.js":68}],75:[function(require,module,exports){
|
|
6598
6898
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6599
6899
|
|
|
6600
6900
|
class Tag extends PlattarBase {
|
|
@@ -6604,7 +6904,7 @@ class Tag extends PlattarBase {
|
|
|
6604
6904
|
}
|
|
6605
6905
|
|
|
6606
6906
|
module.exports = Tag;
|
|
6607
|
-
},{"../interfaces/plattar-base.js":
|
|
6907
|
+
},{"../interfaces/plattar-base.js":68}],76:[function(require,module,exports){
|
|
6608
6908
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6609
6909
|
const Server = require("../../server/plattar-server.js");
|
|
6610
6910
|
|
|
@@ -6635,7 +6935,7 @@ class CardBase extends PlattarBase {
|
|
|
6635
6935
|
}
|
|
6636
6936
|
|
|
6637
6937
|
module.exports = CardBase;
|
|
6638
|
-
},{"../../server/plattar-server.js":
|
|
6938
|
+
},{"../../server/plattar-server.js":50,"../interfaces/plattar-base.js":68,"./card-button.js":77,"./card-html.js":78,"./card-iframe.js":79,"./card-image.js":80,"./card-map.js":81,"./card-paragraph.js":82,"./card-row.js":83,"./card-slider.js":84,"./card-title.js":85,"./card-video.js":86,"./card-youtube.js":87}],77:[function(require,module,exports){
|
|
6639
6939
|
const CardBase = require("./card-base.js");
|
|
6640
6940
|
|
|
6641
6941
|
class CardButton extends CardBase {
|
|
@@ -6645,7 +6945,7 @@ class CardButton extends CardBase {
|
|
|
6645
6945
|
}
|
|
6646
6946
|
|
|
6647
6947
|
module.exports = CardButton;
|
|
6648
|
-
},{"./card-base.js":
|
|
6948
|
+
},{"./card-base.js":76}],78:[function(require,module,exports){
|
|
6649
6949
|
const CardBase = require("./card-base.js");
|
|
6650
6950
|
|
|
6651
6951
|
class CardHTML extends CardBase {
|
|
@@ -6655,7 +6955,7 @@ class CardHTML extends CardBase {
|
|
|
6655
6955
|
}
|
|
6656
6956
|
|
|
6657
6957
|
module.exports = CardHTML;
|
|
6658
|
-
},{"./card-base.js":
|
|
6958
|
+
},{"./card-base.js":76}],79:[function(require,module,exports){
|
|
6659
6959
|
const CardBase = require("./card-base.js");
|
|
6660
6960
|
|
|
6661
6961
|
class CardIFrame extends CardBase {
|
|
@@ -6665,7 +6965,7 @@ class CardIFrame extends CardBase {
|
|
|
6665
6965
|
}
|
|
6666
6966
|
|
|
6667
6967
|
module.exports = CardIFrame;
|
|
6668
|
-
},{"./card-base.js":
|
|
6968
|
+
},{"./card-base.js":76}],80:[function(require,module,exports){
|
|
6669
6969
|
const CardBase = require("./card-base.js");
|
|
6670
6970
|
|
|
6671
6971
|
class CardImage extends CardBase {
|
|
@@ -6675,7 +6975,7 @@ class CardImage extends CardBase {
|
|
|
6675
6975
|
}
|
|
6676
6976
|
|
|
6677
6977
|
module.exports = CardImage;
|
|
6678
|
-
},{"./card-base.js":
|
|
6978
|
+
},{"./card-base.js":76}],81:[function(require,module,exports){
|
|
6679
6979
|
const CardBase = require("./card-base.js");
|
|
6680
6980
|
|
|
6681
6981
|
class CardMap extends CardBase {
|
|
@@ -6685,7 +6985,7 @@ class CardMap extends CardBase {
|
|
|
6685
6985
|
}
|
|
6686
6986
|
|
|
6687
6987
|
module.exports = CardMap;
|
|
6688
|
-
},{"./card-base.js":
|
|
6988
|
+
},{"./card-base.js":76}],82:[function(require,module,exports){
|
|
6689
6989
|
const CardBase = require("./card-base.js");
|
|
6690
6990
|
|
|
6691
6991
|
class CardParagraph extends CardBase {
|
|
@@ -6695,7 +6995,7 @@ class CardParagraph extends CardBase {
|
|
|
6695
6995
|
}
|
|
6696
6996
|
|
|
6697
6997
|
module.exports = CardParagraph;
|
|
6698
|
-
},{"./card-base.js":
|
|
6998
|
+
},{"./card-base.js":76}],83:[function(require,module,exports){
|
|
6699
6999
|
const CardBase = require("./card-base.js");
|
|
6700
7000
|
|
|
6701
7001
|
class CardRow extends CardBase {
|
|
@@ -6705,7 +7005,7 @@ class CardRow extends CardBase {
|
|
|
6705
7005
|
}
|
|
6706
7006
|
|
|
6707
7007
|
module.exports = CardRow;
|
|
6708
|
-
},{"./card-base.js":
|
|
7008
|
+
},{"./card-base.js":76}],84:[function(require,module,exports){
|
|
6709
7009
|
const CardBase = require("./card-base.js");
|
|
6710
7010
|
|
|
6711
7011
|
class CardSlider extends CardBase {
|
|
@@ -6715,7 +7015,7 @@ class CardSlider extends CardBase {
|
|
|
6715
7015
|
}
|
|
6716
7016
|
|
|
6717
7017
|
module.exports = CardSlider;
|
|
6718
|
-
},{"./card-base.js":
|
|
7018
|
+
},{"./card-base.js":76}],85:[function(require,module,exports){
|
|
6719
7019
|
const CardBase = require("./card-base.js");
|
|
6720
7020
|
|
|
6721
7021
|
class CardTitle extends CardBase {
|
|
@@ -6725,7 +7025,7 @@ class CardTitle extends CardBase {
|
|
|
6725
7025
|
}
|
|
6726
7026
|
|
|
6727
7027
|
module.exports = CardTitle;
|
|
6728
|
-
},{"./card-base.js":
|
|
7028
|
+
},{"./card-base.js":76}],86:[function(require,module,exports){
|
|
6729
7029
|
const CardBase = require("./card-base.js");
|
|
6730
7030
|
|
|
6731
7031
|
class CardVideo extends CardBase {
|
|
@@ -6735,7 +7035,7 @@ class CardVideo extends CardBase {
|
|
|
6735
7035
|
}
|
|
6736
7036
|
|
|
6737
7037
|
module.exports = CardVideo;
|
|
6738
|
-
},{"./card-base.js":
|
|
7038
|
+
},{"./card-base.js":76}],87:[function(require,module,exports){
|
|
6739
7039
|
const CardBase = require("./card-base.js");
|
|
6740
7040
|
|
|
6741
7041
|
class CardYoutube extends CardBase {
|
|
@@ -6745,7 +7045,7 @@ class CardYoutube extends CardBase {
|
|
|
6745
7045
|
}
|
|
6746
7046
|
|
|
6747
7047
|
module.exports = CardYoutube;
|
|
6748
|
-
},{"./card-base.js":
|
|
7048
|
+
},{"./card-base.js":76}],88:[function(require,module,exports){
|
|
6749
7049
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6750
7050
|
|
|
6751
7051
|
class Page extends PlattarBase {
|
|
@@ -6755,7 +7055,7 @@ class Page extends PlattarBase {
|
|
|
6755
7055
|
}
|
|
6756
7056
|
|
|
6757
7057
|
module.exports = Page;
|
|
6758
|
-
},{"../interfaces/plattar-base.js":
|
|
7058
|
+
},{"../interfaces/plattar-base.js":68}],89:[function(require,module,exports){
|
|
6759
7059
|
const ProductBase = require("./product-base.js");
|
|
6760
7060
|
|
|
6761
7061
|
class ProductAnnotation extends ProductBase {
|
|
@@ -6765,7 +7065,7 @@ class ProductAnnotation extends ProductBase {
|
|
|
6765
7065
|
}
|
|
6766
7066
|
|
|
6767
7067
|
module.exports = ProductAnnotation;
|
|
6768
|
-
},{"./product-base.js":
|
|
7068
|
+
},{"./product-base.js":90}],90:[function(require,module,exports){
|
|
6769
7069
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6770
7070
|
const Server = require("../../server/plattar-server.js");
|
|
6771
7071
|
|
|
@@ -6787,7 +7087,7 @@ class ProductBase extends PlattarBase {
|
|
|
6787
7087
|
}
|
|
6788
7088
|
|
|
6789
7089
|
module.exports = ProductBase;
|
|
6790
|
-
},{"../../server/plattar-server.js":
|
|
7090
|
+
},{"../../server/plattar-server.js":50,"../interfaces/plattar-base.js":68,"./product-annotation.js":89,"./product-variation.js":91}],91:[function(require,module,exports){
|
|
6791
7091
|
const ProductBase = require("./product-base.js");
|
|
6792
7092
|
|
|
6793
7093
|
class ProductVariation extends ProductBase {
|
|
@@ -6797,7 +7097,7 @@ class ProductVariation extends ProductBase {
|
|
|
6797
7097
|
}
|
|
6798
7098
|
|
|
6799
7099
|
module.exports = ProductVariation;
|
|
6800
|
-
},{"./product-base.js":
|
|
7100
|
+
},{"./product-base.js":90}],92:[function(require,module,exports){
|
|
6801
7101
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6802
7102
|
|
|
6803
7103
|
class Product extends PlattarBase {
|
|
@@ -6807,7 +7107,7 @@ class Product extends PlattarBase {
|
|
|
6807
7107
|
}
|
|
6808
7108
|
|
|
6809
7109
|
module.exports = Product;
|
|
6810
|
-
},{"../interfaces/plattar-base.js":
|
|
7110
|
+
},{"../interfaces/plattar-base.js":68}],93:[function(require,module,exports){
|
|
6811
7111
|
const SceneBase = require("./scene-base.js");
|
|
6812
7112
|
|
|
6813
7113
|
class SceneAnnotation extends SceneBase {
|
|
@@ -6817,7 +7117,7 @@ class SceneAnnotation extends SceneBase {
|
|
|
6817
7117
|
}
|
|
6818
7118
|
|
|
6819
7119
|
module.exports = SceneAnnotation;
|
|
6820
|
-
},{"./scene-base.js":
|
|
7120
|
+
},{"./scene-base.js":95}],94:[function(require,module,exports){
|
|
6821
7121
|
const SceneBase = require("./scene-base.js");
|
|
6822
7122
|
|
|
6823
7123
|
class SceneAudio extends SceneBase {
|
|
@@ -6827,7 +7127,7 @@ class SceneAudio extends SceneBase {
|
|
|
6827
7127
|
}
|
|
6828
7128
|
|
|
6829
7129
|
module.exports = SceneAudio;
|
|
6830
|
-
},{"./scene-base.js":
|
|
7130
|
+
},{"./scene-base.js":95}],95:[function(require,module,exports){
|
|
6831
7131
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6832
7132
|
const Server = require("../../server/plattar-server.js");
|
|
6833
7133
|
|
|
@@ -6861,7 +7161,7 @@ class SceneBase extends PlattarBase {
|
|
|
6861
7161
|
}
|
|
6862
7162
|
|
|
6863
7163
|
module.exports = SceneBase;
|
|
6864
|
-
},{"../../server/plattar-server.js":
|
|
7164
|
+
},{"../../server/plattar-server.js":50,"../interfaces/plattar-base.js":68,"./scene-annotation.js":93,"./scene-audio.js":94,"./scene-button.js":96,"./scene-camera.js":97,"./scene-carousel.js":98,"./scene-image.js":101,"./scene-model.js":102,"./scene-panorama.js":103,"./scene-poller.js":104,"./scene-product.js":105,"./scene-shadow.js":107,"./scene-video.js":108,"./scene-volumetric.js":109,"./scene-youtube.js":110}],96:[function(require,module,exports){
|
|
6865
7165
|
const SceneBase = require("./scene-base.js");
|
|
6866
7166
|
|
|
6867
7167
|
class SceneButton extends SceneBase {
|
|
@@ -6871,7 +7171,7 @@ class SceneButton extends SceneBase {
|
|
|
6871
7171
|
}
|
|
6872
7172
|
|
|
6873
7173
|
module.exports = SceneButton;
|
|
6874
|
-
},{"./scene-base.js":
|
|
7174
|
+
},{"./scene-base.js":95}],97:[function(require,module,exports){
|
|
6875
7175
|
const SceneBase = require("./scene-base.js");
|
|
6876
7176
|
|
|
6877
7177
|
class SceneCamera extends SceneBase {
|
|
@@ -6881,7 +7181,7 @@ class SceneCamera extends SceneBase {
|
|
|
6881
7181
|
}
|
|
6882
7182
|
|
|
6883
7183
|
module.exports = SceneCamera;
|
|
6884
|
-
},{"./scene-base.js":
|
|
7184
|
+
},{"./scene-base.js":95}],98:[function(require,module,exports){
|
|
6885
7185
|
const SceneBase = require("./scene-base.js");
|
|
6886
7186
|
|
|
6887
7187
|
class SceneCarousel extends SceneBase {
|
|
@@ -6891,7 +7191,7 @@ class SceneCarousel extends SceneBase {
|
|
|
6891
7191
|
}
|
|
6892
7192
|
|
|
6893
7193
|
module.exports = SceneCarousel;
|
|
6894
|
-
},{"./scene-base.js":
|
|
7194
|
+
},{"./scene-base.js":95}],99:[function(require,module,exports){
|
|
6895
7195
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6896
7196
|
|
|
6897
7197
|
class SceneGalleryImage extends PlattarBase {
|
|
@@ -6901,7 +7201,7 @@ class SceneGalleryImage extends PlattarBase {
|
|
|
6901
7201
|
}
|
|
6902
7202
|
|
|
6903
7203
|
module.exports = SceneGalleryImage;
|
|
6904
|
-
},{"../interfaces/plattar-base.js":
|
|
7204
|
+
},{"../interfaces/plattar-base.js":68}],100:[function(require,module,exports){
|
|
6905
7205
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6906
7206
|
|
|
6907
7207
|
class SceneGallery extends PlattarBase {
|
|
@@ -6911,7 +7211,7 @@ class SceneGallery extends PlattarBase {
|
|
|
6911
7211
|
}
|
|
6912
7212
|
|
|
6913
7213
|
module.exports = SceneGallery;
|
|
6914
|
-
},{"../interfaces/plattar-base.js":
|
|
7214
|
+
},{"../interfaces/plattar-base.js":68}],101:[function(require,module,exports){
|
|
6915
7215
|
const SceneBase = require("./scene-base.js");
|
|
6916
7216
|
|
|
6917
7217
|
class SceneImage extends SceneBase {
|
|
@@ -6921,7 +7221,7 @@ class SceneImage extends SceneBase {
|
|
|
6921
7221
|
}
|
|
6922
7222
|
|
|
6923
7223
|
module.exports = SceneImage;
|
|
6924
|
-
},{"./scene-base.js":
|
|
7224
|
+
},{"./scene-base.js":95}],102:[function(require,module,exports){
|
|
6925
7225
|
const SceneBase = require("./scene-base.js");
|
|
6926
7226
|
|
|
6927
7227
|
class SceneModel extends SceneBase {
|
|
@@ -6931,7 +7231,7 @@ class SceneModel extends SceneBase {
|
|
|
6931
7231
|
}
|
|
6932
7232
|
|
|
6933
7233
|
module.exports = SceneModel;
|
|
6934
|
-
},{"./scene-base.js":
|
|
7234
|
+
},{"./scene-base.js":95}],103:[function(require,module,exports){
|
|
6935
7235
|
const SceneBase = require("./scene-base.js");
|
|
6936
7236
|
|
|
6937
7237
|
class ScenePanorama extends SceneBase {
|
|
@@ -6941,7 +7241,7 @@ class ScenePanorama extends SceneBase {
|
|
|
6941
7241
|
}
|
|
6942
7242
|
|
|
6943
7243
|
module.exports = ScenePanorama;
|
|
6944
|
-
},{"./scene-base.js":
|
|
7244
|
+
},{"./scene-base.js":95}],104:[function(require,module,exports){
|
|
6945
7245
|
const SceneBase = require("./scene-base.js");
|
|
6946
7246
|
|
|
6947
7247
|
class ScenePoller extends SceneBase {
|
|
@@ -6951,7 +7251,7 @@ class ScenePoller extends SceneBase {
|
|
|
6951
7251
|
}
|
|
6952
7252
|
|
|
6953
7253
|
module.exports = ScenePoller;
|
|
6954
|
-
},{"./scene-base.js":
|
|
7254
|
+
},{"./scene-base.js":95}],105:[function(require,module,exports){
|
|
6955
7255
|
const SceneBase = require("./scene-base.js");
|
|
6956
7256
|
|
|
6957
7257
|
class SceneProduct extends SceneBase {
|
|
@@ -6961,7 +7261,7 @@ class SceneProduct extends SceneBase {
|
|
|
6961
7261
|
}
|
|
6962
7262
|
|
|
6963
7263
|
module.exports = SceneProduct;
|
|
6964
|
-
},{"./scene-base.js":
|
|
7264
|
+
},{"./scene-base.js":95}],106:[function(require,module,exports){
|
|
6965
7265
|
const SceneBase = require("./scene-base.js");
|
|
6966
7266
|
|
|
6967
7267
|
class SceneScript extends SceneBase {
|
|
@@ -6971,7 +7271,7 @@ class SceneScript extends SceneBase {
|
|
|
6971
7271
|
}
|
|
6972
7272
|
|
|
6973
7273
|
module.exports = SceneScript;
|
|
6974
|
-
},{"./scene-base.js":
|
|
7274
|
+
},{"./scene-base.js":95}],107:[function(require,module,exports){
|
|
6975
7275
|
const SceneBase = require("./scene-base.js");
|
|
6976
7276
|
|
|
6977
7277
|
class SceneShadow extends SceneBase {
|
|
@@ -6981,7 +7281,7 @@ class SceneShadow extends SceneBase {
|
|
|
6981
7281
|
}
|
|
6982
7282
|
|
|
6983
7283
|
module.exports = SceneShadow;
|
|
6984
|
-
},{"./scene-base.js":
|
|
7284
|
+
},{"./scene-base.js":95}],108:[function(require,module,exports){
|
|
6985
7285
|
const SceneBase = require("./scene-base.js");
|
|
6986
7286
|
|
|
6987
7287
|
class SceneVideo extends SceneBase {
|
|
@@ -6991,7 +7291,7 @@ class SceneVideo extends SceneBase {
|
|
|
6991
7291
|
}
|
|
6992
7292
|
|
|
6993
7293
|
module.exports = SceneVideo;
|
|
6994
|
-
},{"./scene-base.js":
|
|
7294
|
+
},{"./scene-base.js":95}],109:[function(require,module,exports){
|
|
6995
7295
|
const SceneBase = require("./scene-base.js");
|
|
6996
7296
|
|
|
6997
7297
|
class SceneVolumetric extends SceneBase {
|
|
@@ -7001,7 +7301,7 @@ class SceneVolumetric extends SceneBase {
|
|
|
7001
7301
|
}
|
|
7002
7302
|
|
|
7003
7303
|
module.exports = SceneVolumetric;
|
|
7004
|
-
},{"./scene-base.js":
|
|
7304
|
+
},{"./scene-base.js":95}],110:[function(require,module,exports){
|
|
7005
7305
|
const SceneBase = require("./scene-base.js");
|
|
7006
7306
|
|
|
7007
7307
|
class SceneYoutube extends SceneBase {
|
|
@@ -7011,7 +7311,7 @@ class SceneYoutube extends SceneBase {
|
|
|
7011
7311
|
}
|
|
7012
7312
|
|
|
7013
7313
|
module.exports = SceneYoutube;
|
|
7014
|
-
},{"./scene-base.js":
|
|
7314
|
+
},{"./scene-base.js":95}],111:[function(require,module,exports){
|
|
7015
7315
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
7016
7316
|
|
|
7017
7317
|
class Scene extends PlattarBase {
|
|
@@ -7021,7 +7321,7 @@ class Scene extends PlattarBase {
|
|
|
7021
7321
|
}
|
|
7022
7322
|
|
|
7023
7323
|
module.exports = Scene;
|
|
7024
|
-
},{"../interfaces/plattar-base.js":
|
|
7324
|
+
},{"../interfaces/plattar-base.js":68}],112:[function(require,module,exports){
|
|
7025
7325
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
7026
7326
|
|
|
7027
7327
|
class TriggerImage extends PlattarBase {
|
|
@@ -7031,7 +7331,7 @@ class TriggerImage extends PlattarBase {
|
|
|
7031
7331
|
}
|
|
7032
7332
|
|
|
7033
7333
|
module.exports = TriggerImage;
|
|
7034
|
-
},{"../interfaces/plattar-base.js":
|
|
7334
|
+
},{"../interfaces/plattar-base.js":68}],113:[function(require,module,exports){
|
|
7035
7335
|
const Application = require("../types/application.js");
|
|
7036
7336
|
|
|
7037
7337
|
// import Scene types and its children
|
|
@@ -7277,10 +7577,10 @@ PlattarUtil.match = (type) => {
|
|
|
7277
7577
|
|
|
7278
7578
|
|
|
7279
7579
|
module.exports = PlattarUtil;
|
|
7280
|
-
},{"../types/application.js":
|
|
7580
|
+
},{"../types/application.js":51,"../types/content-pipeline/brief.js":52,"../types/content-pipeline/comment-brief.js":53,"../types/content-pipeline/comment-quote.js":54,"../types/content-pipeline/comment-solution.js":55,"../types/content-pipeline/folder.js":56,"../types/content-pipeline/pipeline-user.js":57,"../types/content-pipeline/quote.js":58,"../types/content-pipeline/rating.js":59,"../types/content-pipeline/solution.js":60,"../types/file/file-audio.js":61,"../types/file/file-image.js":63,"../types/file/file-json.js":64,"../types/file/file-model.js":65,"../types/file/file-script.js":66,"../types/file/file-video.js":67,"../types/interfaces/plattar-object.js":70,"../types/misc/application-build.js":71,"../types/misc/asset-library":72,"../types/misc/async-job.js":73,"../types/misc/script-event.js":74,"../types/misc/tag.js":75,"../types/page/card-button.js":77,"../types/page/card-html.js":78,"../types/page/card-iframe.js":79,"../types/page/card-image.js":80,"../types/page/card-map.js":81,"../types/page/card-paragraph.js":82,"../types/page/card-row.js":83,"../types/page/card-slider.js":84,"../types/page/card-title.js":85,"../types/page/card-video.js":86,"../types/page/card-youtube.js":87,"../types/page/page.js":88,"../types/product/product-annotation.js":89,"../types/product/product-variation.js":91,"../types/product/product.js":92,"../types/scene/scene-annotation.js":93,"../types/scene/scene-audio.js":94,"../types/scene/scene-button.js":96,"../types/scene/scene-camera.js":97,"../types/scene/scene-carousel.js":98,"../types/scene/scene-gallery-image.js":99,"../types/scene/scene-gallery.js":100,"../types/scene/scene-image.js":101,"../types/scene/scene-model.js":102,"../types/scene/scene-panorama.js":103,"../types/scene/scene-poller.js":104,"../types/scene/scene-product.js":105,"../types/scene/scene-script.js":106,"../types/scene/scene-shadow.js":107,"../types/scene/scene-video.js":108,"../types/scene/scene-volumetric.js":109,"../types/scene/scene-youtube.js":110,"../types/scene/scene.js":111,"../types/trigger/trigger-image.js":112}],114:[function(require,module,exports){
|
|
7281
7581
|
module.exports = "1.186.3";
|
|
7282
7582
|
|
|
7283
|
-
},{}],
|
|
7583
|
+
},{}],115:[function(require,module,exports){
|
|
7284
7584
|
const QRCodeStyling = require("qr-code-styling");
|
|
7285
7585
|
const hash = require("object-hash");
|
|
7286
7586
|
|
|
@@ -7571,7 +7871,7 @@ class BaseElement extends HTMLElement {
|
|
|
7571
7871
|
}
|
|
7572
7872
|
|
|
7573
7873
|
module.exports = BaseElement;
|
|
7574
|
-
},{"object-hash":
|
|
7874
|
+
},{"object-hash":145,"qr-code-styling":147}],116:[function(require,module,exports){
|
|
7575
7875
|
const BaseElement = require("./base/base-element.js");
|
|
7576
7876
|
|
|
7577
7877
|
class QRCodeElement extends BaseElement {
|
|
@@ -7581,7 +7881,7 @@ class QRCodeElement extends BaseElement {
|
|
|
7581
7881
|
}
|
|
7582
7882
|
|
|
7583
7883
|
module.exports = QRCodeElement;
|
|
7584
|
-
},{"./base/base-element.js":
|
|
7884
|
+
},{"./base/base-element.js":115}],117:[function(require,module,exports){
|
|
7585
7885
|
"use strict";
|
|
7586
7886
|
const QRCodeElement = require("./elements/qrcode-element.js");
|
|
7587
7887
|
const Version = require("./version");
|
|
@@ -7597,10 +7897,10 @@ console.log("using @plattar/plattar-qrcode v" + Version);
|
|
|
7597
7897
|
module.exports = {
|
|
7598
7898
|
version: Version
|
|
7599
7899
|
};
|
|
7600
|
-
},{"./elements/qrcode-element.js":
|
|
7900
|
+
},{"./elements/qrcode-element.js":116,"./version":118}],118:[function(require,module,exports){
|
|
7601
7901
|
module.exports = "1.178.1";
|
|
7602
7902
|
|
|
7603
|
-
},{}],
|
|
7903
|
+
},{}],119:[function(require,module,exports){
|
|
7604
7904
|
"use strict";
|
|
7605
7905
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7606
7906
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7757,7 +8057,7 @@ class Configurator {
|
|
|
7757
8057
|
}
|
|
7758
8058
|
exports.Configurator = Configurator;
|
|
7759
8059
|
|
|
7760
|
-
},{"./remote-request":
|
|
8060
|
+
},{"./remote-request":121,"@plattar/plattar-api":48,"object-hash":145}],120:[function(require,module,exports){
|
|
7761
8061
|
"use strict";
|
|
7762
8062
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7763
8063
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7821,7 +8121,7 @@ class ModelConverter {
|
|
|
7821
8121
|
}
|
|
7822
8122
|
exports.ModelConverter = ModelConverter;
|
|
7823
8123
|
|
|
7824
|
-
},{"./remote-request":
|
|
8124
|
+
},{"./remote-request":121,"@plattar/plattar-api":48,"object-hash":145}],121:[function(require,module,exports){
|
|
7825
8125
|
"use strict";
|
|
7826
8126
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7827
8127
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7889,7 +8189,7 @@ class RemoteRequest {
|
|
|
7889
8189
|
}
|
|
7890
8190
|
exports.RemoteRequest = RemoteRequest;
|
|
7891
8191
|
|
|
7892
|
-
},{"node-fetch":
|
|
8192
|
+
},{"node-fetch":144}],122:[function(require,module,exports){
|
|
7893
8193
|
"use strict";
|
|
7894
8194
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7895
8195
|
if (k2 === undefined) k2 = k;
|
|
@@ -7937,12 +8237,12 @@ exports.version = __importStar(require("./version"));
|
|
|
7937
8237
|
const version_1 = __importDefault(require("./version"));
|
|
7938
8238
|
console.log("using @plattar/plattar-services v" + version_1.default);
|
|
7939
8239
|
|
|
7940
|
-
},{"./core/configurator":
|
|
8240
|
+
},{"./core/configurator":119,"./core/model-converter":120,"./version":123}],123:[function(require,module,exports){
|
|
7941
8241
|
"use strict";
|
|
7942
8242
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7943
8243
|
exports.default = "1.186.1";
|
|
7944
8244
|
|
|
7945
|
-
},{}],
|
|
8245
|
+
},{}],124:[function(require,module,exports){
|
|
7946
8246
|
const Util = require("../../util/util");
|
|
7947
8247
|
const ElementController = require("../controllers/element-controller");
|
|
7948
8248
|
const { messenger } = require("@plattar/context-messenger");
|
|
@@ -8111,7 +8411,7 @@ class BaseElement extends HTMLElement {
|
|
|
8111
8411
|
}
|
|
8112
8412
|
|
|
8113
8413
|
module.exports = BaseElement;
|
|
8114
|
-
},{"../../util/util":
|
|
8414
|
+
},{"../../util/util":139,"../controllers/element-controller":126,"@plattar/context-messenger":25}],125:[function(require,module,exports){
|
|
8115
8415
|
const BaseElement = require("./base/base-element.js");
|
|
8116
8416
|
|
|
8117
8417
|
class ConfiguratorElement extends BaseElement {
|
|
@@ -8156,7 +8456,7 @@ class ConfiguratorElement extends BaseElement {
|
|
|
8156
8456
|
}
|
|
8157
8457
|
|
|
8158
8458
|
module.exports = ConfiguratorElement;
|
|
8159
|
-
},{"./base/base-element.js":
|
|
8459
|
+
},{"./base/base-element.js":124}],126:[function(require,module,exports){
|
|
8160
8460
|
const Util = require("../../util/util.js");
|
|
8161
8461
|
const { messenger } = require("@plattar/context-messenger");
|
|
8162
8462
|
const IFrameController = require("./iframe-controller.js");
|
|
@@ -8253,7 +8553,7 @@ class ElementController {
|
|
|
8253
8553
|
}
|
|
8254
8554
|
|
|
8255
8555
|
module.exports = ElementController;
|
|
8256
|
-
},{"../../util/util.js":
|
|
8556
|
+
},{"../../util/util.js":139,"./iframe-controller.js":127,"@plattar/context-messenger":25}],127:[function(require,module,exports){
|
|
8257
8557
|
const Util = require("../../util/util.js");
|
|
8258
8558
|
|
|
8259
8559
|
class IFrameController {
|
|
@@ -8355,7 +8655,7 @@ class IFrameController {
|
|
|
8355
8655
|
}
|
|
8356
8656
|
|
|
8357
8657
|
module.exports = IFrameController;
|
|
8358
|
-
},{"../../util/util.js":
|
|
8658
|
+
},{"../../util/util.js":139}],128:[function(require,module,exports){
|
|
8359
8659
|
const BaseElement = require("./base/base-element.js");
|
|
8360
8660
|
|
|
8361
8661
|
class EditorElement extends BaseElement {
|
|
@@ -8373,7 +8673,7 @@ class EditorElement extends BaseElement {
|
|
|
8373
8673
|
}
|
|
8374
8674
|
|
|
8375
8675
|
module.exports = EditorElement;
|
|
8376
|
-
},{"./base/base-element.js":
|
|
8676
|
+
},{"./base/base-element.js":124}],129:[function(require,module,exports){
|
|
8377
8677
|
const BaseElement = require("./base/base-element.js");
|
|
8378
8678
|
|
|
8379
8679
|
class EWallElement extends BaseElement {
|
|
@@ -8391,7 +8691,7 @@ class EWallElement extends BaseElement {
|
|
|
8391
8691
|
}
|
|
8392
8692
|
|
|
8393
8693
|
module.exports = EWallElement;
|
|
8394
|
-
},{"./base/base-element.js":
|
|
8694
|
+
},{"./base/base-element.js":124}],130:[function(require,module,exports){
|
|
8395
8695
|
const BaseElement = require("./base/base-element.js");
|
|
8396
8696
|
|
|
8397
8697
|
class FaceARElement extends BaseElement {
|
|
@@ -8428,7 +8728,7 @@ class FaceARElement extends BaseElement {
|
|
|
8428
8728
|
}
|
|
8429
8729
|
|
|
8430
8730
|
module.exports = FaceARElement;
|
|
8431
|
-
},{"./base/base-element.js":
|
|
8731
|
+
},{"./base/base-element.js":124}],131:[function(require,module,exports){
|
|
8432
8732
|
const BaseElement = require("./base/base-element.js");
|
|
8433
8733
|
|
|
8434
8734
|
class GalleryElement extends BaseElement {
|
|
@@ -8450,7 +8750,7 @@ class GalleryElement extends BaseElement {
|
|
|
8450
8750
|
}
|
|
8451
8751
|
|
|
8452
8752
|
module.exports = GalleryElement;
|
|
8453
|
-
},{"./base/base-element.js":
|
|
8753
|
+
},{"./base/base-element.js":124}],132:[function(require,module,exports){
|
|
8454
8754
|
const BaseElement = require("./base/base-element.js");
|
|
8455
8755
|
|
|
8456
8756
|
class LauncherElement extends BaseElement {
|
|
@@ -8513,7 +8813,7 @@ class LauncherElement extends BaseElement {
|
|
|
8513
8813
|
}
|
|
8514
8814
|
|
|
8515
8815
|
module.exports = LauncherElement;
|
|
8516
|
-
},{"./base/base-element.js":
|
|
8816
|
+
},{"./base/base-element.js":124}],133:[function(require,module,exports){
|
|
8517
8817
|
const BaseElement = require("./base/base-element.js");
|
|
8518
8818
|
|
|
8519
8819
|
class ModelElement extends BaseElement {
|
|
@@ -8548,7 +8848,7 @@ class ModelElement extends BaseElement {
|
|
|
8548
8848
|
}
|
|
8549
8849
|
|
|
8550
8850
|
module.exports = ModelElement;
|
|
8551
|
-
},{"./base/base-element.js":
|
|
8851
|
+
},{"./base/base-element.js":124}],134:[function(require,module,exports){
|
|
8552
8852
|
const BaseElement = require("./base/base-element.js");
|
|
8553
8853
|
|
|
8554
8854
|
class ProductElement extends BaseElement {
|
|
@@ -8586,7 +8886,7 @@ class ProductElement extends BaseElement {
|
|
|
8586
8886
|
}
|
|
8587
8887
|
|
|
8588
8888
|
module.exports = ProductElement;
|
|
8589
|
-
},{"./base/base-element.js":
|
|
8889
|
+
},{"./base/base-element.js":124}],135:[function(require,module,exports){
|
|
8590
8890
|
const BaseElement = require("./base/base-element.js");
|
|
8591
8891
|
|
|
8592
8892
|
class StudioElement extends BaseElement {
|
|
@@ -8614,7 +8914,7 @@ class StudioElement extends BaseElement {
|
|
|
8614
8914
|
}
|
|
8615
8915
|
|
|
8616
8916
|
module.exports = StudioElement;
|
|
8617
|
-
},{"./base/base-element.js":
|
|
8917
|
+
},{"./base/base-element.js":124}],136:[function(require,module,exports){
|
|
8618
8918
|
const BaseElement = require("./base/base-element.js");
|
|
8619
8919
|
|
|
8620
8920
|
class ViewerElement extends BaseElement {
|
|
@@ -8648,7 +8948,7 @@ class ViewerElement extends BaseElement {
|
|
|
8648
8948
|
}
|
|
8649
8949
|
|
|
8650
8950
|
module.exports = ViewerElement;
|
|
8651
|
-
},{"./base/base-element.js":
|
|
8951
|
+
},{"./base/base-element.js":124}],137:[function(require,module,exports){
|
|
8652
8952
|
const BaseElement = require("./base/base-element.js");
|
|
8653
8953
|
|
|
8654
8954
|
class WebXRElement extends BaseElement {
|
|
@@ -8666,7 +8966,7 @@ class WebXRElement extends BaseElement {
|
|
|
8666
8966
|
}
|
|
8667
8967
|
|
|
8668
8968
|
module.exports = WebXRElement;
|
|
8669
|
-
},{"./base/base-element.js":
|
|
8969
|
+
},{"./base/base-element.js":124}],138:[function(require,module,exports){
|
|
8670
8970
|
"use strict";
|
|
8671
8971
|
const WebXRElement = require("./elements/webxr-element.js");
|
|
8672
8972
|
const ViewerElement = require("./elements/viewer-element.js");
|
|
@@ -8730,7 +9030,7 @@ console.log("using @plattar/plattar-web v" + Version);
|
|
|
8730
9030
|
module.exports = {
|
|
8731
9031
|
version: Version
|
|
8732
9032
|
};
|
|
8733
|
-
},{"./elements/configurator-element.js":
|
|
9033
|
+
},{"./elements/configurator-element.js":125,"./elements/editor-element.js":128,"./elements/ewall-element.js":129,"./elements/facear-element.js":130,"./elements/gallery-element.js":131,"./elements/launcher-element.js":132,"./elements/model-element.js":133,"./elements/product-element.js":134,"./elements/studio-element.js":135,"./elements/viewer-element.js":136,"./elements/webxr-element.js":137,"./version":140}],139:[function(require,module,exports){
|
|
8734
9034
|
class Util {
|
|
8735
9035
|
static getServerLocation(server) {
|
|
8736
9036
|
switch (server) {
|
|
@@ -8790,10 +9090,10 @@ class Util {
|
|
|
8790
9090
|
}
|
|
8791
9091
|
|
|
8792
9092
|
module.exports = Util;
|
|
8793
|
-
},{}],
|
|
9093
|
+
},{}],140:[function(require,module,exports){
|
|
8794
9094
|
module.exports = "1.182.2";
|
|
8795
9095
|
|
|
8796
|
-
},{}],
|
|
9096
|
+
},{}],141:[function(require,module,exports){
|
|
8797
9097
|
'use strict'
|
|
8798
9098
|
|
|
8799
9099
|
exports.byteLength = byteLength
|
|
@@ -8945,7 +9245,7 @@ function fromByteArray (uint8) {
|
|
|
8945
9245
|
return parts.join('')
|
|
8946
9246
|
}
|
|
8947
9247
|
|
|
8948
|
-
},{}],
|
|
9248
|
+
},{}],142:[function(require,module,exports){
|
|
8949
9249
|
(function (Buffer){(function (){
|
|
8950
9250
|
/*!
|
|
8951
9251
|
* The buffer module from node.js, for the browser.
|
|
@@ -10726,7 +11026,7 @@ function numberIsNaN (obj) {
|
|
|
10726
11026
|
}
|
|
10727
11027
|
|
|
10728
11028
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
10729
|
-
},{"base64-js":
|
|
11029
|
+
},{"base64-js":141,"buffer":142,"ieee754":143}],143:[function(require,module,exports){
|
|
10730
11030
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
10731
11031
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
10732
11032
|
var e, m
|
|
@@ -10813,7 +11113,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
10813
11113
|
buffer[offset + i - d] |= s * 128
|
|
10814
11114
|
}
|
|
10815
11115
|
|
|
10816
|
-
},{}],
|
|
11116
|
+
},{}],144:[function(require,module,exports){
|
|
10817
11117
|
(function (global){(function (){
|
|
10818
11118
|
"use strict";
|
|
10819
11119
|
|
|
@@ -10842,11 +11142,11 @@ exports.Request = globalObject.Request;
|
|
|
10842
11142
|
exports.Response = globalObject.Response;
|
|
10843
11143
|
|
|
10844
11144
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10845
|
-
},{}],
|
|
11145
|
+
},{}],145:[function(require,module,exports){
|
|
10846
11146
|
(function (global){(function (){
|
|
10847
11147
|
!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 r(o,i,u){function s(n,e){if(!i[n]){if(!o[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(a)return a(n,!0);throw new Error("Cannot find module '"+n+"'")}e=i[n]={exports:{}};o[n][0].call(e.exports,function(e){var t=o[n][1][e];return s(t||e)},e,e.exports,r,o,i,u)}return i[n].exports}for(var a="function"==typeof require&&require,e=0;e<u.length;e++)s(u[e]);return s}({1:[function(w,b,m){!function(e,n,s,c,d,h,p,g,y){"use strict";var r=w("crypto");function t(e,t){t=u(e,t);var n;return void 0===(n="passthrough"!==t.algorithm?r.createHash(t.algorithm):new l).write&&(n.write=n.update,n.end=n.update),f(t,n).dispatch(e),n.update||n.end(""),n.digest?n.digest("buffer"===t.encoding?void 0:t.encoding):(e=n.read(),"buffer"!==t.encoding?e.toString(t.encoding):e)}(m=b.exports=t).sha1=function(e){return t(e)},m.keys=function(e){return t(e,{excludeValues:!0,algorithm:"sha1",encoding:"hex"})},m.MD5=function(e){return t(e,{algorithm:"md5",encoding:"hex"})},m.keysMD5=function(e){return t(e,{algorithm:"md5",encoding:"hex",excludeValues:!0})};var o=r.getHashes?r.getHashes().slice():["sha1","md5"],i=(o.push("passthrough"),["buffer","hex","binary","base64"]);function u(e,t){var n={};if(n.algorithm=(t=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<o.length;++r)o[r].toLowerCase()===n.algorithm.toLowerCase()&&(n.algorithm=o[r]);if(-1===o.indexOf(n.algorithm))throw new Error('Algorithm "'+n.algorithm+'" not supported. supported values: '+o.join(", "));if(-1===i.indexOf(n.encoding)&&"passthrough"!==n.algorithm)throw new Error('Encoding "'+n.encoding+'" not supported. supported values: '+i.join(", "));return n}function a(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 f(o,t,i){i=i||[];function u(e){return t.update?t.update(e,"utf8"):t.write(e,"utf8")}return{dispatch:function(e){return this["_"+(null===(e=o.replacer?o.replacer(e):e)?"null":typeof e)](e)},_object:function(t){var n,e=Object.prototype.toString.call(t),r=/\[object (.*)\]/i.exec(e);r=(r=r?r[1]:"unknown:["+e+"]").toLowerCase();if(0<=(e=i.indexOf(t)))return this.dispatch("[CIRCULAR:"+e+"]");if(i.push(t),void 0!==s&&s.isBuffer&&s.isBuffer(t))return u("buffer:"),u(t);if("object"===r||"function"===r||"asyncfunction"===r)return e=Object.keys(t),o.unorderedObjects&&(e=e.sort()),!1===o.respectType||a(t)||e.splice(0,0,"prototype","__proto__","constructor"),o.excludeKeys&&(e=e.filter(function(e){return!o.excludeKeys(e)})),u("object:"+e.length+":"),n=this,e.forEach(function(e){n.dispatch(e),u(":"),o.excludeValues||n.dispatch(t[e]),u(",")});if(!this["_"+r]){if(o.ignoreUnknown)return u("["+r+"]");throw new Error('Unknown object type "'+r+'"')}this["_"+r](t)},_array:function(e,t){t=void 0!==t?t:!1!==o.unorderedArrays;var n=this;if(u("array:"+e.length+":"),!t||e.length<=1)return e.forEach(function(e){return n.dispatch(e)});var r=[],t=e.map(function(e){var t=new l,n=i.slice();return f(o,t,n).dispatch(e),r=r.concat(n.slice(i.length)),t.read().toString()});return i=i.concat(r),t.sort(),this._array(t,!1)},_date:function(e){return u("date:"+e.toJSON())},_symbol:function(e){return u("symbol:"+e.toString())},_error:function(e){return u("error:"+e.toString())},_boolean:function(e){return u("bool:"+e.toString())},_string:function(e){u("string:"+e.length+":"),u(e.toString())},_function:function(e){u("fn:"),a(e)?this.dispatch("[native]"):this.dispatch(e.toString()),!1!==o.respectFunctionNames&&this.dispatch("function-name:"+String(e.name)),o.respectFunctionProperties&&this._object(e)},_number:function(e){return u("number:"+e.toString())},_xml:function(e){return u("xml:"+e.toString())},_null:function(){return u("Null")},_undefined:function(){return u("Undefined")},_regexp:function(e){return u("regex:"+e.toString())},_uint8array:function(e){return u("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint8clampedarray:function(e){return u("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(e))},_int8array:function(e){return u("int8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint16array:function(e){return u("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_int16array:function(e){return u("int16array:"),this.dispatch(Array.prototype.slice.call(e))},_uint32array:function(e){return u("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_int32array:function(e){return u("int32array:"),this.dispatch(Array.prototype.slice.call(e))},_float32array:function(e){return u("float32array:"),this.dispatch(Array.prototype.slice.call(e))},_float64array:function(e){return u("float64array:"),this.dispatch(Array.prototype.slice.call(e))},_arraybuffer:function(e){return u("arraybuffer:"),this.dispatch(new Uint8Array(e))},_url:function(e){return u("url:"+e.toString())},_map:function(e){u("map:");e=Array.from(e);return this._array(e,!1!==o.unorderedSets)},_set:function(e){u("set:");e=Array.from(e);return this._array(e,!1!==o.unorderedSets)},_file:function(e){return u("file:"),this.dispatch([e.name,e.size,e.type,e.lastModfied])},_blob:function(){if(o.ignoreUnknown)return u("[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 u("domwindow")},_bigint:function(e){return u("bigint:"+e.toString())},_process:function(){return u("process")},_timer:function(){return u("timer")},_pipe:function(){return u("pipe")},_tcp:function(){return u("tcp")},_udp:function(){return u("udp")},_tty:function(){return u("tty")},_statwatcher:function(){return u("statwatcher")},_securecontext:function(){return u("securecontext")},_connection:function(){return u("connection")},_zlib:function(){return u("zlib")},_context:function(){return u("context")},_nodescript:function(){return u("nodescript")},_httpparser:function(){return u("httpparser")},_dataview:function(){return u("dataview")},_signal:function(){return u("signal")},_fsevent:function(){return u("fsevent")},_tlswrap:function(){return u("tlswrap")}}}function l(){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={}),f(t=u(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_9a5aa49d.js","/")},{buffer:3,crypto:5,lYpoI2:11}],2:[function(e,t,f){!function(e,t,n,r,o,i,u,s,a){!function(e){"use strict";var a="undefined"!=typeof Uint8Array?Uint8Array:Array,t="+".charCodeAt(0),n="/".charCodeAt(0),r="0".charCodeAt(0),o="a".charCodeAt(0),i="A".charCodeAt(0),u="-".charCodeAt(0),s="_".charCodeAt(0);function f(e){e=e.charCodeAt(0);return e===t||e===u?62:e===n||e===s?63:e<r?-1:e<r+10?e-r+26+26:e<i+26?e-i:e<o+26?e-o+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,r="="===e.charAt(r-2)?2:"="===e.charAt(r-1)?1:0,o=new a(3*e.length/4-r),i=0<r?e.length-4:e.length,u=0;function s(e){o[u++]=e}for(t=0;t<i;t+=4,0)s((16711680&(n=f(e.charAt(t))<<18|f(e.charAt(t+1))<<12|f(e.charAt(t+2))<<6|f(e.charAt(t+3))))>>16),s((65280&n)>>8),s(255&n);return 2==r?s(255&(n=f(e.charAt(t))<<2|f(e.charAt(t+1))>>4)):1==r&&(s((n=f(e.charAt(t))<<10|f(e.charAt(t+1))<<4|f(e.charAt(t+2))>>2)>>8&255),s(255&n)),o},e.fromByteArray=function(e){var t,n,r,o,i=e.length%3,u="";function s(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+=s((o=n)>>18&63)+s(o>>12&63)+s(o>>6&63)+s(63&o);switch(i){case 1:u=(u+=s((n=e[e.length-1])>>2))+s(n<<4&63)+"==";break;case 2:u=(u=(u+=s((n=(e[e.length-2]<<8)+e[e.length-1])>>10))+s(n>>4&63))+s(n<<2&63)+"="}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:11}],3:[function(O,e,H){!function(e,n,f,r,h,p,g,y,w){var a=O("base64-js"),i=O("ieee754");function f(e,t,n){if(!(this instanceof f))return new f(e,t,n);var r,o,i,u,s=typeof e;if("base64"===t&&"string"==s)for(e=(u=e).trim?u.trim():u.replace(/^\s+|\s+$/g,"");e.length%4!=0;)e+="=";if("number"==s)r=j(e);else if("string"==s)r=f.byteLength(e,t);else{if("object"!=s)throw new Error("First argument needs to be a number, array or string.");r=j(e.length)}if(f._useTypedArrays?o=f._augment(new Uint8Array(r)):((o=this).length=r,o._isBuffer=!0),f._useTypedArrays&&"number"==typeof e.byteLength)o._set(e);else if(C(u=e)||f.isBuffer(u)||u&&"object"==typeof u&&"number"==typeof u.length)for(i=0;i<r;i++)f.isBuffer(e)?o[i]=e.readUInt8(i):o[i]=e[i];else if("string"==s)o.write(e,0,t);else if("number"==s&&!f._useTypedArrays&&!n)for(i=0;i<r;i++)o[i]=0;return o}function b(e,t,n,r){return f._charsWritten=c(function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function m(e,t,n,r){return f._charsWritten=c(function(e){for(var t,n,r=[],o=0;o<e.length;o++)n=e.charCodeAt(o),t=n>>8,n=n%256,r.push(n),r.push(t);return r}(t),e,n,r)}function v(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 o(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,r=e.length;if(!(r<=t))return n?(o=e[t],t+1<r&&(o|=e[t+1]<<8)):(o=e[t]<<8,t+1<r&&(o|=e[t+1])),o}function u(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,r=e.length;if(!(r<=t))return n?(t+2<r&&(o=e[t+2]<<16),t+1<r&&(o|=e[t+1]<<8),o|=e[t],t+3<r&&(o+=e[t+3]<<24>>>0)):(t+1<r&&(o=e[t+1]<<16),t+2<r&&(o|=e[t+2]<<8),t+3<r&&(o|=e[t+3]),o+=e[t]<<24>>>0),o}function _(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))return r=o(e,t,n,!0),32768&r?-1*(65535-r+1):r}function E(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))return r=u(e,t,n,!0),2147483648&r?-1*(4294967295-r+1):r}function I(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")),i.read(e,t,n,23,4)}function A(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")),i.read(e,t,n,52,8)}function s(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,65535));o=e.length;if(!(o<=n))for(var i=0,u=Math.min(o-n,2);i<u;i++)e[n+i]=(t&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function l(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,4294967295));o=e.length;if(!(o<=n))for(var i=0,u=Math.min(o-n,4);i<u;i++)e[n+i]=t>>>8*(r?i:3-i)&255}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+1<e.length,"Trying to write beyond buffer length"),F(t,32767,-32768)),e.length<=n||s(e,0<=t?t:65535+t+1,n,r,o)}function L(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,2147483647,-2147483648)),e.length<=n||l(e,0<=t?t:4294967295+t+1,n,r,o)}function U(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"),D(t,34028234663852886e22,-34028234663852886e22)),e.length<=n||i.write(e,t,n,r,23,4)}function x(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"),D(t,17976931348623157e292,-17976931348623157e292)),e.length<=n||i.write(e,t,n,r,52,8)}H.Buffer=f,H.SlowBuffer=f,H.INSPECT_MAX_BYTES=50,f.poolSize=8192,f._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}}(),f.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}},f.isBuffer=function(e){return!(null==e||!e._isBuffer)},f.byteLength=function(e,t){var n;switch(e+="",t||"utf8"){case"hex":n=e.length/2;break;case"utf8":case"utf-8":n=T(e).length;break;case"ascii":case"binary":case"raw":n=e.length;break;case"base64":n=M(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},f.concat=function(e,t){if(d(C(e),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array."),0===e.length)return new f(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 f(t),r=0,o=0;o<e.length;o++){var i=e[o];i.copy(n,r),r+=i.length}return n},f.prototype.write=function(e,t,n,r){isFinite(t)?isFinite(n)||(r=n,n=void 0):(a=r,r=t,t=n,n=a),t=Number(t)||0;var o,i,u,s,a=this.length-t;switch((!n||a<(n=Number(n)))&&(n=a),r=String(r||"utf8").toLowerCase()){case"hex":o=function(e,t,n,r){n=Number(n)||0;var o=e.length-n;(!r||o<(r=Number(r)))&&(r=o),d((o=t.length)%2==0,"Invalid hex string"),o/2<r&&(r=o/2);for(var i=0;i<r;i++){var u=parseInt(t.substr(2*i,2),16);d(!isNaN(u),"Invalid hex string"),e[n+i]=u}return f._charsWritten=2*i,i}(this,e,t,n);break;case"utf8":case"utf-8":i=this,u=t,s=n,o=f._charsWritten=c(T(e),i,u,s);break;case"ascii":case"binary":o=b(this,e,t,n);break;case"base64":i=this,u=t,s=n,o=f._charsWritten=c(M(e),i,u,s);break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":o=m(this,e,t,n);break;default:throw new Error("Unknown encoding")}return o},f.prototype.toString=function(e,t,n){var r,o,i,u,s=this;if(e=String(e||"utf8").toLowerCase(),t=Number(t)||0,(n=void 0!==n?Number(n):s.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+=k(e[i]);return o}(s,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+=N(o)+String.fromCharCode(e[i]),o=""):o+="%"+e[i].toString(16);return r+N(o)}(s,t,n);break;case"ascii":case"binary":r=v(s,t,n);break;case"base64":o=s,u=n,r=0===(i=t)&&u===o.length?a.fromByteArray(o):a.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}(s,t,n);break;default:throw new Error("Unknown encoding")}return r},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},f.prototype.copy=function(e,t,n,r){if(t=t||0,(r=r||0===r?r:this.length)!==(n=n||0)&&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);var o=(r=e.length-t<r-n?e.length-t+n:r)-n;if(o<100||!f._useTypedArrays)for(var i=0;i<o;i++)e[i+t]=this[i+n];else e._set(this.subarray(n,n+o),t)}},f.prototype.slice=function(e,t){var n=this.length;if(e=S(e,n,0),t=S(t,n,n),f._useTypedArrays)return f._augment(this.subarray(e,t));for(var r=t-e,o=new f(r,void 0,!0),i=0;i<r;i++)o[i]=this[i+e];return o},f.prototype.get=function(e){return console.log(".get() is deprecated. Access using array indexes instead."),this.readUInt8(e)},f.prototype.set=function(e,t){return console.log(".set() is deprecated. Access using array indexes instead."),this.writeUInt8(e,t)},f.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]},f.prototype.readUInt16LE=function(e,t){return o(this,e,!0,t)},f.prototype.readUInt16BE=function(e,t){return o(this,e,!1,t)},f.prototype.readUInt32LE=function(e,t){return u(this,e,!0,t)},f.prototype.readUInt32BE=function(e,t){return u(this,e,!1,t)},f.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]},f.prototype.readInt16LE=function(e,t){return _(this,e,!0,t)},f.prototype.readInt16BE=function(e,t){return _(this,e,!1,t)},f.prototype.readInt32LE=function(e,t){return E(this,e,!0,t)},f.prototype.readInt32BE=function(e,t){return E(this,e,!1,t)},f.prototype.readFloatLE=function(e,t){return I(this,e,!0,t)},f.prototype.readFloatBE=function(e,t){return I(this,e,!1,t)},f.prototype.readDoubleLE=function(e,t){return A(this,e,!0,t)},f.prototype.readDoubleBE=function(e,t){return A(this,e,!1,t)},f.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"),Y(e,255)),t>=this.length||(this[t]=e)},f.prototype.writeUInt16LE=function(e,t,n){s(this,e,t,!0,n)},f.prototype.writeUInt16BE=function(e,t,n){s(this,e,t,!1,n)},f.prototype.writeUInt32LE=function(e,t,n){l(this,e,t,!0,n)},f.prototype.writeUInt32BE=function(e,t,n){l(this,e,t,!1,n)},f.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"),F(e,127,-128)),t>=this.length||(0<=e?this.writeUInt8(e,t,n):this.writeUInt8(255+e+1,t,n))},f.prototype.writeInt16LE=function(e,t,n){B(this,e,t,!0,n)},f.prototype.writeInt16BE=function(e,t,n){B(this,e,t,!1,n)},f.prototype.writeInt32LE=function(e,t,n){L(this,e,t,!0,n)},f.prototype.writeInt32BE=function(e,t,n){L(this,e,t,!1,n)},f.prototype.writeFloatLE=function(e,t,n){U(this,e,t,!0,n)},f.prototype.writeFloatBE=function(e,t,n){U(this,e,t,!1,n)},f.prototype.writeDoubleLE=function(e,t,n){x(this,e,t,!0,n)},f.prototype.writeDoubleBE=function(e,t,n){x(this,e,t,!1,n)},f.prototype.fill=function(e,t,n){if(t=t||0,n=n||this.length,d("number"==typeof(e="string"==typeof(e=e||0)?e.charCodeAt(0):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}},f.prototype.inspect=function(){for(var e=[],t=this.length,n=0;n<t;n++)if(e[n]=k(this[n]),n===H.INSPECT_MAX_BYTES){e[n+1]="...";break}return"<Buffer "+e.join(" ")+">"},f.prototype.toArrayBuffer=function(){if("undefined"==typeof Uint8Array)throw new Error("Buffer.toArrayBuffer not supported in this browser");if(f._useTypedArrays)return new f(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 t=f.prototype;function S(e,t,n){return"number"!=typeof e?n:t<=(e=~~e)?t:0<=e||0<=(e+=t)?e:0}function j(e){return(e=~~Math.ceil(+e))<0?0:e}function C(e){return(Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)})(e)}function k(e){return e<16?"0"+e.toString(16):e.toString(16)}function T(e){for(var t=[],n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<=127)t.push(e.charCodeAt(n));else for(var o=n,i=(55296<=r&&r<=57343&&n++,encodeURIComponent(e.slice(o,n+1)).substr(1).split("%")),u=0;u<i.length;u++)t.push(parseInt(i[u],16))}return t}function M(e){return a.toByteArray(e)}function c(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 N(e){try{return decodeURIComponent(e)}catch(e){return String.fromCharCode(65533)}}function Y(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 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"),d(Math.floor(e)===e,"value has a fractional component")}function D(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")}f._augment=function(e){return e._isBuffer=!0,e._get=e.get,e._set=e.set,e.get=t.get,e.set=t.set,e.write=t.write,e.toString=t.toString,e.toLocaleString=t.toString,e.toJSON=t.toJSON,e.copy=t.copy,e.slice=t.slice,e.readUInt8=t.readUInt8,e.readUInt16LE=t.readUInt16LE,e.readUInt16BE=t.readUInt16BE,e.readUInt32LE=t.readUInt32LE,e.readUInt32BE=t.readUInt32BE,e.readInt8=t.readInt8,e.readInt16LE=t.readInt16LE,e.readInt16BE=t.readInt16BE,e.readInt32LE=t.readInt32LE,e.readInt32BE=t.readInt32BE,e.readFloatLE=t.readFloatLE,e.readFloatBE=t.readFloatBE,e.readDoubleLE=t.readDoubleLE,e.readDoubleBE=t.readDoubleBE,e.writeUInt8=t.writeUInt8,e.writeUInt16LE=t.writeUInt16LE,e.writeUInt16BE=t.writeUInt16BE,e.writeUInt32LE=t.writeUInt32LE,e.writeUInt32BE=t.writeUInt32BE,e.writeInt8=t.writeInt8,e.writeInt16LE=t.writeInt16LE,e.writeInt16BE=t.writeInt16BE,e.writeInt32LE=t.writeInt32LE,e.writeInt32BE=t.writeInt32BE,e.writeFloatLE=t.writeFloatLE,e.writeFloatBE=t.writeFloatBE,e.writeDoubleLE=t.writeDoubleLE,e.writeDoubleBE=t.writeDoubleBE,e.fill=t.fill,e.inspect=t.inspect,e.toArrayBuffer=t.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:10,lYpoI2:11}],4:[function(c,d,e){!function(e,t,a,n,r,o,i,u,s){var a=c("buffer").Buffer,f=4,l=new a(f);l.fill(0);d.exports={hash:function(e,t,n,r){for(var o=t(function(e,t){e.length%f!=0&&(n=e.length+(f-e.length%f),e=a.concat([e,l],n));for(var n,r=[],o=t?e.readInt32BE:e.readInt32LE,i=0;i<e.length;i+=f)r.push(o.call(e,i));return r}(e=a.isBuffer(e)?e:new a(e),r),8*e.length),t=r,i=new a(n),u=t?i.writeInt32BE:i.writeInt32LE,s=0;s<o.length;s++)u.call(i,o[s],4*s,!0);return i}}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("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:11}],5:[function(v,e,_){!function(l,c,u,d,h,p,g,y,w){var u=v("buffer").Buffer,e=v("./sha"),t=v("./sha256"),n=v("./rng"),b={sha1:e,sha256:t,md5:v("./md5")},s=64,a=new u(s);function r(e,n){var r=b[e=e||"sha1"],o=[];return r||i("algorithm:",e,"is not yet supported"),{update:function(e){return u.isBuffer(e)||(e=new u(e)),o.push(e),e.length,this},digest:function(e){var t=u.concat(o),t=n?function(e,t,n){u.isBuffer(t)||(t=new u(t)),u.isBuffer(n)||(n=new u(n)),t.length>s?t=e(t):t.length<s&&(t=u.concat([t,a],s));for(var r=new u(s),o=new u(s),i=0;i<s;i++)r[i]=54^t[i],o[i]=92^t[i];return n=e(u.concat([r,n])),e(u.concat([o,n]))}(r,n,t):r(t);return o=null,e?t.toString(e):t}}}function i(){var e=[].slice.call(arguments).join(" ");throw new Error([e,"we accept pull requests","http://github.com/dominictarr/crypto-browserify"].join("\n"))}a.fill(0),_.createHash=function(e){return r(e)},_.createHmac=r,_.randomBytes=function(e,t){if(!t||!t.call)return new u(n(e));try{t.call(this,void 0,new u(n(e)))}catch(e){t(e)}};var o,f=["createCredentials","createCipher","createCipheriv","createDecipher","createDecipheriv","createSign","createVerify","createDiffieHellman","pbkdf2"],m=function(e){_[e]=function(){i("sorry,",e,"is not implemented yet")}};for(o in f)m(f[o],o)}.call(this,v("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},v("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:11}],6:[function(w,b,e){!function(e,r,o,i,u,a,f,l,y){var t=w("./helpers");function n(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 s=n,a=r,f=o,l=i,n=c(n,r,o,i,e[u+0],7,-680876936),i=c(i,n,r,o,e[u+1],12,-389564586),o=c(o,i,n,r,e[u+2],17,606105819),r=c(r,o,i,n,e[u+3],22,-1044525330);n=c(n,r,o,i,e[u+4],7,-176418897),i=c(i,n,r,o,e[u+5],12,1200080426),o=c(o,i,n,r,e[u+6],17,-1473231341),r=c(r,o,i,n,e[u+7],22,-45705983),n=c(n,r,o,i,e[u+8],7,1770035416),i=c(i,n,r,o,e[u+9],12,-1958414417),o=c(o,i,n,r,e[u+10],17,-42063),r=c(r,o,i,n,e[u+11],22,-1990404162),n=c(n,r,o,i,e[u+12],7,1804603682),i=c(i,n,r,o,e[u+13],12,-40341101),o=c(o,i,n,r,e[u+14],17,-1502002290),n=d(n,r=c(r,o,i,n,e[u+15],22,1236535329),o,i,e[u+1],5,-165796510),i=d(i,n,r,o,e[u+6],9,-1069501632),o=d(o,i,n,r,e[u+11],14,643717713),r=d(r,o,i,n,e[u+0],20,-373897302),n=d(n,r,o,i,e[u+5],5,-701558691),i=d(i,n,r,o,e[u+10],9,38016083),o=d(o,i,n,r,e[u+15],14,-660478335),r=d(r,o,i,n,e[u+4],20,-405537848),n=d(n,r,o,i,e[u+9],5,568446438),i=d(i,n,r,o,e[u+14],9,-1019803690),o=d(o,i,n,r,e[u+3],14,-187363961),r=d(r,o,i,n,e[u+8],20,1163531501),n=d(n,r,o,i,e[u+13],5,-1444681467),i=d(i,n,r,o,e[u+2],9,-51403784),o=d(o,i,n,r,e[u+7],14,1735328473),n=h(n,r=d(r,o,i,n,e[u+12],20,-1926607734),o,i,e[u+5],4,-378558),i=h(i,n,r,o,e[u+8],11,-2022574463),o=h(o,i,n,r,e[u+11],16,1839030562),r=h(r,o,i,n,e[u+14],23,-35309556),n=h(n,r,o,i,e[u+1],4,-1530992060),i=h(i,n,r,o,e[u+4],11,1272893353),o=h(o,i,n,r,e[u+7],16,-155497632),r=h(r,o,i,n,e[u+10],23,-1094730640),n=h(n,r,o,i,e[u+13],4,681279174),i=h(i,n,r,o,e[u+0],11,-358537222),o=h(o,i,n,r,e[u+3],16,-722521979),r=h(r,o,i,n,e[u+6],23,76029189),n=h(n,r,o,i,e[u+9],4,-640364487),i=h(i,n,r,o,e[u+12],11,-421815835),o=h(o,i,n,r,e[u+15],16,530742520),n=p(n,r=h(r,o,i,n,e[u+2],23,-995338651),o,i,e[u+0],6,-198630844),i=p(i,n,r,o,e[u+7],10,1126891415),o=p(o,i,n,r,e[u+14],15,-1416354905),r=p(r,o,i,n,e[u+5],21,-57434055),n=p(n,r,o,i,e[u+12],6,1700485571),i=p(i,n,r,o,e[u+3],10,-1894986606),o=p(o,i,n,r,e[u+10],15,-1051523),r=p(r,o,i,n,e[u+1],21,-2054922799),n=p(n,r,o,i,e[u+8],6,1873313359),i=p(i,n,r,o,e[u+15],10,-30611744),o=p(o,i,n,r,e[u+6],15,-1560198380),r=p(r,o,i,n,e[u+13],21,1309151649),n=p(n,r,o,i,e[u+4],6,-145523070),i=p(i,n,r,o,e[u+11],10,-1120210379),o=p(o,i,n,r,e[u+2],15,718787259),r=p(r,o,i,n,e[u+9],21,-343485551),n=g(n,s),r=g(r,a),o=g(o,f),i=g(i,l)}return Array(n,r,o,i)}function s(e,t,n,r,o,i){return g((t=g(g(t,e),g(r,i)))<<o|t>>>32-o,n)}function c(e,t,n,r,o,i,u){return s(t&n|~t&r,e,t,o,i,u)}function d(e,t,n,r,o,i,u){return s(t&r|n&~r,e,t,o,i,u)}function h(e,t,n,r,o,i,u){return s(t^n^r,e,t,o,i,u)}function p(e,t,n,r,o,i,u){return s(n^(t|~r),e,t,o,i,u)}function g(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}b.exports=function(e){return t.hash(e,n,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:11}],7:[function(e,l,t){!function(e,t,n,r,o,i,u,s,f){var a;l.exports=a||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}}.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:11}],8:[function(c,d,e){!function(e,t,n,r,o,s,a,f,l){var i=c("./helpers");function u(l,c){l[c>>5]|=128<<24-c%32,l[15+(c+64>>9<<4)]=c;for(var e,t,n,r=Array(80),o=1732584193,i=-271733879,u=-1732584194,s=271733878,d=-1009589776,h=0;h<l.length;h+=16){for(var p=o,g=i,y=u,w=s,b=d,a=0;a<80;a++){r[a]=a<16?l[h+a]:v(r[a-3]^r[a-8]^r[a-14]^r[a-16],1);var f=m(m(v(o,5),(f=i,t=u,n=s,(e=a)<20?f&t|~f&n:!(e<40)&&e<60?f&t|f&n|t&n:f^t^n)),m(m(d,r[a]),(e=a)<20?1518500249:e<40?1859775393:e<60?-1894007588:-899497514)),d=s,s=u,u=v(i,30),i=o,o=f}o=m(o,p),i=m(i,g),u=m(u,y),s=m(s,w),d=m(d,b)}return Array(o,i,u,s,d)}function m(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function v(e,t){return e<<t|e>>>32-t}d.exports=function(e){return i.hash(e,u,20,!0)}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("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:11}],9:[function(c,d,e){!function(e,t,n,r,u,s,a,f,l){function b(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function o(e,l){var c,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),t=new Array(1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225),n=new Array(64);e[l>>5]|=128<<24-l%32,e[15+(l+64>>9<<4)]=l;for(var r,o,h=0;h<e.length;h+=16){for(var i=t[0],u=t[1],s=t[2],p=t[3],a=t[4],g=t[5],y=t[6],w=t[7],f=0;f<64;f++)n[f]=f<16?e[f+h]:b(b(b((o=n[f-2],m(o,17)^m(o,19)^v(o,10)),n[f-7]),(o=n[f-15],m(o,7)^m(o,18)^v(o,3))),n[f-16]),c=b(b(b(b(w,m(o=a,6)^m(o,11)^m(o,25)),a&g^~a&y),d[f]),n[f]),r=b(m(r=i,2)^m(r,13)^m(r,22),i&u^i&s^u&s),w=y,y=g,g=a,a=b(p,c),p=s,s=u,u=i,i=b(c,r);t[0]=b(i,t[0]),t[1]=b(u,t[1]),t[2]=b(s,t[2]),t[3]=b(p,t[3]),t[4]=b(a,t[4]),t[5]=b(g,t[5]),t[6]=b(y,t[6]),t[7]=b(w,t[7])}return t}var i=c("./helpers"),m=function(e,t){return e>>>t|e<<32-t},v=function(e,t){return e>>>t};d.exports=function(e){return i.hash(e,o,32,!0)}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("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:11}],10:[function(e,t,f){!function(e,t,n,r,o,i,u,s,a){f.read=function(e,t,n,r,o){var i,u,l=8*o-r-1,c=(1<<l)-1,d=c>>1,s=-7,a=n?o-1:0,f=n?-1:1,o=e[t+a];for(a+=f,i=o&(1<<-s)-1,o>>=-s,s+=l;0<s;i=256*i+e[t+a],a+=f,s-=8);for(u=i&(1<<-s)-1,i>>=-s,s+=r;0<s;u=256*u+e[t+a],a+=f,s-=8);if(0===i)i=1-d;else{if(i===c)return u?NaN:1/0*(o?-1:1);u+=Math.pow(2,r),i-=d}return(o?-1:1)*u*Math.pow(2,i-r)},f.write=function(e,t,l,n,r,c){var o,i,u=8*c-r-1,s=(1<<u)-1,a=s>>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=n?0:c-1,h=n?1:-1,c=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(i=isNaN(t)?1:0,o=s):(o=Math.floor(Math.log(t)/Math.LN2),t*(n=Math.pow(2,-o))<1&&(o--,n*=2),2<=(t+=1<=o+a?d/n:d*Math.pow(2,1-a))*n&&(o++,n/=2),s<=o+a?(i=0,o=s):1<=o+a?(i=(t*n-1)*Math.pow(2,r),o+=a):(i=t*Math.pow(2,a-1)*Math.pow(2,r),o=0));8<=r;e[l+f]=255&i,f+=h,i/=256,r-=8);for(o=o<<r|i,u+=r;0<u;e[l+f]=255&o,f+=h,o/=256,u-=8);e[l+f-h]|=128*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/ieee754/index.js","/node_modules/gulp-browserify/node_modules/ieee754")},{buffer:3,lYpoI2:11}],11:[function(e,h,t){!function(e,t,n,r,o,f,l,c,d){var i,u,s;function a(){}(e=h.exports={}).nextTick=(u="undefined"!=typeof window&&window.setImmediate,s="undefined"!=typeof window&&window.postMessage&&window.addEventListener,u?function(e){return window.setImmediate(e)}:s?(i=[],window.addEventListener("message",function(e){var t=e.source;t!==window&&null!==t||"process-tick"!==e.data||(e.stopPropagation(),0<i.length&&i.shift()())},!0),function(e){i.push(e),window.postMessage("process-tick","*")}):function(e){setTimeout(e,0)}),e.title="browser",e.browser=!0,e.env={},e.argv=[],e.on=a,e.addListener=a,e.once=a,e.off=a,e.removeListener=a,e.removeAllListeners=a,e.emit=a,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:11}]},{},[1])(1)});
|
|
10848
11148
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10849
|
-
},{}],
|
|
11149
|
+
},{}],146:[function(require,module,exports){
|
|
10850
11150
|
// shim for using process in browser
|
|
10851
11151
|
var process = module.exports = {};
|
|
10852
11152
|
|
|
@@ -11032,10 +11332,10 @@ process.chdir = function (dir) {
|
|
|
11032
11332
|
};
|
|
11033
11333
|
process.umask = function() { return 0; };
|
|
11034
11334
|
|
|
11035
|
-
},{}],
|
|
11335
|
+
},{}],147:[function(require,module,exports){
|
|
11036
11336
|
(function (Buffer){(function (){
|
|
11037
11337
|
!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()}(this,(()=>(()=>{var t={873:(t,e)=>{var i,r,n=function(){var t=function(t,e){var i=t,r=s[e],n=null,o=0,h=null,p=[],v={},m=function(t,e){n=function(t){for(var e=new Array(t),i=0;i<t;i+=1){e[i]=new Array(t);for(var r=0;r<t;r+=1)e[i][r]=null}return e}(o=4*i+17),b(0,0),b(o-7,0),b(0,o-7),x(),y(),C(t,e),i>=7&&S(t),null==h&&(h=M(i,r,p)),A(h,e)},b=function(t,e){for(var i=-1;i<=7;i+=1)if(!(t+i<=-1||o<=t+i))for(var r=-1;r<=7;r+=1)e+r<=-1||o<=e+r||(n[t+i][e+r]=0<=i&&i<=6&&(0==r||6==r)||0<=r&&r<=6&&(0==i||6==i)||2<=i&&i<=4&&2<=r&&r<=4)},y=function(){for(var t=8;t<o-8;t+=1)null==n[t][6]&&(n[t][6]=t%2==0);for(var e=8;e<o-8;e+=1)null==n[6][e]&&(n[6][e]=e%2==0)},x=function(){for(var t=a.getPatternPosition(i),e=0;e<t.length;e+=1)for(var r=0;r<t.length;r+=1){var o=t[e],s=t[r];if(null==n[o][s])for(var h=-2;h<=2;h+=1)for(var d=-2;d<=2;d+=1)n[o+h][s+d]=-2==h||2==h||-2==d||2==d||0==h&&0==d}},S=function(t){for(var e=a.getBCHTypeNumber(i),r=0;r<18;r+=1){var s=!t&&1==(e>>r&1);n[Math.floor(r/3)][r%3+o-8-3]=s}for(r=0;r<18;r+=1)s=!t&&1==(e>>r&1),n[r%3+o-8-3][Math.floor(r/3)]=s},C=function(t,e){for(var i=r<<3|e,s=a.getBCHTypeInfo(i),h=0;h<15;h+=1){var d=!t&&1==(s>>h&1);h<6?n[h][8]=d:h<8?n[h+1][8]=d:n[o-15+h][8]=d}for(h=0;h<15;h+=1)d=!t&&1==(s>>h&1),h<8?n[8][o-h-1]=d:h<9?n[8][15-h-1+1]=d:n[8][15-h-1]=d;n[o-8][8]=!t},A=function(t,e){for(var i=-1,r=o-1,s=7,h=0,d=a.getMaskFunction(e),u=o-1;u>0;u-=2)for(6==u&&(u-=1);;){for(var c=0;c<2;c+=1)if(null==n[r][u-c]){var l=!1;h<t.length&&(l=1==(t[h]>>>s&1)),d(r,u-c)&&(l=!l),n[r][u-c]=l,-1==(s-=1)&&(h+=1,s=7)}if((r+=i)<0||o<=r){r-=i,i=-i;break}}},M=function(t,e,i){for(var r=u.getRSBlocks(t,e),n=c(),o=0;o<i.length;o+=1){var s=i[o];n.put(s.getMode(),4),n.put(s.getLength(),a.getLengthInBits(s.getMode(),t)),s.write(n)}var h=0;for(o=0;o<r.length;o+=1)h+=r[o].dataCount;if(n.getLengthInBits()>8*h)throw"code length overflow. ("+n.getLengthInBits()+">"+8*h+")";for(n.getLengthInBits()+4<=8*h&&n.put(0,4);n.getLengthInBits()%8!=0;)n.putBit(!1);for(;!(n.getLengthInBits()>=8*h||(n.put(236,8),n.getLengthInBits()>=8*h));)n.put(17,8);return function(t,e){for(var i=0,r=0,n=0,o=new Array(e.length),s=new Array(e.length),h=0;h<e.length;h+=1){var u=e[h].dataCount,c=e[h].totalCount-u;r=Math.max(r,u),n=Math.max(n,c),o[h]=new Array(u);for(var l=0;l<o[h].length;l+=1)o[h][l]=255&t.getBuffer()[l+i];i+=u;var g=a.getErrorCorrectPolynomial(c),f=d(o[h],g.getLength()-1).mod(g);for(s[h]=new Array(g.getLength()-1),l=0;l<s[h].length;l+=1){var w=l+f.getLength()-s[h].length;s[h][l]=w>=0?f.getAt(w):0}}var p=0;for(l=0;l<e.length;l+=1)p+=e[l].totalCount;var v=new Array(p),_=0;for(l=0;l<r;l+=1)for(h=0;h<e.length;h+=1)l<o[h].length&&(v[_]=o[h][l],_+=1);for(l=0;l<n;l+=1)for(h=0;h<e.length;h+=1)l<s[h].length&&(v[_]=s[h][l],_+=1);return v}(n,r)};v.addData=function(t,e){var i=null;switch(e=e||"Byte"){case"Numeric":i=l(t);break;case"Alphanumeric":i=g(t);break;case"Byte":i=f(t);break;case"Kanji":i=w(t);break;default:throw"mode:"+e}p.push(i),h=null},v.isDark=function(t,e){if(t<0||o<=t||e<0||o<=e)throw t+","+e;return n[t][e]},v.getModuleCount=function(){return o},v.make=function(){if(i<1){for(var t=1;t<40;t++){for(var e=u.getRSBlocks(t,r),n=c(),o=0;o<p.length;o++){var s=p[o];n.put(s.getMode(),4),n.put(s.getLength(),a.getLengthInBits(s.getMode(),t)),s.write(n)}var h=0;for(o=0;o<e.length;o++)h+=e[o].dataCount;if(n.getLengthInBits()<=8*h)break}i=t}m(!1,function(){for(var t=0,e=0,i=0;i<8;i+=1){m(!0,i);var r=a.getLostPoint(v);(0==i||t>r)&&(t=r,e=i)}return e}())},v.createTableTag=function(t,e){t=t||2;var i="";i+='<table style="',i+=" border-width: 0px; border-style: none;",i+=" border-collapse: collapse;",i+=" padding: 0px; margin: "+(e=void 0===e?4*t:e)+"px;",i+='">',i+="<tbody>";for(var r=0;r<v.getModuleCount();r+=1){i+="<tr>";for(var n=0;n<v.getModuleCount();n+=1)i+='<td style="',i+=" border-width: 0px; border-style: none;",i+=" border-collapse: collapse;",i+=" padding: 0px; margin: 0px;",i+=" width: "+t+"px;",i+=" height: "+t+"px;",i+=" background-color: ",i+=v.isDark(r,n)?"#000000":"#ffffff",i+=";",i+='"/>';i+="</tr>"}return(i+="</tbody>")+"</table>"},v.createSvgTag=function(t,e,i,r){var n={};"object"==typeof arguments[0]&&(t=(n=arguments[0]).cellSize,e=n.margin,i=n.alt,r=n.title),t=t||2,e=void 0===e?4*t:e,(i="string"==typeof i?{text:i}:i||{}).text=i.text||null,i.id=i.text?i.id||"qrcode-description":null,(r="string"==typeof r?{text:r}:r||{}).text=r.text||null,r.id=r.text?r.id||"qrcode-title":null;var o,s,a,h,d=v.getModuleCount()*t+2*e,u="";for(h="l"+t+",0 0,"+t+" -"+t+",0 0,-"+t+"z ",u+='<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',u+=n.scalable?"":' width="'+d+'px" height="'+d+'px"',u+=' viewBox="0 0 '+d+" "+d+'" ',u+=' preserveAspectRatio="xMinYMin meet"',u+=r.text||i.text?' role="img" aria-labelledby="'+$([r.id,i.id].join(" ").trim())+'"':"",u+=">",u+=r.text?'<title id="'+$(r.id)+'">'+$(r.text)+"</title>":"",u+=i.text?'<description id="'+$(i.id)+'">'+$(i.text)+"</description>":"",u+='<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',u+='<path d="',s=0;s<v.getModuleCount();s+=1)for(a=s*t+e,o=0;o<v.getModuleCount();o+=1)v.isDark(s,o)&&(u+="M"+(o*t+e)+","+a+h);return(u+='" stroke="transparent" fill="black"/>')+"</svg>"},v.createDataURL=function(t,e){t=t||2,e=void 0===e?4*t:e;var i=v.getModuleCount()*t+2*e,r=e,n=i-e;return _(i,i,(function(e,i){if(r<=e&&e<n&&r<=i&&i<n){var o=Math.floor((e-r)/t),s=Math.floor((i-r)/t);return v.isDark(s,o)?0:1}return 1}))},v.createImgTag=function(t,e,i){t=t||2,e=void 0===e?4*t:e;var r=v.getModuleCount()*t+2*e,n="";return n+="<img",n+=' src="',n+=v.createDataURL(t,e),n+='"',n+=' width="',n+=r,n+='"',n+=' height="',n+=r,n+='"',i&&(n+=' alt="',n+=$(i),n+='"'),n+"/>"};var $=function(t){for(var e="",i=0;i<t.length;i+=1){var r=t.charAt(i);switch(r){case"<":e+="<";break;case">":e+=">";break;case"&":e+="&";break;case'"':e+=""";break;default:e+=r}}return e};return v.createASCII=function(t,e){if((t=t||1)<2)return function(t){t=void 0===t?2:t;var e,i,r,n,o,s=1*v.getModuleCount()+2*t,a=t,h=s-t,d={"██":"█","█ ":"▀"," █":"▄"," ":" "},u={"██":"▀","█ ":"▀"," █":" "," ":" "},c="";for(e=0;e<s;e+=2){for(r=Math.floor((e-a)/1),n=Math.floor((e+1-a)/1),i=0;i<s;i+=1)o="█",a<=i&&i<h&&a<=e&&e<h&&v.isDark(r,Math.floor((i-a)/1))&&(o=" "),a<=i&&i<h&&a<=e+1&&e+1<h&&v.isDark(n,Math.floor((i-a)/1))?o+=" ":o+="█",c+=t<1&&e+1>=h?u[o]:d[o];c+="\n"}return s%2&&t>0?c.substring(0,c.length-s-1)+Array(s+1).join("▀"):c.substring(0,c.length-1)}(e);t-=1,e=void 0===e?2*t:e;var i,r,n,o,s=v.getModuleCount()*t+2*e,a=e,h=s-e,d=Array(t+1).join("██"),u=Array(t+1).join(" "),c="",l="";for(i=0;i<s;i+=1){for(n=Math.floor((i-a)/t),l="",r=0;r<s;r+=1)o=1,a<=r&&r<h&&a<=i&&i<h&&v.isDark(n,Math.floor((r-a)/t))&&(o=0),l+=o?d:u;for(n=0;n<t;n+=1)c+=l+"\n"}return c.substring(0,c.length-1)},v.renderTo2dContext=function(t,e){e=e||2;for(var i=v.getModuleCount(),r=0;r<i;r++)for(var n=0;n<i;n++)t.fillStyle=v.isDark(r,n)?"black":"white",t.fillRect(r*e,n*e,e,e)},v};t.stringToBytes=(t.stringToBytesFuncs={default:function(t){for(var e=[],i=0;i<t.length;i+=1){var r=t.charCodeAt(i);e.push(255&r)}return e}}).default,t.createStringToBytes=function(t,e){var i=function(){for(var i=v(t),r=function(){var t=i.read();if(-1==t)throw"eof";return t},n=0,o={};;){var s=i.read();if(-1==s)break;var a=r(),h=r()<<8|r();o[String.fromCharCode(s<<8|a)]=h,n+=1}if(n!=e)throw n+" != "+e;return o}(),r="?".charCodeAt(0);return function(t){for(var e=[],n=0;n<t.length;n+=1){var o=t.charCodeAt(n);if(o<128)e.push(o);else{var s=i[t.charAt(n)];"number"==typeof s?(255&s)==s?e.push(s):(e.push(s>>>8),e.push(255&s)):e.push(r)}}return e}};var e,i,r,n,o,s={L:1,M:0,Q:3,H:2},a=(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]],i=1335,r=7973,o=function(t){for(var e=0;0!=t;)e+=1,t>>>=1;return e},(n={}).getBCHTypeInfo=function(t){for(var e=t<<10;o(e)-o(i)>=0;)e^=i<<o(e)-o(i);return 21522^(t<<10|e)},n.getBCHTypeNumber=function(t){for(var e=t<<12;o(e)-o(r)>=0;)e^=r<<o(e)-o(r);return t<<12|e},n.getPatternPosition=function(t){return e[t-1]},n.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}},n.getErrorCorrectPolynomial=function(t){for(var e=d([1],0),i=0;i<t;i+=1)e=e.multiply(d([1,h.gexp(i)],0));return e},n.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}}},n.getLostPoint=function(t){for(var e=t.getModuleCount(),i=0,r=0;r<e;r+=1)for(var n=0;n<e;n+=1){for(var o=0,s=t.isDark(r,n),a=-1;a<=1;a+=1)if(!(r+a<0||e<=r+a))for(var h=-1;h<=1;h+=1)n+h<0||e<=n+h||0==a&&0==h||s==t.isDark(r+a,n+h)&&(o+=1);o>5&&(i+=3+o-5)}for(r=0;r<e-1;r+=1)for(n=0;n<e-1;n+=1){var d=0;t.isDark(r,n)&&(d+=1),t.isDark(r+1,n)&&(d+=1),t.isDark(r,n+1)&&(d+=1),t.isDark(r+1,n+1)&&(d+=1),0!=d&&4!=d||(i+=3)}for(r=0;r<e;r+=1)for(n=0;n<e-6;n+=1)t.isDark(r,n)&&!t.isDark(r,n+1)&&t.isDark(r,n+2)&&t.isDark(r,n+3)&&t.isDark(r,n+4)&&!t.isDark(r,n+5)&&t.isDark(r,n+6)&&(i+=40);for(n=0;n<e;n+=1)for(r=0;r<e-6;r+=1)t.isDark(r,n)&&!t.isDark(r+1,n)&&t.isDark(r+2,n)&&t.isDark(r+3,n)&&t.isDark(r+4,n)&&!t.isDark(r+5,n)&&t.isDark(r+6,n)&&(i+=40);var u=0;for(n=0;n<e;n+=1)for(r=0;r<e;r+=1)t.isDark(r,n)&&(u+=1);return i+Math.abs(100*u/e/e-50)/5*10},n),h=function(){for(var t=new Array(256),e=new Array(256),i=0;i<8;i+=1)t[i]=1<<i;for(i=8;i<256;i+=1)t[i]=t[i-4]^t[i-5]^t[i-6]^t[i-8];for(i=0;i<255;i+=1)e[t[i]]=i;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 d(t,e){if(void 0===t.length)throw t.length+"/"+e;var i=function(){for(var i=0;i<t.length&&0==t[i];)i+=1;for(var r=new Array(t.length-i+e),n=0;n<t.length-i;n+=1)r[n]=t[n+i];return r}(),r={getAt:function(t){return i[t]},getLength:function(){return i.length},multiply:function(t){for(var e=new Array(r.getLength()+t.getLength()-1),i=0;i<r.getLength();i+=1)for(var n=0;n<t.getLength();n+=1)e[i+n]^=h.gexp(h.glog(r.getAt(i))+h.glog(t.getAt(n)));return d(e,0)},mod:function(t){if(r.getLength()-t.getLength()<0)return r;for(var e=h.glog(r.getAt(0))-h.glog(t.getAt(0)),i=new Array(r.getLength()),n=0;n<r.getLength();n+=1)i[n]=r.getAt(n);for(n=0;n<t.getLength();n+=1)i[n]^=h.gexp(h.glog(t.getAt(n))+e);return d(i,0).mod(t)}};return r}var u=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 i={};return i.totalCount=t,i.dataCount=e,i},i={getRSBlocks:function(i,r){var n=function(e,i){switch(i){case s.L:return t[4*(e-1)+0];case s.M:return t[4*(e-1)+1];case s.Q:return t[4*(e-1)+2];case s.H:return t[4*(e-1)+3];default:return}}(i,r);if(void 0===n)throw"bad rs block @ typeNumber:"+i+"/errorCorrectionLevel:"+r;for(var o=n.length/3,a=[],h=0;h<o;h+=1)for(var d=n[3*h+0],u=n[3*h+1],c=n[3*h+2],l=0;l<d;l+=1)a.push(e(u,c));return a}};return i}(),c=function(){var t=[],e=0,i={getBuffer:function(){return t},getAt:function(e){var i=Math.floor(e/8);return 1==(t[i]>>>7-e%8&1)},put:function(t,e){for(var r=0;r<e;r+=1)i.putBit(1==(t>>>e-r-1&1))},getLengthInBits:function(){return e},putBit:function(i){var r=Math.floor(e/8);t.length<=r&&t.push(0),i&&(t[r]|=128>>>e%8),e+=1}};return i},l=function(t){var e=t,i={getMode:function(){return 1},getLength:function(t){return e.length},write:function(t){for(var i=e,n=0;n+2<i.length;)t.put(r(i.substring(n,n+3)),10),n+=3;n<i.length&&(i.length-n==1?t.put(r(i.substring(n,n+1)),4):i.length-n==2&&t.put(r(i.substring(n,n+2)),7))}},r=function(t){for(var e=0,i=0;i<t.length;i+=1)e=10*e+n(t.charAt(i));return e},n=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);throw"illegal char :"+t};return i},g=function(t){var e=t,i={getMode:function(){return 2},getLength:function(t){return e.length},write:function(t){for(var i=e,n=0;n+1<i.length;)t.put(45*r(i.charAt(n))+r(i.charAt(n+1)),11),n+=2;n<i.length&&t.put(r(i.charAt(n)),6)}},r=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 i},f=function(e){var i=t.stringToBytes(e);return{getMode:function(){return 4},getLength:function(t){return i.length},write:function(t){for(var e=0;e<i.length;e+=1)t.put(i[e],8)}}},w=function(e){var i=t.stringToBytesFuncs.SJIS;if(!i)throw"sjis not supported.";!function(){var t=i("友");if(2!=t.length||38726!=(t[0]<<8|t[1]))throw"sjis not supported."}();var r=i(e),n={getMode:function(){return 8},getLength:function(t){return~~(r.length/2)},write:function(t){for(var e=r,i=0;i+1<e.length;){var n=(255&e[i])<<8|255&e[i+1];if(33088<=n&&n<=40956)n-=33088;else{if(!(57408<=n&&n<=60351))throw"illegal char at "+(i+1)+"/"+n;n-=49472}n=192*(n>>>8&255)+(255&n),t.put(n,13),i+=2}if(i<e.length)throw"illegal char at "+(i+1)}};return n},p=function(){var t=[],e={writeByte:function(e){t.push(255&e)},writeShort:function(t){e.writeByte(t),e.writeByte(t>>>8)},writeBytes:function(t,i,r){i=i||0,r=r||t.length;for(var n=0;n<r;n+=1)e.writeByte(t[n+i])},writeString:function(t){for(var i=0;i<t.length;i+=1)e.writeByte(t.charCodeAt(i))},toByteArray:function(){return t},toString:function(){var e="";e+="[";for(var i=0;i<t.length;i+=1)i>0&&(e+=","),e+=t[i];return e+"]"}};return e},v=function(t){var e=t,i=0,r=0,n=0,o={read:function(){for(;n<8;){if(i>=e.length){if(0==n)return-1;throw"unexpected end of file./"+n}var t=e.charAt(i);if(i+=1,"="==t)return n=0,-1;t.match(/^\s$/)||(r=r<<6|s(t.charCodeAt(0)),n+=6)}var o=r>>>n-8&255;return n-=8,o}},s=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 o},_=function(t,e,i){for(var r=function(t,e){var i=t,r=e,n=new Array(t*e),o={setPixel:function(t,e,r){n[e*i+t]=r},write:function(t){t.writeString("GIF87a"),t.writeShort(i),t.writeShort(r),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(i),t.writeShort(r),t.writeByte(0);var e=s(2);t.writeByte(2);for(var n=0;e.length-n>255;)t.writeByte(255),t.writeBytes(e,n,255),n+=255;t.writeByte(e.length-n),t.writeBytes(e,n,e.length-n),t.writeByte(0),t.writeString(";")}},s=function(t){for(var e=1<<t,i=1+(1<<t),r=t+1,o=a(),s=0;s<e;s+=1)o.add(String.fromCharCode(s));o.add(String.fromCharCode(e)),o.add(String.fromCharCode(i));var h,d,u,c=p(),l=(h=c,d=0,u=0,{write:function(t,e){if(t>>>e!=0)throw"length over";for(;d+e>=8;)h.writeByte(255&(t<<d|u)),e-=8-d,t>>>=8-d,u=0,d=0;u|=t<<d,d+=e},flush:function(){d>0&&h.writeByte(u)}});l.write(e,r);var g=0,f=String.fromCharCode(n[g]);for(g+=1;g<n.length;){var w=String.fromCharCode(n[g]);g+=1,o.contains(f+w)?f+=w:(l.write(o.indexOf(f),r),o.size()<4095&&(o.size()==1<<r&&(r+=1),o.add(f+w)),f=w)}return l.write(o.indexOf(f),r),l.write(i,r),l.flush(),c.toByteArray()},a=function(){var t={},e=0,i={add:function(r){if(i.contains(r))throw"dup key:"+r;t[r]=e,e+=1},size:function(){return e},indexOf:function(e){return t[e]},contains:function(e){return void 0!==t[e]}};return i};return o}(t,e),n=0;n<e;n+=1)for(var o=0;o<t;o+=1)r.setPixel(o,n,i(o,n));var s=p();r.write(s);for(var a=function(){var t=0,e=0,i=0,r="",n={},o=function(t){r+=String.fromCharCode(s(63&t))},s=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 n.writeByte=function(r){for(t=t<<8|255&r,e+=8,i+=1;e>=6;)o(t>>>e-6),e-=6},n.flush=function(){if(e>0&&(o(t<<6-e),t=0,e=0),i%3!=0)for(var n=3-i%3,s=0;s<n;s+=1)r+="="},n.toString=function(){return r},n}(),h=s.toByteArray(),d=0;d<h.length;d+=1)a.writeByte(h[d]);return a.flush(),"data:image/gif;base64,"+a};return t}();n.stringToBytesFuncs["UTF-8"]=function(t){return function(t){for(var e=[],i=0;i<t.length;i++){var r=t.charCodeAt(i);r<128?e.push(r):r<2048?e.push(192|r>>6,128|63&r):r<55296||r>=57344?e.push(224|r>>12,128|r>>6&63,128|63&r):(i++,r=65536+((1023&r)<<10|1023&t.charCodeAt(i)),e.push(240|r>>18,128|r>>12&63,128|r>>6&63,128|63&r))}return e}(t)},void 0===(r="function"==typeof(i=function(){return n})?i.apply(e,[]):i)||(t.exports=r)}},e={};function i(r){var n=e[r];if(void 0!==n)return n.exports;var o=e[r]={exports:{}};return t[r](o,o.exports,i),o.exports}i.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var r in e)i.o(e,r)&&!i.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var r={};return(()=>{"use strict";i.d(r,{default:()=>$});const t=t=>!!t&&"object"==typeof t&&!Array.isArray(t);function e(i,...r){if(!r.length)return i;const n=r.shift();return void 0!==n&&t(i)&&t(n)?(i=Object.assign({},i),Object.keys(n).forEach((r=>{const o=i[r],s=n[r];Array.isArray(o)&&Array.isArray(s)?i[r]=s:t(o)&&t(s)?i[r]=e(Object.assign({},o),s):i[r]=s})),e(i,...r)):i}function n(t,e){const i=document.createElement("a");i.download=e,i.href=t,document.body.appendChild(i),i.click(),document.body.removeChild(i)}const o={L:.07,M:.15,Q:.25,H:.3};class s{constructor({svg:t,type:e,window:i}){this._svg=t,this._type=e,this._window=i}draw(t,e,i,r){let n;switch(this._type){case"dots":n=this._drawDot;break;case"classy":n=this._drawClassy;break;case"classy-rounded":n=this._drawClassyRounded;break;case"rounded":n=this._drawRounded;break;case"extra-rounded":n=this._drawExtraRounded;break;default:n=this._drawSquare}n.call(this,{x:t,y:e,size:i,getNeighbor:r})}_rotateFigure({x:t,y:e,size:i,rotation:r=0,draw:n}){var o;const s=t+i/2,a=e+i/2;n(),null===(o=this._element)||void 0===o||o.setAttribute("transform",`rotate(${180*r/Math.PI},${s},${a})`)}_basicDot(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","circle"),this._element.setAttribute("cx",String(i+e/2)),this._element.setAttribute("cy",String(r+e/2)),this._element.setAttribute("r",String(e/2))}}))}_basicSquare(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","rect"),this._element.setAttribute("x",String(i)),this._element.setAttribute("y",String(r)),this._element.setAttribute("width",String(e)),this._element.setAttribute("height",String(e))}}))}_basicSideRounded(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",`M ${i} ${r}v ${e}h `+e/2+`a ${e/2} ${e/2}, 0, 0, 0, 0 ${-e}`)}}))}_basicCornerRounded(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",`M ${i} ${r}v ${e}h ${e}v `+-e/2+`a ${e/2} ${e/2}, 0, 0, 0, ${-e/2} ${-e/2}`)}}))}_basicCornerExtraRounded(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",`M ${i} ${r}v ${e}h ${e}a ${e} ${e}, 0, 0, 0, ${-e} ${-e}`)}}))}_basicCornersRounded(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",`M ${i} ${r}v `+e/2+`a ${e/2} ${e/2}, 0, 0, 0, ${e/2} ${e/2}h `+e/2+"v "+-e/2+`a ${e/2} ${e/2}, 0, 0, 0, ${-e/2} ${-e/2}`)}}))}_drawDot({x:t,y:e,size:i}){this._basicDot({x:t,y:e,size:i,rotation:0})}_drawSquare({x:t,y:e,size:i}){this._basicSquare({x:t,y:e,size:i,rotation:0})}_drawRounded({x:t,y:e,size:i,getNeighbor:r}){const n=r?+r(-1,0):0,o=r?+r(1,0):0,s=r?+r(0,-1):0,a=r?+r(0,1):0,h=n+o+s+a;if(0!==h)if(h>2||n&&o||s&&a)this._basicSquare({x:t,y:e,size:i,rotation:0});else{if(2===h){let r=0;return n&&s?r=Math.PI/2:s&&o?r=Math.PI:o&&a&&(r=-Math.PI/2),void this._basicCornerRounded({x:t,y:e,size:i,rotation:r})}if(1===h){let r=0;return s?r=Math.PI/2:o?r=Math.PI:a&&(r=-Math.PI/2),void this._basicSideRounded({x:t,y:e,size:i,rotation:r})}}else this._basicDot({x:t,y:e,size:i,rotation:0})}_drawExtraRounded({x:t,y:e,size:i,getNeighbor:r}){const n=r?+r(-1,0):0,o=r?+r(1,0):0,s=r?+r(0,-1):0,a=r?+r(0,1):0,h=n+o+s+a;if(0!==h)if(h>2||n&&o||s&&a)this._basicSquare({x:t,y:e,size:i,rotation:0});else{if(2===h){let r=0;return n&&s?r=Math.PI/2:s&&o?r=Math.PI:o&&a&&(r=-Math.PI/2),void this._basicCornerExtraRounded({x:t,y:e,size:i,rotation:r})}if(1===h){let r=0;return s?r=Math.PI/2:o?r=Math.PI:a&&(r=-Math.PI/2),void this._basicSideRounded({x:t,y:e,size:i,rotation:r})}}else this._basicDot({x:t,y:e,size:i,rotation:0})}_drawClassy({x:t,y:e,size:i,getNeighbor:r}){const n=r?+r(-1,0):0,o=r?+r(1,0):0,s=r?+r(0,-1):0,a=r?+r(0,1):0;0!==n+o+s+a?n||s?o||a?this._basicSquare({x:t,y:e,size:i,rotation:0}):this._basicCornerRounded({x:t,y:e,size:i,rotation:Math.PI/2}):this._basicCornerRounded({x:t,y:e,size:i,rotation:-Math.PI/2}):this._basicCornersRounded({x:t,y:e,size:i,rotation:Math.PI/2})}_drawClassyRounded({x:t,y:e,size:i,getNeighbor:r}){const n=r?+r(-1,0):0,o=r?+r(1,0):0,s=r?+r(0,-1):0,a=r?+r(0,1):0;0!==n+o+s+a?n||s?o||a?this._basicSquare({x:t,y:e,size:i,rotation:0}):this._basicCornerExtraRounded({x:t,y:e,size:i,rotation:Math.PI/2}):this._basicCornerExtraRounded({x:t,y:e,size:i,rotation:-Math.PI/2}):this._basicCornersRounded({x:t,y:e,size:i,rotation:Math.PI/2})}}const a={dot:"dot",square:"square",extraRounded:"extra-rounded"},h=Object.values(a);class d{constructor({svg:t,type:e,window:i}){this._svg=t,this._type=e,this._window=i}draw(t,e,i,r){let n;switch(this._type){case a.square:n=this._drawSquare;break;case a.extraRounded:n=this._drawExtraRounded;break;default:n=this._drawDot}n.call(this,{x:t,y:e,size:i,rotation:r})}_rotateFigure({x:t,y:e,size:i,rotation:r=0,draw:n}){var o;const s=t+i/2,a=e+i/2;n(),null===(o=this._element)||void 0===o||o.setAttribute("transform",`rotate(${180*r/Math.PI},${s},${a})`)}_basicDot(t){const{size:e,x:i,y:r}=t,n=e/7;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",`M ${i+e/2} ${r}a ${e/2} ${e/2} 0 1 0 0.1 0zm 0 ${n}a ${e/2-n} ${e/2-n} 0 1 1 -0.1 0Z`)}}))}_basicSquare(t){const{size:e,x:i,y:r}=t,n=e/7;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",`M ${i} ${r}v ${e}h ${e}v `+-e+"z"+`M ${i+n} ${r+n}h `+(e-2*n)+"v "+(e-2*n)+"h "+(2*n-e)+"z")}}))}_basicExtraRounded(t){const{size:e,x:i,y:r}=t,n=e/7;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",`M ${i} ${r+2.5*n}v `+2*n+`a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*n}h `+2*n+`a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*-n}v `+-2*n+`a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*-n}h `+-2*n+`a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*n}`+`M ${i+2.5*n} ${r+n}h `+2*n+`a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*n}v `+2*n+`a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*n}h `+-2*n+`a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*-n}v `+-2*n+`a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*-n}`)}}))}_drawDot({x:t,y:e,size:i,rotation:r}){this._basicDot({x:t,y:e,size:i,rotation:r})}_drawSquare({x:t,y:e,size:i,rotation:r}){this._basicSquare({x:t,y:e,size:i,rotation:r})}_drawExtraRounded({x:t,y:e,size:i,rotation:r}){this._basicExtraRounded({x:t,y:e,size:i,rotation:r})}}const u={dot:"dot",square:"square"},c=Object.values(u);class l{constructor({svg:t,type:e,window:i}){this._svg=t,this._type=e,this._window=i}draw(t,e,i,r){let n;n=this._type===u.square?this._drawSquare:this._drawDot,n.call(this,{x:t,y:e,size:i,rotation:r})}_rotateFigure({x:t,y:e,size:i,rotation:r=0,draw:n}){var o;const s=t+i/2,a=e+i/2;n(),null===(o=this._element)||void 0===o||o.setAttribute("transform",`rotate(${180*r/Math.PI},${s},${a})`)}_basicDot(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","circle"),this._element.setAttribute("cx",String(i+e/2)),this._element.setAttribute("cy",String(r+e/2)),this._element.setAttribute("r",String(e/2))}}))}_basicSquare(t){const{size:e,x:i,y:r}=t;this._rotateFigure(Object.assign(Object.assign({},t),{draw:()=>{this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","rect"),this._element.setAttribute("x",String(i)),this._element.setAttribute("y",String(r)),this._element.setAttribute("width",String(e)),this._element.setAttribute("height",String(e))}}))}_drawDot({x:t,y:e,size:i,rotation:r}){this._basicDot({x:t,y:e,size:i,rotation:r})}_drawSquare({x:t,y:e,size:i,rotation:r}){this._basicSquare({x:t,y:e,size:i,rotation:r})}}const g="circle",f=[[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]],w=[[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]];class p{constructor(t,e){this._roundSize=t=>this._options.dotsOptions.roundSize?Math.floor(t):t,this._window=e,this._element=this._window.document.createElementNS("http://www.w3.org/2000/svg","svg"),this._element.setAttribute("width",String(t.width)),this._element.setAttribute("height",String(t.height)),this._element.setAttribute("xmlns:xlink","http://www.w3.org/1999/xlink"),t.dotsOptions.roundSize||this._element.setAttribute("shape-rendering","crispEdges"),this._element.setAttribute("viewBox",`0 0 ${t.width} ${t.height}`),this._defs=this._window.document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this._defs),this._imageUri=t.image,this._instanceId=p.instanceCount++,this._options=t}get width(){return this._options.width}get height(){return this._options.height}getElement(){return this._element}async drawQR(t){const e=t.getModuleCount(),i=Math.min(this._options.width,this._options.height)-2*this._options.margin,r=this._options.shape===g?i/Math.sqrt(2):i,n=this._roundSize(r/e);let s={hideXDots:0,hideYDots:0,width:0,height:0};if(this._qr=t,this._options.image){if(await this.loadImage(),!this._image)return;const{imageOptions:t,qrOptions:i}=this._options,r=t.imageSize*o[i.errorCorrectionLevel],a=Math.floor(r*e*e);s=function({originalHeight:t,originalWidth:e,maxHiddenDots:i,maxHiddenAxisDots:r,dotSize:n}){const o={x:0,y:0},s={x:0,y:0};if(t<=0||e<=0||i<=0||n<=0)return{height:0,width:0,hideYDots:0,hideXDots:0};const a=t/e;return o.x=Math.floor(Math.sqrt(i/a)),o.x<=0&&(o.x=1),r&&r<o.x&&(o.x=r),o.x%2==0&&o.x--,s.x=o.x*n,o.y=1+2*Math.ceil((o.x*a-1)/2),s.y=Math.round(s.x*a),(o.y*o.x>i||r&&r<o.y)&&(r&&r<o.y?(o.y=r,o.y%2==0&&o.x--):o.y-=2,s.y=o.y*n,o.x=1+2*Math.ceil((o.y/a-1)/2),s.x=Math.round(s.y/a)),{height:s.y,width:s.x,hideYDots:o.y,hideXDots:o.x}}({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:a,maxHiddenAxisDots:e-14,dotSize:n})}this.drawBackground(),this.drawDots(((t,i)=>{var r,n,o,a,h,d;return!(this._options.imageOptions.hideBackgroundDots&&t>=(e-s.hideYDots)/2&&t<(e+s.hideYDots)/2&&i>=(e-s.hideXDots)/2&&i<(e+s.hideXDots)/2||(null===(r=f[t])||void 0===r?void 0:r[i])||(null===(n=f[t-e+7])||void 0===n?void 0:n[i])||(null===(o=f[t])||void 0===o?void 0:o[i-e+7])||(null===(a=w[t])||void 0===a?void 0:a[i])||(null===(h=w[t-e+7])||void 0===h?void 0:h[i])||(null===(d=w[t])||void 0===d?void 0:d[i-e+7]))})),this.drawCorners(),this._options.image&&await this.drawImage({width:s.width,height:s.height,count:e,dotSize:n})}drawBackground(){var t,e,i;const r=this._element,n=this._options;if(r){const r=null===(t=n.backgroundOptions)||void 0===t?void 0:t.gradient,o=null===(e=n.backgroundOptions)||void 0===e?void 0:e.color;let s=n.height,a=n.width;if(r||o){const t=this._window.document.createElementNS("http://www.w3.org/2000/svg","rect");this._backgroundClipPath=this._window.document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._backgroundClipPath.setAttribute("id",`clip-path-background-color-${this._instanceId}`),this._defs.appendChild(this._backgroundClipPath),(null===(i=n.backgroundOptions)||void 0===i?void 0:i.round)&&(s=a=Math.min(n.width,n.height),t.setAttribute("rx",String(s/2*n.backgroundOptions.round))),t.setAttribute("x",String(this._roundSize((n.width-a)/2))),t.setAttribute("y",String(this._roundSize((n.height-s)/2))),t.setAttribute("width",String(a)),t.setAttribute("height",String(s)),this._backgroundClipPath.appendChild(t),this._createColor({options:r,color:o,additionalRotation:0,x:0,y:0,height:n.height,width:n.width,name:`background-color-${this._instanceId}`})}}}drawDots(t){var e,i;if(!this._qr)throw"QR code is not defined";const r=this._options,n=this._qr.getModuleCount();if(n>r.width||n>r.height)throw"The canvas is too small.";const o=Math.min(r.width,r.height)-2*r.margin,a=r.shape===g?o/Math.sqrt(2):o,h=this._roundSize(a/n),d=this._roundSize((r.width-n*h)/2),u=this._roundSize((r.height-n*h)/2),c=new s({svg:this._element,type:r.dotsOptions.type,window:this._window});this._dotsClipPath=this._window.document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._dotsClipPath.setAttribute("id",`clip-path-dot-color-${this._instanceId}`),this._defs.appendChild(this._dotsClipPath),this._createColor({options:null===(e=r.dotsOptions)||void 0===e?void 0:e.gradient,color:r.dotsOptions.color,additionalRotation:0,x:0,y:0,height:r.height,width:r.width,name:`dot-color-${this._instanceId}`});for(let e=0;e<n;e++)for(let r=0;r<n;r++)t&&!t(e,r)||(null===(i=this._qr)||void 0===i?void 0:i.isDark(e,r))&&(c.draw(d+r*h,u+e*h,h,((i,o)=>!(r+i<0||e+o<0||r+i>=n||e+o>=n)&&!(t&&!t(e+o,r+i))&&!!this._qr&&this._qr.isDark(e+o,r+i))),c._element&&this._dotsClipPath&&this._dotsClipPath.appendChild(c._element));if(r.shape===g){const t=this._roundSize((o/h-n)/2),e=n+2*t,i=d-t*h,r=u-t*h,s=[],a=this._roundSize(e/2);for(let i=0;i<e;i++){s[i]=[];for(let r=0;r<e;r++)i>=t-1&&i<=e-t&&r>=t-1&&r<=e-t||Math.sqrt((i-a)*(i-a)+(r-a)*(r-a))>a?s[i][r]=0:s[i][r]=this._qr.isDark(r-2*t<0?r:r>=n?r-2*t:r-t,i-2*t<0?i:i>=n?i-2*t:i-t)?1:0}for(let t=0;t<e;t++)for(let n=0;n<e;n++)s[t][n]&&(c.draw(i+n*h,r+t*h,h,((e,i)=>{var r;return!!(null===(r=s[t+i])||void 0===r?void 0:r[n+e])})),c._element&&this._dotsClipPath&&this._dotsClipPath.appendChild(c._element))}}drawCorners(){if(!this._qr)throw"QR code is not defined";const t=this._element,e=this._options;if(!t)throw"Element code is not defined";const i=this._qr.getModuleCount(),r=Math.min(e.width,e.height)-2*e.margin,n=e.shape===g?r/Math.sqrt(2):r,o=this._roundSize(n/i),a=7*o,u=3*o,p=this._roundSize((e.width-i*o)/2),v=this._roundSize((e.height-i*o)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((([t,r,n])=>{var g,_,m,b,y,x,S,C,A,M,$,O,D,k;const z=p+t*o*(i-7),B=v+r*o*(i-7);let P=this._dotsClipPath,I=this._dotsClipPath;if(((null===(g=e.cornersSquareOptions)||void 0===g?void 0:g.gradient)||(null===(_=e.cornersSquareOptions)||void 0===_?void 0:_.color))&&(P=this._window.document.createElementNS("http://www.w3.org/2000/svg","clipPath"),P.setAttribute("id",`clip-path-corners-square-color-${t}-${r}-${this._instanceId}`),this._defs.appendChild(P),this._cornersSquareClipPath=this._cornersDotClipPath=I=P,this._createColor({options:null===(m=e.cornersSquareOptions)||void 0===m?void 0:m.gradient,color:null===(b=e.cornersSquareOptions)||void 0===b?void 0:b.color,additionalRotation:n,x:z,y:B,height:a,width:a,name:`corners-square-color-${t}-${r}-${this._instanceId}`})),(null===(y=e.cornersSquareOptions)||void 0===y?void 0:y.type)&&h.includes(e.cornersSquareOptions.type)){const t=new d({svg:this._element,type:e.cornersSquareOptions.type,window:this._window});t.draw(z,B,a,n),t._element&&P&&P.appendChild(t._element)}else{const t=new s({svg:this._element,type:(null===(x=e.cornersSquareOptions)||void 0===x?void 0:x.type)||e.dotsOptions.type,window:this._window});for(let e=0;e<f.length;e++)for(let i=0;i<f[e].length;i++)(null===(S=f[e])||void 0===S?void 0:S[i])&&(t.draw(z+i*o,B+e*o,o,((t,r)=>{var n;return!!(null===(n=f[e+r])||void 0===n?void 0:n[i+t])})),t._element&&P&&P.appendChild(t._element))}if(((null===(C=e.cornersDotOptions)||void 0===C?void 0:C.gradient)||(null===(A=e.cornersDotOptions)||void 0===A?void 0:A.color))&&(I=this._window.document.createElementNS("http://www.w3.org/2000/svg","clipPath"),I.setAttribute("id",`clip-path-corners-dot-color-${t}-${r}-${this._instanceId}`),this._defs.appendChild(I),this._cornersDotClipPath=I,this._createColor({options:null===(M=e.cornersDotOptions)||void 0===M?void 0:M.gradient,color:null===($=e.cornersDotOptions)||void 0===$?void 0:$.color,additionalRotation:n,x:z+2*o,y:B+2*o,height:u,width:u,name:`corners-dot-color-${t}-${r}-${this._instanceId}`})),(null===(O=e.cornersDotOptions)||void 0===O?void 0:O.type)&&c.includes(e.cornersDotOptions.type)){const t=new l({svg:this._element,type:e.cornersDotOptions.type,window:this._window});t.draw(z+2*o,B+2*o,u,n),t._element&&I&&I.appendChild(t._element)}else{const t=new s({svg:this._element,type:(null===(D=e.cornersDotOptions)||void 0===D?void 0:D.type)||e.dotsOptions.type,window:this._window});for(let e=0;e<w.length;e++)for(let i=0;i<w[e].length;i++)(null===(k=w[e])||void 0===k?void 0:k[i])&&(t.draw(z+i*o,B+e*o,o,((t,r)=>{var n;return!!(null===(n=w[e+r])||void 0===n?void 0:n[i+t])})),t._element&&I&&I.appendChild(t._element))}}))}loadImage(){return new Promise(((t,e)=>{var i;const r=this._options;if(!r.image)return e("Image is not defined");if(null===(i=r.nodeCanvas)||void 0===i?void 0:i.loadImage)r.nodeCanvas.loadImage(r.image).then((e=>{var i,n;if(this._image=e,this._options.imageOptions.saveAsBlob){const t=null===(i=r.nodeCanvas)||void 0===i?void 0:i.createCanvas(this._image.width,this._image.height);null===(n=null==t?void 0:t.getContext("2d"))||void 0===n||n.drawImage(e,0,0),this._imageUri=null==t?void 0:t.toDataURL()}t()})).catch(e);else{const e=new this._window.Image;"string"==typeof r.imageOptions.crossOrigin&&(e.crossOrigin=r.imageOptions.crossOrigin),this._image=e,e.onload=async()=>{this._options.imageOptions.saveAsBlob&&(this._imageUri=await async function(t,e){return new Promise((i=>{const r=new e.XMLHttpRequest;r.onload=function(){const t=new e.FileReader;t.onloadend=function(){i(t.result)},t.readAsDataURL(r.response)},r.open("GET",t),r.responseType="blob",r.send()}))}(r.image||"",this._window)),t()},e.src=r.image}}))}async drawImage({width:t,height:e,count:i,dotSize:r}){const n=this._options,o=this._roundSize((n.width-i*r)/2),s=this._roundSize((n.height-i*r)/2),a=o+this._roundSize(n.imageOptions.margin+(i*r-t)/2),h=s+this._roundSize(n.imageOptions.margin+(i*r-e)/2),d=t-2*n.imageOptions.margin,u=e-2*n.imageOptions.margin,c=this._window.document.createElementNS("http://www.w3.org/2000/svg","image");c.setAttribute("href",this._imageUri||""),c.setAttribute("xlink:href",this._imageUri||""),c.setAttribute("x",String(a)),c.setAttribute("y",String(h)),c.setAttribute("width",`${d}px`),c.setAttribute("height",`${u}px`),this._element.appendChild(c)}_createColor({options:t,color:e,additionalRotation:i,x:r,y:n,height:o,width:s,name:a}){const h=s>o?s:o,d=this._window.document.createElementNS("http://www.w3.org/2000/svg","rect");if(d.setAttribute("x",String(r)),d.setAttribute("y",String(n)),d.setAttribute("height",String(o)),d.setAttribute("width",String(s)),d.setAttribute("clip-path",`url('#clip-path-${a}')`),t){let e;if("radial"===t.type)e=this._window.document.createElementNS("http://www.w3.org/2000/svg","radialGradient"),e.setAttribute("id",a),e.setAttribute("gradientUnits","userSpaceOnUse"),e.setAttribute("fx",String(r+s/2)),e.setAttribute("fy",String(n+o/2)),e.setAttribute("cx",String(r+s/2)),e.setAttribute("cy",String(n+o/2)),e.setAttribute("r",String(h/2));else{const h=((t.rotation||0)+i)%(2*Math.PI),d=(h+2*Math.PI)%(2*Math.PI);let u=r+s/2,c=n+o/2,l=r+s/2,g=n+o/2;d>=0&&d<=.25*Math.PI||d>1.75*Math.PI&&d<=2*Math.PI?(u-=s/2,c-=o/2*Math.tan(h),l+=s/2,g+=o/2*Math.tan(h)):d>.25*Math.PI&&d<=.75*Math.PI?(c-=o/2,u-=s/2/Math.tan(h),g+=o/2,l+=s/2/Math.tan(h)):d>.75*Math.PI&&d<=1.25*Math.PI?(u+=s/2,c+=o/2*Math.tan(h),l-=s/2,g-=o/2*Math.tan(h)):d>1.25*Math.PI&&d<=1.75*Math.PI&&(c+=o/2,u+=s/2/Math.tan(h),g-=o/2,l-=s/2/Math.tan(h)),e=this._window.document.createElementNS("http://www.w3.org/2000/svg","linearGradient"),e.setAttribute("id",a),e.setAttribute("gradientUnits","userSpaceOnUse"),e.setAttribute("x1",String(Math.round(u))),e.setAttribute("y1",String(Math.round(c))),e.setAttribute("x2",String(Math.round(l))),e.setAttribute("y2",String(Math.round(g)))}t.colorStops.forEach((({offset:t,color:i})=>{const r=this._window.document.createElementNS("http://www.w3.org/2000/svg","stop");r.setAttribute("offset",100*t+"%"),r.setAttribute("stop-color",i),e.appendChild(r)})),d.setAttribute("fill",`url('#${a}')`),this._defs.appendChild(e)}else e&&d.setAttribute("fill",e);this._element.appendChild(d)}}p.instanceCount=0;const v=p,_="canvas",m={};for(let t=0;t<=40;t++)m[t]=t;const b={type:_,shape:"square",width:300,height:300,data:"",margin:0,qrOptions:{typeNumber:m[0],mode:void 0,errorCorrectionLevel:"Q"},imageOptions:{saveAsBlob:!0,hideBackgroundDots:!0,imageSize:.4,crossOrigin:void 0,margin:0},dotsOptions:{type:"square",color:"#000",roundSize:!0},backgroundOptions:{round:0,color:"#fff"}};function y(t){const e=Object.assign({},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((t=>Object.assign(Object.assign({},t),{offset:Number(t.offset)}))),e}function x(t){const e=Object.assign({},t);return e.width=Number(e.width),e.height=Number(e.height),e.margin=Number(e.margin),e.imageOptions=Object.assign(Object.assign({},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=Object.assign({},e.dotsOptions),e.dotsOptions.gradient&&(e.dotsOptions.gradient=y(e.dotsOptions.gradient)),e.cornersSquareOptions&&(e.cornersSquareOptions=Object.assign({},e.cornersSquareOptions),e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=y(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions=Object.assign({},e.cornersDotOptions),e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=y(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions=Object.assign({},e.backgroundOptions),e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=y(e.backgroundOptions.gradient))),e}var S=i(873),C=i.n(S);function A(t){if(!t)throw new Error("Extension must be defined");"."===t[0]&&(t=t.substring(1));const e={bmp:"image/bmp",gif:"image/gif",ico:"image/vnd.microsoft.icon",jpeg:"image/jpeg",jpg:"image/jpeg",png:"image/png",svg:"image/svg+xml",tif:"image/tiff",tiff:"image/tiff",webp:"image/webp",pdf:"application/pdf"}[t.toLowerCase()];if(!e)throw new Error(`Extension "${t}" is not supported`);return e}class M{constructor(t){(null==t?void 0:t.jsdom)?this._window=new t.jsdom("",{resources:"usable"}).window:this._window=window,this._options=t?x(e(b,t)):b,this.update()}static _clearContainer(t){t&&(t.innerHTML="")}_setupSvg(){if(!this._qr)return;const t=new v(this._options,this._window);this._svg=t.getElement(),this._svgDrawingPromise=t.drawQR(this._qr).then((()=>{var e;this._svg&&(null===(e=this._extension)||void 0===e||e.call(this,t.getElement(),this._options))}))}_setupCanvas(){var t,e;this._qr&&((null===(t=this._options.nodeCanvas)||void 0===t?void 0:t.createCanvas)?(this._nodeCanvas=this._options.nodeCanvas.createCanvas(this._options.width,this._options.height),this._nodeCanvas.width=this._options.width,this._nodeCanvas.height=this._options.height):(this._domCanvas=document.createElement("canvas"),this._domCanvas.width=this._options.width,this._domCanvas.height=this._options.height),this._setupSvg(),this._canvasDrawingPromise=null===(e=this._svgDrawingPromise)||void 0===e?void 0:e.then((()=>{var t;if(!this._svg)return;const e=this._svg,i=(new this._window.XMLSerializer).serializeToString(e),r=btoa(i),n=`data:${A("svg")};base64,${r}`;if(null===(t=this._options.nodeCanvas)||void 0===t?void 0:t.loadImage)return this._options.nodeCanvas.loadImage(n).then((t=>{var e,i;t.width=this._options.width,t.height=this._options.height,null===(i=null===(e=this._nodeCanvas)||void 0===e?void 0:e.getContext("2d"))||void 0===i||i.drawImage(t,0,0)}));{const t=new this._window.Image;return new Promise((e=>{t.onload=()=>{var i,r;null===(r=null===(i=this._domCanvas)||void 0===i?void 0:i.getContext("2d"))||void 0===r||r.drawImage(t,0,0),e()},t.src=n}))}})))}async _getElement(t="png"){if(!this._qr)throw"QR code is empty";return"svg"===t.toLowerCase()?(this._svg&&this._svgDrawingPromise||this._setupSvg(),await this._svgDrawingPromise,this._svg):((this._domCanvas||this._nodeCanvas)&&this._canvasDrawingPromise||this._setupCanvas(),await this._canvasDrawingPromise,this._domCanvas||this._nodeCanvas)}update(t){M._clearContainer(this._container),this._options=t?x(e(this._options,t)):this._options,this._options.data&&(this._qr=C()(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===_?this._setupCanvas():this._setupSvg(),this.append(this._container))}append(t){if(t){if("function"!=typeof t.appendChild)throw"Container should be a single DOM node";this._options.type===_?this._domCanvas&&t.appendChild(this._domCanvas):this._svg&&t.appendChild(this._svg),this._container=t}}applyExtension(t){if(!t)throw"Extension function should be defined.";this._extension=t,this.update()}deleteExtension(){this._extension=void 0,this.update()}async getRawData(t="png"){if(!this._qr)throw"QR code is empty";const e=await this._getElement(t),i=A(t);if(!e)return null;if("svg"===t.toLowerCase()){const t=`<?xml version="1.0" standalone="no"?>\r\n${(new this._window.XMLSerializer).serializeToString(e)}`;return"undefined"==typeof Blob||this._options.jsdom?Buffer.from(t):new Blob([t],{type:i})}return new Promise((t=>{const r=e;if("toBuffer"in r)if("image/png"===i)t(r.toBuffer(i));else if("image/jpeg"===i)t(r.toBuffer(i));else{if("application/pdf"!==i)throw Error("Unsupported extension");t(r.toBuffer(i))}else"toBlob"in r&&r.toBlob(t,i,1)}))}async download(t){if(!this._qr)throw"QR code is empty";if("undefined"==typeof Blob)throw"Cannot download in Node.js, call getRawData instead.";let e="png",i="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&&(i=t.name),t.extension&&(e=t.extension));const r=await this._getElement(e);if(r)if("svg"===e.toLowerCase()){let t=(new XMLSerializer).serializeToString(r);t='<?xml version="1.0" standalone="no"?>\r\n'+t,n(`data:${A(e)};charset=utf-8,${encodeURIComponent(t)}`,`${i}.svg`)}else n(r.toDataURL(A(e)),`${i}.${e}`)}}const $=M})(),r.default})()));
|
|
11038
11338
|
|
|
11039
11339
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
11040
|
-
},{"buffer":
|
|
11340
|
+
},{"buffer":142}]},{},[17])(17)
|
|
11041
11341
|
});
|